首页 > 解决方案 > boost文件系统路径中的分段错误

问题描述

我在验证类中有一个成员函数,它为一组文件生成哈希。

尽管当软件到达散列函数时,代码会正确编译,但它会引发段错误。我一直在寻找年龄,我只是看不到它。这似乎与路径向量有关,也可能与复制功能有关。

Program received signal SIGSEGV, Segmentation fault.
0x000055c84fbbc058 in std::vector<boost::filesystem::path, std::allocator<boost::filesystem::path> >::push_back(boost::filesystem::path const&) ()
(gdb) 
Single stepping until exit from function _ZNSt6vectorIN5boost10filesystem4pathESaIS2_EE9push_backERKS2_,
which has no line number information.

Program terminated with signal SIGSEGV, Segmentation fault.

gdb 的输出

下面的代码:

#pragma once
#include <boost/filesystem.hpp>

#include <cryptopp/cryptlib.h>

#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
#include <cryptopp/md5.h>
#include "cryptopp/hex.h"
#include "cryptopp/files.h"

class Verify {
    private:
    typedef std::vector<boost::filesystem::path> vec;
    vec v;
    public:
    bool verify_files();
    bool generate_hash(boost::filesystem::path source);
};

功能实现

bool Verify::generate_hash(boost::filesystem::path source) {
    try {
    if (boost::filesystem::exists(source)) {                                                   //make sure path is valid
      if (boost::filesystem::is_regular_file(source)) {                                        //no regular files
        std::cout << "Please enter base path of directory only." << std::endl;
        return false;
      }
      else if (boost::filesystem::is_directory(source)){                                       //process directory here
        std::cout << "Scanning " << source << std::endl;

        std::copy(boost::filesystem::recursive_directory_iterator(source), boost::filesystem::recursive_directory_iterator(), std::back_inserter(this->v));
        std::sort(v.begin(), v.end());

         for (vec::const_iterator it (v.begin()); it != v.end(); ++it){
           std::string result;
           if (boost::filesystem::is_regular_file(*it)) {
               Weak::MD5 hash;
               FileSource((*it).string().c_str(), true, new HashFilter(hash, new HexEncoder(new StringSink(result), false)));
            }
            std::cout << "Hashing: " << *it << " - " << result << std::endl; 
        }
      } 
    }
    } catch (const boost::filesystem::filesystem_error& e){
        std::cout << e.what() << std::endl;
        return false;
    }
    return true;
}

标签: c++boostsegmentation-fault

解决方案


您的错误在这一行:

std::copy(boost::filesystem::recursive_directory_iterator(source), boost::filesystem::recursive_directory_iterator(), std::back_inserter(this->v));

您应该在此处进行手动循环以进一步调查(如果这不能消除问题)


推荐阅读