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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
|
/* Copyright © 2005-2009 Roger Leigh <rleigh@debian.org>
*
* schroot 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.
*
* schroot 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 SBUILD_BASIC_KEYFILE_H
#define SBUILD_BASIC_KEYFILE_H
#include <sbuild/sbuild-i18n.h>
#include <sbuild/sbuild-log.h>
#include <sbuild/sbuild-keyfile-base.h>
#include <sbuild/sbuild-parse-error.h>
#include <sbuild/sbuild-parse-value.h>
#include <sbuild/sbuild-types.h>
#include <sbuild/sbuild-tr1types.h>
#include <sbuild/sbuild-util.h>
#include <cassert>
#include <map>
#include <string>
#include <sstream>
#include <boost/format.hpp>
namespace sbuild
{
/**
*
*/
template <typename K>
class basic_keyfile_parser
{
public:
/// Exception type.
typedef keyfile_base::error error;
/// The constructor.
basic_keyfile_parser ()
{
}
/// The destructor.
virtual ~basic_keyfile_parser ()
{
}
/// Group name.
typename K::group_name_type group;
/// Group name is set.
bool group_set;
/// Key name.
typename K::key_type key;
/// Key name is set.
bool key_set;
/// Value.
typename K::value_type value;
/// Value is set.
bool value_set;
/// Comment.
typename K::comment_type comment;
/// Comment is set.
bool comment_set;
/// Line number.
typename K::size_type line_number;
/**
* Start processing input.
* Any setup may be done here.
*/
virtual void
begin ()
{
line_number = 0;
}
/**
* Parse a line of input. This function will be called for every
* line of input in the source file. The input line, line, is
* parsed appropriately. Any of the group, key, value, and
* comment members are set as required. If any of these members
* are ready for insertion into the keyfile, then the
* corresponding _set member must be set to true to signal the
* fact to the caller.
* @param line the line to parse.
*/
virtual void
parse_line (std::string const& line)
{
++line_number;
}
/**
* Stop processing input. Any cleanup may be done here. For
* example, any cached group or item may be set here.
*/
virtual void
end()
{
}
};
/**
* Configuration file parser. This class loads an INI-style
* configuration file from a file or stream. The format is
* documented in schroot.conf(5).
*/
template <typename K, typename P = basic_keyfile_parser<K> >
class basic_keyfile : public keyfile_base
{
public:
/// Group name.
typedef typename K::group_name_type group_name_type;
/// Key name.
typedef typename K::key_type key_type;
/// Value.
typedef typename K::value_type value_type;
/// Comment.
typedef typename K::comment_type comment_type;
/// Line number.
typedef typename K::size_type size_type;
/// Vector of groups
typedef std::vector<group_name_type> group_list;
/// Vector of values
typedef std::vector<value_type> value_list;
private:
/// Parse type.
typedef P parse_type;
/// Key-value-comment-line tuple.
typedef std::tr1::tuple<key_type,value_type,comment_type,size_type>
item_type;
/// Map between key name and key-value-comment tuple.
typedef std::map<key_type,item_type> item_map_type;
/// Group-items-comment-line tuple.
typedef std::tr1::tuple<group_name_type,item_map_type,comment_type,size_type> group_type;
/// Map between group name and group-items-comment tuple.
typedef std::map<group_name_type,group_type> group_map_type;
/// Vector of keys
typedef std::vector<key_type> key_list;
public:
/// The constructor.
basic_keyfile ();
/**
* The constructor.
*
* @param file the file to load the configuration from.
*/
basic_keyfile (std::string const& file);
/**
* The constructor.
*
* @param stream the stream to load the configuration from.
*/
basic_keyfile (std::istream& stream);
/// The destructor.
virtual ~basic_keyfile ();
/**
* Get a list of groups.
*
* @returns a list of groups in the basic_keyfile. If no groups exist,
* the list will be empty.
*/
group_list
get_groups () const;
/**
* Get a list of keys in a group.
*
* @param group the group to use.
* @returns a list of keys in a group. If no keys exist in the
* group, or the group does not exist, the list will be empty.
*/
key_list
get_keys (group_name_type const& group) const;
/**
* Check for unused keys in a group. If keys other than the
* specified keys exist in the specified group, print a warning
* about unknown keys having been used.
*
* @param group the group to use.
* @param keys the keys which have been used.
*/
void
check_keys (group_name_type const& group,
key_list const& keys) const;
/**
* Check if a group exists.
*
* @param group the group to check for.
* @returns true if the group exists, otherwise false.
*/
bool
has_group (group_name_type const& group) const;
/**
* Check if a key exists.
*
* @param group the group the key is in.
* @param key the key to check for.
* @returns true if the key exists, otherwise false.
*/
bool
has_key (group_name_type const& group,
key_type const& key) const;
/**
* Set a group. The group will be created (and the comment set)
* only if the group does not already exist.
*
* @param group the group to set.
* @param comment the comment to set.
*/
void
set_group (group_name_type const& group,
comment_type const& comment);
/**
* Set a group. The group will be created (and the comment set)
* only if the group does not already exist.
*
* @param group the group to set.
* @param comment the comment to set.
* @param line the line number in the input file, or 0 otherwise.
*/
void
set_group (group_name_type const& group,
comment_type const& comment,
size_type line);
/**
* Get a group comment.
*
* @param group the group to find.
* @returns the comment.
*/
comment_type
get_comment (group_name_type const& group) const;
/**
* Get a key comment.
*
* @param group the group to find.
* @param key the key to find.
* @returns the comment.
*/
comment_type
get_comment (group_name_type const& group,
key_type const& key) const;
/**
* Get a group line number.
*
* @param group the group to find.
* @returns the line number, or 0 if not available.
*/
size_type
get_line (group_name_type const& group) const;
/**
* Get a key line number.
*
* @param group the group to find.
* @param key the key to find.
* @returns the line number, or 0 if not available.
*/
size_type
get_line (group_name_type const& group,
key_type const& key) const;
/**
* Get a key value.
*
* @param group the group the key is in.
* @param key the key to get.
* @param value the value to store the key's value in. This must
* be settable from an istream and be copyable.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
template <typename T>
bool
get_value (group_name_type const& group,
key_type const& key,
T& value) const
{
log_debug(DEBUG_INFO) << "Getting keyfile group=" << group
<< ", key=" << key << std::endl;
const item_type *found_item = find_item(group, key);
if (found_item)
{
value_type const& strval(std::tr1::get<1>(*found_item));
try
{
parse_value(strval, value);
return true;
}
catch (parse_value_error const& e)
{
size_type line = get_line(group, key);
if (line)
{
error ep(line, group, key, PASSTHROUGH_LGK, e);
log_exception_warning(ep);
}
else
{
error ep(group, key, PASSTHROUGH_GK, e);
log_exception_warning(ep);
}
return false;
}
}
log_debug(DEBUG_NOTICE) << "key not found" << std::endl;
return false;
}
/**
* Get a key value. If the value does not exist, is deprecated or
* obsolete, warn appropriately.
*
* @param group the group the key is in.
* @param key the key to get.
* @param priority the priority of the option.
* @param value the value to store the key's value in. This must
* be settable from an istream and be copyable.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
template <typename T>
bool
get_value (group_name_type const& group,
key_type const& key,
priority priority,
T& value) const
{
bool status = get_value(group, key, value);
check_priority(group, key, priority, status);
return status;
}
/**
* Get a localised key string value.
*
* @param group the group the key is in.
* @param key the key to get.
* @param value the string to store the key's localised value in.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
bool
get_locale_string (group_name_type const& group,
key_type const& key,
value_type& value) const;
/**
* Get a localised key string value. If the value does not exist,
* is deprecated or obsolete, warn appropriately.
*
* @param group the group the key is in.
* @param key the key to get.
* @param priority the priority of the option.
* @param value the string to store the key's localised value in.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
bool
get_locale_string (group_name_type const& group,
key_type const& key,
priority priority,
value_type& value) const;
/**
* Get a localised key string value for a specific locale.
*
* @param group the group the key is in.
* @param key the key to get.
* @param locale the locale to use.
* @param value the string to store the key's localised value in.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
bool
get_locale_string (group_name_type const& group,
key_type const& key,
std::string const& locale,
value_type& value) const;
/**
* Get a localised key string value for a specific locale. If the
* value does not exist, is deprecated or obsolete, warn
* appropriately.
*
* @param group the group the key is in.
* @param key the key to get.
* @param locale the locale to use.
* @param priority the priority of the option.
* @param value the string to store the key's localised value in.
* @returns true if the key was found, otherwise false (in which
* case value will be unchanged).
*/
bool
get_locale_string (group_name_type const& group,
key_type const& key,
std::string const& locale,
priority priority,
value_type& value) const;
/**
* Get a key value as a list.
*
* @param group the group the key is in.
* @param key the key to get.
* @param container the container to store the key's value in.
* The value type must be settable from an istream and be
* copyable. The list must be a container with a standard insert
* method.
* @returns true if the key was found, otherwise false (in which
* case value will be undefined).
*/
template <typename C>
bool
get_list_value (group_name_type const& group,
key_type const& key,
C& container) const
{
value_type item_value;
if (get_value(group, key, item_value))
{
value_list items = split_string(item_value,
this->separator);
for (typename value_list::const_iterator pos = items.begin();
pos != items.end();
++pos
)
{
typename C::value_type tmp;
try
{
parse_value(*pos, tmp);
}
catch (parse_value_error const& e)
{
size_type line = get_line(group, key);
if (line)
{
error ep(line, group, key, PASSTHROUGH_LGK, e);
log_exception_warning(ep);
}
else
{
error ep(group, key, PASSTHROUGH_GK, e);
log_exception_warning(ep);
}
return false;
}
container.push_back(tmp);
}
return true;
}
return false;
}
/**
* Get a key value as a list. If the value does not exist, is
* deprecated or obsolete, warn appropriately.
*
* @param group the group the key is in.
* @param key the key to get.
* @param priority the priority of the option.
* @param container the container to store the key's value in.
* The value type must be settable from an istream and be
* copyable. The list must be a container with a standard insert
* method.
* @returns true if the key was found, otherwise false (in which
* case value will be undefined).
*/
template <typename C>
bool
get_list_value (group_name_type const& group,
key_type const& key,
priority priority,
C& container) const
{
bool status = get_list_value(group, key, container);
check_priority(group, key, priority, status);
return status;
}
/**
* Set a key value.
*
* @param group the group the key is in.
* @param key the key to set.
* @param value the value to get the key's value from. This must
* allow output to an ostream.
*/
template <typename T>
void
set_value (group_name_type const& group,
key_type const& key,
T const& value)
{
set_value(group, key, value, comment_type());
}
/**
* Set a key value.
*
* @param group the group the key is in.
* @param key the key to set.
* @param value the value to get the key's value from. This must
* allow output to an ostream.
* @param comment the comment for this key.
*/
template <typename T>
void
set_value (group_name_type const& group,
key_type const& key,
T const& value,
comment_type const& comment)
{
set_value(group, key, value, comment, 0);
}
/**
* Set a key value.
*
* @param group the group the key is in.
* @param key the key to set.
* @param value the value to get the key's value from. This must
* allow output to an ostream.
* @param comment the comment for this key.
* @param line the line number in the input file, or 0 otherwise.
*/
template <typename T>
void
set_value (group_name_type const& group,
key_type const& key,
T const& value,
comment_type const& comment,
size_type line)
{
std::ostringstream os;
os.imbue(std::locale::classic());
os << std::boolalpha << value;
set_group(group, "");
group_type *found_group = find_group(group);
assert (found_group != 0); // should not fail
item_map_type& items = std::tr1::get<1>(*found_group);
typename item_map_type::iterator pos = items.find(key);
if (pos != items.end())
items.erase(pos);
items.insert
(typename item_map_type::value_type(key,
item_type(key, os.str(),
comment, line)));
}
/**
* Set a key value from a list.
*
* @param group the group the key is in.
* @param key the key to set.
* @param begin an iterator referring to the start of the
* list. The value type must allow output to an ostream.
* @param end an iterator referring to the end of the list.
*/
template <typename I>
void
set_list_value (group_name_type const& group,
key_type const& key,
I begin,
I end)
{
set_list_value(group, key, begin, end, comment_type());
}
/**
* Set a key value from a list.
*
* @param group the group the key is in.
* @param key the key to set.
* @param begin an iterator referring to the start of the
* list. The value type must allow output to an ostream.
* @param end an iterator referring to the end of the list.
* @param comment the comment for this key.
*/
template <typename I>
void
set_list_value (group_name_type const& group,
key_type const& key,
I begin,
I end,
comment_type const& comment)
{
set_list_value (group, key, begin, end, comment, 0);
}
/**
* Set a key value from a list.
*
* @param group the group the key is in.
* @param key the key to set.
* @param begin an iterator referring to the start of the
* list. The value type must allow output to an ostream.
* @param end an iterator referring to the end of the list.
* @param comment the comment for this key.
* @param line the line number in the input file, or 0 otherwise.
*/
template <typename I>
void
set_list_value (group_name_type const& group,
key_type const& key,
I begin,
I end,
comment_type const& comment,
size_type line)
{
value_type strval;
for (I pos = begin; pos != end; ++ pos)
{
std::ostringstream os;
os.imbue(std::locale::classic());
os << std::boolalpha << *pos;
if (os)
{
strval += os.str();
if (pos + 1 != end)
strval += this->separator;
}
}
set_value (group, key, strval, comment, line);
}
/**
* Remove a group.
*
* @param group the group to remove.
*/
void
remove_group (group_name_type const& group);
/**
* Remove a key.
*
* @param group the group the key is in.
* @param key the key to remove.
*/
void
remove_key (group_name_type const& group,
key_type const& key);
/**
* Add a basic_keyfile to the basic_keyfile.
*
* @param rhs the basic_keyfile to add.
* @returns the modified basic_keyfile.
*/
basic_keyfile&
operator += (basic_keyfile const& rhs);
/**
* Add a basic_keyfile to the basic_keyfile.
*
* @param lhs the basic_keyfile to add to.
* @param rhs the values to add.
* @returns the new basic_keyfile.
*/
template <typename _K, typename _P>
friend basic_keyfile<_K, _P>
operator + (basic_keyfile<_K, _P> const& lhs,
basic_keyfile<_K, _P> const& rhs);
/**
* basic_keyfile initialisation from an istream.
*
* @param stream the stream to input from.
* @param kf the basic_keyfile to set.
* @returns the stream.
*/
template <class charT, class traits>
friend
std::basic_istream<charT,traits>&
operator >> (std::basic_istream<charT,traits>& stream,
basic_keyfile& kf)
{
basic_keyfile tmp;
parse_type state;
std::string line;
state.begin();
while (std::getline(stream, line))
{
state.parse_line(line);
// Insert group
if (state.group_set)
{
if (tmp.has_group(state.group))
throw error(state.line_number, DUPLICATE_GROUP, state.group);
else
tmp.set_group(state.group, state.comment, state.line_number);
}
// Insert item
if (state.key_set && state.value_set)
{
if (tmp.has_key(state.group, state.key))
throw error(state.line_number, state.group, DUPLICATE_KEY, state.key);
else
tmp.set_value(state.group, state.key, state.value, state.comment, state.line_number);
}
}
state.end();
// TODO: do inserts here as well.
kf += tmp;
return stream;
}
/**
* basic_keyfile output to an ostream.
*
* @param stream the stream to output to.
* @param kf the basic_keyfile to output.
* @returns the stream.
*/
template <class charT, class traits>
friend
std::basic_ostream<charT,traits>&
operator << (std::basic_ostream<charT,traits>& stream,
basic_keyfile const& kf)
{
size_type group_count = 0;
for (typename group_map_type::const_iterator gp = kf.groups.begin();
gp != kf.groups.end();
++gp, ++group_count)
{
if (group_count > 0)
stream << '\n';
group_type const& group = gp->second;
group_name_type const& groupname = std::tr1::get<0>(group);
comment_type const& comment = std::tr1::get<2>(group);
if (comment.length() > 0)
print_comment(comment, stream);
stream << '[' << groupname << ']' << '\n';
item_map_type const& items(std::tr1::get<1>(group));
for (typename item_map_type::const_iterator it = items.begin();
it != items.end();
++it)
{
item_type const& item = it->second;
key_type const& key(std::tr1::get<0>(item));
value_type const& value(std::tr1::get<1>(item));
comment_type const& comment(std::tr1::get<2>(item));
if (comment.length() > 0)
print_comment(comment, stream);
stream << key << '=' << value << '\n';
}
}
return stream;
}
private:
/**
* Find a group by it's name.
*
* @param group the group to find.
* @returns the group, or 0 if not found.
*/
const group_type *
find_group (group_name_type const& group) const;
/**
* Find a group by it's name.
*
* @param group the group to find.
* @returns the group, or 0 if not found.
*/
group_type *
find_group (group_name_type const& group);
/**
* Find a key by it's group and name.
*
* @param group the group the key is in.
* @param key the key to find
* @returns the key, or 0 if not found.
*/
const item_type *
find_item (group_name_type const& group,
key_type const& key) const;
/**
* Find a key by it's group and name.
*
* @param group the group the key is in.
* @param key the key to find
* @returns the key, or 0 if not found.
*/
item_type *
find_item (group_name_type const& group,
key_type const& key);
/**
* Check if a key is missing or present when not permitted.
*
* @param group the group the key is in.
* @param key the key to get.
* @param priority the key priority.
* @param valid true if key exists, false if not existing.
*/
void
check_priority (group_name_type const& group,
key_type const& key,
priority priority,
bool valid) const;
/**
* Print a comment to a stream. The comment will have hash ('#')
* marks printed at the start of each line.
*
* @param comment the comment to print.
* @param stream the stream to output to.
*
* @todo Use split string or some general iterator/algorithm
* instead of custom string manipulation. This could be reused by
* log_exception_* functions and split_string.
*/
static void
print_comment (comment_type const& comment,
std::ostream& stream);
/// The top-level groups.
group_map_type groups;
/// The separator used as a list item delimiter.
value_type separator;
public:
/**
* Set a key value from an object method return value. This is
* the same as calling set_value directly, but handles exceptions
* being thrown by the object method, which are turned into error
* exceptions.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
*/
template<class C, typename T>
static void
set_object_value (C const& object,
T (C::* method)() const,
basic_keyfile& basic_keyfile,
group_name_type const& group,
key_type const& key)
{
try
{
if (method)
basic_keyfile.set_value(group, key, (object.*method)());
}
catch (std::runtime_error const& e)
{
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Set a key value from an object method return value reference.
* This is the same as calling set_value directly, but handles
* exceptions being thrown by the object method, which are turned
* into error exceptions.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
*/
template<class C, typename T>
static void
set_object_value (C const& object,
T const& (C::* method)() const,
basic_keyfile& basic_keyfile,
group_name_type const& group,
key_type const& key)
{
try
{
if (method)
basic_keyfile.set_value(group, key, (object.*method)());
}
catch (std::runtime_error const& e)
{
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Set a key list value from an object method return value. The
* method must return a container with begin() and end() methods
* which return forward iterators. This is the same as calling
* set_list_value directly, but handles exceptions being thrown by
* the object method, which are turned into error exceptions.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
*/
template<class C, typename T>
static void
set_object_list_value (C const& object,
T (C::* method)() const,
basic_keyfile& basic_keyfile,
group_name_type const& group,
key_type const& key)
{
try
{
if (method)
basic_keyfile.set_list_value(group, key,
(object.*method)().begin(),
(object.*method)().end());
}
catch (std::runtime_error const& e)
{
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Set a key list value from an object method return value. The
* method must return a container reference with begin() and end()
* methods which return forward iterators. This is the same as
* calling set_list_value directly, but handles exceptions being
* thrown by the object method, which are turned into error
* exceptions.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
*/
template<class C, typename T>
static void
set_object_list_value (C const& object,
T const& (C::* method)() const,
basic_keyfile& basic_keyfile,
group_name_type const& group,
key_type const& key)
{
try
{
if (method)
basic_keyfile.set_list_value(group, key,
(object.*method)().begin(),
(object.*method)().end());
}
catch (std::runtime_error const& e)
{
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Get a key value and set it in an object using an object method.
* This is the same as calling get_value directly, but handles
* exceptions being thrown by the object method, and
* deserialisation errors, which are turned into error exceptions
* pointing to the group, key and line number in the input file.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
* @param priority the key priority.
*/
template<class C, typename T>
static void
get_object_value (C& object,
void (C::* method)(T param),
basic_keyfile const& basic_keyfile,
group_name_type const& group,
key_type const& key,
basic_keyfile::priority priority)
{
try
{
T value;
if (basic_keyfile.get_value(group, key, priority, value)
&& method)
(object.*method)(value);
}
catch (std::runtime_error const& e)
{
size_type line = basic_keyfile.get_line(group, key);
if (line)
throw error(line, group, key, PASSTHROUGH_LGK, e);
else
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Get a key value and set it by reference in an object using an
* object method. This is the same as calling get_value directly,
* but handles exceptions being thrown by the object method, and
* deserialisation errors, which are turned into error exceptions
* pointing to the group, key and line number in the input file.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
* @param priority the key priority.
*/
template<class C, typename T>
static void
get_object_value (C& object,
void (C::* method)(T const& param),
basic_keyfile const& basic_keyfile,
group_name_type const& group,
key_type const& key,
basic_keyfile::priority priority)
{
try
{
T value;
if (basic_keyfile.get_value(group, key, priority, value)
&& method)
(object.*method)(value);
}
catch (std::runtime_error const& e)
{
size_type line = basic_keyfile.get_line(group, key);
if (line)
throw error(line, group, key, PASSTHROUGH_LGK, e);
else
throw error(group, key, PASSTHROUGH_GK, e);
}
}
/**
* Get a key list value and set it in an object using an object
* method. This is the same as calling get_list_value directly,
* but handles exceptions being thrown by the object method, and
* deserialisation errors, which are turned into error exceptions
* pointing to the group, key and line number in the input file.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
* @param priority the key priority.
*/
template<class C, typename T>
static void
get_object_list_value (C& object,
void (C::* method)(T param),
basic_keyfile const& basic_keyfile,
group_name_type const& group,
key_type const& key,
basic_keyfile::priority priority)
{
try
{
T value;
if (basic_keyfile.get_list_value(group, key, priority, value)
&& method)
(object.*method)(value);
}
catch (std::runtime_error const& e)
{
size_type line = basic_keyfile.get_line(group, key);
if (line)
throw error(line, group, key, PASSTHROUGH_LGK, e);
else
throw error(group, key, PASSTHROUGH_GK, e);
throw error(basic_keyfile.get_line(group, key),
group, key, e);
}
}
/**
* Get a key list value and set it by reference in an object using
* an object method. This is the same as calling get_list_value
* directly, but handles exceptions being thrown by the object
* method, and deserialisation errors, which are turned into error
* exceptions pointing to the group, key and line number in the
* input file.
*
* @param object the object to use.
* @param method the object method to call.
* @param basic_keyfile the basic_keyfile to use.
* @param group the group the key is in.
* @param key the key to set.
* @param priority the key priority.
*/
template<class C, typename T>
static void
get_object_list_value (C& object,
void (C::* method)(T const& param),
basic_keyfile const& basic_keyfile,
group_name_type const& group,
key_type const& key,
basic_keyfile::priority priority)
{
try
{
T value;
if (basic_keyfile.get_list_value(group, key, priority, value)
&& method)
(object.*method)(value);
}
catch (std::runtime_error const& e)
{
size_type line = basic_keyfile.get_line(group, key);
if (line)
throw error(line, group, key, PASSTHROUGH_LGK, e);
else
throw error(group, key, PASSTHROUGH_GK, e);
throw error(basic_keyfile.get_line(group, key),
group, key, e);
}
}
};
}
#include <sbuild/sbuild-basic-keyfile.tcc>
#endif /* SBUILD_BASIC_KEYFILE_H */
/*
* Local Variables:
* mode:C++
* End:
*/
|