3

使用 libzip 时遇到问题。我在 linux 上并且已经使用sudo apt-get install libzip2 libzip-dev(所以它不是最新版本)安装了库。

这是我的代码:

#include <iostream>
#include <zip.h>
#include <unistd.h>
#include <sys/stat.h>

#define ZIP_ERROR 2

using namespace std;

bool isFilePresent(string const& path)
{
    struct stat *buf;
    return(stat(path.c_str(), buf)==0);
}

int main(void)
{
    struct zip *zip;
    struct zip_source *zip_source;
    int err(0);
    string zipFile("filesZip/zipTest");
    string fileToZip("filesToZip/test1");
    string fileToZip2("filesToZip/test2");
    char tmp[] = "filesZip/zipTest\0";

    // Test if the file is present
    if(isFilePresent(zipFile))
    {
        // if(remove(tmp) != 0)
        if(remove(zipFile.c_str()) != 0)
        {
            return ZIP_ERROR;
        }
    }
    // Open a zip archive
    zip = zip_open(zipFile.c_str(), ZIP_CREATE, &err);

    // if there is an error on the opening
    if(err != ZIP_ER_OK)
    {
        cout << "error when opening" << endl;
        return ZIP_ERROR;
    }

    // If the zip file is not open
    if(zip == NULL)
    {
        zip_close(zip);
        cout << "error when zip opens" << endl;
        return ZIP_ERROR;
    }

    // zip_source_file zip a file so that it can be added to the zip
    if((zip_source = zip_source_file(zip, fileToZip.c_str(), (off_t)0, (off_t)0))== NULL)
    {
        zip_close(zip);
        zip_source_free(zip_source);
        cout << "pb when zipping file1" << endl;
        return ZIP_ERROR;
    }

    // Add the zipped file to the zip  
    if(zip_add(zip, fileToZip.c_str(), zip_source)==-1)
    {
        zip_close(zip);
        zip_source_free(zip_source);
        cout << "pb when adding file1" << endl;
        return ZIP_ERROR;
    }

    // zip_source_file zip a file so that it can be added to the zip
    if((zip_source = zip_source_file(zip, fileToZip2.c_str(), (off_t)0, (off_t)0))== NULL)
    {
        zip_close(zip);
        zip_source_free(zip_source);
        cout << "pb when zipping file2" << endl;
        return ZIP_ERROR;
    }

    if(zip_add(zip, fileToZip2.c_str(), zip_source)==-1)
    {
        zip_close(zip);
        zip_source_free(zip_source);
        cout << "pb when adding file2" << endl;
        return ZIP_ERROR;
    }

    // sleep(180);

    // Closing the archive
    zip_close(zip);

    return 0;
}

此代码应该获取 filesToZip 文件夹中的两个文件并将它们压缩到 filesZip 文件夹中的 zipTest 文件中。

为此,首先它检查 zipTest 文件是否已经存在。如果是这样,则将其删除。然后它会打开一个 zip 存档,压缩要添加的文件并将它们添加到存档中,然后再关闭存档。

所以我的问题是:

当 zip 存档文件 Zip/zipTest 不存在时,它就可以正常工作。当 zip 存档文件Zip/zipTest 确实存在时,我得到了一个核心转储。

到目前为止我已经尝试过:

  • 我认为这是因为我使用字符串作为文件名。我尝试使用 char 并没有改变任何东西
  • 然后我认为这是因为删除任务没有完成,然后可能会遇到冲突。所以我在每个函数调用之后都放了 sleep(180) (以秒为单位)。它没有改变任何东西
  • 我还尝试仅将一个文件放入存档中。没有改变任何东西
  • 我跑 gdb 看看发生了什么。当 zip 存档已经存在但不存在时,我都尝试了。
    • 如果存档不存在:一切顺利,直到返回 0,然后我看到程序重新定义了 fileToZip 和 fileToZip2,然后再次返回 0,然后将停止。
    • 如果存档已经存在:它会做同样的事情,但会说找不到当前函数的边界。(我在这里读到这意味着 gdb 没有调试信息并且对此不满意..)

有谁知道我的问题是什么?

4

1 回答 1

4

这是危险的:

bool isFilePresent(string const& path)
{
    struct stat *buf;
    return(stat(path.c_str(), buf)==0);
}

您没有struct stat*为调用函数时写入的随机内存分配任何内存 - 可能会导致崩溃。

尝试这个:

bool isFilePresent(string const& path)
{
    struct stat buf; // memory is allocated on the stack for this object
    return(stat(path.c_str(), &buf)==0); // pass its address to the function
}

它创建一个本地struct stat对象并将其地址传递给函数。

于 2014-10-13T08:31:57.873 回答