Mongodb cxx +虚幻引擎4 - 迭代Cursor

时间:2017-06-20 11:29:41

标签: c++ mongodb cursor unreal-engine4 mongo-cxx-driver

在我的数据库中找到一些文档后,在迭代mongocxx :: cursor时或之后出现错误。

我使用的是Windows 10,虚幻引擎4.16.1和mongodb cxx 3.1.1。

数据库连接设置正确,find函数找到我的文档并返回一个有效的光标。

最终出现在这个例外中:

  

在0x00007FFDED56B698(UE4Editor-Core.dll)中抛出异常   UE4Editor.exe:0xC0000005:访问冲突写入位置   0x0000000000000010。

使用此输出:

2598:0a50 @ 01781390 - LdrpCallTlsInitializers - INFO: Calling TLS callback 00007FFDDC66C154 for DLL "C:\WINDOWS\System32\DriverStore\FileRepository\nvami.inf_amd64_62e8f88c97b34401\nvwgf2umx.dll" at 00007FFDDB780000
[2017.06.20-11.14.46:659][577]LogTemp:Warning: Start new Loop: 1
[2017.06.20-11.14.46:660][577]LogTemp:Warning: Document: { "_id" : { "$oid" : "5940fc17830f7a364c003f42" }, "Name" : "Mug" }

使用此callstack: Error in Visual Studio

我想知道为什么错误总是出现在虚幻的宏中。 奇怪的是,每次都不会发生这种错误。有时它不会崩溃。 我希望你能弄清楚我的错误是什么。

这是我加载和显示数据的功能。 " MongoDBPool"是一个成员变量。

void ARMongoDB::BeginPlay()
{
    Super::BeginPlay();
    if (IPAdress.IsEmpty() || Port.IsEmpty())
    {
        UE_LOG(LogTemp, Warning, TEXT("Reconfigure the Port and IP-Adress"));
        return;
    }
    FString MongoDBAdress = "mongodb://" + IPAdress + ":" + Port;

    mongocxx::instance Instance{}; // This should be done only once.
    mongocxx::uri Uri(TCHAR_TO_UTF8(*MongoDBAdress));
    MongoDBPool.reset(new mongocxx::pool(Uri));

    if (!MongoDBPool) return;
    auto Client = MongoDBPool->acquire();
    mongocxx::database Database = (*Client)["UE4DB"];
    mongocxx::collection Collection = Database["UE4Col"];

    // Create the query filter
    auto SearchFilter = bsoncxx::builder::stream::document{} << bsoncxx::builder::stream::finalize;

    // Create the find options with the projection
    mongocxx::options::find SearchOptions{};
    //SearchOptions.no_cursor_timeout();
    //SearchOptions.batch_size(10);
    SearchOptions.sort(bsoncxx::builder::stream::document{} << "Name" << 1 << bsoncxx::builder::stream::finalize);
    SearchOptions.projection(bsoncxx::builder::stream::document{} << "Name" << 1 << bsoncxx::builder::stream::finalize);

    // READ DOCUMENT FROM MONGODB
    auto Cursor = Collection.find(SearchFilter.view(), SearchOptions);

    int i = 0;
    UE_LOG(LogTemp, Warning, TEXT("Entering Loop: %i"), i);

    //UE_LOG(LogTemp, Warning, TEXT("Length: %i"), std::distance(Cursor.begin(), Cursor.end()));

    for (auto && Doc : Cursor) {

        UE_LOG(LogTemp, Warning, TEXT("Start new Loop: %i"), ++i);
        if (Doc.empty())
        {
            UE_LOG(LogTemp, Warning, TEXT("Doc is empty"));
        }
        else
        {
            std::string string = bsoncxx::to_json(Doc);
            FString DocJson = string.c_str();
            UE_LOG(LogTemp, Warning, TEXT("Document: %s"), *DocJson);
        }


        UE_LOG(LogTemp, Warning, TEXT("Exiting Loop: %i"), ++i);
    }

    UE_LOG(LogTemp, Warning, TEXT("%i"), ++i);
    return;
}

如果我没有访问for循环中的Doc变量,程序将不会崩溃。所以必须有一个错误。

感谢您的帮助:*

0 个答案:

没有答案