summaryrefslogtreecommitdiff
path: root/odb/relational/source.cxx
blob: be9da931eef8a48da71000e73f13b217f12c6118 (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
// file      : odb/relational/source.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <odb/relational/source.hxx>
#include <odb/relational/generate.hxx>

using namespace std;

namespace relational
{
  namespace source
  {
    void
    generate ()
    {
      context ctx;
      ostream& os (ctx.os);
      options const& ops (ctx.options);

      traversal::unit unit;
      traversal::defines unit_defines;
      traversal::namespace_ ns;
      class_ c;

      unit >> unit_defines >> ns;
      unit_defines >> c;

      traversal::defines ns_defines;

      ns >> ns_defines >> ns;
      ns_defines >> c;

      //
      //
      os << "#include <odb/cache-traits.hxx>" << endl;

      if (ctx.embedded_schema)
        os << "#include <odb/schema-catalog-impl.hxx>" << endl;

      os << endl;

      //
      //
      os << "#include <odb/mysql/mysql.hxx>" << endl
         << "#include <odb/mysql/traits.hxx>" << endl
         << "#include <odb/mysql/database.hxx>" << endl
         << "#include <odb/mysql/transaction.hxx>" << endl
         << "#include <odb/mysql/connection.hxx>" << endl
         << "#include <odb/mysql/statement.hxx>" << endl
         << "#include <odb/mysql/statement-cache.hxx>" << endl
         << "#include <odb/mysql/object-statements.hxx>" << endl
         << "#include <odb/mysql/container-statements.hxx>" << endl
         << "#include <odb/mysql/exceptions.hxx>" << endl;

      if (ops.generate_query ())
        os << "#include <odb/mysql/result.hxx>" << endl;

      os << endl;

      // Details includes.
      //
      os << "#include <odb/details/unused.hxx>" << endl;

      if (ops.generate_query ())
        os << "#include <odb/details/shared-ptr.hxx>" << endl;

      os << endl;

      os << "namespace odb"
             << "{";

      unit.dispatch (ctx.unit);

      os << "}";
    }
  }
}