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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
/* ScummVM Tools
*
* ScummVM Tools is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* .stk/.itk archive creation tool, based on a conf file */
#include <string.h>
#include "compress_gob.h"
struct CompressGob::Chunk {
char name[64];
uint32 size, realSize, offset;
uint8 packed;
Chunk *replChunk;
Chunk *next;
Chunk() : next(0) { }
~Chunk() { delete next; }
};
CompressGob::CompressGob(const std::string &name) : CompressionTool(name, TOOLTYPE_COMPRESSION) {
_execMode = MODE_NORMAL;
_chunks = NULL;
_supportedFormats = AUDIO_NONE;
ToolInput input;
input.format = "*.gob";
_inputPaths.push_back(input);
_shorthelp = "Compresses Gobliiins! data files.";
_helptext =
"\nUsage: " + getName() + " [-o <output path>] [-f] <conf file>\n"
"<conf file> is a .gob file generated extract_gob_stk\n"
"<-f> forces compression for all files\n\n"
"The stick archive (STK/ITK/LTK/JTK) will be created in the directory specified by the '-o' parameter.\n";
}
CompressGob::~CompressGob() {
delete _chunks;
}
void CompressGob::parseExtraArguments() {
if (!_arguments.empty() && _arguments.front() == "-f") {
_execMode |= MODE_FORCE;
_arguments.pop_front();
}
}
void CompressGob::execute() {
Common::File stk;
Common::File gobConf;
uint16 chunkCount;
Common::Filename inpath(_inputPaths[0].path);
// We output with .stk extension, if there is no specific out file
if (_outputPath.empty()) {
_outputPath = inpath;
}
// Open input (config) file
gobConf.open(inpath, "r");
// Read the input into memory
_chunks = readChunkConf(gobConf, inpath, chunkCount);
gobConf.close();
_outputPath.setFullName(inpath.getFullName());
stk.open(_outputPath, "wb");
// Output in compressed format
writeEmptyHeader (stk, chunkCount);
writeBody(&inpath, stk, _chunks);
rewriteHeader(stk, chunkCount, _chunks);
}
/*! \brief Config file parser
* \param gobConf Config file to parse
* \param stk STK/ITK archive file to be created
* \param chunkCount Number of chunks to be written in the archive file
* \return A list of chunks
*
* This function reads the '.gob' config file (generated by extract_gob_stk).
* It creates the output archive file and a list of chunks containing the file
* and compression information.
* In order to have a slightly better compression ration in some cases (Playtoons), it
* also detects duplicate files.
*/
CompressGob::Chunk *CompressGob::readChunkConf(Common::File &gobConf, Common::Filename &stkName, uint16 &chunkCount) {
Chunk *chunks = new Chunk;
Chunk *curChunk = chunks;
Chunk *parseChunk;
Common::File src1;
Common::Filename srcName("");
char buffer[1024];
chunkCount = 1;
// First read: Output filename
gobConf.scanString(buffer);
stkName.setFullName(buffer);
srcName.setFullPath(stkName.getPath());
// Second read: signature
gobConf.scanString(buffer);
std::string signature(buffer);
if (signature == confSTK21)
error("STK21 not yet handled");
else if (signature != confSTK10)
error("Unknown format signature %s", signature.c_str());
print("Checking duplicate files");
// All the other reads concern file + compression flag
gobConf.scanString(buffer);
while (!gobConf.eos()) {
strcpy(curChunk->name, buffer);
srcName.setFullName(buffer);
gobConf.scanString(buffer);
if ((strcmp(buffer, "1") == 0 )|| (_execMode & MODE_FORCE))
curChunk->packed = true;
else
curChunk->packed = false;
src1.open(srcName, "rb");
src1.seek(0, SEEK_END);
// if file is too small, force 'Store' method
if ((curChunk->realSize = src1.pos()) < 8)
curChunk->packed = 0;
parseChunk = chunks;
while (parseChunk != curChunk) {
if ((parseChunk->realSize == curChunk->realSize) & (parseChunk->packed != 2)) {
if (strcmp(parseChunk->name, curChunk->name) == 0)
error("Duplicate filename found in conf file: %s", parseChunk->name);
srcName.setFullName(parseChunk->name);
if (filcmp(src1, srcName)) {
// If files are identical, use the same compressed chunk instead of re-compressing the same thing
curChunk->packed = 2;
curChunk->replChunk = parseChunk;
print("Identical files : %s %s (%d bytes)", curChunk->name, parseChunk->name, curChunk->realSize);
break;
}
}
parseChunk = parseChunk->next;
}
src1.close();
gobConf.scanString(buffer);
if (!gobConf.eos()) {
curChunk->next = new Chunk;
curChunk = curChunk->next;
chunkCount++;
}
}
return chunks;
}
/*! \brief Write an empty header to the STK archive
* \param stk STK/ITK archive file
* \param chunkCount Number of chunks to be written in the archive file
*
* This function writes an empty header in the STK archive. This is required as
* the header length is variable and depends on the number of chunks to be written
* in the archive file.
*
* This header will be overwritten just before the end of the program execution
*/
void CompressGob::writeEmptyHeader(Common::File &stk, uint16 chunkCount) {
for (uint32 count = 0; count < 2 + (uint32) (chunkCount * 22); count++)
stk.writeByte(0);
return;
}
/*! \brief Write the body of the STK archive
* \param stk STK/ITK archive file
* \param chunks Chunk list
*
* This function writes the body of the STK archive by storing or compressing
* (or skipping duplicate files) the files. It also updates the chunk information
* with the size of the chunk in the archive, the compression method (if modified),
* ...
*/
void CompressGob::writeBody(Common::Filename *inpath, Common::File &stk, Chunk *chunks) {
Chunk *curChunk = chunks;
Common::File src;
while (curChunk) {
inpath->setFullName(curChunk->name);
src.open(*inpath, "rb");
if (curChunk->packed == 2)
print("Identical file %12s\t(compressed size %d bytes)", curChunk->name, curChunk->replChunk->size);
curChunk->offset = stk.pos();
if (curChunk->packed == 1) {
curChunk->size = writeBodyPackFile(stk, src);
if (curChunk->size >= curChunk->realSize) {
// If compressed size >= realsize, compression is useless
// => Store instead
curChunk->packed = 0;
stk.seek(curChunk->offset, SEEK_SET);
src.rewind();
} else
print("Compressing %12s\t%d -> %d bytes", curChunk->name, curChunk->realSize, curChunk->size);
}
if (curChunk->packed == 0) {
curChunk->size = writeBodyStoreFile(stk, src);
print("Storing %12s\t%d bytes", curChunk->name, curChunk->size);
}
curChunk = curChunk->next;
}
}
/*! \brief Rewrites the header of the archive file
* \param stk STK/ITK archive file
* \param chunkCount Number of chunks
* \param chunks List of chunks
*
* This function rewrites the header of the archive, replacing dummy values
* by the one computed during execution.
* The structure of the header is the following :
* + 2 bytes : numbers of files archived in the .stk/.itk
* Then, for each files :
* + 13 bytes : the filename, terminated by '\0'. In original, there's
* garbage after if the filename has not the maximum length
* + 4 bytes : size of the chunk
* + 4 bytes : start position of the chunk in the file
* + 1 byte : If 0 : not compressed, if 1 : compressed
*
* The duplicate files are defined using the same information
* as the one of the replacement file.
*/
void CompressGob::rewriteHeader(Common::File &stk, uint16 chunkCount, Chunk *chunks) {
uint16 i;
char buffer[1024];
Chunk *curChunk = chunks;
stk.rewind();
buffer[0] = chunkCount & 0xFF;
buffer[1] = chunkCount >> 8;
stk.write(buffer, 2);
// TODO : Implement STK21
while (curChunk) {
for (i = 0; i < 13; i++)
if (i < strlen(curChunk->name))
buffer[i] = curChunk->name[i];
else
buffer[i] = '\0';
stk.write(buffer, 13);
if (curChunk->packed == 2)
{
buffer[0] = curChunk->replChunk->size;
buffer[1] = curChunk->replChunk->size >> 8;
buffer[2] = curChunk->replChunk->size >> 16;
buffer[3] = curChunk->replChunk->size >> 24;
buffer[4] = curChunk->replChunk->offset;
buffer[5] = curChunk->replChunk->offset >> 8;
buffer[6] = curChunk->replChunk->offset >> 16;
buffer[7] = curChunk->replChunk->offset >> 24;
buffer[8] = curChunk->replChunk->packed;
} else {
buffer[0] = curChunk->size;
buffer[1] = curChunk->size >> 8;
buffer[2] = curChunk->size >> 16;
buffer[3] = curChunk->size >> 24;
buffer[4] = curChunk->offset;
buffer[5] = curChunk->offset >> 8;
buffer[6] = curChunk->offset >> 16;
buffer[7] = curChunk->offset >> 24;
buffer[8] = curChunk->packed;
}
stk.write(buffer, 9);
curChunk = curChunk->next;
}
}
/*! \brief Stores a file in the archive file
* \param stk STK/ITK archive file
* \param src File to be stored
* \return Size of the file stored
*
* This function stores a file in the STK archive
*/
uint32 CompressGob::writeBodyStoreFile(Common::File &stk, Common::File &src) {
int count;
char buffer[4096];
uint32 tmpSize = 0;
do {
count = src.read_noThrow(buffer, 4096);
stk.write(buffer, count);
tmpSize += count;
} while (count == 4096);
return tmpSize;
}
/*! \brief Compress a file in the archive file
* \param stk STK/ITK archive file
* \param src File to be stored
* \return Size of the resulting compressed chunk
*
* This function compress a file in the STK archive
*/
uint32 CompressGob::writeBodyPackFile(Common::File &stk, Common::File &src) {
byte dico[4114];
byte writeBuffer[17];
uint32 counter;
uint16 dicoIndex;
uint32 unpackedIndex, size;
uint8 cmd;
uint8 buffIndex, cpt;
uint16 resultcheckpos;
byte resultchecklength;
size = src.size();
byte *unpacked = new byte [size + 1];
memset(dico, 0x20, 4114);
memset(unpacked, 0, size + 1);
src.read_throwsOnError(unpacked, size);
writeBuffer[0] = size & 0xFF;
writeBuffer[1] = size >> 8;
writeBuffer[2] = size >> 16;
writeBuffer[3] = size >> 24;
stk.write(writeBuffer, 4);
// Size is already checked : small files (less than 8 characters)
// are not compressed, so copying the first three bytes is safe.
dicoIndex = 4078;
dico[dicoIndex] = unpacked[0];
dico[dicoIndex+1] = unpacked[1];
dico[dicoIndex+2] = unpacked[2];
dicoIndex += 3;
// writeBuffer[0] is reserved for the command byte
writeBuffer[1] = unpacked[0];
writeBuffer[2] = unpacked[1];
writeBuffer[3] = unpacked[2];
// Force the 3 first operation bits to 'copy character'
cmd = (1 << 3) - 1;
counter = size - 3;
unpackedIndex = 3;
cpt = 3;
buffIndex = 4;
size=4;
resultcheckpos = 0;
resultchecklength = 0;
while (counter>0) {
if (!checkDico(unpacked, unpackedIndex, counter, dico, dicoIndex, resultcheckpos, resultchecklength)) {
dico[dicoIndex] = unpacked[unpackedIndex];
writeBuffer[buffIndex] = unpacked[unpackedIndex];
// set the operation bit : copy character
cmd |= (1 << cpt);
unpackedIndex++;
dicoIndex = (dicoIndex + 1) % 4096;
buffIndex++;
counter--;
} else {
// Copy the string in the dictionary
for (int i = 0; i < resultchecklength; i++)
dico[((dicoIndex + i) % 4096)] = dico[((resultcheckpos + i) % 4096)];
// Write the copy string command
writeBuffer[buffIndex] = resultcheckpos & 0xFF;
writeBuffer[buffIndex + 1] = ((resultcheckpos & 0x0F00) >> 4) + (resultchecklength - 3);
// Do not set the operation bit : copy string from dictionary
// cmd |= (0 << cpt);
unpackedIndex += resultchecklength;
dicoIndex = (dicoIndex + resultchecklength) % 4096;
resultcheckpos = (resultcheckpos + resultchecklength) % 4096;
buffIndex += 2;
counter -= resultchecklength;
}
// The command byte is complete when the file is entirely compressed, or
// when the 8 operation bits are set.
if ((cpt == 7) | (counter == 0)) {
writeBuffer[0] = cmd;
stk.write(writeBuffer, buffIndex);
size += buffIndex;
buffIndex = 1;
cmd = 0;
cpt = 0;
} else
cpt++;
}
delete[] unpacked;
return size;
}
/*! \brief Compare a file to a file defined in a chunk
* \param src1 File to be compared
* \param compChunk Chunk containing information on second file to be compared
* \return whether they are identical or not.
*
* This function compares a file to another defined in a chunk. The file sizes
* are already tested outside the function.
*/
bool CompressGob::filcmp(Common::File &src1, Common::Filename &stkName) {
uint16 readCount;
bool checkFl = true;
char buf1[4096];
char buf2[4096];
Common::File src2;
src1.rewind();
src2.open(stkName.getFullPath(), "rb");
do {
readCount = src1.read_noThrow(buf1, 4096);
src2.read_noThrow(buf2, 4096);
for (int i = 0; checkFl & (i < readCount); i++)
if (buf1[i] != buf2[i])
checkFl = false;
} while (checkFl & (readCount == 4096));
src1.rewind();
src2.rewind();
return checkFl;
}
/*! \brief Compare a file to a file defined in a chunk
* \param unpacked Buffer being compressed
* \param unpackedIndex Current 'read' position in this buffer
* \param counter Number of bytes still to be compressed in the file
* \param dico Dictionary
* \param currIndex Current 'write' position in the dictionary (used to avoid dictionary collision)
* \param pos Position of the better match found, if any
* \param length Length of the better match found, if any
* \return whether a match has been found or not or not.
*
* This function search in the dictionary for matches with the characters still to be compressed.
* 'A match' is when at least three characters of the buffer (comparing from the current 'read' position)
* are found in the dictionary. The match lengths are limited to 18 characters, as the
* length (minus 3) is stored on 4 bits.
*/
bool CompressGob::checkDico(byte *unpacked, uint32 unpackedIndex, int32 counter, byte *dico, uint16 currIndex, uint16 &pos, uint8 &length) {
uint16 tmpPos, bestPos;
uint8 tmpLength, bestLength, i;
bestPos = 0;
bestLength = 2;
if (counter < 3)
return false;
for (tmpPos = 0; tmpPos < 0x1000; tmpPos++) {
tmpLength = 0;
for (i = 0; ((i < 18) & (i < counter)); i++)
if ((unpacked[unpackedIndex + i] == dico[(tmpPos + i) % 4096]) &
// avoid dictionary collision
(((tmpPos + i) % 4096 != currIndex) | (i == 0)))
tmpLength++;
else
break;
if (tmpLength > bestLength)
{
bestPos = tmpPos;
if ((bestLength = tmpLength) == 18)
break;
}
}
pos = bestPos;
length = bestLength;
if (bestLength > 2)
return true;
else {
length = 0;
return false;
}
}
#ifdef STANDALONE_MAIN
int main(int argc, char *argv[]) {
CompressGob gob(argv[0]);
return gob.run(argc, argv);
}
#endif
|