aboutsummaryrefslogtreecommitdiff
path: root/common/session/custom/driver.cxx
blob: f37db947a45ae84e74b3c5137507ee292674559f (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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// file      : common/session/custom/driver.cxx
// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

// Test custom session (C++11 only).
//

#include <memory>
#include <cstddef> // std::size_t
#include <cassert>
#include <iostream>

#include <odb/tracer.hxx>
#include <odb/database.hxx>
#include <odb/session.hxx>
#include <odb/transaction.hxx>
#include <odb/details/config.hxx> // ODB_CXX11_*

#include <common/common.hxx>

#include "session.hxx"

#include "test.hxx"
#include "test-odb.hxx"

using namespace std;

using odb::database;
using odb::transaction;

struct counting_tracer: odb::tracer
{
  virtual void
  execute (odb::connection&, const char*) {count++;}
  size_t count;
};

static counting_tracer tracer;

struct failed {};

int
main (int argc, char* argv[])
{
  try
  {
    auto_ptr<database> db (create_database (argc, argv));

    // Simple Tech Ltd.
    //
    {
      shared_ptr<employer> er (new employer ("Simple Tech Ltd", "ST"));

      shared_ptr<employee> john (new employee ("John", "Doe", er));
      shared_ptr<employee> jane (new employee ("Jane", "Doe", er));

      transaction t (db->begin ());

      db->persist (er);
      db->persist (john);
      db->persist (jane);

      t.commit ();
    }

    // Complex Systems Inc.
    //
    {
      shared_ptr<employer> er (new employer ("Complex Systems Inc", "CS"));

      shared_ptr<employee> john (new employee ("John", "Smith", er));
      shared_ptr<employee> jane (new employee ("Jane", "Smith", er));

      transaction t (db->begin ());

      db->persist (er);
      db->persist (john);
      db->persist (jane);

      t.commit ();
    }

    {
      session s;
      shared_ptr<employer> st, cs;
      shared_ptr<employee> ste, cse;

      {
        transaction t (db->begin ());

        st = db->load<employer> ("Simple Tech Ltd");
#ifdef ODB_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGUMENT
        ste = db->load<employee> (st->employees ()[0].object_id ());
#else
        ste = db->load<employee> (st->employees ()[0].object_id<employee> ());
#endif

        // Test object cache.
        //
        shared_ptr<employee> e (st->employees ()[0].load ());
        assert (ste->employer () == st);
        assert (ste == e);

        t.commit ();
      }

      {
        transaction t (db->begin ());

        cs = db->load<employer> ("Complex Systems Inc");
#ifdef ODB_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGUMENT
        cse = db->load<employee> (cs->employees ()[0].object_id ());
#else
        cse = db->load<employee> (cs->employees ()[0].object_id<employee> ());
#endif
        cs->employees ()[0].load ();

        t.commit ();
      }

      cs->symbol ("CSI");

      // Swap employees.
      //
      ste->employer (cs);
      cse->employer (st);
      st->employees ()[0] = cse;
      cs->employees ()[0] = ste;

      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 3);
        t.commit ();
      }

      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 0);
        t.commit ();
      }

      cs->symbol ("COMP");
      st->symbol ("SMPL");

      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 2);
        t.commit ();
      }

      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 0);
        t.commit ();
      }

      // Explicit update.
      //
      cs->symbol ("CS");
      st->symbol ("ST");

      {
        transaction t (db->begin ());
        db->update (cs);
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 1);
        t.commit ();
      }

      // Rollback after update.
      //
      cs->symbol ("CSI");

      try
      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 1);
        throw failed ();
        t.commit ();
      }
      catch (const failed&)
      {
        transaction t (db->begin ());
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 1);
        t.commit ();
      }
    }

    // Test session destruction before transaction is commited.
    //
    {
      transaction t (db->begin ());
      {
        session s;
        shared_ptr<employer> st (db->load<employer> ("Simple Tech Ltd"));
        st->symbol ("STL");
        tracer.count = 0;
        t.tracer (tracer);
        s.flush (*db);
        assert (tracer.count == 1);
      }
      t.commit ();
    }
  }
  catch (const odb::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }
}