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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
|
#ifndef CondCore_ConditionDatabase_DbCore_h
#define CondCore_ConditionDatabase_DbCore_h
//
// Package: CondDB
// Class : DbCore
//
/**\class DbCore DbCore.h CondCore/CondDB/interface/DbCore.h
Description: an interface wrapper for CORAL.
*/
//
// Author: Miguel Ojeda, Giacomo Govi
// Created: May 2013
//
//
#include "CondCore/CondDB/interface/Exception.h"
#include "CondCore/CondDB/interface/Binary.h"
#include "CondCore/CondDB/interface/Time.h"
#include "CondCore/CondDB/interface/Types.h"
// coral includes
#include "CoralBase/AttributeList.h"
#include "CoralBase/Attribute.h"
#include "CoralBase/AttributeSpecification.h"
#include "CoralBase/Blob.h"
#include "CoralBase/TimeStamp.h"
#include "RelationalAccess/ICursor.h"
#include "RelationalAccess/ISchema.h"
#include "RelationalAccess/ISessionProxy.h"
#include "RelationalAccess/IQuery.h"
#include "RelationalAccess/TableDescription.h"
#include "RelationalAccess/ITable.h"
#include "RelationalAccess/IColumn.h"
#include "RelationalAccess/ITableDataEditor.h"
#include "RelationalAccess/IBulkOperation.h"
#include "RelationalAccess/SchemaException.h"
//
#include <tuple>
#include <cstring>
#include <set>
#include <map>
#include <memory>
//
#include <boost/date_time/posix_time/posix_time.hpp>
// macros for the schema definition
// table definition
#define conddb_table(NAME) \
namespace NAME { \
static constexpr char const* tname = #NAME; \
} \
namespace NAME
// implementation for the column definition:
// case with 3 params
#define FIXSIZE_COLUMN(NAME, TYPE, SIZE) \
struct NAME { \
static constexpr char const* name = #NAME; \
typedef TYPE type; \
static constexpr size_t size = SIZE; \
static std::string tableName() { return std::string(tname); } \
static std::string fullyQualifiedName() { return std::string(tname) + "." + std::string(name); } \
};
// case with 2 params
#define VARSIZE_COLUMN(NAME, TYPE) FIXSIZE_COLUMN(NAME, TYPE, 0)
// trick to select the case
#define GET_4TH_ARG(arg1, arg2, arg3, arg4, ...) arg4
#define WRONG_PAR_NUMBER_ERROR(...) static_assert(false, "\"column\" macro accepts exactly 2 or 3 parameters")
#define SELECT_COLUMN_MACRO(...) GET_4TH_ARG(__VA_ARGS__, FIXSIZE_COLUMN, VARSIZE_COLUMN, WRONG_PAR_NUMBER_ERROR)
// the final column definition macro
#define conddb_column(...) SELECT_COLUMN_MACRO(__VA_ARGS__)(__VA_ARGS__)
namespace cond {
namespace persistency {
// helper function to asses the equality of the underlying types, regardless if they are references and their constness
template <typename T, typename P>
inline void static_assert_is_same_decayed() {
static_assert(std::is_same<typename std::decay<T>::type, typename std::decay<P>::type>::value,
"Parameter types don't match with the RowBuffer types");
};
// functions ( specilized for specific types ) for adding data in AttributeList buffers
template <typename T>
inline void f_add_attribute(coral::AttributeList& data,
const std::string& attributeName,
const T& param,
bool init = true) {
if (init)
data.extend<T>(attributeName);
data[attributeName].data<T>() = param;
}
template <>
inline void f_add_attribute(coral::AttributeList& data,
const std::string& attributeName,
const cond::Binary& param,
bool init) {
if (init)
data.extend<coral::Blob>(attributeName);
data[attributeName].bind(param.get());
}
template <>
inline void f_add_attribute(coral::AttributeList& data,
const std::string& attributeName,
const boost::posix_time::ptime& param,
bool init) {
if (init)
data.extend<coral::TimeStamp>(attributeName);
data[attributeName].data<coral::TimeStamp>() = coral::TimeStamp(param);
}
template <>
inline void f_add_attribute(coral::AttributeList& data,
const std::string& attributeName,
const cond::TimeType& param,
bool init) {
if (init)
data.extend<std::string>(attributeName);
data[attributeName].data<std::string>() = cond::time::timeTypeName(param);
}
template <>
inline void f_add_attribute(coral::AttributeList& data,
const std::string& attributeName,
const cond::SynchronizationType& param,
bool init) {
if (init)
data.extend<std::string>(attributeName);
data[attributeName].data<std::string>() = synchronizationTypeNames(param);
}
// function for adding into an AttributeList buffer data for a specified column. Performs type checking.
template <typename Column, typename P>
inline void f_add_column_data(coral::AttributeList& data, const P& param, bool init = true) {
static_assert_is_same_decayed<typename Column::type, P>();
f_add_attribute(data, Column::name, param, init);
}
// function for adding into an AttributeList buffer data for a specified condition. Performs type checking.
template <typename Column, typename P>
inline void f_add_condition_data(coral::AttributeList& data,
std::string& whereClause,
const P& value,
const std::string condition = "=") {
static_assert_is_same_decayed<typename Column::type, P>();
std::stringstream varId;
unsigned int id = data.size();
varId << Column::name << "_" << id;
if (!whereClause.empty())
whereClause += " AND ";
whereClause += Column::fullyQualifiedName() + " " + condition + " :" + varId.str() + " ";
//bool init = (id == 0);
f_add_attribute(data, varId.str(), value);
}
// function for appending conditions to a where clause
template <typename C1, typename C2>
inline void f_add_condition(std::string& whereClause, const std::string condition = "=") {
if (!whereClause.empty())
whereClause += " AND ";
whereClause += C1::fullyQualifiedName() + " " + condition + " " + C2::fullyQualifiedName() + " ";
}
// buffer for data to be inserted into a table
// maybe better only leave the template set methods ( no class template )
template <typename... Columns>
class RowBuffer {
private:
template <typename Params, int n, typename T1, typename... Ts>
void _set(const Params& params, bool init = true) {
f_add_column_data<T1>(m_data, std::get<n>(params), init);
_set<Params, n + 1, Ts...>(params, init);
}
template <typename Params, int n>
void _set(const Params&, bool) {}
public:
RowBuffer() : m_data() {}
template <typename P>
explicit RowBuffer(const P& params) : m_data() {
_set<P, 0, Columns...>(params);
}
template <typename P>
void set(const P& params) {
bool init = (m_data.size() == 0);
// if RowBuffer becames a single type, we need to run either the equivalent of _RowBuffer ( having addAttribute ) when m_data.size()=0, or _set in all other cases
_set<P, 0, Columns...>(params, init);
}
const coral::AttributeList& get() const { return m_data; }
protected:
coral::AttributeList m_data;
};
template <typename... Columns>
class ConditionBuffer {
private:
template <typename Params, int n, typename T1, typename... Ts>
void _set(const Params& params) {
f_add_condition_data<T1>(m_data, m_clause, std::get<n>(params));
_set<Params, n + 1, Ts...>(params);
}
template <typename Params, int n>
void _set(const Params&) {}
public:
ConditionBuffer() : m_data(), m_clause() {}
template <typename P>
void set(const P& params) {
// if RowBuffer becames a single type, we need to run either the equivalent of _RowBuffer ( having addAttribute ) when m_data.size()=0, or _set in all other cases
_set<P, 0, Columns...>(params);
}
void addStaticCondition(const std::string& condition) {
if (!m_clause.empty()) {
m_clause += " AND ";
}
m_clause += condition;
}
const coral::AttributeList& get() const { return m_data; }
const std::string& getClause() const { return m_clause; }
protected:
coral::AttributeList m_data;
std::string m_clause;
};
template <typename T>
struct AttributeTypeName {
std::string operator()() { return coral::AttributeSpecification::typeNameForType<T>(); }
};
template <>
struct AttributeTypeName<cond::Binary> {
std::string operator()() { return coral::AttributeSpecification::typeNameForType<coral::Blob>(); }
};
template <>
struct AttributeTypeName<boost::posix_time::ptime> {
std::string operator()() { return coral::AttributeSpecification::typeNameForType<coral::TimeStamp>(); }
};
template <>
struct AttributeTypeName<cond::TimeType> {
std::string operator()() { return coral::AttributeSpecification::typeNameForType<std::string>(); }
};
template <>
struct AttributeTypeName<cond::SynchronizationType> {
std::string operator()() { return coral::AttributeSpecification::typeNameForType<std::string>(); }
};
template <typename T>
void f_add_column_description(coral::TableDescription& table,
const std::string& columnName,
size_t size = 0,
bool notNull = true) {
table.insertColumn(columnName, AttributeTypeName<T>()(), size);
if (notNull)
table.setNotNullConstraint(columnName);
}
template <typename T, typename Arg1>
constexpr bool is_same_any() {
return std::is_same<T, Arg1>::value;
};
template <typename T, typename Arg1, typename Arg2, typename... Args>
constexpr bool is_same_any() {
return is_same_any<T, Arg1>() || is_same_any<T, Arg2, Args...>();
};
template <typename... Types>
class TableDescription {
private:
template <int n>
void addColumn(coral::TableDescription&) {}
template <int n, typename Arg1, typename... Args>
void addColumn(coral::TableDescription& tableDescription) {
std::string columnName(Arg1::name);
f_add_column_description<typename Arg1::type>(m_description, columnName, Arg1::size);
addColumn<n + 1, Args...>(m_description);
}
template <int, typename Col1, typename... Cols>
void checkColumns() {
static_assert(is_same_any<Col1, Types...>(), "Specified Column has not been found in the table.");
checkColumns<0, Cols...>();
}
template <int>
void checkColumns() {}
public:
explicit TableDescription(const char* name) : m_description("ConditionDatabase") {
m_description.setName(name);
addColumn<0, Types...>(m_description);
}
// for all these methods, we should check that the specified columns belongs to the table columns...
template <typename... ColumnTypes>
void setPrimaryKey() {
checkColumns<0, ColumnTypes...>();
m_description.setPrimaryKey(makeList<ColumnTypes...>());
}
template <typename... ColumnTypes>
void setUniqueConstraint(const std::string& name) {
checkColumns<0, ColumnTypes...>();
m_description.setUniqueConstraint(makeList<ColumnTypes...>(), name);
}
template <typename... ColumnTypes>
void createIndex(const std::string& name) {
checkColumns<0, ColumnTypes...>();
m_description.createIndex(name, makeList<ColumnTypes...>());
}
template <typename Column, typename ReferencedColumn>
void setForeignKey(const std::string& name) {
checkColumns<0, Column>();
m_description.createForeignKey(name, Column::name, ReferencedColumn::tableName(), ReferencedColumn::name);
}
const coral::TableDescription& get() { return m_description; }
private:
template <int n>
void _makeList(std::vector<std::string>&) {}
template <int n, typename Arg1, typename... Args>
void _makeList(std::vector<std::string>& columnNames) {
columnNames.push_back(Arg1::name);
_makeList<n + 1, Args...>(columnNames);
}
template <typename... ColumnTypes>
std::vector<std::string> makeList() {
std::vector<std::string> columnList;
_makeList<0, ColumnTypes...>(columnList);
return columnList;
}
private:
coral::TableDescription m_description;
};
template <typename T>
struct GetFromRow {
T operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
return row[fullyQualifiedName].data<T>();
}
};
template <>
struct GetFromRow<cond::Binary> {
cond::Binary operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
return cond::Binary(row[fullyQualifiedName].data<coral::Blob>());
}
};
template <>
struct GetFromRow<boost::posix_time::ptime> {
boost::posix_time::ptime operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
return row[fullyQualifiedName].data<coral::TimeStamp>().time();
}
};
template <>
struct GetFromRow<cond::TimeType> {
cond::TimeType operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
return cond::time::timeTypeFromName(row[fullyQualifiedName].data<std::string>());
}
};
template <>
struct GetFromRow<cond::SynchronizationType> {
cond::SynchronizationType operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
return cond::synchronizationTypeFromName(row[fullyQualifiedName].data<std::string>());
}
};
template <std::size_t n>
struct GetFromRow<std::array<char, n> > {
std::string operator()(const coral::AttributeList& row, const std::string& fullyQualifiedName) {
std::string val = row[fullyQualifiedName].data<std::string>();
if (val.size() != n)
throwException("Retrieved string size does not match with the expected string size.", "getFromRow");
std::array<char, n> ret;
::memcpy(ret.data(), val.c_str(), n);
return ret;
}
};
template <typename... Types>
class Query;
template <typename... Types>
class QueryIterator {
public:
// C++17 compliant iterator definition
using iterator_category = std::input_iterator_tag;
using value_type = std::tuple<Types...>;
using difference_type = void; // Not used
using pointer = void; // Not used
using reference = void; // Not used
QueryIterator() {}
QueryIterator(const QueryIterator& rhs) : m_query(rhs.m_query), m_currentRow(rhs.m_currentRow) {}
explicit QueryIterator(Query<Types...>* parent) : m_query(parent) {}
QueryIterator& operator=(const QueryIterator& rhs) {
m_query = rhs.m_query;
m_currentRow = rhs.m_currentRow;
return *this;
}
template <typename T>
typename T::type get() const {
return GetFromRow<typename T::type>()(*m_currentRow, T::fullyQualifiedName());
}
auto operator*() -> decltype(std::make_tuple(this->get<Types>()...)) { return std::make_tuple(get<Types>()...); }
QueryIterator& operator++() {
m_currentRow = m_query->next() ? &m_query->currentRow() : nullptr;
return *this;
}
QueryIterator operator++(int) {
QueryIterator tmp(*this);
operator++();
return tmp;
}
bool operator==(const QueryIterator& rhs) const {
if (rhs.m_query == nullptr && m_query == nullptr)
return true;
return m_query == rhs.m_query && m_currentRow == rhs.m_currentRow;
}
bool operator!=(const QueryIterator& rhs) const { return !operator==(rhs); }
operator bool() const { return m_currentRow; }
private:
Query<Types...>* m_query = nullptr;
const coral::AttributeList* m_currentRow = nullptr;
};
template <typename T>
struct DefineQueryOutput {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<T>());
}
};
template <>
struct DefineQueryOutput<cond::Binary> {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<coral::Blob>());
}
};
template <>
struct DefineQueryOutput<boost::posix_time::ptime> {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<coral::TimeStamp>());
}
};
template <>
struct DefineQueryOutput<cond::TimeType> {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<std::string>());
}
};
template <>
struct DefineQueryOutput<cond::SynchronizationType> {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<std::string>());
}
};
template <std::size_t n>
struct DefineQueryOutput<std::array<char, n> > {
static void make(coral::IQuery& query, const std::string& fullyQualifiedName) {
query.addToOutputList(fullyQualifiedName);
query.defineOutputType(fullyQualifiedName, coral::AttributeSpecification::typeNameForType<std::string>());
}
};
template <typename... Types>
class Query {
public:
Query(const coral::ISchema& schema, bool distinct = false)
: m_coralQuery(schema.newQuery()), m_whereData(), m_whereClause(""), m_tables() {
_Query<0, Types...>();
if (distinct)
m_coralQuery->setDistinct();
}
~Query() {}
template <typename Col>
Query& addTable() {
if (m_tables.find(Col::tableName()) == m_tables.end()) {
m_coralQuery->addToTableList(Col::tableName());
m_tables.insert(Col::tableName());
}
return *this;
}
template <int n>
void _Query() {}
template <int n, typename Arg1, typename... Args>
void _Query() {
addTable<Arg1>();
DefineQueryOutput<typename Arg1::type>::make(*m_coralQuery, Arg1::fullyQualifiedName());
_Query<n + 1, Args...>();
}
template <typename C, typename T>
Query& addCondition(const T& value, const std::string condition = "=") {
addTable<C>();
f_add_condition_data<C>(m_whereData, m_whereClause, value, condition);
return *this;
}
template <typename C1, typename C2>
Query& addCondition(const std::string condition = "=") {
addTable<C1>();
addTable<C2>();
f_add_condition<C1, C2>(m_whereClause, condition);
return *this;
}
template <typename C>
Query& addOrderClause(bool ascending = true) {
std::string orderClause(C::fullyQualifiedName());
if (!ascending)
orderClause += " DESC";
m_coralQuery->addToOrderList(orderClause);
return *this;
}
Query& groupBy(const std::string& expression) {
m_coralQuery->groupBy(expression);
return *this;
}
Query& setForUpdate() {
m_coralQuery->setForUpdate();
return *this;
}
Query& limitReturnedRows(size_t nrows) {
m_coralQuery->limitReturnedRows(nrows);
return *this;
}
bool next() {
if (!m_cursor)
throwException("The query has not been executed.", "Query::currentRow");
bool ret = m_cursor->next();
if (ret)
m_retrievedRows++;
return ret;
}
const coral::AttributeList& currentRow() const {
if (!m_cursor)
throwException("The query has not been executed.", "Query::currentRow");
return m_cursor->currentRow();
}
const QueryIterator<Types...> begin() {
m_coralQuery->setCondition(m_whereClause, m_whereData);
m_cursor = &m_coralQuery->execute();
m_retrievedRows = 0;
QueryIterator<Types...> ret(this);
return ++ret;
}
const QueryIterator<Types...> end() { return QueryIterator<Types...>(this); }
size_t retrievedRows() const { return m_retrievedRows; }
private:
std::unique_ptr<coral::IQuery> m_coralQuery;
coral::ICursor* m_cursor = nullptr;
size_t m_retrievedRows = 0;
coral::AttributeList m_whereData;
std::string m_whereClause;
std::set<std::string> m_tables;
};
class UpdateBuffer {
private:
template <typename Params, int n, typename C1, typename... Cs>
void _set(const Params& params) {
f_add_column_data<C1>(m_data, std::get<n>(params));
if (!m_setClause.empty())
m_setClause += ", ";
m_setClause += std::string(C1::name) + " = :" + std::string(C1::name);
_set<Params, n + 1, Cs...>(params);
}
template <typename Params, int n>
void _set(const Params&) {}
public:
UpdateBuffer() : m_data(), m_setClause(""), m_whereClause("") {}
template <typename... Columns, typename Params>
void setColumnData(const Params& params) {
_set<Params, 0, Columns...>(params);
}
template <typename Column1, typename Column2>
void setColumnMatch() {
if (!m_setClause.empty())
m_setClause += ", ";
m_setClause += std::string(Column1::name) + " = " + std::string(Column2::name);
}
template <typename Column, typename P>
void addWhereCondition(const P& param, const std::string condition = "=") {
f_add_condition_data<Column>(m_data, m_whereClause, param, condition);
}
template <typename Column1, typename Column2>
void addWhereCondition(const std::string condition = "=") {
f_add_condition<Column1, Column2>(m_whereClause, condition);
}
const coral::AttributeList& get() const { return m_data; }
const std::string& setClause() const { return m_setClause; }
const std::string& whereClause() const { return m_whereClause; }
private:
coral::AttributeList m_data;
std::string m_setClause;
std::string m_whereClause;
};
class DeleteBuffer {
public:
DeleteBuffer() : m_data(), m_whereClause("") {}
template <typename Column, typename P>
void addWhereCondition(const P& param, const std::string condition = "=") {
f_add_condition_data<Column>(m_data, m_whereClause, param, condition);
}
template <typename Column1, typename Column2>
void addWhereCondition(const std::string condition = "=") {
f_add_condition<Column1, Column2>(m_whereClause, condition);
}
const coral::AttributeList& get() const { return m_data; }
const std::string& whereClause() const { return m_whereClause; }
private:
coral::AttributeList m_data;
std::string m_whereClause;
};
template <typename... Types>
class BulkInserter {
public:
static constexpr size_t cacheSize = 1000;
BulkInserter(coral::ISchema& schema, const char* tableName)
: m_schema(schema), m_tableName(tableName), m_buffer(), m_coralInserter() {
//fix me: maybe with
//m_coralInserter.reset( schema.tableHandle( std::string(tableName ) ).dataEditor().bulkInsert( m_buffer.get(), cacheSize ) );
}
template <typename P>
void insert(const P& params) {
m_buffer.set(params);
if (!m_coralInserter.get())
m_coralInserter.reset(m_schema.tableHandle(m_tableName).dataEditor().bulkInsert(m_buffer.get(), cacheSize));
m_coralInserter->processNextIteration();
}
void flush() {
if (m_coralInserter.get())
m_coralInserter->flush();
}
private:
// fixme
coral::ISchema& m_schema;
std::string m_tableName;
//
RowBuffer<Types...> m_buffer;
std::unique_ptr<coral::IBulkOperation> m_coralInserter;
};
template <typename... Types>
class BulkDeleter {
public:
static constexpr size_t cacheSize = 1000;
explicit BulkDeleter(coral::ISchema& schema, const char* tableName)
: m_schema(schema), m_tableName(tableName), m_buffer(), m_coralDeleter() {
//fix me: maybe with
//m_coralInserter.reset( schema.tableHandle( std::string(tableName ) ).dataEditor().bulkInsert( m_buffer.get(), cacheSize ) );
}
void addStaticCondition(const std::string& condition) { m_buffer.addStaticCondition(condition); }
template <typename P>
void erase(const P& params) {
m_buffer.set(params);
if (!m_coralDeleter.get())
m_coralDeleter.reset(m_schema.tableHandle(m_tableName)
.dataEditor()
.bulkDeleteRows(m_buffer.getClause(), m_buffer.get(), cacheSize));
m_coralDeleter->processNextIteration();
}
void flush() {
if (m_coralDeleter.get())
m_coralDeleter->flush();
}
private:
// fixme
coral::ISchema& m_schema;
std::string m_tableName;
//
ConditionBuffer<Types...> m_buffer;
std::unique_ptr<coral::IBulkOperation> m_coralDeleter;
};
namespace {
inline bool existsTable(coral::ISchema& schema, const char* tableName) {
return schema.existsTable(std::string(tableName));
}
inline void createTable(coral::ISchema& schema, const coral::TableDescription& descr) {
schema.createTable(descr);
}
inline bool insertInTable(coral::ISchema& schema,
const char* tableName,
const coral::AttributeList& row,
bool failOnDuplicate = true) {
bool ret = false;
try {
schema.tableHandle(std::string(tableName)).dataEditor().insertRow(row);
ret = true;
} catch (const coral::DuplicateEntryInUniqueKeyException&) {
if (failOnDuplicate)
throw;
}
return ret;
}
inline void updateTable(coral::ISchema& schema, const char* tableName, const UpdateBuffer& data) {
schema.tableHandle(std::string(tableName))
.dataEditor()
.updateRows(data.setClause(), data.whereClause(), data.get());
}
inline void deleteFromTable(coral::ISchema& schema, const char* tableName, const DeleteBuffer& data) {
schema.tableHandle(std::string(tableName)).dataEditor().deleteRows(data.whereClause(), data.get());
}
} // namespace
} // namespace persistency
} // namespace cond
#endif
|