繁体   English   中英

内存映射文件问题

[英]Memory mapped file problems

在我的C ++代码中,我需要将大量数据写入文件,并且我想使用boost映射文件而不是普通文件。 只有当我完成所有数据写入内存后,我才想一次将映射的文件转储到磁盘上。

我在Windows Server 2008 R2上使用Visual Studio 2010并提升了1.58。

我从未使用过映射文件,因此我尝试编译了boost文档上的示例

#include <iostream>
#include <fstream>
#include <boost/interprocess/file_mapping.hpp>
#include <boost/interprocess/mapped_region.hpp>


int main(int argc, char** argv) 
{
    using namespace boost::interprocess;

const char* fileName = "C:\\logAcq\\test.bin";
const std::size_t fileSize = 10000;

std::cout << "create file" << std::endl;

try
{
    file_mapping::remove(fileName);
    std::filebuf fbuf;
    fbuf.open(fileName, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::binary);

    std::cout << "set size" << std::endl;
    fbuf.pubseekoff(fileSize-1, std::ios_base::beg);
    fbuf.sputc(0);

    std::cout << "remove on exit" << std::endl;
    struct file_remove
    {
        file_remove(const char* fileName)
            :fileName_(fileName) {}
        ~file_remove(){ file_mapping::remove(fileName_); }
        const char *fileName_;
    }remover(fileName);

    std::cout << "create file mapping" << std::endl;
    file_mapping m_file(fileName, read_write);

    std::cout << "map the whole file" << std::endl;
    mapped_region region(m_file, read_write);

    std::cout << "get the address" << std::endl;
    void* addr = region.get_address();
    std::size_t size = region.get_size();

    std::cout << "write all memory to 1" << std::endl;
    memset(addr, 1, size);
}
catch (interprocess_exception &ex) 
{
    fprintf(stderr, "Exception %s\n", ex.what());
    fflush(stderr);
    system("PAUSE");

    return 0;
}

system("PAUSE");

return 0;
}

但我例外

异常文件的卷已在外部更改,因此打开的文件不再有效。

当我创建区域时

“ mapped_region区域(m_file,读_写)”

任何帮助表示赞赏。

谢谢

异常文件的卷已在外部更改,因此打开的文件不再有效。

强烈建议文件在映射时被另一个程序更改。 并且错误消息指示更改恰好以不允许的方式影响了大小。

避免其他程序写入文件,或避免进行适当的同步和共享注意事项(例如,不要更改大小,或仅增大大小等)。

更新

添加的SSCCE确认您在映射时保持文件打开:

您需要在映射文件之前关闭fbuf 另外,您需要先删除映射,然后才能删除它。

工作样本:

生活在Coliru

#include <iostream>
#include <fstream>
#include <boost/interprocess/file_mapping.hpp>
#include <boost/interprocess/mapped_region.hpp>

int main() {
    using namespace boost::interprocess;

    const char *fileName = "test.bin";
    const std::size_t fileSize = 10000;

    std::cout << "create file " << fileName << std::endl;

    try {
        file_mapping::remove(fileName);
        {
            std::filebuf fbuf;
            fbuf.open(fileName, std::ios_base::in | std::ios_base::out | std::ios_base::trunc | std::ios_base::binary);

            std::cout << "set size" << std::endl;
            fbuf.pubseekoff(fileSize - 1, std::ios_base::beg);
            fbuf.sputc(0);
        }

        std::cout << "remove on exit" << std::endl;
        struct file_remove {
            file_remove(const char *fileName) : fileName_(fileName) {}
            ~file_remove() { file_mapping::remove(fileName_); }
            const char *fileName_;
        } remover(fileName);

        {
            std::cout << "create file mapping" << std::endl;
            file_mapping m_file(fileName, read_write);

            std::cout << "map the whole file" << std::endl;
            mapped_region region(m_file, read_write);

            std::cout << "get the address" << std::endl;
            void *addr = region.get_address();
            std::size_t size = region.get_size();

            std::cout << "write all memory to 1" << std::endl;
            memset(addr, 1, size);
        }
    } catch (interprocess_exception &ex) {
        fprintf(stderr, "Exception %s\n", ex.what());
        fflush(stderr);
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM