aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/smart-ptr/lazy-ptr.txx
blob: 23235360b8aa890d805e80ade954aaae11ed8af1 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// file      : odb/qt/smart-ptr/lazy-ptr.txx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

template <class T>
template <class X>
bool QLazySharedPointer<T>::
equal (const QLazySharedPointer<X>& 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 odb::object_traits<T>::object_type object_type1;
  typedef typename odb::object_traits<X>::object_type object_type2;

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

//
// QLazyWeakPointer
//

template <class T>
template <class X>
bool QLazyWeakPointer<T>::
equal (const QLazyWeakPointer<X>& r) const
{
  if (isNull () && r.isNull ())
    return true;

  QLazySharedPointer<T> sp1 (toStrongRef ());
  QLazySharedPointer<T> sp2 (r.toStrongRef ());

  // If either one has expired, they are not equal.
  //
  if (!sp1 || !sp2)
    return false;

  return sp1.equal (sp2);
}

template <class T>
template <class X>
bool QLazyWeakPointer<T>::
equal (const QLazySharedPointer<X>& r) const
{
  if (isNull () && r.isNull ())
    return true;

  QLazySharedPointer<T> sp (toStrongRef ());

  // If the weak pointer has expired, they are not equal.
  //
  if (!sp)
    return false;

  return r.equal (sp);
}

template <class T>
QLazySharedPointer<T> QLazyWeakPointer<T>::
toStrongRef () const
{
  QSharedPointer<T> sp (p_.toStrongRef ());

  if (sp)
  {
    if (database_type* db = i_.database ())
      return QLazySharedPointer<T> (*db, sp);
    else
      return QLazySharedPointer<T> (sp);
  }
  else
  {
    if (i_)
      return QLazySharedPointer<T> (*i_.database (),
                                    i_.template object_id<T> ());
    else
      return QLazySharedPointer<T> ();
  }
}