-
Notifications
You must be signed in to change notification settings - Fork 2
/
LeoIni.cpp
766 lines (607 loc) · 15.3 KB
/
LeoIni.cpp
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
#include "LeoIni.h"
#include <iostream>
# pragma warning (disable: 4554)
// compatibility check
#if __GNUC__ == 2
#define ios_base ios
#endif
bool Leo::Ini::Element::add( Element& element )
{
if( type == SECTION && element.type == KEY )
{
element.section = section;
elements.push_back( element );
return true;
}
if( type == SECTION_LIST && element.type == SECTION )
{
elements.push_back( element );
return true;
}
return false;
}
void Leo::Ini::MemElement::clear()
{
line.clear();
type = UNDEF;
elements.clear();
mem_elements.clear();
section = "";
key = "";
value = "";
}
/*** creates an Element from a MemElement */
Leo::Ini::Element Leo::Ini::MemElement::get_element()
{
Element e( type, section, key, value );
if( type == SECTION || type == SECTION_LIST )
for( mem_element_list_it it = mem_elements.begin();
it != mem_elements.end(); it++ )
e.elements.push_back( it->get_element() );
return e;
}
std::string Leo::Ini::Line::get_line()
{
str = "";
for( std::string::size_type i = 0; i < tag.pos; i++ )
str += ' ';
str += tag.str;
for( std::string::size_type i = 0; i < comment.pos; i++ )
str += ' ';
if( !comment.str.empty() )
str += ';' + comment.str;
return str;
}
void Leo::Ini::MemElement::operator=(const Element& e )
{
section = e.section;
key = e.key;
value = e.value;
type = e.type;
if( type == SECTION )
{
line.tag.str = '[' + section + ']';
line.get_line();
}
else if( type == KEY )
{
line.tag.str = key + " = " + value;
line.get_line();
}
if( type == SECTION || type == SECTION_LIST )
for( element_list_it it = e.elements.begin();
it != e.elements.end(); it++ )
*this = *it;
}
Leo::Ini::Ini( std::string filename, int mode )
{
is_open = false;
valid = false;
eof_reached = false;
open( filename, mode );
}
Leo::Ini::~Ini()
{
close();
}
bool Leo::Ini::open( std::string f, int mode )
{
if( is_open )
return false;
file_name = f;
openmode = mode;
eof_reached = false;
file_readed = false;
line_number = 0;
changed = false;
file.open( file_name.c_str() , static_cast<std::ios_base::openmode>( mode ));
if( !file )
{
valid = false;
is_open = false;
return false;
}
is_open = true;
valid = true;
return true;
}
void Leo::Ini::close()
{
flush();
file.close();
// free the memory
clear();
file_readed = false;
bool changed = false;
}
Leo::Ini::Line Leo::Ini::read_line()
{
Line line;
while( true )
{
std::getline( file, line.str );
line.number = line_number;
line_number++;
if( file.eof() )
{
eof_reached = true;
line_number = 0;
}
if( !strip( line.str ).empty() )
{
// comment
std::string::size_type pos = find_comment( line.str );
if( pos != std::string::npos )
{
line.comment.pos = pos;
line.comment.str = line.str.substr( pos+1 );
}
// tag
std::string::size_type end_pos;
if( find_tag( pos, end_pos, line.str.substr(0,pos) ) )
{
line.tag.pos = pos;
line.tag.str = line.str.substr( pos, end_pos - pos + 1 );
}
break; // we have a valid line
}
if( eof_reached )
break;
}
return line;
}
std::string Leo::Ini::strip( std::string str, std::string what )
{
if( str.empty() )
return "";
std::string::size_type start = str.find_first_not_of( what );
std::string::size_type end = str.find_last_not_of( what );
if( start == std::string::npos || end == std::string::npos )
return "";
return str.substr( start, end - start +1 );
}
/// reads the file
bool Leo::Ini::read()
{
if( !is_open )
return false;
if( file_readed )
return false;
MemElement current_section;
bool in_section = false;
while( true )
{
Line line = read_line();
if( eof_reached && line.str.empty() )
break;
if( line.tag.str.empty() )
{
// simple comment
comments.push_back( line );
continue;
}
if( is_section( line.tag.str ) )
{
if( in_section )
{
elements.push_back( current_section );
current_section.clear();
}
// create a new section
current_section.line = line;
current_section.section = extract_section_name( line.tag.str );
current_section.type = Element::SECTION;
in_section = true;
}
else if( is_key( line.tag.str ) && in_section )
{
// create a new key
MemElement me;
me.line = line;
me.section = current_section.section;
me.key = extract_key_name( line.tag.str );
me.value = extract_key_data( line.tag.str );
me.type = Element::KEY;
current_section.mem_elements.push_back( me );
}
}
if( !current_section.section.empty() )
elements.push_back( current_section );
file_readed = true;
return true;
}
std::string::size_type Leo::Ini::find_comment( const std::string& str )
{
// maybe I'll add later an better implementation if this
return str.find( ";" );
}
bool Leo::Ini::find_tag( std::string::size_type& start, std::string::size_type& end, const std::string& str )
{
start = str.find_first_not_of( " \t" );
if( start == std::string::npos )
return false;
end = str.find_last_not_of( " \t" );
if( end == std::string::npos )
return false;
if( start >= end )
return false;
return true;
}
bool Leo::Ini::is_section( const std::string& str )
{
std::string::size_type size = str.size();
if( size <= 2 )
return false;
if( str[0] == '[' && str[size-1] == ']' )
{
if( !strip(str.substr( 1, size - 2 )).empty() )
return true;
}
return false;
}
bool Leo::Ini::is_key( const std::string& str )
{
if( str.size() < 2 )
return false;
std::string::size_type pos = str.find( "=" );
if( pos == 0 || pos == std::string::npos )
return false;
return true;
}
std::string Leo::Ini::extract_key_name( const std::string& str )
{
std::string::size_type pos = str.find_first_of( " \t=" );
return str.substr( 0, pos );
}
std::string Leo::Ini::extract_key_data( const std::string& str )
{
std::string::size_type start = str.find( "=" );
std::string::size_type pos = str.find_first_not_of( " \t=", start );
if( pos == std::string::npos )
return "";
return str.substr( pos );
}
std::string Leo::Ini::extract_section_name( const std::string& str )
{
return strip( str.substr( 1, str.size()-2 ) );
}
void Leo::Ini::print_mem()
{
for( MemElement::mem_element_list_it sit = elements.begin();
sit != elements.end(); sit++ )
{
std::cout << *sit << std::endl;
for( MemElement::mem_element_list_it kit = sit->mem_elements.begin();
kit != sit->mem_elements.end(); kit++ )
std::cout << *kit << std::endl;
}
for( line_list_it it = comments.begin();
it != comments.end(); it++ )
std::cout << "Comment: " << it->str << std::endl;
}
bool Leo::Ini::read( Element& element )
{
if( !file_readed )
if( !read() )
return false;
if( !is_good_element( element ) )
return false;
bool ret = false;
switch( element.type )
{
case Element::SECTION_LIST:
// give it all
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
element.elements.push_back( it->get_element() );
return true;
break;
case Element::SECTION:
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
if( element.section == it->section )
{
element = it->get_element();
return true;
}
break;
case Element::KEY:
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
if( element.section == it->section )
{
for( MemElement::mem_element_list_it kit = it->mem_elements.begin();
kit != it->mem_elements.end(); kit++ )
if( kit->key == element.key )
{
element = kit->get_element();
return true;
}
}
break;
case Element::UNDEF:
default:
break;
}
return false;
}
bool Leo::Ini::is_good_element( Element& e )
{
switch( e.type )
{
case Element::KEY:
e.key = strip( e.key );
e.section = strip( e.section );
if( e.key.empty() || e.section.empty() ) return false;
case Element::SECTION:
e.section = strip( e.section );
if( e.section.empty() ) return false;
break;
case Element::SECTION_LIST: break;
case Element::UNDEF:
default:
return false;
}
return true;
}
bool Leo::Ini::is_good_element_rec( Element& element )
{
if( !is_good_element( element ) )
return false;
if( element.type == Element::SECTION || element.type == Element::SECTION_LIST )
for( Element::element_list_it it = element.elements.begin();
it != element.elements.end(); it++ )
if( !is_good_element_rec( *it ) )
return false;
return true;
}
bool Leo::Ini::write( Element element )
{
if( is_open )
if( openmode & std::ios_base::out != std::ios_base::out )
return false; // file opened in read_only mode
if( !is_good_element_rec( element ) )
return false;
/// the data will be changed now
changed = true;
MemElement me;
switch( element.type )
{
case Element::SECTION_LIST:
clear();
for( Element::element_list_it it = element.elements.begin();
it != element.elements.end(); it++ )
write( *it );
return true;
case Element::SECTION:
for( Element::element_list_it it = element.elements.begin();
it != element.elements.end(); it++ )
write( *it );
return true;
case Element::KEY:
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
if( it->section == element.section )
{
for( MemElement::mem_element_list_it kit = it->mem_elements.begin();
kit != it->mem_elements.end(); kit++ )
if( kit->key == element.key )
{
*kit = element;
return true;
}
// element does not exist in section
// lets create it
it->mem_elements.push_back( element );
return true;
}
// section for the element does not exist
me = MemElement( Element( Element::SECTION, element.section ));
me.mem_elements.push_back( element );
elements.push_back( me );
return true;
case Element::UNDEF:
default:
break;
}
return false;
}
void Leo::Ini::clear()
{
elements.clear();
comments.clear();
changed = true;
}
bool Leo::Ini::write()
{
if( !is_open )
return false;
if( openmode & std::ios_base::out != std::ios_base::out )
return false;
flush();
return true;
}
void Leo::Ini::flush()
{
if( !is_open )
return;
if( openmode & std::ios_base::out != std::ios_base::out )
return;
if( !changed )
return;
file.close();
// erase the file
file.open( file_name.c_str(), std::ios_base::trunc | std::ios_base::in | std::ios_base::out );
file.close();
file.open( file_name.c_str(), static_cast<std::ios_base::openmode>(openmode) );
int last_line = 1;
Line line;
MemElement::mem_element_list_it mit, bak_mit;
mit = bak_mit = elements.begin();
line_list_it cit = comments.begin();
while( true )
{
int next_comment_at = 0;
if( cit != comments.end() )
next_comment_at = cit->number;
else
next_comment_at = -1;
int next_element_at = 0;
if( mit != elements.end() )
next_element_at = mit->line.number;
else
next_element_at = -1;
if( next_comment_at == -1 && next_element_at == -1 )
break;
int next = 0;
if( ((next_comment_at < next_element_at) || next_element_at == -1 ) && next_comment_at != -1 )
{
next = next_comment_at;
line = *cit;
cit++;
}
else if( next_element_at != -1 )
{
next = next_element_at;
line = mit->line;
if( mit->type == Element::SECTION )
{
bak_mit = mit;
mit = mit->mem_elements.begin();
}
else
{
mit++;
if( mit == bak_mit->mem_elements.end() )
{
mit = bak_mit;
mit++;
}
}
}
write_line( line, last_line );
last_line = line.number;
}
changed = false;
}
bool Leo::Ini::write_line( const Line& line, int last_line )
{
for( int i = last_line+1; i < line.number; i++)
file << std::endl;
file << line.str << std::endl;
return true;
}
bool Leo::Ini::erase()
{
if( is_open )
if( openmode & std::ios_base::out == std::ios_base::out )
{
clear();
return true;
}
return false;
}
bool Leo::Ini::erase( Element element )
{
if( !is_open ||( openmode & std::ios_base::out != std::ios_base::out ) )
return false;
if( !is_good_element_rec( element ) )
return false;
changed = true;
MemElement me;
switch( element.type )
{
case Element::SECTION_LIST:
clear();
for( Element::element_list_it it = element.elements.begin();
it != element.elements.end(); it++ )
erase( *it );
return true;
case Element::SECTION:
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
if( it->section == element.section )
{
for( Element::element_list_it kit = element.elements.begin();
kit != element.elements.end(); kit++ )
erase( *kit );
if( is_section_empty( *it ) )
{
// delete section only if it is empty
elements.remove( *it );
}
return true;
}
// section not found, so return false
return false;
case Element::KEY:
for( MemElement::mem_element_list_it it = elements.begin();
it != elements.end(); it++ )
{
if( it->section == element.section )
{
for( MemElement::mem_element_list_it kit = it->mem_elements.begin();
kit != it->mem_elements.end(); kit++ )
{
// cout << kit->key << " == " << element.key << " => "; cout.flush();
if( kit->key == element.key )
{
// cout << "true" << endl; cout.flush();
it->mem_elements.remove( *kit );
if( is_section_empty( *it ) )
elements.remove( *it );
return true;
}
// cout << "false" << endl; cout.flush();
}
// element does not exist in section
return false;
}
}
// section for the element does not exist
return false;
case Element::UNDEF:
default:
break;
}
return false;
}
bool Leo::Ini::is_section_empty( MemElement& element )
{
if( element.type == Element::SECTION )
{
MemElement::mem_element_list_it it = element.mem_elements.begin();
if( it == element.mem_elements.end() )
return true;;
}
return false;
}
bool Leo::operator == ( const Ini::MemElement& a, const Ini::MemElement& b )
{
if( a.type == b.type &&
a.section == b.section &&
a.key == b.key )
return true;
return false;
}
std::ostream& operator << ( std::ostream& out, const Leo::Ini::Element& e )
{
out << "Section: " << e.section;
if( !e.key.empty() )
out << " Key: " << e.key;
if( !e.value.empty() )
out << " Value: " << e.value;
switch( e.type )
{
case Leo::Ini::Element::SECTION_LIST: out << " type: SECTION_LIST "; break;
case Leo::Ini::Element::SECTION: out << " type: SECTION "; break;
case Leo::Ini::Element::KEY: out << " type: KEY "; break;
case Leo::Ini::Element::UNDEF: out << " type: UNDEF"; break;
}
return out;
}
extern "C" {
char leoini() { return 1; }
char leoini_version_2_1_1() { return 1; }
}
# pragma warning (default: 4554)