2

我正在尝试与 ODB 建立一对多的关系。我基本上是在尝试重新创建 https://www.codesynthesis.com/products/odb/doc/manual.xhtml#6.2.2中的示例

我必须使用std::weak_ptr关系的一方面,以避免循环所有权问题。但是,我的非常简单的示例代码无法编译,因为 ODB 似乎不能很好地与 std::weak_ptr 配合使用。

在我的例子中,everyBar有一个Foo,而 eachFoo有多个Bars。这是我的代码:

#include <odb/core.hxx>
#include <string>
#include <memory>
#include <vector>

// Forward
class Foo;

#pragma db object
class Bar {
public:
    // A Bar has exactly *one* Foo
    #pragma db not_null
    std::shared_ptr<Foo> cfg;

private:
    #pragma db id auto
    unsigned long id_;
    friend class odb::access;
};

#pragma db object
class Foo {
public:
    // A Foo has multiple Bars
    // Using std::weak_ptr here instead of std::shared_ptr to avoid circular
    // ownership
    #pragma db value_not_null inverse(cfg)
    std::vector<std::weak_ptr<Bar>> entries;

private:
    #pragma db id auto
    unsigned long id_;
    friend class odb::access;
};

int main() {}

我生成数据库代码:

odb --std c++11 --database sqlite --generate-query --generate-schema --at-once main.hpp

我这样编译:

g++ --std=c++11 main.hpp main-odb.cxx

(我知道在链接时会崩溃——我只是想让它编译。)

我的编译器(GCC 7)告诉我:

main-odb.cxx: In static member function ‘static void odb::access::object_traits_impl<Foo, (odb::database_id)1u>::entries_traits::init(odb::access::object_traits_impl<Foo, (odb::database_id)1u>::entries_traits::value_type&, const odb::access::object_traits_impl<Foo, (odb::database_id)1u>::entries_traits::data_image_type&, odb::database*)’:
main-odb.cxx:794:43: error: no matching function for call to ‘std::weak_ptr<Bar>::weak_ptr(odb::object_traits<Bar>::pointer_type)’
             obj_traits::object_type > (id));
                                           ^
In file included from /usr/include/c++/5/memory:82:0,
                 from main.hpp:3,
                 from main-odb.hxx:16,
                 from main-odb.cxx:7:
/usr/include/c++/5/bits/shared_ptr.h:492:2: note: candidate: template<class _Tp1, class> std::weak_ptr<_Tp>::weak_ptr(std::weak_ptr<_Tp1>&&)
  weak_ptr(weak_ptr<_Tp1>&& __r) noexcept
  ^
/usr/include/c++/5/bits/shared_ptr.h:492:2: note:   template argument deduction/substitution failed:
main-odb.cxx:794:43: note:   mismatched types ‘std::weak_ptr<_Tp>’ and ‘odb::object_traits<Bar>::pointer_type {aka Bar*}’
             obj_traits::object_type > (id));

我跳过了另外三个候选人。重要的部分:ODB 尝试在某个地方std::weak_ptr<Bar>从 a创建 a Bar *,这显然是不可能的。它必须从std::shared_ptr<Bar>. 但是,ODB 文档明确表示应该(而且实际上必须)std::weak_ptr在这些情况下使用。

我究竟做错了什么?

4

1 回答 1

1

好的,我想出了一个解决方案(不确定它是否是最好的解决方案):

您可以强制 ODB 使用std::shared_ptr<Bar>而不是Bar *到处使用。您可以通过将您的类定义为:

#pragma db object pointer(std::shared_ptr)
class Bar {
...

这样,当std::weak_ptr<Bar>创建 a 时,它是从 a 创建的,这是std::shared_ptr<Bar>有效的。您还可以指定要在命名空间或全局范围内使用的指针类型,请参阅https://www.codesynthesis.com/products/odb/doc/manual.xhtml#3.3

于 2018-08-02T13:16:41.947 回答