aboutsummaryrefslogtreecommitdiff
path: root/inverse/driver.cxx
blob: 5a613e158ab809ca88bb79ead74c3137bad7c580 (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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// file      : inverse/driver.cxx
// copyright : not copyrighted - public domain

#include <memory>   // std::auto_ptr
#include <iostream>

#include <odb/database.hxx>
#include <odb/session.hxx>
#include <odb/transaction.hxx>

#include "database.hxx" // create_database

#include "employee.hxx"
#include "employee-odb.hxx"

using namespace std;
using namespace odb::core;

void
print (const employee& e)
{
  cout << e.first () << " " << e.last () << endl
       << "  employer: " << e.employer ().load ()->name () << endl
       << "  position: " << e.position ().load ()->title () << endl;

  const projects& ps (e.projects ());

  for (projects::const_iterator i (ps.begin ()); i != ps.end (); ++i)
  {
    const lazy_shared_ptr<project>& p (*i);
    p.load ();

    cout << "  project: " << p->name () << endl;
  }

  cout << endl;
}

int
main (int argc, char* argv[])
{
  using tr1::shared_ptr;

  try
  {
    auto_ptr<database> db (create_database (argc, argv));

    // Create a few persistent objects.
    //
    {
      // Simple Tech Ltd.
      //
      {
        shared_ptr<employer> er (new employer ("Simple Tech Ltd"));

        shared_ptr<position> he (new position ("Hardware Engineer"));
        shared_ptr<position> se (new position ("Software Engineer"));

        shared_ptr<project> sh (new project ("Simple Hardware"));
        shared_ptr<project> ss (new project ("Simple Software"));

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

        // Set the inverse side of the employee-employer relationship.
        //
        er->employees ().push_back (john);
        er->employees ().push_back (jane);

        // Set the inverse side of the employee-position relationship.
        //
        he->employee (john);
        se->employee (jane);

        // Set the employee-project relationship (both directions).
        //
        john->projects ().push_back (sh);
        john->projects ().push_back (ss);
        jane->projects ().push_back (ss);

        sh->employees ().push_back (john);
        ss->employees ().push_back (john);
        ss->employees ().push_back (jane);

        transaction t (db->begin ());

        db->persist (er);

        db->persist (he);
        db->persist (se);

        db->persist (sh);
        db->persist (ss);

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

        t.commit ();
      }

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

        shared_ptr<position> he (new position ("Hardware Engineer"));
        shared_ptr<position> se (new position ("Software Engineer"));

        shared_ptr<project> ch (new project ("Complex Hardware"));
        shared_ptr<project> cs (new project ("Complex Software"));

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

        // Set the inverse side of the employee-employer relationship.
        //
        er->employees ().push_back (john);
        er->employees ().push_back (jane);

        // Set the inverse side of the employee-position relationship.
        //
        he->employee (john);
        se->employee (jane);

        // Set the employee-project relationship (both directions).
        //
        john->projects ().push_back (cs);
        jane->projects ().push_back (ch);
        jane->projects ().push_back (cs);

        ch->employees ().push_back (jane);
        cs->employees ().push_back (john);
        cs->employees ().push_back (jane);

        transaction t (db->begin ());

        db->persist (er);

        db->persist (he);
        db->persist (se);

        db->persist (ch);
        db->persist (cs);

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

        t.commit ();
      }
    }

    // Load Simple Tech Ltd and print its employees. We use a session in this
    // and subsequent transactions to make sure that a single instance of any
    // particular object (e.g., employer) is shared among all objects (e.g.,
    // employee) that relate to it.
    //
    {
      session s;
      transaction t (db->begin ());

      shared_ptr<employer> stl (db->load<employer> ("Simple Tech Ltd"));

      employees& es (stl->employees ());

      for (employees::iterator i (es.begin ()); i != es.end (); ++i)
      {
        lazy_weak_ptr<employee>& lwp (*i);
        shared_ptr<employee> p (lwp.load ()); // Load and lock.
        print (*p);
      }

      t.commit ();
    }

    // Find all Software Engineers.
    //
    {
      typedef odb::query<position> query;
      typedef odb::result<position> result;

      session s;
      transaction t (db->begin ());

      result r (db->query<position> (query::title == "Software Engineer"));

      for (result::iterator i (r.begin ()); i != r.end (); ++i)
      {
        const lazy_weak_ptr<employee>& lwp (i->employee ());
        shared_ptr<employee> p (lwp.load ()); // Load and lock.

        // Employee can be NULL if the position is vacant.
        //
        if (p)
          print (*p);
      }

      t.commit ();
    }

    // John Doe has moved to Complex Systems Inc and is now working as
    // a Software Engineer on Complex Software.
    //
    {
      typedef odb::query<employee> query;

      session s;
      transaction t (db->begin ());

      // Create "unloaded" pointers to the employer and project objects.
      //
      lazy_shared_ptr<employer> csi (*db, std::string ("Complex Systems Inc"));
      lazy_shared_ptr<project> cs (*db, std::string ("Complex Software"));

      // Create a new Software Engineer position.
      //
      shared_ptr<position> se (new position ("Software Engineer"));

      shared_ptr<employee> john (
        db->query_one<employee> (query::first == "John" &&
                                 query::last == "Doe"));

      john->employer (csi);
      john->position (se);
      john->projects ().clear ();
      john->projects ().push_back (cs);

      db->persist (se);
      db->update (john);

      t.commit ();
    }

    // Print Complex Systems Inc's employees. This time, instead of loading
    // the employer object, we use a query which shows how we can use members
    // of the pointed-to objects in the queries.
    //
    {
      typedef odb::query<employee> query;
      typedef odb::result<employee> result;

      session s;
      transaction t (db->begin ());

      result r (db->query<employee> (
                  query::employer->name == "Complex Systems Inc"));

      for (result::iterator i (r.begin ()); i != r.end (); ++i)
        print (*i);

      t.commit ();
    }
  }
  catch (const odb::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }
}