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
|
#ifndef CondCore_CondDB_GTSchema_h
#define CondCore_CondDB_GTSchema_h
#include "DbCore.h"
#include "IDbSchema.h"
//
#include <boost/date_time/posix_time/posix_time.hpp>
namespace cond {
namespace persistency {
conddb_table(GLOBAL_TAG) {
conddb_column(NAME, std::string);
conddb_column(VALIDITY, cond::Time_t);
conddb_column(DESCRIPTION, std::string);
conddb_column(RELEASE, std::string);
conddb_column(SNAPSHOT_TIME, boost::posix_time::ptime);
conddb_column(INSERTION_TIME, boost::posix_time::ptime);
class Table : public IGTTable {
public:
explicit Table(coral::ISchema& schema);
~Table() override {}
bool exists() override;
void create() override;
bool select(const std::string& name) override;
bool select(const std::string& name, cond::Time_t& validity, boost::posix_time::ptime& snapshotTime) override;
bool select(const std::string& name,
cond::Time_t& validity,
std::string& description,
std::string& release,
boost::posix_time::ptime& snapshotTime) override;
void insert(const std::string& name,
cond::Time_t validity,
const std::string& description,
const std::string& release,
const boost::posix_time::ptime& snapshotTime,
const boost::posix_time::ptime& insertionTime) override;
void update(const std::string& name,
cond::Time_t validity,
const std::string& description,
const std::string& release,
const boost::posix_time::ptime& snapshotTime,
const boost::posix_time::ptime& insertionTime) override;
private:
coral::ISchema& m_schema;
};
}
conddb_table(GLOBAL_TAG_MAP) {
static constexpr unsigned int PAYLOAD_HASH_SIZE = 40;
conddb_column(GLOBAL_TAG_NAME, std::string);
// to be changed to RECORD_NAME!
conddb_column(RECORD, std::string);
// to be changed to RECORD_LABEL!
conddb_column(LABEL, std::string);
conddb_column(TAG_NAME, std::string);
class Table : public IGTMapTable {
public:
explicit Table(coral::ISchema& schema);
~Table() override {}
bool exists() override;
void create() override;
bool select(const std::string& gtName,
std::vector<std::tuple<std::string, std::string, std::string> >& tags) override;
bool select(const std::string& gtName,
const std::string& preFix,
const std::string& postFix,
std::vector<std::tuple<std::string, std::string, std::string> >& tags) override;
void insert(const std::string& gtName,
const std::vector<std::tuple<std::string, std::string, std::string> >& tags) override;
private:
coral::ISchema& m_schema;
};
}
class GTSchema : public IGTSchema {
public:
explicit GTSchema(coral::ISchema& schema);
~GTSchema() override {}
bool exists() override;
void create() override;
GLOBAL_TAG::Table& gtTable() override;
GLOBAL_TAG_MAP::Table& gtMapTable() override;
private:
GLOBAL_TAG::Table m_gtTable;
GLOBAL_TAG_MAP::Table m_gtMapTable;
};
} // namespace persistency
} // namespace cond
#endif
|