2010-03-07 136 views
0

我有一个2884765579字节文件。这双具有这种功能,它返回数检查:seekg()神秘失败

size_t GetSize() { 
     const size_t current_position = mFile.tellg(); 
     mFile.seekg(0, std::ios::end); 
     const size_t ret = mFile.tellg(); 
     mFile.seekg(current_position); 
     return ret; 
    } 

我然后执行:

mFile.seekg(pos, std::ios::beg); 
// pos = 2883426827, which is < than the file size, 2884765579 

此设置failbit。 errno未更改。我可以采取哪些措施来解决此问题?


绝对相信说:

  • 的文件大小是真的2884765579
  • pos真的2884765579
  • 的failbit未.seekg之前设置()
  • 失败位在.seekg()后面设置,并且在
  • ,之间没有其他调用10
  • 打开文件与二进制标志

编辑:万一有人运行到同样的问题..使用此代码,我写了许多头痛少(仅在Windows工作)为您:

class BinaryIFile 
{ 
public: 
    BinaryIFile(const string& path) : mPath(path), mFileSize(0) { 
     mFile = open(path.c_str(), O_RDONLY | O_BINARY); 

     if (mFile == -1) 
      FATAL(format("Cannot open %s: %s") % path.c_str() % strerror(errno)); 
    } 
    ~BinaryIFile() { 
     if (mFile != -1) 
      close(mFile); 
    } 

    string GetPath() const { return mPath; } 
    int64 GetSize() { 
     if (mFileSize) 
      return mFileSize; 

     const int64 current_position = _telli64(mFile); 
     _lseeki64(mFile, 0, SEEK_END); 
     mFileSize = _telli64(mFile); 
     _lseeki64(mFile, current_position, SEEK_SET); 

     return mFileSize; 
    } 

    int64 Read64() { return _Read<int64>(); } 
    int32 Read32() { return _Read<int32>(); } 
    int16 Read16() { return _Read<int16>(); } 
    int8 Read8() { return _Read<int8>(); } 
    float ReadFloat() { return _Read<float>(); } 
    double ReadDouble() { return _Read<double>(); } 

    void Skip(int64 bytes) { _lseeki64(mFile, bytes, SEEK_CUR); } 
    void Seek(int64 pos) { _lseeki64(mFile, pos, SEEK_SET); } 
    int64 Tell() { return _telli64(mFile); } 

    template <class T> 
    T Read() { return _Read<T>(); } 

    void Read(char *to, size_t size) { 
     const int ret = read(mFile, (void *)to, size); 
     if ((int)size != ret) 
      FATAL(format("Read error: attempted to read %d bytes, read() returned %d, errno: %s [we are at offset %d, file size is %d]") % size % ret % strerror(errno) % Tell() % GetSize()); 
    } 

    template <class T> 
    BinaryIFile& operator>>(T& val) { val = _Read<T>(); return *this; } 

private: 
    const string mPath; 
    int mFile; 
    int64 mFileSize; 

    template <class T> 
    T _Read() { T ret; if (sizeof(ret) != read(mFile, (void *)&ret, sizeof(ret))) FATAL("Read error"); return ret; } 
}; 
+0

'pos'是什么类型? – jamesdlin 2010-03-07 03:05:22

+0

现在真正的问题是:你如何在Windows上获得64位文件位置(除了切换到64位操作系统)。我无法帮到那里,对不起。 – Tronic 2010-03-07 03:10:06

+0

是的,那是你的问题。带有一个参数的'seekg'需要一个'streampos'参数,'seekg'有两个'streamoff'参数。后者必须签名。 – jamesdlin 2010-03-07 03:13:09

回答

2

您可以在给定位置之前看到kg,所以pos被签名。尝试使用大小为0x7fffffff和0x80ffffff的文件,看看后者是否触发问题,这是我的猜测。

+0

哇谢谢我没有想到这一点!你知道是否有64位寻道功能?我知道有C,seek64或类似的(不是标准的),但是C++ - Windows呢? – 2010-03-07 03:08:37

+0

在C++中,64位版本可能(并可能会)通过重载实现,因此您可以先尝试使用64位类型来查看您的实现是否提供了它们。 – jamesdlin 2010-03-07 03:11:46

+0

不是Windows上的专家,但我猜你将不得不使用他们的操作系统专用接口。他们在网上有相当广泛的文件。 – paul 2010-03-07 03:13:21