aboutsummaryrefslogtreecommitdiff
path: root/odb/boost/smart-ptr/lazy-ptr.txx
blob: d9ec0b5187d247bd3d2238858a206e98d2ffae2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// file      : odb/boost/smart-ptr/lazy-ptr.txx
// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

namespace odb
{
  namespace boost
  {
    //
    // lazy_shared_ptr
    //

    template <class T>
    template <class Y>
    bool lazy_shared_ptr<T>::
    equal (const lazy_shared_ptr<Y>& r) const
    {
      bool t1 (!p_ == loaded ());
      bool t2 (!r.p_ == r.loaded ());

      // If both are transient, then compare the underlying pointers.
      //
      if (t1 && t2)
        return p_ == r.p_;

      // If one is transient and the other is persistent, then compare
      // the underlying pointers but only if they are non NULL. Note
      // that an unloaded persistent object is always unequal to a
      // transient object.
      //
      if (t1 || t2)
        return p_ == r.p_ && p_;

      // If both objects are persistent, then we compare databases and
      // object ids.
      //
      typedef typename object_traits<T>::object_type object_type1;
      typedef typename object_traits<Y>::object_type object_type2;

      return i_.database () == r.i_.database () &&
        object_id<object_type1> () == r.template object_id<object_type2> ();
    }
  }
}