-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcb_database.h
706 lines (588 loc) · 19.5 KB
/
cb_database.h
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
//PAGE
// ************************************************************************
// cb_database.h
// ************************************************************************
//
// Internal implementation of the Cookbook database
//
//------------------------------------------------------------------------
//
// Copyright C 2002
// Lynguent, Inc
// An Unpublished Work - All Rights Reserved
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#ifndef CB_DATABASE_H /* { */
#define CB_DATABASE_H
// Debugger name truncation warning:
# pragma warning( disable: 4786 )
#include <assert.h>
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <string.h>
#include <stdio.h>
#include <inttypes.h>
class CB_String;
class CB_StringTable;
class CB_Ingredient;
class CB_Recipe;
class CB_Book;
class CB_Stream;
class CB_Display;
typedef std::vector< CB_Ingredient* > CB_Ingredient_pVector_t;
typedef std::vector< CB_Recipe* > CB_Recipe_pVector_t;
//PAGE
// ************************************************************************
struct CB_StringData
// ************************************************************************
//
// Part of the String Table implementation. This information is kept
// for each string that exists in the String Table.
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
size_t refCount;
size_t address;
CB_StringData() : refCount(0), address(0) {}
CB_StringData( size_t c, size_t a) : refCount(c), address(a) {}
};
//PAGE
// ************************************************************************
// String table support
// ************************************************************************
//...Case sensitive string comparison. Used by string table
struct LT_String {
bool operator() (const std::string& s1, const std::string& s2) const
{
return strcmp( s1.c_str(), s2.c_str() ) < 0;
}
};
typedef std::map< std::string, CB_StringData, LT_String >
CB_StringTable_t;
typedef std::vector< CB_StringTable_t::iterator >
CB_StringItorVector_t;
std::ostream& operator << ( std::ostream& o, const CB_String s );
//PAGE
// ************************************************************************
class CB_String
// ************************************************************************
//
// Description:
// ============
//
// A CB_String object is a reference to a string stored in a CB_StringTable.
// It is a read-only string, i.e. it cannot be modified.
//
// Manager functions:
// ==================
//
// ctor
// dtor
// copy ctor
// assignment operator
//
// CB_String( const char* s, size_t sLength )
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// char* c_str() //...STL string::c_str()
// size_t size() //...STL string::c_str()
//
// bool IsSameAs( const CB_String ) //...case insensitive compare
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
friend class CB_Stream;
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_String();
CB_String( const char* s );
CB_String( const char* s, size_t sLength );
~CB_String();
CB_String( const CB_String& o );
CB_String& operator=( const CB_String& o );
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
const char* c_str() const { return (*_itor).first.c_str(); }
const size_t size() const { return (*_itor).first.size(); }
const std::string& str() const { return (*_itor).first; }
#if 0
bool IsSameAs( const CB_String o )
{ return _stricmp( (*_itor).first.c_str(),
(*(o._itor)).first.c_str() ) == 0; }
#endif
protected:
private:
//--------------------------------------------------
// Data Members
//--------------------------------------------------
static CB_StringTable* _theStringTable_p;
CB_StringTable_t::iterator _itor;
};
//PAGE
// ************************************************************************
class CB_StringTable
// ************************************************************************
//
// Description:
// ============
//
// The string table keeps strings that can be shared.
// It also provides support for conversion between a string
// and its unique address. The address is used in persistent storage.
//
// Manager functions:
// ==================
// ctor
// dtor
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// size_t Size() const
// void Clear()
// void Print( ostream& o );
//
// Private. These are for use by friend CB_String.
//
// CB_StringTable_t::iterator Insert( const char* s, size_t sLength );
// void Erase(CB_StringTable_t::iterator itor)
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
friend class CB_String;
friend class CB_Stream;
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_StringTable() {}
~CB_StringTable() {}
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
size_t Size() const { return _byString.size(); }
void Clear()
{
_freeAddresses.clear();
_byString.clear();
_byAddress.clear();
}
void Print( std::ostream& o );
protected:
private:
//--------------------------------------------------
// Default copy constructor remains undefined
//--------------------------------------------------
CB_StringTable( const CB_StringTable& );
//--------------------------------------------------
// Default assignment operator remains undefined
//--------------------------------------------------
CB_StringTable& operator=( const CB_StringTable& );
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
CB_StringTable_t::iterator Insert( const char* s, size_t l );
void Erase(CB_StringTable_t::iterator itor)
{
assert( (*itor).second.refCount == 0 );
_freeAddresses.push_back(
(*itor).second.address );
_byString.erase( itor );
}
//--------------------------------------------------
// Data Members
//--------------------------------------------------
CB_StringTable_t _byString;
CB_StringItorVector_t _byAddress;
std::vector< size_t > _freeAddresses;
};
//PAGE
// ************************************************************************
// Sorting by string value support
// ************************************************************************
//...Case insensitive CB_String comparison. Used by cookbook.
struct LT_CB_String {
bool operator() (const CB_String& s1, const CB_String& s2) const
{
//return _stricmp( s1.c_str(), s2.c_str() ) < 0;
return strcmp( s1.c_str(), s2.c_str() ) < 0;
}
};
typedef std::multimap< CB_String, CB_Recipe*, LT_CB_String > CB_RecipeMap_t;
typedef std::set< CB_String, LT_CB_String > CB_StringSet_t;
//PAGE
// ************************************************************************
class CB_Ingredient
// ************************************************************************
//
// Description:
// ============
//
// An ingredient is a quadruple:
// Quantity
// Measurement
// Preparation
// Ingredient
//
// Manager functions:
// ==================
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
friend class CB_Stream;
friend class CB_Book;
friend class CB_RecipeDialog;
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_Ingredient() {};
~CB_Ingredient() {};
//--------------------------------------------------
// Default copy constructor
// Default assignment operator
//--------------------------------------------------
CB_Ingredient( const CB_Ingredient& o )
{
_quantity = o._quantity;
_measurement = o._measurement;
_preparation = o._preparation;
_ingredient = o._ingredient;
}
CB_Ingredient& operator=( const CB_Ingredient& o )
{
_quantity = o._quantity;
_measurement = o._measurement;
_preparation = o._preparation;
_ingredient = o._ingredient;
return *this;
}
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
const CB_String& Get_quantity() { return _quantity; }
const CB_String& Get_measurement() { return _measurement; }
const CB_String& Get_preparation() { return _preparation; }
const CB_String& Get_ingredient() { return _ingredient; }
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
bool Empty()
{
return _quantity.size() + _measurement.size() +
_preparation.size() + _ingredient.size() == 0;
}
void Print( std::ostream& );
protected:
private:
//--------------------------------------------------
// Data Members
//--------------------------------------------------
CB_String _quantity;
CB_String _measurement;
CB_String _preparation;
CB_String _ingredient;
};
//PAGE
// ************************************************************************
class CB_Recipe
// ************************************************************************
//
// Description:
// ============
//
// Manager functions:
// ==================
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
friend class CB_Stream;
friend class CB_Book;
friend class CB_MainFrame;
friend class CB_Display;
friend class CB_RecipeDialog;
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_Recipe() {};
~CB_Recipe() { Clear(); }
//--------------------------------------------------
// Default copy constructor
// Default assignment operator
//--------------------------------------------------
CB_Recipe( const CB_Recipe& o ) { Copy( o ); }
CB_Recipe& operator=( const CB_Recipe& o )
{ Clear(); Copy( o ); return *this; }
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
const CB_String& Get_name() { return _name; }
const CB_String& Get_serves() { return _serves; }
const CB_String& Get_cat1() { return _category1; }
const CB_String& Get_cat2() { return _category2; }
const CB_String& Get_cat3() { return _category3; }
const CB_String& Get_cat4() { return _category4; }
const CB_String& Get_date() { return _date; }
const CB_Ingredient_pVector_t& Get_ingredients() { return _ingredients; }
const std::vector< CB_String >& Get_directions() { return _directions; }
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
void Clear();
void Print( std::ostream& );
void PrintDirections( std::ostream& );
size_t CategorySize()
{
return _category1.size() + _category2.size() +
_category3.size() + _category4.size();
}
protected:
private:
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
void Copy( const CB_Recipe& o );
//--------------------------------------------------
// Data Members
//--------------------------------------------------
CB_String _name;
CB_String _serves;
CB_String _category1;
CB_String _category2;
CB_String _category3;
CB_String _category4;
CB_String _date;
CB_Ingredient_pVector_t _ingredients;
std::vector< CB_String > _directions;
};
//PAGE
// ************************************************************************
class CB_Book
// ************************************************************************
//
// Description:
// ============
//
// Manager functions:
// ==================
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
friend class CB_Stream;
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_Book() : _isDirty( false ) {};
~CB_Book() { Clear(); };
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
void Set_isDirty( bool v = true) { _isDirty = v; }
void Clr_isDirty() { _isDirty = false; }
bool Get_isDirty() { return _isDirty; }
CB_RecipeMap_t& Get_sortedByName()
{ return _sortedByName; }
CB_RecipeMap_t& Get_sortedByCategory()
{ return _sortedByCategory; }
CB_RecipeMap_t& Get_sortedByIngredient()
{ return _sortedByIngredient; }
CB_StringSet_t& Get_categoryNames()
{ return _categoryNames; }
CB_StringSet_t& Get_quantityNames()
{ return _quantityNames; }
CB_StringSet_t& Get_measurementNames()
{ return _measurementNames; }
CB_StringSet_t& Get_preparationNames()
{ return _preparationNames; }
CB_StringSet_t& Get_ingredientNames()
{ return _ingredientNames; }
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
void Read( const char* fileName );
void Write( char* fileName );
void MakeBackup( char* fileName );
void Clear();
void Add( CB_Recipe* ); //...After indexing
void Delete( CB_Recipe* ); //...After indexing
void Print( std::ostream& );
void PrintSortedNames( std::ostream& );
void PrintSortedCategories( std::ostream& );
void PrintSortedIngredients( std::ostream& );
void Import( char* fileName );
// Import original cookbook data
CB_Ingredient* NewIngredient(
std::vector< CB_String >::iterator& first,
std::vector< CB_String >::iterator& last
);
void TestDeletion();
protected:
private:
//--------------------------------------------------
// Default copy constructor remains undefined
//--------------------------------------------------
CB_Book( const CB_Book& );
//--------------------------------------------------
// Default assignment operator remains undefined
//--------------------------------------------------
CB_Book& operator=( const CB_Book& );
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
void Index();
void IndexRecipe( CB_Recipe* recipe_p );
void DeleteFromMap(
CB_Recipe* recipe_p,
CB_RecipeMap_t& theMap
);
//--------------------------------------------------
// Data Members
//--------------------------------------------------
bool _isDirty;
CB_Recipe_pVector_t _recipes;
CB_RecipeMap_t _sortedByName;
CB_RecipeMap_t _sortedByCategory;
CB_RecipeMap_t _sortedByIngredient;
CB_StringSet_t _categoryNames;
CB_StringSet_t _quantityNames;
CB_StringSet_t _measurementNames;
CB_StringSet_t _preparationNames;
CB_StringSet_t _ingredientNames;
};
//PAGE
// ************************************************************************
class CB_Stream
// ************************************************************************
//
// Description:
// ============
//
// Manager functions:
// ==================
//
// Accessor functions:
// ===================
//
// Implementation functions:
// =========================
//
// Implementation Notes:
// =====================
//
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
{
public:
//--------------------------------------------------
// Manager functions: constructors, destructors,
// assignment operators, type conversion operators
//--------------------------------------------------
CB_Stream(const char* fileName, const char* mode);
~CB_Stream();
//--------------------------------------------------
// Accessor functions: Get_dataMember; Set_dataMember
//--------------------------------------------------
//--------------------------------------------------
// Implementation functions
//--------------------------------------------------
//...Out
CB_Stream& operator << ( const CB_String );
CB_Stream& operator << ( const CB_StringTable& );
CB_Stream& operator << ( const CB_Book& );
CB_Stream& operator << ( const CB_Recipe& );
CB_Stream& operator << ( const CB_Ingredient& );
CB_Stream& operator << ( const size_t& v )
{
int32_t val = v;
fwrite( &val, sizeof(int32_t), 1, _file );
return *this;
}
//...In
CB_Stream& operator >> ( CB_String& );
CB_Stream& operator >> ( CB_StringTable& );
CB_Stream& operator >> ( CB_Book& );
CB_Stream& operator >> ( CB_Recipe& );
CB_Stream& operator >> ( CB_Ingredient& );
CB_Stream& operator >> ( size_t& v )
{
int32_t val;
fread( &val, sizeof(int32_t), 1, _file );
v = val;
return *this;
}
protected:
private:
//--------------------------------------------------
// Default copy constructor remains undefined
//--------------------------------------------------
CB_Stream( const CB_Stream& );
//--------------------------------------------------
// Default assignment operator remains undefined
//--------------------------------------------------
CB_Stream& operator=( const CB_Stream& );
//--------------------------------------------------
// Data Members
//--------------------------------------------------
FILE* _file;
};
//PAGE
#endif /* } */