aboutsummaryrefslogtreecommitdiff
path: root/common/threads/driver.cxx
blob: 9ae5b508f982d0e668e618e214984ec67a5a2bf7 (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
// file      : common/threads/driver.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

// Test operations in a multi-threaded environment.
//

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

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

#include <odb/shared-ptr.hxx>
#include <odb/details/thread.hxx>

#include <common.hxx>

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

using namespace std;
using namespace odb;

using odb::shared_ptr;
using odb::details::thread;

const size_t thread_count = 32;
const size_t iteration_count = 100;

struct task
{
  task (database& db, size_t n)
      : db_ (db), n_ (n)
  {
  }

  void
  execute ()
  {
    try
    {
      for (size_t i (0); i < iteration_count; ++i)
      {
        unsigned long id ((n_ * iteration_count + i) * 3);

        {
          object o1 (id, "frist object");
          object o2 (id + 1, "second object");
          object o3 (id + 2, "third object");

          transaction t (db_.begin_transaction ());
          db_.persist (o1);
          db_.persist (o2);
          db_.persist (o3);
          t.commit ();
        }

        {
          transaction t (db_.begin_transaction ());
          auto_ptr<object> o (db_.load<object> (id));
          assert (o->str_ == "frist object");
          o->str_ = "another value";
          db_.store (*o);
          t.commit ();
        }

        {
          typedef odb::query<object> query;
          typedef odb::result<object> result;

          transaction t (db_.begin_transaction ());
          result r (db_.query<object> (query::str == "another value"));

          bool found (false);
          for (result::iterator i (r.begin ()); i != r.end (); ++i)
          {
            if (i->id_ == id)
            {
              found = true;
              break;
            }
          }
          assert (found);
          t.commit ();
        }

        {
          transaction t (db_.begin_transaction ());
          db_.erase<object> (id);
          t.commit ();
        }
      }
    }
    catch (const odb::exception& e)
    {
      cerr << e.what () << endl;
    }
  }

  static void*
  execute (void* arg)
  {
    static_cast<task*> (arg)->execute ();
    return 0;
  }

  database& db_;
  size_t n_;
};


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

    vector<shared_ptr<thread> > threads;
    vector<shared_ptr<task> > tasks;

    for (size_t i (0); i < thread_count; ++i)
    {
      shared_ptr<task> t (new (shared) task (*db, i));
      tasks.push_back (t);

      threads.push_back (
        shared_ptr<thread> (
          new (shared) thread (&task::execute, t.get ())));
    }

    for (size_t i (0); i < thread_count; ++i)
      threads[i]->join ();
  }
  catch (const odb::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }

  // pthread_exit (0);
}