6#include <ext/zlib/zlib.h>
53void scanPath(
const string& path, vector<string>& totalFiles) {
56 virtual ~ListFilter() {}
58 bool accept(
const string& pathName,
const string& fileName)
override {
59 if (fileName ==
".")
return false;
60 if (fileName ==
"..")
return false;
61 if (FileSystem::getInstance()->isPath(pathName +
"/" + fileName) ==
true)
return true;
62 auto fileNameLowerCase = StringTools::toLowerCase(fileName);
64 if (StringTools::endsWith(fileNameLowerCase,
".ogg") ==
true)
return true;
66 if (StringTools::endsWith(fileNameLowerCase,
".fnt") ==
true)
return true;
68 if (StringTools::endsWith(fileNameLowerCase,
".ico") ==
true)
return true;
69 if (StringTools::endsWith(fileNameLowerCase,
".png") ==
true)
return true;
71 if (StringTools::endsWith(fileNameLowerCase,
".dae") ==
true)
return true;
72 if (StringTools::endsWith(fileNameLowerCase,
".fbx") ==
true)
return true;
73 if (StringTools::endsWith(fileNameLowerCase,
".glb") ==
true)
return true;
74 if (StringTools::endsWith(fileNameLowerCase,
".tm") ==
true)
return true;
76 if (StringTools::endsWith(fileNameLowerCase,
".properties") ==
true)
return true;
78 if (StringTools::endsWith(fileNameLowerCase,
".cl") ==
true)
return true;
79 if (StringTools::endsWith(fileNameLowerCase,
".frag") ==
true)
return true;
80 if (StringTools::endsWith(fileNameLowerCase,
".glsl") ==
true)
return true;
81 if (StringTools::endsWith(fileNameLowerCase,
".vert") ==
true)
return true;
83 if (StringTools::endsWith(fileNameLowerCase,
".tmodel") ==
true)
return true;
85 if (StringTools::endsWith(fileNameLowerCase,
".tscene") ==
true)
return true;
87 if (StringTools::endsWith(fileNameLowerCase,
".tparticle") ==
true)
return true;
89 if (StringTools::endsWith(fileNameLowerCase,
".tterrain") ==
true)
return true;
91 if (StringTools::endsWith(fileNameLowerCase,
".tscript") ==
true)
return true;
93 if (StringTools::endsWith(fileNameLowerCase,
".xml") ==
true)
return true;
95 if (fileName.rfind(
".") == string::npos ||
96 (fileName.rfind(
"/") != string::npos &&
97 fileName.rfind(
".") < fileName.rfind(
"/"))) {
105 ListFilter listFilter;
106 vector<string> files;
108 FileSystem::getInstance()->list(path, files, &listFilter);
110 for (
auto fileName: files) {
111 if (FileSystem::getInstance()->isPath(path +
"/" + fileName) ==
false) {
112 totalFiles.push_back(path +
"/" + fileName);
114 scanPath(path +
"/" + fileName, totalFiles);
119void processFile(
const string& fileName, vector<FileInformation>& fileInformations) {
120 Console::print(
"Processing file: " + fileName);
123 vector<uint8_t> content;
124 FileSystem::getInstance()->getContent(
125 FileSystem::getInstance()->getPathName(fileName),
126 FileSystem::getInstance()->getFileName(fileName),
131 ofstream ofs(
"archive.ta", ofstream::binary | ofstream::app);
132 ofs.seekp(0, ofstream::end);
133 uint64_t fileOffset = ofs.tellp();
136 uint64_t bytesCompressed = 0;
137 uint8_t compressed = 1;
140 if (compressed == 1) {
149 unsigned char in[
CHUNK];
150 unsigned char out[
CHUNK];
153 strm.zalloc = Z_NULL;
155 strm.opaque = Z_NULL;
156 ret = deflateInit(&strm, Z_DEFAULT_COMPRESSION);
158 Console::println(
"processFile(): Error compressing file: Aborting");
163 size_t inPosition = 0;
164 size_t inBytes = content.size();
166 auto inStartPosition = inPosition;
167 for (
size_t i = 0; i <
CHUNK; i++) {
168 if (inPosition == inBytes)
break;
169 in[i] = content[inPosition];
172 strm.avail_in = inPosition - inStartPosition;
173 flush = inPosition == inBytes?Z_FINISH:Z_NO_FLUSH;
178 strm.avail_out =
CHUNK;
180 ret = deflate(&strm, flush);
181 assert(ret != Z_STREAM_ERROR);
182 have =
CHUNK - strm.avail_out;
183 ofs.write((
char*)out, have);
184 bytesCompressed+= have;
185 }
while (strm.avail_out == 0);
186 assert(strm.avail_in == 0);
189 }
while (flush != Z_FINISH);
190 assert(ret == Z_STREAM_END);
193 (void) deflateEnd(&strm);
195 ofs.write((
char*)content.data(), content.size());
201 fileInformation.
name = fileName;
202 fileInformation.
bytes = content.size();
205 fileInformation.
offset = fileOffset;
207 fileInformations.push_back(fileInformation);
210 Console::println(
", processed " + to_string(content.size()) +
" bytes" + (compressed == 1?
", " + to_string(bytesCompressed) +
" bytes compressed":
""));
215 Console::println(
string(
"archive ") + Version::getVersion());
216 Console::println(Version::getCopyright());
220 Console::println(
"Usage: archive");
221 Application::exit(1);
225 Console::println(
"Scanning files");
226 vector<string> files;
231 Console::println(
"Processing files");
235 ofstream ofs(
"archive.ta", ofstream::binary | ofstream::trunc);
240 vector<FileInformation> fileInformations;
241 for (
auto fileName: files) {
247 ofstream ofs(
"archive.ta", ofstream::binary | ofstream::app);
248 ofs.seekp(0, ofstream::end);
249 uint32_t fileInformationOffsetEnd = 0LL;
250 uint64_t fileInformationOffset = ofs.tellp();
251 for (
auto& fileInformation: fileInformations) {
252 uint32_t nameSize = fileInformation.name.size();
253 ofs.write((
char*)&nameSize,
sizeof(nameSize));
254 for (
auto i = 0; i < nameSize; i++) ofs.write(&fileInformation.name[i], 1);
255 ofs.write((
char*)&fileInformation.bytes,
sizeof(fileInformation.bytes));
256 ofs.write((
char*)&fileInformation.compressed,
sizeof(fileInformation.compressed));
257 ofs.write((
char*)&fileInformation.bytesCompressed,
sizeof(fileInformation.bytesCompressed));
258 ofs.write((
char*)&fileInformation.offset,
sizeof(fileInformation.offset));
259 ofs.write((
char*)&fileInformation.executable,
sizeof(fileInformation.executable));
261 ofs.write((
char*)&fileInformationOffsetEnd,
sizeof(fileInformationOffsetEnd));
262 ofs.write((
char*)&fileInformationOffset,
sizeof(fileInformationOffset));
void scanPath(const string &path, vector< string > &totalFiles)
int main(int argc, char **argv)
void processFile(const string &fileName, vector< FileInformation > &fileInformations)
Application base class, please make sure to allocate application on heap to have correct application ...
File system singleton class.
std::exception Exception
Exception base class.
File system file name filter interface.
virtual bool accept(const string &path, const string &file)=0
Accept a file.