forked from mangoszero/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLStorage.h
More file actions
779 lines (713 loc) · 19 KB
/
SQLStorage.h
File metadata and controls
779 lines (713 loc) · 19 KB
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
/**
* MaNGOS is a full featured server for World of Warcraft, supporting
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
*
* Copyright (C) 2005-2019 MaNGOS project <https://getmangos.eu>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* World of Warcraft, and all World of Warcraft or Warcraft art, images,
* and lore are copyrighted by Blizzard Entertainment, Inc.
*/
#ifndef SQLSTORAGE_H
#define SQLSTORAGE_H
#include "Common/Common.h"
#include "Database/DatabaseEnv.h"
#include "DataStores/DBCFileLoader.h"
/**
* @brief
*
*/
class SQLStorageBase
{
template<class DerivedLoader, class StorageClass> friend class SQLStorageLoaderBase;
public:
/**
* @brief
*
* @return const char
*/
char const* GetTableName() const { return m_tableName; }
/**
* @brief
*
* @return const char
*/
char const* EntryFieldName() const { return m_entry_field; }
/**
* @brief
*
* @param idx
* @return FieldFormat
*/
FieldFormat GetDstFormat(uint32 idx) const { return (FieldFormat)m_dst_format[idx]; }
/**
* @brief
*
* @return const char
*/
const char* GetDstFormat() const { return m_dst_format; }
/**
* @brief
*
* @param idx
* @return FieldFormat
*/
FieldFormat GetSrcFormat(uint32 idx) const { return (FieldFormat)m_src_format[idx]; }
/**
* @brief
*
* @return const char
*/
const char* GetSrcFormat() const { return m_src_format; }
/**
* @brief
*
* @return uint32
*/
uint32 GetMaxEntry() const { return m_maxEntry; }
/**
* @brief
*
* @return uint32
*/
uint32 GetRecordCount() const { return m_recordCount; }
template<typename T>
/**
* @brief
*
*/
class SQLSIterator
{
friend class SQLStorageBase;
public:
/**
* @brief
*
* @return const T
*/
T const* getValue() const { return reinterpret_cast<T const*>(pointer); }
/**
* @brief
*
*/
void operator ++() { pointer += recordSize; }
/**
* @brief
*
* @return const T *operator
*/
T const* operator *() const { return getValue(); }
/**
* @brief
*
* @return const T *operator ->
*/
T const* operator ->() const { return getValue(); }
/**
* @brief
*
* @param r
* @return bool operator
*/
bool operator <(const SQLSIterator& r) const { return pointer < r.pointer; }
/**
* @brief
*
* @param r
*/
void operator =(const SQLSIterator& r) { pointer = r.pointer; recordSize = r.recordSize; }
private:
/**
* @brief
*
* @param ptr
* @param _recordSize
*/
SQLSIterator(char* ptr, uint32 _recordSize) : pointer(ptr), recordSize(_recordSize) {}
char* pointer; /**< TODO */
uint32 recordSize; /**< TODO */
};
template<typename T>
/**
* @brief
*
* @return SQLSIterator<T>
*/
SQLSIterator<T> getDataBegin() const { return SQLSIterator<T>(m_data, m_recordSize); }
template<typename T>
/**
* @brief
*
* @return SQLSIterator<T>
*/
SQLSIterator<T> getDataEnd() const { return SQLSIterator<T>(m_data + m_recordCount * m_recordSize, m_recordSize); }
protected:
/**
* @brief
*
*/
SQLStorageBase();
/**
* @brief
*
*/
virtual ~SQLStorageBase() { Free(); }
/**
* @brief
*
* @param tableName
* @param entry_field
* @param src_format
* @param dst_format
*/
void Initialize(const char* tableName, const char* entry_field, const char* src_format, const char* dst_format);
/**
* @brief
*
* @return uint32
*/
uint32 GetDstFieldCount() const { return m_dstFieldCount; }
/**
* @brief
*
* @return uint32
*/
uint32 GetSrcFieldCount() const { return m_srcFieldCount; }
/**
* @brief
*
* @return uint32
*/
uint32 GetRecordSize() const { return m_recordSize; }
/**
* @brief
*
* @param maxRecordId
* @param recordCount
* @param recordSize
*/
virtual void prepareToLoad(uint32 maxRecordId, uint32 recordCount, uint32 recordSize);
/**
* @brief
*
* @param recordId
* @param record
*/
virtual void JustCreatedRecord(uint32 recordId, char* record) = 0;
/**
* @brief
*
*/
virtual void Free();
private:
/**
* @brief
*
* @param recordId
* @return char
*/
char* createRecord(uint32 recordId);
// Information about the table
const char* m_tableName; /**< TODO */
const char* m_entry_field; /**< TODO */
const char* m_src_format; /**< TODO */
const char* m_dst_format; /**< TODO */
// Information about the records
uint32 m_dstFieldCount; /**< TODO */
uint32 m_srcFieldCount; /**< TODO */
uint32 m_recordCount; /**< TODO */
uint32 m_maxEntry; /**< TODO */
uint32 m_recordSize; /**< TODO */
// Data Storage
char* m_data; /**< TODO */
};
/**
* @brief
*
*/
class SQLStorage : public SQLStorageBase
{
template<class DerivedLoader, class StorageClass> friend class SQLStorageLoaderBase;
public:
/**
* @brief
*
* @param fmt
* @param _entry_field
* @param sqlname
*/
SQLStorage(const char* fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
* @param src_fmt
* @param dst_fmt
* @param _entry_field
* @param sqlname
*/
SQLStorage(const char* src_fmt, const char* dst_fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
*/
~SQLStorage() { Free(); }
template<class T>
/**
* @brief
*
* @param id
* @return const T
*/
T const* LookupEntry(uint32 id) const
{
if (id >= GetMaxEntry())
{ return NULL; }
return reinterpret_cast<T const*>(m_Index[id]);
}
/**
* @brief
*
* @param error_at_empty
*/
void Load(bool error_at_empty = true);
/**
* @brief
*
* @param id
*/
void EraseEntry(uint32 id);
protected:
/**
* @brief
*
* @param maxRecordId
* @param recordCount
* @param recordSize
*/
void prepareToLoad(uint32 maxRecordId, uint32 recordCount, uint32 recordSize) override;
/**
* @brief
*
* @param recordId
* @param record
*/
void JustCreatedRecord(uint32 recordId, char* record) override
{
m_Index[recordId] = record;
}
/**
* @brief
*
*/
void Free() override;
private:
char** m_Index; /**< Lookup access */
};
/**
* @brief
*
*/
class SQLHashStorage : public SQLStorageBase
{
template<class DerivedLoader, class StorageClass> friend class SQLStorageLoaderBase;
public:
/**
* @brief
*
* @param fmt
* @param _entry_field
* @param sqlname
*/
SQLHashStorage(const char* fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
* @param src_fmt
* @param dst_fmt
* @param _entry_field
* @param sqlname
*/
SQLHashStorage(const char* src_fmt, const char* dst_fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
*/
~SQLHashStorage() { Free(); }
template<class T>
/**
* @brief
*
* @param id
* @return const T
*/
T const* LookupEntry(uint32 id) const
{
RecordMap::const_iterator find = m_indexMap.find(id);
if (find != m_indexMap.end())
{ return reinterpret_cast<T const*>(find->second); }
return NULL;
}
/**
* @brief
*
*/
void Load();
/**
* @brief
*
* @param id
*/
void EraseEntry(uint32 id);
protected:
/**
* @brief
*
* @param maxRecordId
* @param recordCount
* @param recordSize
*/
void prepareToLoad(uint32 maxRecordId, uint32 recordCount, uint32 recordSize) override;
/**
* @brief
*
* @param recordId
* @param record
*/
void JustCreatedRecord(uint32 recordId, char* record) override
{
m_indexMap[recordId] = record;
}
/**
* @brief
*
*/
void Free() override;
private:
/**
* @brief
*
*/
typedef UNORDERED_MAP < uint32 /*recordId*/, char* /*record*/ > RecordMap;
RecordMap m_indexMap; /**< TODO */
};
/**
* @brief
*
*/
class SQLMultiStorage : public SQLStorageBase
{
template<class DerivedLoader, class StorageClass> friend class SQLStorageLoaderBase;
template<typename T> friend class SQLMultiSIterator;
template<typename T> friend class SQLMSIteratorBounds;
private:
/**
* @brief
*
*/
typedef std::multimap < uint32 /*recordId*/, char* /*record*/ > RecordMultiMap;
public:
/**
* @brief
*
* @param fmt
* @param _entry_field
* @param sqlname
*/
SQLMultiStorage(const char* fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
* @param src_fmt
* @param dst_fmt
* @param _entry_field
* @param sqlname
*/
SQLMultiStorage(const char* src_fmt, const char* dst_fmt, const char* _entry_field, const char* sqlname);
/**
* @brief
*
*/
~SQLMultiStorage() { Free(); }
// forward declaration
template<typename T> class SQLMSIteratorBounds;
template<typename T>
/**
* @brief
*
*/
class SQLMultiSIterator
{
friend class SQLMultiStorage;
friend class SQLMSIteratorBounds<T>;
public:
/**
* @brief
*
* @return const T
*/
T const* getValue() const { return reinterpret_cast<T const*>(citerator->second); }
/**
* @brief
*
* @return uint32
*/
uint32 getKey() const { return citerator->first; }
/**
* @brief
*
*/
void operator ++() { ++citerator; }
/**
* @brief
*
* @return const T *operator
*/
T const* operator *() const { return getValue(); }
/**
* @brief
*
* @return const T *operator ->
*/
T const* operator ->() const { return getValue(); }
/**
* @brief
*
* @param r
* @return bool operator
*/
bool operator !=(const SQLMultiSIterator& r) const { return citerator != r.citerator; }
/**
* @brief
*
* @param r
* @return bool operator
*/
bool operator ==(const SQLMultiSIterator& r) const { return citerator == r.citerator; }
private:
/**
* @brief
*
* @param _itr
*/
SQLMultiSIterator(RecordMultiMap::const_iterator _itr) : citerator(_itr) {}
RecordMultiMap::const_iterator citerator; /**< TODO */
};
template<typename T>
/**
* @brief
*
*/
class SQLMSIteratorBounds
{
friend class SQLMultiStorage;
public:
const SQLMultiSIterator<T> first; /**< TODO */
const SQLMultiSIterator<T> second; /**< TODO */
private:
/**
* @brief
*
* @param std::pair<RecordMultiMap::const_iterator
* @param pair
*/
SQLMSIteratorBounds(std::pair<RecordMultiMap::const_iterator, RecordMultiMap::const_iterator> pair) : first(pair.first), second(pair.second) {}
};
template<typename T>
/**
* @brief
*
* @param key
* @return SQLMSIteratorBounds<T>
*/
SQLMSIteratorBounds<T> getBounds(uint32 key) const { return SQLMSIteratorBounds<T>(m_indexMultiMap.equal_range(key)); }
/**
* @brief
*
*/
void Load();
/**
* @brief
*
* @param id
*/
void EraseEntry(uint32 id);
protected:
/**
* @brief
*
* @param maxRecordId
* @param recordCount
* @param recordSize
*/
void prepareToLoad(uint32 maxRecordId, uint32 recordCount, uint32 recordSize) override;
/**
* @brief
*
* @param recordId
* @param record
*/
void JustCreatedRecord(uint32 recordId, char* record) override
{
m_indexMultiMap.insert(RecordMultiMap::value_type(recordId, record));
}
/**
* @brief
*
*/
void Free() override;
private:
RecordMultiMap m_indexMultiMap; /**< TODO */
};
template <class DerivedLoader, class StorageClass>
/**
* @brief
*
*/
class SQLStorageLoaderBase
{
public:
/**
* @brief
*
* @param storage
* @param error_at_empty
*/
void Load(StorageClass& storage, bool error_at_empty = true);
template<class S, class D>
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void convert(uint32 field_pos, S src, D& dst);
template<class S>
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void convert_to_str(uint32 field_pos, S src, char*& dst);
template<class D>
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void convert_from_str(uint32 field_pos, char const* src, D& dst);
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void convert_str_to_str(uint32 field_pos, char const* src, char*& dst);
template<class S, class D>
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void default_fill(uint32 field_pos, S src, D& dst);
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void default_fill_to_str(uint32 field_pos, char const* src, char*& dst);
template<class D>
/**
* @brief trap, no body
*
* @param field_pos
* @param src
* @param dst
*/
void convert_from_str(uint32 field_pos, char* src, D& dst);
/**
* @brief
*
* @param field_pos
* @param src
* @param dst
*/
void convert_str_to_str(uint32 field_pos, char* src, char*& dst);
private:
template<class V>
/**
* @brief
*
* @param value
* @param store
* @param record
* @param field_pos
* @param offset
*/
void storeValue(V value, StorageClass& store, char* record, uint32 field_pos, uint32& offset);
/**
* @brief
*
* @param value
* @param store
* @param record
* @param field_pos
* @param offset
*/
void storeValue(char const* value, StorageClass& store, char* record, uint32 field_pos, uint32& offset);
/**
* @brief trap, no body
*
* @param value
* @param store
* @param record
* @param field_pos
* @param offset
*/
void storeValue(char* value, StorageClass& store, char* record, uint32 field_pos, uint32& offset);
};
/**
* @brief
*
*/
class SQLStorageLoader : public SQLStorageLoaderBase<SQLStorageLoader, SQLStorage>
{
};
/**
* @brief
*
*/
class SQLHashStorageLoader : public SQLStorageLoaderBase<SQLHashStorageLoader, SQLHashStorage>
{
};
/**
* @brief
*
*/
class SQLMultiStorageLoader : public SQLStorageLoaderBase<SQLMultiStorageLoader, SQLMultiStorage>
{
};
#include "SQLStorageImpl.h"
#endif