~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

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
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
/*
This code is derived from jgit (http://eclipse.org/jgit).
Copyright owners are documented in jgit's IP log.

This program and the accompanying materials are made available
under the terms of the Eclipse Distribution License v1.0 which
accompanies this distribution, is reproduced below, and is
available at http://www.eclipse.org/org/documents/edl-v10.php

All rights reserved.

Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:

- Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.

- Redistributions in binary form must reproduce the above
  copyright notice, this list of conditions and the following
  disclaimer in the documentation and/or other materials provided
  with the distribution.

- Neither the name of the Eclipse Foundation, Inc. nor the
  names of its contributors may be used to endorse or promote
  products derived from this software without specific prior
  written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

using System;
using System.Collections.Generic;
using System.Text;
using NGit;
using NGit.Errors;
using NGit.Events;
using NGit.Internal;
using NGit.Util;
using Sharpen;

namespace NGit
{
	/// <summary>
	/// Git style
	/// <code>.config</code>
	/// ,
	/// <code>.gitconfig</code>
	/// ,
	/// <code>.gitmodules</code>
	/// file.
	/// </summary>
	public class Config
	{
		private static readonly string[] EMPTY_STRING_ARRAY = new string[] {  };

		private const long KiB = 1024;

		private const long MiB = 1024 * KiB;

		private const long GiB = 1024 * MiB;

		/// <summary>the change listeners</summary>
		private readonly ListenerList listeners = new ListenerList();

		/// <summary>Immutable current state of the configuration data.</summary>
		/// <remarks>
		/// Immutable current state of the configuration data.
		/// <p>
		/// This state is copy-on-write. It should always contain an immutable list
		/// of the configuration keys/values.
		/// </remarks>
		private readonly AtomicReference<ConfigSnapshot> state;

		private readonly NGit.Config baseConfig;

		/// <summary>Magic value indicating a missing entry.</summary>
		/// <remarks>
		/// Magic value indicating a missing entry.
		/// <p>
		/// This value is tested for reference equality in some contexts, so we
		/// must ensure it is a special copy of the empty string.  It also must
		/// be treated like the empty string.
		/// </remarks>
		private static readonly string MAGIC_EMPTY_VALUE = string.Empty;

		/// <summary>Create a configuration with no default fallback.</summary>
		/// <remarks>Create a configuration with no default fallback.</remarks>
		public Config() : this(null)
		{
		}

		/// <summary>Create an empty configuration with a fallback for missing keys.</summary>
		/// <remarks>Create an empty configuration with a fallback for missing keys.</remarks>
		/// <param name="defaultConfig">
		/// the base configuration to be consulted when a key is missing
		/// from this configuration instance.
		/// </param>
		public Config(NGit.Config defaultConfig)
		{
			baseConfig = defaultConfig;
			state = new AtomicReference<ConfigSnapshot>(NewState());
		}

		/// <summary>Escape the value before saving</summary>
		/// <param name="x">the value to escape</param>
		/// <returns>the escaped value</returns>
		private static string EscapeValue(string x)
		{
			bool inquote = false;
			int lineStart = 0;
			StringBuilder r = new StringBuilder(x.Length);
			for (int k = 0; k < x.Length; k++)
			{
				char c = x[k];
				switch (c)
				{
					case '\n':
					{
						if (inquote)
						{
							r.Append('"');
							inquote = false;
						}
						r.Append("\\n\\\n");
						lineStart = r.Length;
						break;
					}

					case '\t':
					{
						r.Append("\\t");
						break;
					}

					case '\b':
					{
						r.Append("\\b");
						break;
					}

					case '\\':
					{
						r.Append("\\\\");
						break;
					}

					case '"':
					{
						r.Append("\\\"");
						break;
					}

					case ';':
					case '#':
					{
						if (!inquote)
						{
							r.Insert(lineStart, '"');
							inquote = true;
						}
						r.Append(c);
						break;
					}

					case ' ':
					{
						if (!inquote && r.Length > 0 && r[r.Length - 1] == ' ')
						{
							r.Insert(lineStart, '"');
							inquote = true;
						}
						r.Append(' ');
						break;
					}

					default:
					{
						r.Append(c);
						break;
						break;
					}
				}
			}
			if (inquote)
			{
				r.Append('"');
			}
			return r.ToString();
		}

		/// <summary>Obtain an integer value from the configuration.</summary>
		/// <remarks>Obtain an integer value from the configuration.</remarks>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>an integer value from the configuration, or defaultValue.</returns>
		public virtual int GetInt(string section, string name, int defaultValue)
		{
			return GetInt(section, null, name, defaultValue);
		}

		/// <summary>Obtain an integer value from the configuration.</summary>
		/// <remarks>Obtain an integer value from the configuration.</remarks>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="subsection">subsection name, such a remote or branch name.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>an integer value from the configuration, or defaultValue.</returns>
		public virtual int GetInt(string section, string subsection, string name, int defaultValue
			)
		{
			long val = GetLong(section, subsection, name, defaultValue);
			if (int.MinValue <= val && val <= int.MaxValue)
			{
				return (int)val;
			}
			throw new ArgumentException(MessageFormat.Format(JGitText.Get().integerValueOutOfRange
				, section, name));
		}

		/// <summary>Obtain an integer value from the configuration.</summary>
		/// <remarks>Obtain an integer value from the configuration.</remarks>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>an integer value from the configuration, or defaultValue.</returns>
		public virtual long GetLong(string section, string name, long defaultValue)
		{
			return GetLong(section, null, name, defaultValue);
		}

		/// <summary>Obtain an integer value from the configuration.</summary>
		/// <remarks>Obtain an integer value from the configuration.</remarks>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="subsection">subsection name, such a remote or branch name.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>an integer value from the configuration, or defaultValue.</returns>
		public virtual long GetLong(string section, string subsection, string name, long 
			defaultValue)
		{
			string str = GetString(section, subsection, name);
			if (str == null)
			{
				return defaultValue;
			}
			string n = str.Trim();
			if (n.Length == 0)
			{
				return defaultValue;
			}
			long mul = 1;
			switch (StringUtils.ToLowerCase(n[n.Length - 1]))
			{
				case 'g':
				{
					mul = GiB;
					break;
				}

				case 'm':
				{
					mul = MiB;
					break;
				}

				case 'k':
				{
					mul = KiB;
					break;
				}
			}
			if (mul > 1)
			{
				n = Sharpen.Runtime.Substring(n, 0, n.Length - 1).Trim();
			}
			if (n.Length == 0)
			{
				return defaultValue;
			}
			try
			{
				return mul * long.Parse(n);
			}
			catch (FormatException)
			{
				throw new ArgumentException(MessageFormat.Format(JGitText.Get().invalidIntegerValue
					, section, name, str));
			}
		}

		/// <summary>Get a boolean value from the git config</summary>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>
		/// true if any value or defaultValue is true, false for missing or
		/// explicit false
		/// </returns>
		public virtual bool GetBoolean(string section, string name, bool defaultValue)
		{
			return GetBoolean(section, null, name, defaultValue);
		}

		/// <summary>Get a boolean value from the git config</summary>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="subsection">subsection name, such a remote or branch name.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>
		/// true if any value or defaultValue is true, false for missing or
		/// explicit false
		/// </returns>
		public virtual bool GetBoolean(string section, string subsection, string name, bool
			 defaultValue)
		{
			string n = GetRawString(section, subsection, name);
			if (n == null)
			{
				return defaultValue;
			}
			if (MAGIC_EMPTY_VALUE == n)
			{
				return true;
			}
			try
			{
				return StringUtils.ToBoolean(n);
			}
			catch (ArgumentException)
			{
				throw new ArgumentException(MessageFormat.Format(JGitText.Get().invalidBooleanValue
					, section, name, n));
			}
		}

		/// <summary>Parse an enumeration from the configuration.</summary>
		/// <remarks>Parse an enumeration from the configuration.</remarks>
		/// <?></?>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="subsection">subsection name, such a remote or branch name.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>
		/// the selected enumeration value, or
		/// <code>defaultValue</code>
		/// .
		/// </returns>
		public virtual T GetEnum<T>(string section, string subsection, string name, T defaultValue
			)
		{
			Array all = AllValuesOf(defaultValue);
			return GetEnum(all, section, subsection, name, defaultValue);
		}

		private static Array AllValuesOf<T>(T value)
		{
			try
			{
				return Enum.GetValues (typeof(T));
			}
			catch (Exception err)
			{
				string typeName = value.GetType().FullName;
				string msg = MessageFormat.Format(JGitText.Get().enumValuesNotAvailable, typeName
					);
				throw new ArgumentException(msg, err);
			}
		}

		/// <summary>Parse an enumeration from the configuration.</summary>
		/// <remarks>Parse an enumeration from the configuration.</remarks>
		/// <?></?>
		/// <param name="all">
		/// all possible values in the enumeration which should be
		/// recognized. Typically
		/// <code>EnumType.values()</code>
		/// .
		/// </param>
		/// <param name="section">section the key is grouped within.</param>
		/// <param name="subsection">subsection name, such a remote or branch name.</param>
		/// <param name="name">name of the key to get.</param>
		/// <param name="defaultValue">default value to return if no value was present.</param>
		/// <returns>
		/// the selected enumeration value, or
		/// <code>defaultValue</code>
		/// .
		/// </returns>
		public virtual T GetEnum<T>(Array all, string section, string subsection, string name
			, T defaultValue)
		{
			string value = GetString(section, subsection, name);
			if (value == null)
			{
				return defaultValue;
			}
			string n = value.Replace(' ', '_');
			object trueState = null;
			object falseState = null;
			foreach (object e in all)
			{
				if (StringUtils.EqualsIgnoreCase(e.ToString(), n))
				{
					return (T)e;
				}
				else
				{
					if (StringUtils.EqualsIgnoreCase(e.ToString(), "TRUE"))
					{
						trueState = e;
					}
					else
					{
						if (StringUtils.EqualsIgnoreCase(e.ToString(), "FALSE"))
						{
							falseState = e;
						}
					}
				}
			}
			// This is an odd little fallback. C Git sometimes allows boolean
			// values in a tri-state with other things. If we have both a true
			// and a false value in our enumeration, assume its one of those.
			//
			if (trueState != null && falseState != null)
			{
				try
				{
					return StringUtils.ToBoolean(n) ? (T)trueState : (T)falseState;
				}
				catch (ArgumentException)
				{
				}
			}
			// Fall through and use our custom error below.
			if (subsection != null)
			{
				throw new ArgumentException(MessageFormat.Format(JGitText.Get().enumValueNotSupported3
					, section, name, value));
			}
			else
			{
				throw new ArgumentException(MessageFormat.Format(JGitText.Get().enumValueNotSupported2
					, section, name, value));
			}
		}

		/// <summary>Get string value</summary>
		/// <param name="section">the section</param>
		/// <param name="subsection">the subsection for the value</param>
		/// <param name="name">the key name</param>
		/// <returns>a String value from git config.</returns>
		public virtual string GetString(string section, string subsection, string name)
		{
			return GetRawString(section, subsection, name);
		}

		/// <summary>
		/// Get a list of string values
		/// <p>
		/// If this instance was created with a base, the base's values are returned
		/// first (if any).
		/// </summary>
		/// <remarks>
		/// Get a list of string values
		/// <p>
		/// If this instance was created with a base, the base's values are returned
		/// first (if any).
		/// </remarks>
		/// <param name="section">the section</param>
		/// <param name="subsection">the subsection for the value</param>
		/// <param name="name">the key name</param>
		/// <returns>array of zero or more values from the configuration.</returns>
		public virtual string[] GetStringList(string section, string subsection, string name
			)
		{
			string[] @base;
			if (baseConfig != null)
			{
				@base = baseConfig.GetStringList(section, subsection, name);
			}
			else
			{
				@base = EMPTY_STRING_ARRAY;
			}
			string[] self = GetRawStringList(section, subsection, name);
			if (self == null)
			{
				return @base;
			}
			if (@base.Length == 0)
			{
				return self;
			}
			string[] res = new string[@base.Length + self.Length];
			int n = @base.Length;
			System.Array.Copy(@base, 0, res, 0, n);
			System.Array.Copy(self, 0, res, n, self.Length);
			return res;
		}

		/// <param name="section">section to search for.</param>
		/// <returns>
		/// set of all subsections of specified section within this
		/// configuration and its base configuration; may be empty if no
		/// subsection exists. The set's iterator returns sections in the
		/// order they are declared by the configuration starting from this
		/// instance and progressing through the base.
		/// </returns>
		public virtual ICollection<string> GetSubsections(string section)
		{
			return GetState().GetSubsections(section);
		}

		/// <returns>
		/// the sections defined in this
		/// <see cref="Config">Config</see>
		/// . The set's iterator
		/// returns sections in the order they are declared by the
		/// configuration starting from this instance and progressing through
		/// the base.
		/// </returns>
		public virtual ICollection<string> GetSections()
		{
			return GetState().GetSections();
		}

		/// <param name="section">the section</param>
		/// <returns>the list of names defined for this section</returns>
		public virtual ICollection<string> GetNames(string section)
		{
			return GetNames(section, null);
		}

		/// <param name="section">the section</param>
		/// <param name="subsection">the subsection</param>
		/// <returns>the list of names defined for this subsection</returns>
		public virtual ICollection<string> GetNames(string section, string subsection)
		{
			return GetState().GetNames(section, subsection);
		}

		/// <summary>Obtain a handle to a parsed set of configuration values.</summary>
		/// <remarks>Obtain a handle to a parsed set of configuration values.</remarks>
		/// <?></?>
		/// <param name="parser">
		/// parser which can create the model if it is not already
		/// available in this configuration file. The parser is also used
		/// as the key into a cache and must obey the hashCode and equals
		/// contract in order to reuse a parsed model.
		/// </param>
		/// <returns>the parsed object instance, which is cached inside this config.</returns>
		public virtual T Get<T>(Config.SectionParser<T> parser)
		{
			ConfigSnapshot myState = GetState();
			T obj = (T)myState.cache.Get(parser);
			if (obj == null)
			{
				obj = parser.Parse(this);
				myState.cache.Put(parser, obj);
			}
			return obj;
		}

		/// <summary>Remove a cached configuration object.</summary>
		/// <remarks>
		/// Remove a cached configuration object.
		/// <p>
		/// If the associated configuration object has not yet been cached, this
		/// method has no effect.
		/// </remarks>
		/// <param name="parser">parser used to obtain the configuration object.</param>
		/// <seealso cref="Get{T}(SectionParser{T})">Get&lt;T&gt;(SectionParser&lt;T&gt;)</seealso>
		public virtual void Uncache<_T0>(Config.SectionParser<_T0> parser)
		{
			Sharpen.Collections.Remove(state.Get().cache, parser);
		}

		/// <summary>Adds a listener to be notified about changes.</summary>
		/// <remarks>
		/// Adds a listener to be notified about changes.
		/// <p>
		/// Clients are supposed to remove the listeners after they are done with
		/// them using the
		/// <see cref="NGit.Events.ListenerHandle.Remove()">NGit.Events.ListenerHandle.Remove()
		/// 	</see>
		/// method
		/// </remarks>
		/// <param name="listener">the listener</param>
		/// <returns>the handle to the registered listener</returns>
		public virtual ListenerHandle AddChangeListener(ConfigChangedListener listener)
		{
			return listeners.AddConfigChangedListener(listener);
		}

		/// <summary>Determine whether to issue change events for transient changes.</summary>
		/// <remarks>
		/// Determine whether to issue change events for transient changes.
		/// <p>
		/// If <code>true</code> is returned (which is the default behavior),
		/// <see cref="FireConfigChangedEvent()">FireConfigChangedEvent()</see>
		/// will be called upon each change.
		/// <p>
		/// Subclasses that override this to return <code>false</code> are
		/// responsible for issuing
		/// <see cref="FireConfigChangedEvent()">FireConfigChangedEvent()</see>
		/// calls
		/// themselves.
		/// </remarks>
		/// <returns><code></code></returns>
		protected internal virtual bool NotifyUponTransientChanges()
		{
			return true;
		}

		/// <summary>Notifies the listeners</summary>
		protected internal virtual void FireConfigChangedEvent()
		{
			listeners.Dispatch(new ConfigChangedEvent());
		}

		private string GetRawString(string section, string subsection, string name)
		{
			string[] lst = GetRawStringList(section, subsection, name);
			if (lst != null)
			{
				return lst[0];
			}
			else
			{
				if (baseConfig != null)
				{
					return baseConfig.GetRawString(section, subsection, name);
				}
				else
				{
					return null;
				}
			}
		}

		private string[] GetRawStringList(string section, string subsection, string name)
		{
			return state.Get().Get(section, subsection, name);
		}

		private ConfigSnapshot GetState()
		{
			ConfigSnapshot cur;
			ConfigSnapshot upd;
			do
			{
				cur = state.Get();
				ConfigSnapshot @base = GetBaseState();
				if (cur.baseState == @base)
				{
					return cur;
				}
				upd = new ConfigSnapshot(cur.entryList, @base);
			}
			while (!state.CompareAndSet(cur, upd));
			return upd;
		}

		private ConfigSnapshot GetBaseState()
		{
			return baseConfig != null ? baseConfig.GetState() : null;
		}

		/// <summary>Add or modify a configuration value.</summary>
		/// <remarks>
		/// Add or modify a configuration value. The parameters will result in a
		/// configuration entry like this.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="value">parameter value</param>
		public virtual void SetInt(string section, string subsection, string name, int value
			)
		{
			SetLong(section, subsection, name, value);
		}

		/// <summary>Add or modify a configuration value.</summary>
		/// <remarks>
		/// Add or modify a configuration value. The parameters will result in a
		/// configuration entry like this.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="value">parameter value</param>
		public virtual void SetLong(string section, string subsection, string name, long 
			value)
		{
			string s;
			if (value >= GiB && (value % GiB) == 0)
			{
				s = (value / GiB).ToString() + " g";
			}
			else
			{
				if (value >= MiB && (value % MiB) == 0)
				{
					s = (value / MiB).ToString() + " m";
				}
				else
				{
					if (value >= KiB && (value % KiB) == 0)
					{
						s = (value / KiB).ToString() + " k";
					}
					else
					{
						s = value.ToString();
					}
				}
			}
			SetString(section, subsection, name, s);
		}

		/// <summary>Add or modify a configuration value.</summary>
		/// <remarks>
		/// Add or modify a configuration value. The parameters will result in a
		/// configuration entry like this.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="value">parameter value</param>
		public virtual void SetBoolean(string section, string subsection, string name, bool
			 value)
		{
			SetString(section, subsection, name, value ? "true" : "false");
		}

		/// <summary>Add or modify a configuration value.</summary>
		/// <remarks>
		/// Add or modify a configuration value. The parameters will result in a
		/// configuration entry like this.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <?></?>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="value">parameter value</param>
		public virtual void SetEnum<T>(string section, string subsection, string name, T 
			value)
		{
			string n = value.ToString().ToLower().Replace('_', ' ');
			SetString(section, subsection, name, n);
		}

		/// <summary>Add or modify a configuration value.</summary>
		/// <remarks>
		/// Add or modify a configuration value. The parameters will result in a
		/// configuration entry like this.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="value">parameter value, e.g. "true"</param>
		public virtual void SetString(string section, string subsection, string name, string
			 value)
		{
			SetStringList(section, subsection, name, Sharpen.Collections.SingletonList(value)
				);
		}

		/// <summary>Remove a configuration value.</summary>
		/// <remarks>Remove a configuration value.</remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		public virtual void Unset(string section, string subsection, string name)
		{
			SetStringList(section, subsection, name, Sharpen.Collections.EmptyList<string>());
		}

		/// <summary>Remove all configuration values under a single section.</summary>
		/// <remarks>Remove all configuration values under a single section.</remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		public virtual void UnsetSection(string section, string subsection)
		{
			ConfigSnapshot src;
			ConfigSnapshot res;
			do
			{
				src = state.Get();
				res = UnsetSection(src, section, subsection);
			}
			while (!state.CompareAndSet(src, res));
		}

		private ConfigSnapshot UnsetSection(ConfigSnapshot srcState, string section, string
			 subsection)
		{
			int max = srcState.entryList.Count;
			AList<ConfigLine> r = new AList<ConfigLine>(max);
			bool lastWasMatch = false;
			foreach (ConfigLine e in srcState.entryList)
			{
				if (e.Match(section, subsection))
				{
					// Skip this record, it's for the section we are removing.
					lastWasMatch = true;
					continue;
				}
				if (lastWasMatch && e.section == null && e.subsection == null)
				{
					continue;
				}
				// skip this padding line in the section.
				r.AddItem(e);
			}
			return NewState(r);
		}

		/// <summary>Set a configuration value.</summary>
		/// <remarks>
		/// Set a configuration value.
		/// <pre>
		/// [section &quot;subsection&quot;]
		/// name = value
		/// </pre>
		/// </remarks>
		/// <param name="section">section name, e.g "branch"</param>
		/// <param name="subsection">optional subsection value, e.g. a branch name</param>
		/// <param name="name">parameter name, e.g. "filemode"</param>
		/// <param name="values">list of zero or more values for this key.</param>
		public virtual void SetStringList(string section, string subsection, string name, 
			IList<string> values)
		{
			ConfigSnapshot src;
			ConfigSnapshot res;
			do
			{
				src = state.Get();
				res = ReplaceStringList(src, section, subsection, name, values);
			}
			while (!state.CompareAndSet(src, res));
			if (NotifyUponTransientChanges())
			{
				FireConfigChangedEvent();
			}
		}

		private ConfigSnapshot ReplaceStringList(ConfigSnapshot srcState, string section, 
			string subsection, string name, IList<string> values)
		{
			IList<ConfigLine> entries = Copy(srcState, values);
			int entryIndex = 0;
			int valueIndex = 0;
			int insertPosition = -1;
			// Reset the first n Entry objects that match this input name.
			//
			while (entryIndex < entries.Count && valueIndex < values.Count)
			{
				ConfigLine e = entries[entryIndex];
				if (e.Match(section, subsection, name))
				{
					entries.Set(entryIndex, e.ForValue(values[valueIndex++]));
					insertPosition = entryIndex + 1;
				}
				entryIndex++;
			}
			// Remove any extra Entry objects that we no longer need.
			//
			if (valueIndex == values.Count && entryIndex < entries.Count)
			{
				while (entryIndex < entries.Count)
				{
					ConfigLine e = entries[entryIndex++];
					if (e.Match(section, subsection, name))
					{
						entries.Remove(--entryIndex);
					}
				}
			}
			// Insert new Entry objects for additional/new values.
			//
			if (valueIndex < values.Count && entryIndex == entries.Count)
			{
				if (insertPosition < 0)
				{
					// We didn't find a matching key above, but maybe there
					// is already a section available that matches. Insert
					// after the last key of that section.
					//
					insertPosition = FindSectionEnd(entries, section, subsection);
				}
				if (insertPosition < 0)
				{
					// We didn't find any matching section header for this key,
					// so we must create a new section header at the end.
					//
					ConfigLine e = new ConfigLine();
					e.section = section;
					e.subsection = subsection;
					entries.AddItem(e);
					insertPosition = entries.Count;
				}
				while (valueIndex < values.Count)
				{
					ConfigLine e = new ConfigLine();
					e.section = section;
					e.subsection = subsection;
					e.name = name;
					e.value = values[valueIndex++];
					entries.Add(insertPosition++, e);
				}
			}
			return NewState(entries);
		}

		private static IList<ConfigLine> Copy(ConfigSnapshot src, IList<string> values)
		{
			// At worst we need to insert 1 line for each value, plus 1 line
			// for a new section header. Assume that and allocate the space.
			//
			int max = src.entryList.Count + values.Count + 1;
			AList<ConfigLine> r = new AList<ConfigLine>(max);
			Sharpen.Collections.AddAll(r, src.entryList);
			return r;
		}

		private static int FindSectionEnd(IList<ConfigLine> entries, string section, string
			 subsection)
		{
			for (int i = 0; i < entries.Count; i++)
			{
				ConfigLine e = entries[i];
				if (e.Match(section, subsection, null))
				{
					i++;
					while (i < entries.Count)
					{
						e = entries[i];
						if (e.Match(section, subsection, e.name))
						{
							i++;
						}
						else
						{
							break;
						}
					}
					return i;
				}
			}
			return -1;
		}

		/// <returns>this configuration, formatted as a Git style text file.</returns>
		public virtual string ToText()
		{
			StringBuilder @out = new StringBuilder();
			foreach (ConfigLine e in state.Get().entryList)
			{
				if (e.prefix != null)
				{
					@out.Append(e.prefix);
				}
				if (e.section != null && e.name == null)
				{
					@out.Append('[');
					@out.Append(e.section);
					if (e.subsection != null)
					{
						@out.Append(' ');
						string escaped = EscapeValue(e.subsection);
						// make sure to avoid double quotes here
						bool quoted = escaped.StartsWith("\"") && escaped.EndsWith("\"");
						if (!quoted)
						{
							@out.Append('"');
						}
						@out.Append(escaped);
						if (!quoted)
						{
							@out.Append('"');
						}
					}
					@out.Append(']');
				}
				else
				{
					if (e.section != null && e.name != null)
					{
						if (e.prefix == null || string.Empty.Equals(e.prefix))
						{
							@out.Append('\t');
						}
						@out.Append(e.name);
						if (MAGIC_EMPTY_VALUE != e.value)
						{
							@out.Append(" =");
							if (e.value != null)
							{
								@out.Append(' ');
								@out.Append(EscapeValue(e.value));
							}
						}
						if (e.suffix != null)
						{
							@out.Append(' ');
						}
					}
				}
				if (e.suffix != null)
				{
					@out.Append(e.suffix);
				}
				@out.Append('\n');
			}
			return @out.ToString();
		}

		/// <summary>Clear this configuration and reset to the contents of the parsed string.
		/// 	</summary>
		/// <remarks>Clear this configuration and reset to the contents of the parsed string.
		/// 	</remarks>
		/// <param name="text">Git style text file listing configuration properties.</param>
		/// <exception cref="NGit.Errors.ConfigInvalidException">
		/// the text supplied is not formatted correctly. No changes were
		/// made to
		/// <code>this</code>
		/// .
		/// </exception>
		public virtual void FromText(string text)
		{
			IList<ConfigLine> newEntries = new AList<ConfigLine>();
			Config.StringReader @in = new Config.StringReader(text);
			ConfigLine last = null;
			ConfigLine e = new ConfigLine();
			for (; ; )
			{
				int input = @in.Read();
				if (-1 == input)
				{
					break;
				}
				char c = (char)input;
				if ('\n' == c)
				{
					// End of this entry.
					newEntries.AddItem(e);
					if (e.section != null)
					{
						last = e;
					}
					e = new ConfigLine();
				}
				else
				{
					if (e.suffix != null)
					{
						// Everything up until the end-of-line is in the suffix.
						e.suffix += c;
					}
					else
					{
						if (';' == c || '#' == c)
						{
							// The rest of this line is a comment; put into suffix.
							e.suffix = c.ToString();
						}
						else
						{
							if (e.section == null && char.IsWhiteSpace(c))
							{
								// Save the leading whitespace (if any).
								if (e.prefix == null)
								{
									e.prefix = string.Empty;
								}
								e.prefix += c;
							}
							else
							{
								if ('[' == c)
								{
									// This is a section header.
									e.section = ReadSectionName(@in);
									input = @in.Read();
									if ('"' == input)
									{
										e.subsection = ReadValue(@in, true, '"');
										input = @in.Read();
									}
									if (']' != input)
									{
										throw new ConfigInvalidException(JGitText.Get().badGroupHeader);
									}
									e.suffix = string.Empty;
								}
								else
								{
									if (last != null)
									{
										// Read a value.
										e.section = last.section;
										e.subsection = last.subsection;
										@in.Reset();
										e.name = ReadKeyName(@in);
										if (e.name.EndsWith("\n"))
										{
											e.name = Sharpen.Runtime.Substring(e.name, 0, e.name.Length - 1);
											e.value = MAGIC_EMPTY_VALUE;
										}
										else
										{
											e.value = ReadValue(@in, false, -1);
										}
									}
									else
									{
										throw new ConfigInvalidException(JGitText.Get().invalidLineInConfigFile);
									}
								}
							}
						}
					}
				}
			}
			state.Set(NewState(newEntries));
		}

		private ConfigSnapshot NewState()
		{
			return new ConfigSnapshot(Sharpen.Collections.EmptyList<ConfigLine>(), GetBaseState
				());
		}

		private ConfigSnapshot NewState(IList<ConfigLine> entries)
		{
			return new ConfigSnapshot(Sharpen.Collections.UnmodifiableList(entries), GetBaseState
				());
		}

		/// <summary>Clear the configuration file</summary>
		protected internal virtual void Clear()
		{
			state.Set(NewState());
		}

		/// <exception cref="NGit.Errors.ConfigInvalidException"></exception>
		private static string ReadSectionName(Config.StringReader @in)
		{
			StringBuilder name = new StringBuilder();
			for (; ; )
			{
				int c = @in.Read();
				if (c < 0)
				{
					throw new ConfigInvalidException(JGitText.Get().unexpectedEndOfConfigFile);
				}
				if (']' == c)
				{
					@in.Reset();
					break;
				}
				if (' ' == c || '\t' == c)
				{
					for (; ; )
					{
						c = @in.Read();
						if (c < 0)
						{
							throw new ConfigInvalidException(JGitText.Get().unexpectedEndOfConfigFile);
						}
						if ('"' == c)
						{
							@in.Reset();
							break;
						}
						if (' ' == c || '\t' == c)
						{
							continue;
						}
						// Skipped...
						throw new ConfigInvalidException(MessageFormat.Format(JGitText.Get().badSectionEntry
							, name));
					}
					break;
				}
				if (char.IsLetterOrDigit((char)c) || '.' == c || '-' == c)
				{
					name.Append((char)c);
				}
				else
				{
					throw new ConfigInvalidException(MessageFormat.Format(JGitText.Get().badSectionEntry
						, name));
				}
			}
			return name.ToString();
		}

		/// <exception cref="NGit.Errors.ConfigInvalidException"></exception>
		private static string ReadKeyName(Config.StringReader @in)
		{
			StringBuilder name = new StringBuilder();
			for (; ; )
			{
				int c = @in.Read();
				if (c < 0)
				{
					throw new ConfigInvalidException(JGitText.Get().unexpectedEndOfConfigFile);
				}
				if ('=' == c)
				{
					break;
				}
				if (' ' == c || '\t' == c)
				{
					for (; ; )
					{
						c = @in.Read();
						if (c < 0)
						{
							throw new ConfigInvalidException(JGitText.Get().unexpectedEndOfConfigFile);
						}
						if ('=' == c)
						{
							break;
						}
						if (';' == c || '#' == c || '\n' == c)
						{
							@in.Reset();
							break;
						}
						if (' ' == c || '\t' == c)
						{
							continue;
						}
						// Skipped...
						throw new ConfigInvalidException(JGitText.Get().badEntryDelimiter);
					}
					break;
				}
				if (char.IsLetterOrDigit((char)c) || c == '-')
				{
					// From the git-config man page:
					// The variable names are case-insensitive and only
					// alphanumeric characters and - are allowed.
					name.Append((char)c);
				}
				else
				{
					if ('\n' == c)
					{
						@in.Reset();
						name.Append((char)c);
						break;
					}
					else
					{
						throw new ConfigInvalidException(MessageFormat.Format(JGitText.Get().badEntryName
							, name));
					}
				}
			}
			return name.ToString();
		}

		/// <exception cref="NGit.Errors.ConfigInvalidException"></exception>
		private static string ReadValue(Config.StringReader @in, bool quote, int eol)
		{
			StringBuilder value = new StringBuilder();
			bool space = false;
			for (; ; )
			{
				int c = @in.Read();
				if (c < 0)
				{
					if (value.Length == 0)
					{
						throw new ConfigInvalidException(JGitText.Get().unexpectedEndOfConfigFile);
					}
					break;
				}
				if ('\n' == c)
				{
					if (quote)
					{
						throw new ConfigInvalidException(JGitText.Get().newlineInQuotesNotAllowed);
					}
					@in.Reset();
					break;
				}
				if (eol == c)
				{
					break;
				}
				if (!quote)
				{
					if (char.IsWhiteSpace((char)c))
					{
						space = true;
						continue;
					}
					if (';' == c || '#' == c)
					{
						@in.Reset();
						break;
					}
				}
				if (space)
				{
					if (value.Length > 0)
					{
						value.Append(' ');
					}
					space = false;
				}
				if ('\\' == c)
				{
					c = @in.Read();
					switch (c)
					{
						case -1:
						{
							throw new ConfigInvalidException(JGitText.Get().endOfFileInEscape);
						}

						case '\n':
						{
							continue;
							goto case 't';
						}

						case 't':
						{
							value.Append('\t');
							continue;
							goto case 'b';
						}

						case 'b':
						{
							value.Append('\b');
							continue;
							goto case 'n';
						}

						case 'n':
						{
							value.Append('\n');
							continue;
							goto case '\\';
						}

						case '\\':
						{
							value.Append('\\');
							continue;
							goto case '"';
						}

						case '"':
						{
							value.Append('"');
							continue;
							goto default;
						}

						default:
						{
							throw new ConfigInvalidException(MessageFormat.Format(JGitText.Get().badEscape, (
								(char)c)));
						}
					}
				}
				if ('"' == c)
				{
					quote = !quote;
					continue;
				}
				value.Append((char)c);
			}
			return value.Length > 0 ? value.ToString() : null;
		}

		/// <summary>Parses a section of the configuration into an application model object.</summary>
		/// <remarks>
		/// Parses a section of the configuration into an application model object.
		/// <p>
		/// Instances must implement hashCode and equals such that model objects can
		/// be cached by using the
		/// <code>SectionParser</code>
		/// as a key of a HashMap.
		/// <p>
		/// As the
		/// <code>SectionParser</code>
		/// itself is used as the key of the internal
		/// HashMap applications should be careful to ensure the SectionParser key
		/// does not retain unnecessary application state which may cause memory to
		/// be held longer than expected.
		/// </remarks>
		/// <?></?>
		public interface SectionParser<T>
		{
			/// <summary>Create a model object from a configuration.</summary>
			/// <remarks>Create a model object from a configuration.</remarks>
			/// <param name="cfg">the configuration to read values from.</param>
			/// <returns>the application model instance.</returns>
			T Parse(Config cfg);
		}

		private class StringReader
		{
			private readonly char[] buf;

			private int pos;

			internal StringReader(string @in)
			{
				buf = @in.ToCharArray();
			}

			internal virtual int Read()
			{
				try
				{
					return buf[pos++];
				}
				catch (IndexOutOfRangeException)
				{
					pos = buf.Length;
					return -1;
				}
			}

			internal virtual void Reset()
			{
				pos--;
			}
		}
	}
}