aboutsummaryrefslogtreecommitdiff
path: root/common/session/custom/driver.cxx
blob: 1ec7cbbf0090cbef63ee4f219eb4370a2f7c997d (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
// file      : common/session/custom/driver.cxx
// copyright : Copyright (c) 2009-2012 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 <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;

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");
      ste = db->load<employee> (st->employees ()[0].object_id ());

      // 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");
      cse = db->load<employee> (cs->employees ()[0].object_id ());
      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); // Flush all the changes.
      assert (tracer.count == 3);
      t.commit ();
      s.mark (); // Mark all the changed objects as unchanged.
    }

    {
      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); // Flush all the changes.
      assert (tracer.count == 2);
      t.commit ();
      s.mark (); // Mark all the changed objects as unchanged.
    }

    {
      transaction t (db->begin ());
      tracer.count = 0;
      t.tracer (tracer);
      s.flush (*db);
      assert (tracer.count == 0);
      t.commit ();
    }
  }
  catch (const odb::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }
}