aboutsummaryrefslogtreecommitdiff
path: root/odb/tracer/transaction-impl.cxx
blob: 20695683bdd1917b4d1c92e3a1d1da332c1e81f8 (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
// file      : odb/tracer/transaction-impl.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <iostream>

#include <odb/tracer/database.hxx>
#include <odb/tracer/connection.hxx>
#include <odb/tracer/transaction-impl.hxx>

using std::cout;
using std::endl;

namespace odb
{
  namespace tracer
  {
    transaction_impl::
    transaction_impl (connection_ptr c)
        : odb::transaction_impl (c->database (), *c),
          finalized_ (false),
          connection_ (c)
    {
      cout << "begin transaction" << endl;
    }

    transaction_impl::
    ~transaction_impl ()
    {
      if (!finalized_)
        cout << "end transaction without commit/rollback" << endl;
    }

    void transaction_impl::
    commit ()
    {
      cout << "commit transaction" << endl;
      finalized_ = true;
    }

    void transaction_impl::
    rollback ()
    {
      cout << "rollback transaction" << endl;
      finalized_ = true;
    }
  }
}