-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathFramesList.cpp
251 lines (202 loc) · 5.03 KB
/
FramesList.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* Copyright 2013-2023 Stefano Ceccherini <[email protected]>
* All rights reserved. Distributed under the terms of the MIT license.
*/
#include "FramesList.h"
#include "Utils.h"
#include <Bitmap.h>
#include <BitmapStream.h>
#include <Directory.h>
#include <Entry.h>
#include <File.h>
#include <FindDirectory.h>
#include <Path.h>
#include <TranslationUtils.h>
#include <TranslatorRoster.h>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <new>
static BTranslatorRoster* sTranslatorRoster = NULL;
char* FramesList::sTemporaryPath = NULL;
const uint32 kBitmapFormat = 'BMP ';
FramesList::FramesList(bool diskOnly)
:
BObjectList<BitmapEntry>(20, true)
{
}
/* virtual */
FramesList::~FramesList()
{
// Empty the list, which incidentally deletes the files
// on disk. Must be done before deleting the folder
BObjectList<BitmapEntry>::MakeEmpty(true);
DeleteTempPath();
}
/* static */
status_t
FramesList::CreateTempPath()
{
BPath path;
status_t status = find_directory(B_SYSTEM_TEMP_DIRECTORY, &path);
if (status != B_OK)
return status;
char* pathName = (char*)malloc(B_PATH_NAME_LENGTH);
if (pathName == NULL)
return B_NO_MEMORY;
::snprintf(pathName, B_PATH_NAME_LENGTH, "%s/_BSCXXXXXX", path.Path());
sTemporaryPath = ::mkdtemp(pathName);
if (sTemporaryPath == NULL)
return B_ERROR;
return B_OK;
}
/* static */
status_t
FramesList::DeleteTempPath()
{
// Delete the folder on disk
if (sTemporaryPath != NULL) {
BEntry(sTemporaryPath).Remove();
free(sTemporaryPath);
sTemporaryPath = NULL;
}
return B_OK;
}
static int
CompareTimestamps(const BitmapEntry* A, const BitmapEntry* B)
{
return A->TimeStamp() > B->TimeStamp();
}
status_t
FramesList::AddItemsFromDisk()
{
BDirectory dir(Path());
BEntry entry;
while (dir.GetNextEntry(&entry) == B_OK) {
bigtime_t timeStamp = (bigtime_t)strtoull(entry.Name(), NULL, 10);
BString fullName;
fullName << Path() << "/" << entry.Name();
BitmapEntry* bitmapEntry =
new (std::nothrow) BitmapEntry(fullName, timeStamp);
BObjectList<BitmapEntry>::AddItem(bitmapEntry);
}
// Sort items based on timestamps
SortItems(CompareTimestamps);
return B_OK;
}
BitmapEntry*
FramesList::Pop()
{
return BObjectList<BitmapEntry>::RemoveItemAt(int32(0));
}
BitmapEntry*
FramesList::ItemAt(int32 index) const
{
return BObjectList<BitmapEntry>::ItemAt(index);
}
BitmapEntry*
FramesList::ItemAt(int32 index)
{
return BObjectList<BitmapEntry>::ItemAt(index);
}
int32
FramesList::CountItems() const
{
return BObjectList<BitmapEntry>::CountItems();
}
/* static */
const char*
FramesList::Path()
{
return sTemporaryPath;
}
status_t
FramesList::WriteFrames(const char* path)
{
uint32 i = 0;
status_t status = B_OK;
while (CountItems() > 0) {
BString fileName;
fileName.SetToFormat("frame_%07" B_PRIu32 ".bmp", i + 1);
BitmapEntry* entry = Pop();
BString fullPath(path);
fullPath.Append("/").Append(fileName.String());
BBitmap* bitmap = entry->Bitmap();
status = FramesList::WriteFrame(bitmap, entry->TimeStamp(), fullPath);
delete bitmap;
delete entry;
if (status != B_OK)
break;
i++;
}
return status;
}
// BitmapEntry
BitmapEntry::BitmapEntry(const BString& fileName, bigtime_t time)
:
fFileName(fileName),
fFrameTime(time)
{
}
BitmapEntry::~BitmapEntry()
{
if (fFileName != "")
BEntry(fFileName).Remove();
}
BBitmap*
BitmapEntry::Bitmap()
{
if (fFileName == "")
return NULL;
return BTranslationUtils::GetBitmapFile(fFileName);
}
void
BitmapEntry::Replace(BBitmap* bitmap)
{
if (fFileName != "") {
FramesList::WriteFrame(bitmap, TimeStamp(), fFileName);
delete bitmap;
}
}
bigtime_t
BitmapEntry::TimeStamp() const
{
return fFrameTime;
}
/* static */
status_t
FramesList::WriteFrame(BBitmap* bitmap, bigtime_t frameTime, const BString& fileName)
{
// Does not take ownership of the passed BBitmap.
if (sTranslatorRoster == NULL) {
sTranslatorRoster = BTranslatorRoster::Default();
}
if (sTranslatorRoster == NULL) {
std::cerr << "BitmapEntry::WriteFrame(): BTranslatorRoster::Default() returned NULL" << std::endl;
return B_NO_MEMORY;
}
BBitmap *tempBitmap = new (std::nothrow) BBitmap(*bitmap);
if (tempBitmap == NULL) {
std::cerr << "BitmapEntry::WriteFrame(): cannot create bitmap" << std::endl;
return B_NO_MEMORY;
}
BBitmapStream bitmapStream(tempBitmap);
translator_info translatorInfo;
status_t status = sTranslatorRoster->Identify(&bitmapStream, NULL,
&translatorInfo, 0, NULL, kBitmapFormat);
if (status != B_OK) {
std::cerr << "BitmapEntry::WriteFrame(): cannot identify bitmap stream: " << ::strerror(status) << std::endl;
return status;
}
BFile outFile;
status = outFile.SetTo(fileName.String(), B_WRITE_ONLY|B_CREATE_FILE);
if (status != B_OK) {
std::cerr << "BitmapEntry::WriteFrame(): cannot create file" << ::strerror(status) << std::endl;
return status;
}
status = sTranslatorRoster->Translate(&bitmapStream,
&translatorInfo, NULL, &outFile, kBitmapFormat);
if (status != B_OK)
std::cerr << "BitmapEntry::WriteFrame(): cannot translate bitmap: " << ::strerror(status) << std::endl;
return status;
}