-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathini_configuration.h
1048 lines (908 loc) · 46.7 KB
/
ini_configuration.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
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
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* ini_configuration.h
* Copyright (C) 2011 Bart Sas
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef INI_CONFIGURATION_INCLUDED
#define INI_CONFIGURATION_INCLUDED
#include <iostream>
#include <map>
#include <stdexcept>
#include <string>
#include <vector>
/**
* \brief The namespace of the INI configuration file parser.
*/
namespace ini
{
/**
* \brief The base class for all exceptions that are thrown by the INI-parser.
*/
class ParseException: public std::exception
{
protected:
/**
* \brief Constructs a new ParseException instance.
*/
ParseException() throw();
/**
* \brief Constructs a new ParseException instance by copying another one.
*
* \param original The exception that is copied.
*/
ParseException(const ParseException &original) throw();
/**
* \brief Destructs a ParseException.
*/
virtual ~ParseException() throw();
/**
* \brief Copies a parse exception.
*
* \param original The parse exception that is copied.
*
* \return A reference to this instance.
*/
ParseException &operator=(const ParseException &original) throw();
public:
/**
* \brief Returns a description of the error that occurred.
*
* \return A description of the error that occurred.
*/
virtual const char *what() const throw() = 0;
};
/**
* \brief The exception that is thrown when the parser encounters an unexpected character.
*/
class UnexpectedCharacter: public ParseException
{
private:
/**
* \brief The unexpected character.
*/
std::istream::int_type character;
/**
* \brief The position of the character in the input stream.
*/
std::istream::pos_type position;
/**
* \brief The message that is returned by the what() method.
*/
std::string message;
public:
/**
* \brief Constructs a new UnexpectedCharacter exception.
*
* \param character_init The unexpected character.
* \param position_init The position of the character in the input stream.
*/
UnexpectedCharacter(const std::istream::int_type character_init,
const std::istream::pos_type position_init) throw();
/**
* \brief Constructs a new UnexpectedCharacter instance by copying another one.
*
* \param original The instance that is copied.
*/
UnexpectedCharacter(const UnexpectedCharacter &original) throw();
/**
* \brief Destructs a .
*/
virtual ~UnexpectedCharacter() throw();
/**
* \brief Copies an UnexpectedCharacter.
*
* \param original The instance that is copied.
*
* \return A reference to this instance.
*/
UnexpectedCharacter &operator=(const UnexpectedCharacter &original) throw();
/**
* \brief Returns a description of the error hat occurred.
*
* \return A description of the error hat occurred.
*/
virtual const char *what() const throw();
};
/**
* \brief The exception that is thrown by the parser when it encounters a section that has the same name as a previously parsed section.
*/
class DuplicateSection: public ParseException
{
private:
/**
* \brief The name of the duplicate section.
*/
std::string name;
/**
* \brief The message that is returned by the what() method.
*/
std::string message;
public:
/**
* \brief Constructs a new DuplicateSection instance.
*
* \param name_init The name of the duplicate section.
*/
DuplicateSection(const std::string &name_init) throw();
/**
* \brief Constructs a new DuplicateSection instance by copying another one.
*
* \param original The instance that is copied.
*/
DuplicateSection(const DuplicateSection &original) throw();
/**
* \brief Destructs a DuplicateSection.
*/
virtual ~DuplicateSection() throw();
/**
* \brief Copies a DuplicateSection.
*
* \param original The instance that is copied.
*
* \return A reference to this instance.
*/
DuplicateSection &operator=(const DuplicateSection &original) throw();
/**
* \brief Returns a description of the error hat occurred.
*
* \return A description of the error hat occurred.
*/
virtual const char *what() const throw();
};
/**
* \brief The exception that is thrown when the parser encounters an entry that has the same key as a previously parsed key in the same section.
*/
class DuplicateEntry: public ParseException
{
private:
/**
* \brief The name of the section that contains the duplicate entry.
*/
std::string section;
/**
* \brief The name of the duplicate entry.
*/
std::string key;
/**
* \brief The message that is returned by the what() method.
*/
std::string message;
public:
/**
* \brief Constructs a new DuplicateEntry instance.
*
* \param section_init The name of the section that contains the duplicate entry.
* \param key_init The name of the duplicate entry.
*/
DuplicateEntry(const std::string §ion_init,
const std::string &key_init) throw();
/**
* \brief Constructs a new DuplicateEntry instance by copying another one.
*
* \param original The instance that is copied.
*/
DuplicateEntry(const DuplicateEntry &original) throw();
/**
* \brief Destructs a DuplicateEntry.
*/
virtual ~DuplicateEntry() throw();
/**
* \brief Copies a DuplicateEntry exception.
*
* \param original The instance that is copied.
*
* \return A reference to this instance.
*/
DuplicateEntry &operator=(const DuplicateEntry &original) throw();
/**
* \brief Returns a description of the error hat occurred.
*
* \return A description of the error hat occurred.
*/
virtual const char *what() const throw();
};
/**
* \brief The execption that is thrown when the value of a nonexistent entry is requested.
*
* Note that this exception is only thrown when the value of an Entry is obtained; not when the entry is obtained from a Section.
*/
class NonexistentEntry: public std::exception
{
private:
/**
* \brief The name of the section from which the nonexistent entry is obtained.
*/
std::string section_name;
/**
* \brief The name of the nonexistent entry.
*/
std::string entry_name;
/**
* \brief The message that is returned by the what() method.
*/
std::string message;
public:
/**
* \brief Constructs a new NonexistentEntry instance.
*
* \param section_name_init The name of the section from which the nonexistent entry is obtained.
* \param entry_name_init The name of the nonexistent entry.
*/
NonexistentEntry(const std::string §ion_name_init,
const std::string &entry_name_init) throw();
/**
* \brief Constructs a new NonexistentEntry instance by copying another one.
*
* \param original The instance that is copied.
*/
NonexistentEntry(const NonexistentEntry &original) throw();
/**
* \brief Destructs a NonexistentEntry.
*/
virtual ~NonexistentEntry() throw();
/**
* \brief Copies a NonexistentEntry.
*
* \param original The instance that is copied.
*
* \return A reference to this instance.
*/
NonexistentEntry &operator=(const NonexistentEntry &original) throw();
/**
* \brief Returns a description of the error hat occurred.
*
* \return A description of the error hat occurred.
*/
const char *what() const throw();
};
/**
* \brief The execption that is thrown when the value of an entry in an ini-configuration cannot be converted to the requested value.
*/
class IncompatibleConversion: public std::exception
{
private:
/**
* \brief The name of the section of the entry.
*/
std::string section_name;
/**
* \brief The name of the entry.
*/
std::string entry_name;
/**
* \brief The name of the requested type, e.g. "int".
*/
std::string type_name;
/**
* \brief The message that is returned by the what() method.
*/
std::string message;
public:
/**
* \brief Constructs a new IncompatibleConversion exception.
*
* \param section_name_init The name of the section of the entry.
* \param entry_name_init The name of the entry.
* \param type_name_init The name of the requested type, e.g. "int".
*/
IncompatibleConversion(const std::string §ion_name_init,
const std::string &entry_name_init,
const std::string &type_name_init) throw();
/**
* \brief Constructs a IncompatibleConversion exception by copying another one.
*
* \param original The instance that is copied.
*/
IncompatibleConversion(const IncompatibleConversion &original) throw();
/**
* \brief Destructs a .
*/
virtual ~IncompatibleConversion() throw();
/**
* \brief Copies an IncompatibleConversion.
*
* \param original The instance that is copied.
*
* \return A reference to this instance.
*/
IncompatibleConversion &operator=(const IncompatibleConversion &original) throw();
/**
* \brief Returns a description of the error hat occurred.
*
* \return A description of the error hat occurred.
*/
virtual const char *what() const throw();
};
/**
* \brief The type that is used to store int tuples (list of ints).
*/
typedef std::vector<int> IntTuple;
/**
* \brief The type that is used to store double tuples (list of doubles).
*/
typedef std::vector<double> DoubleTuple;
/**
* \brief The base class for all classes that contain the value of an entry.
*/
class Value;
/**
* \brief The class that represents an entry in the section of an INI configuration.
*/
class Entry
{
private:
/**
* \brief The name of the section to which this entry belongs.
*/
std::string section_name;
/**
* \brief The name of this entry.
*/
std::string entry_name;
/**
* \brief A pointer to the value of this entry.
*/
const Value *value_ptr;
public:
/**
* \brief Constructs a new entry given the name of the section it belongs to and its value.
*
* \param section_name_init The name of the section to which this entry belongs.
* \param entry_name_init The name of this entry.
* \param value_ptr_init A pointer to the value of this entry.
*/
Entry(const std::string §ion_name_init,
const std::string &entry_name_init,
const Value *const value_ptr_init);
/**
* \brief Constructs an entry by copying another one.
*
* \param original The section whose values are copied.
*/
Entry(const Entry &original);
/**
* \brief Destructs an entry.
*/
~Entry();
/**
* \brief Copies an entry.
*
* \param original The section whose values are copied.
*
* \return A reference to this entry.
*/
Entry &operator=(const Entry &original);
/**
* \brief Returns the name of the section to which this entry belongs.
*
* \return The name of the section to which this entry belongs.
*/
const std::string &get_section_name() const;
/**
* \brief Returns the name of this entry.
*
* \return Returns the name of this entry.
*/
const std::string &get_entry_name() const;
/**
* \brief Checks whether this entry exists in the configuration or not.
*
* \return \c true if this entry exits, \c false otherwise.
*/
bool exists() const;
/**
* \brief Returns the value as an int.
*
* If the entry exists and can be represented as an int, the value is passed to
* the caller through the parameter and \c true is returned. If the entry exists
* but is not representable as an int, an IncompatibleConversion exception is
* thrown. If the entry does not exist, \c false is returned and the value of
* the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_int_if_exists(int &ret_val) const;
/**
* \brief Returns the value as a double.
*
* If the entry exists and can be represented as a double, the value is passed to
* the caller through the parameter and \c true is returned. If the entry exists
* but is not representable as a double, an IncompatibleConversion exception is
* thrown. If the entry does not exist, \c false is returned and the value of
* the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_double_if_exists(double &ret_val) const;
/**
* \brief Returns the value as a string.
*
* If the entry exists and can be represented as a string, the value is passed to
* the caller through the parameter and \c true is returned. If the entry exists
* but is not representable as a string, an IncompatibleConversion exception is
* thrown. If the entry does not exist, \c false is returned and the value of
* the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_string_if_exists(std::string &ret_val) const;
/**
* \brief Returns the value as a bool.
*
* If the entry exists and can be represented as a bool, the value is passed to
* the caller through the parameter and \c true is returned. If the entry exists
* but is not representable as a bool, an IncompatibleConversion exception is
* thrown. If the entry does not exist, \c false is returned and the value of
* the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_bool_if_exists(bool &ret_val) const;
/**
* \brief Returns the value as an int tuple.
*
* If the entry exists and can be represented as an int tuple, the value is
* passed to the caller through the parameter and \c true is returned. If the
* value exists but is not representable as an int tuple, an
* IncompatibleConversion exception is thrown. If the entry does not exist, \c
* false is returned and the value of the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_int_tuple_if_exists(IntTuple &ret_val) const;
/**
* \brief Returns the value as a double tuple.
*
* If the entry exists and can be represented as a double tuple, the value is
* passed to the caller through the parameter and \c true is returned. If the
* value exists but is not representable as a double tuple, an
* IncompatibleConversion exception is thrown. If the entry does not exist, \c
* false is returned and the value of the parameter is not changed.
*
* \param ret_val The parameter through which the value is returned.
*
* \return \c true if the value exists, \c false otherwise.
*/
bool as_double_tuple_if_exists(DoubleTuple &ret_val) const;
/**
* \brief Returns the value as an int.
*
* If the entry exists and can be represented as an int, it is returned. If the
* value is not representable as an int, an IncompatibleConversion exception is
* thrown. If the entry does not exist, a NonexistentEntry exception is thrown.
*
* \return The value as an int.
*/
int as_int_or_die() const;
/**
* \brief Returns the value as a double.
*
* If the entry exists and can be represented as a double, it is returned. If
* the value is not representable as a double, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a NonexistentEntry
* exception is thrown.
*
* \return The value as a double.
*/
double as_double_or_die() const;
/**
* \brief Returns the value as a string.
*
* If the entry exists and can be represented as a string, it is returned. If
* the value is not representable as a string, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a NonexistentEntry
* exception is thrown.
*
* \return The value as a string.
*/
std::string as_string_or_die() const;
/**
* \brief Returns the value as a bool.
*
* If the entry exists and can be represented as a bool, it is returned. If the
* value is not representable as a bool, an IncompatibleConversion exception is
* thrown. If the entry does not exist, a NonexistentEntry exception is thrown.
*
* \return The value as a bool.
*/
bool as_bool_or_die() const;
/**
* \brief Returns the value as an int tuple.
*
* If the entry exists and can be represented as an int tuple, it is returned.
* If the value is not representable as an int tuple, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a NonexistentEntry
* exception is thrown.
*
* \return The value as an int tuple.
*/
IntTuple as_int_tuple_or_die() const;
/**
* \brief Returns the value as a double tuple.
*
* If the entry exists and can be represented as a double tuple, it is returned.
* If the value is not representable as a double tuple, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a NonexistentEntry
* exception is thrown.
*
* \return The value as a double tuple.
*/
DoubleTuple as_double_tuple_or_die() const;
/**
* \brief Returns the value as an int.
*
* If the entry exists and can be represented as an int, it is returned. If the
* value is not representable as an int, an IncompatibleConversion exception is
* thrown. If the entry does not exist, a default value is returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as an int or the default value if the value does not exist.
*/
int as_int_or_default(const int def_val) const;
/**
* \brief Returns the value as a double.
*
* If the entry exists and can be represented as a double, it is returned. If
* the value is not representable as a double, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a default value is
* returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as a double or the default value if the value does not exist.
*/
double as_double_or_default(const double def_val) const;
/**
* \brief Returns the value as a string.
*
* If the entry exists and can be represented as a string, it is returned. If
* the value is not representable as a string, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a default value is
* returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as a string or the default value if the value does not exist.
*/
std::string as_string_or_default(const std::string &def_val) const;
/**
* \brief Returns the value as a bool.
*
* If the entry exists and can be represented as a bool, it is returned. If the
* value is not representable as a bool, an IncompatibleConversion exception is
* thrown. If the entry does not exist, a default value is returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as a bool or the default value if the value does not exist.
*/
bool as_bool_or_default(const bool def_val) const;
/**
* \brief Returns the value as an int tuple.
*
* If the entry exists and can be represented as an int tuple, it is returned.
* If the value is not representable as an int tuple, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a default value is
* returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as an int tuple or the default value if the value does not exist.
*/
IntTuple as_int_tuple_or_default(const IntTuple &def_val) const;
/**
* \brief Returns the value as a double tuple.
*
* If the entry exists and can be represented as a double tuple, it is returned.
* If the value is not representable as a double tuple, an IncompatibleConversion
* exception is thrown. If the entry does not exist, a default value is
* returned.
*
* \param def_val The default value that is returned if the value does not exist.
*
* \return The value as a double tuple or the default value if the value does not exist.
*/
DoubleTuple as_double_tuple_or_default(const DoubleTuple &def_val) const;
/**
* \brief An alias for as_int_or_die.
*
* This conversion operator allows a Value to be converted to an int when it is
* assigned to an int variable.
*
* \return The int value of the Value.
*/
operator int() const;
/**
* \brief An alias for as_double_or_die.
*
* This conversion operator allows a Value to be converted to a double when it is
* assigned to a double variable.
*
* \return The double value of the Value.
*/
operator double() const;
/**
* \brief An alias for as_string_or_die.
*
* This conversion operator allows a Value to be converted to a string when it is
* assigned to a string variable.
*
* \return The string value of the Value.
*/
operator std::string() const;
/**
* \brief An alias for as_bool_or_die.
*
* This conversion operator allows a Value to be converted to a bool when it is
* assigned to a bool variable.
*
* \return The bool value of the Value.
*/
operator bool() const;
/**
* \brief An alias for as_int_tuple_or_die.
*
* This conversion operator allows a Value to be converted to an int tuple when
* it is assigned to an int tuple variable.
*
* \return The int tuple value of the Value.
*/
operator IntTuple() const;
/**
* \brief An alias for as_int_or_die.
*
* This conversion operator allows a Value to be converted to a double tuple when
* it is assigned to a double tuple variable.
*
* \return The double tuple value of the Value.
*/
operator DoubleTuple() const;
/**
* \brief An alias for as_int_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as an int or def_val if the value does not exist.
*/
int operator||(const int def_val) const;
/**
* \brief An alias for as_double_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as a double or def_val if the value does not exist.
*/
double operator||(const double def_val) const;
/**
* \brief An alias for as_string_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as a string or def_val if the value does not exist.
*/
std::string operator||(const std::string &def_val) const;
/**
* \brief An alias for as_bool_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as a bool or def_val if the value does not exist.
*/
bool operator||(const bool def_val) const;
/**
* \brief An alias for as_int_tuple_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as an int tuple or def_val if the value does not exist.
*/
IntTuple operator||(const IntTuple &def_val) const;
/**
* \brief An alias for as_double_tuple_or_default.
*
* \param def_val The value that is returned if the requested value does not exist.
*
* \return The requested value as a double tuple or def_val if the value does not exist.
*/
DoubleTuple operator||(const DoubleTuple &def_val) const;
};
/**
* \brief The type of the map in which the values are stored.
*/
typedef std::map<std::string, Value *> ValueMap;
/**
* \brief The type of the iterator for iterating over a ValueMap.
*/
typedef ValueMap::iterator ValueIter;
/**
* \brief The type of the iterator for iterating over a constant ValueMap.
*/
typedef ValueMap::const_iterator ConstValueIter;
/**
* \brief The type that is used to represent sections that are stored in the configuration file.
*/
class Section
{
private:
/**
* \brief The name of this section.
*/
std::string section_name;
/**
* \brief A pointer to the map that stores the entries of the section.
*/
const ValueMap *values;
public:
/**
* \brief Creates a new section.
*
* \param section_name_init The name of the section.
* \param values_init An iterator to the map that stores the entries of the section.
*/
Section(const std::string §ion_name_init,
const ValueMap *const values_init);
/**
* \brief Creates a new section by copying another one.
*
* \param original The section that is copied.
*/
Section(const Section &original);
/**
* \brief Destructs a section.
*/
~Section();
/**
* \brief Copies another section.
*
* \param original The section that is copied.
*
* \return A reference to this section.
*/
Section &operator=(const Section &original);
/**
* \brief Looks up a entry in the section given its key and returns it.
*
* \param key The entry corresponding to the key.
*
* \return The entry corresponding to the key or an empty entry if the requested entry does not exist.
*/
Entry operator[](const std::string &key) const;
};
/**
* \brief The type in which a configuration file is stored.
*/
class Configuration
{
private:
/**
* \brief The type of the map in which sections are stored.
*/
typedef std::map<std::string, ValueMap> SectionMap;
/**
* \brief The iterator for iterating over a SectionMap.
*/
typedef SectionMap::iterator SectionIter;
/**
* \brief The iterator for iterating over a constant SectionMap.
*/
typedef SectionMap::const_iterator ConstSectionIter;
/**
* \brief Maps the names of the sections on the entries in them.
*/
SectionMap sections;
/**
* \brief Deletes the entries in a section.
*/
static void delete_section(const SectionMap::value_type §ion);
/**
* \brief Constructs an INI configuration by copying another one.
*
* This copy-assignment operator is made private in order to avoid copying.
* INI configurations should not be copied, they should be passed by reference
* instead.
*
* \param original The INI configuration that is copied.
*/
Configuration(const Configuration &original);
/**
* \brief Copies an INI configuration.
*
* This copy-assignment operator is made private in order to avoid copying.
* INI configurations should not be copied, they should be passed by reference
* instead.
*
* \param original The INI configuration that is copied.
*
* \return A reference to this INI configuration.
*/
Configuration &operator=(const Configuration &original);
public:
/**
* \brief Constructs a new (empty) configuration.
*/
Configuration();
/**
* \brief Constructs a new Configuration by parsing the content from a stream.
*
* \param input_stream The stream from which the content is parsed.
*/
Configuration(std::istream &input_stream);
/**
* \brief Destructs a Configuration and frees all entries stored in it.
*/
~Configuration();
/**
* \brief Retrieves a section from the configuration file given its key.
*
* If the requested section does not exist, a section containing no values is
* returned.
*
* \param key The name of the requested section.
*
* \return A reference to the requested section.
*/
Section operator[](const std::string &key) const;