以编程方式LZMA解​​压缩静态LZMA压缩文件

时间:2012-02-09 22:17:20

标签: objective-c c ios lzma

我是LZMA解​​压缩我之前使用lzma e <infile> <outfile> -lc0 -lp2从终端压缩并导入到我的项目的资源文件。但是,当应用于此文件时,LzmaDec_DecodeToBuf在第一次迭代中返回1,即LZMA数据错误。 (此时inLen始终为5outLen0。)

为什么?

我的代码是:

SRes static decompress(FILE *inFile, FILE *outFile)
{
  // Position the inFile pointer at the start.
  fseek(inFile, 0, SEEK_SET);

  // Read in LZMA properties (5 bytes) and uncompressed size (8 bytes, little-endian) to header.
  char unsigned header[LZMA_PROPS_SIZE+8];
  fgets(header, sizeof(header), inFile);
  CLzmaDec state;
  LzmaDec_Construct(&state);
  SRes res = LzmaDec_Allocate(&state, header, LZMA_PROPS_SIZE, &SzAllocForLzma);

  if (res != SZ_OK) {
    // Free all allocated structures.
    LzmaDec_Free(&state, &SzAllocForLzma);
    return res;
  }

  char unsigned inBuf[IN_BUF_SIZE];
  char unsigned outBuf[OUT_BUF_SIZE];
  LzmaDec_Init(&state);

  ELzmaStatus status;
  long unsigned outLen = sizeof(outBuf);
  long unsigned inLen = sizeof(inBuf);
  long unsigned inPos = ftell(inFile);

  while (fgets(inBuf, sizeof(inBuf), inFile) != NULL) {
    inLen = MIN(sizeof(inBuf), MAX(ftell(inFile)-inPos, 0));
    outLen = sizeof(outBuf);

    SRes res = LzmaDec_DecodeToBuf(&state,
                                   outBuf,
                                   &outLen,
                                   inBuf,
                                   &inLen,
                                   LZMA_FINISH_ANY,
                                   &status);
// continues...

2 个答案:

答案 0 :(得分:1)

这是一个很难回复的帖子,但我遇到了同样的问题。

问题是标题不应该是您正在解压缩的数据的一部分。解决方案是在读取数据时从 sizeof(标题)而不是 0 开始,并且不要忘记通过 sizeof调整它的总长度(标题)以及。

答案 1 :(得分:0)

您确定输入不是7zArchive吗?这需要调用SzArEx_Open和SzArEx_Extract。