aboutsummaryrefslogtreecommitdiff
path: root/odb/no-op-cache-traits.hxx
blob: 84d1c7a53372639b570984bf0a85ed765177c747 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// file      : odb/no-op-cache-traits.hxx
// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_NO_OP_CACHE_TRAITS_HXX
#define ODB_NO_OP_CACHE_TRAITS_HXX

#include <odb/pre.hxx>

#include <odb/traits.hxx>
#include <odb/forward.hxx>
#include <odb/pointer-traits.hxx>

namespace odb
{
  // pointer_cache_type
  //
  // Used to convert an object pointer to the canonical form (non-const),
  // suitable for insertion into the cache.
  //
  template <typename P,
            typename E = typename pointer_traits<P>::element_type,
            typename O = typename object_traits<E>::object_type,
            pointer_kind pk = pointer_traits<P>::kind>
  struct pointer_cache_type
  {
    typedef typename object_traits<O>::pointer_type pointer_type;

    static pointer_type
    convert (const P& p)
    {
      return pointer_traits<P>::const_pointer_cast (p);
    }
  };

  template <typename P, typename T, pointer_kind pk>
  struct pointer_cache_type<P, T, T, pk>
  {
    // If element_type and object_type are the same, then it is already
    // the canonical pointer.
    //
    static const P&
    convert (const P& p) {return p;}
  };

  template <typename P, typename E, typename O>
  struct pointer_cache_type<P, E, O, pk_unique>
  {
    // If the pointer is unique, then casting it can transfer ownership.
    // So return null pointer, which will be ignored down the chain.
    //
    typedef typename object_traits<O>::pointer_type pointer_type;

    static pointer_type
    convert (const P&) {return pointer_type ();}
  };

  template <typename P, typename T>
  struct pointer_cache_type<P, T, T, pk_unique>
  {
    typedef typename object_traits<T>::pointer_type pointer_type;

    static pointer_type
    convert (const P&) {return pointer_type ();}
  };

  // reference_cache_type
  //
  // Used to convert an object reference to the canonical form (non-const),
  // suitable for insertion into the cache.
  //
  template <typename T,
            typename O = typename object_traits<T>::object_type>
  struct reference_cache_type
  {
    static O&
    convert (T& r)
    {
      return const_cast<O&> (r);
    }
  };

  template <typename T>
  struct reference_cache_type<T, T>
  {
    // If the types are the same, then it is already the canonical form.
    //
    static T&
    convert (T& r) {return r;}
  };

  // pointer_cache_traits
  //
  // Caching traits for objects passed by pointer. P should be the canonical
  // pointer (non-const).
  //
  template <typename P>
  struct no_op_pointer_cache_traits
  {
    typedef P pointer_type;
    typedef typename pointer_traits<pointer_type>::element_type object_type;
    typedef typename object_traits<object_type>::id_type id_type;
    struct position_type {};

    struct insert_guard
    {
      insert_guard () {}
      insert_guard (const position_type&) {}

      position_type
      position () const {return position_type ();}

      void
      release () {}

      void
      reset (const position_type&) {}
    };

    static position_type
    insert (odb::database&, const id_type&, const pointer_type&)
    {
      return position_type ();
    }

    static position_type
    insert (odb::database&, const pointer_type&) {return position_type ();}

    static pointer_type
    find (odb::database&, const id_type&) {return pointer_type ();}

    static void
    erase (odb::database&, const id_type&) {}

    static void
    erase (const position_type&) {}
  };

  template <typename P>
  struct no_id_pointer_cache_traits
  {
    typedef P pointer_type;
    struct position_type {};

    static position_type
    insert (odb::database&, const pointer_type&)
    {
      return position_type ();
    }
  };

  // reference_cache_traits
  //
  // Caching traits for objects passed by reference. T should be the
  // canonical object type (non-const).
  //
  template <typename T>
  struct no_op_reference_cache_traits
  {
    typedef T object_type;
    typedef typename object_traits<object_type>::id_type id_type;
    struct position_type {};

    struct insert_guard
    {
      insert_guard () {}
      insert_guard (const position_type&) {}

      position_type
      position () const {return position_type ();}

      void
      release () {}

      void
      reset () {}
    };

    static position_type
    insert (odb::database&, const id_type&, object_type&)
    {
      return position_type ();
    }

    static position_type
    insert (odb::database&, object_type&)
    {
      return position_type ();
    }
  };

  template <typename T>
  struct no_id_reference_cache_traits
  {
    typedef T object_type;
    struct position_type {};

    static position_type
    insert (odb::database&, object_type&)
    {
      return position_type ();
    }
  };
}

#include <odb/post.hxx>

#endif // ODB_NO_OP_CACHE_TRAITS_HXX