-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathConfigurationFile.cs
More file actions
405 lines (316 loc) · 10.3 KB
/
Copy pathConfigurationFile.cs
File metadata and controls
405 lines (316 loc) · 10.3 KB
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
using System;
using System.IO;
using System.Text;
using System.Collections;
using System.Collections.Specialized;
namespace gcodeparser
{
public class ConfigurationFile
{
private string mFileName;
private Hashtable mSections = new Hashtable();
public ConfigurationFile(string name)
{
mFileName = name;
}
public void Load()
{
StreamReader reader = new StreamReader(mFileName);
string line;
ConfigurationSection section = AddSection("");
while ((line = reader.ReadLine()) != null)
{
ProcessLine(ref section, line);
}
reader.Close();
}
private ConfigurationSection AddSection(string name)
{
ConfigurationSection result = new ConfigurationSection(name);
mSections[name] = result;
return result;
}
private void ProcessLine(ref ConfigurationSection section, string line)
{
if (line != null && line != "")
{
switch (line[0])
{
case '[': ProcessSection(ref section, line); break;
case ';':
case '#':
break; // comment, will be overwritten, but ignore here
default: section.ParseEntry(line); break;
}
}
}
private void ProcessSection(ref ConfigurationSection section, string line)
{
line = line.TrimStart('[', ' ');
line = line.TrimEnd(']', ' ');
section = AddSection(line);
}
public void Save()
{
try
{
StreamWriter writer = new StreamWriter(mFileName, false);
foreach (ConfigurationSection section in mSections.Values)
{
section.Write(writer);
}
writer.Close();
}
catch (Exception ex)
{
System.Diagnostics.Trace.WriteLine("Failed to store: " + ex.Message);
}
}
public string GetEntryValue(string sectionName, string key)
{
ConfigurationSection section = mSections[sectionName] as ConfigurationSection;
if (section != null)
{
return section.Entries[key.ToLower()] as string;
}
return "";
}
public void SetEntryValue(string sectionName, string key, string val)
{
ConfigurationSection section = mSections[sectionName] as ConfigurationSection;
if (section == null)
{
section = new ConfigurationSection(sectionName);
mSections[sectionName] = section;
}
section.Entries[key.ToLower()] = val;
}
public ConfigurationSection GetSection(string sectionName)
{
ConfigurationSection result = mSections[sectionName] as ConfigurationSection;
if (result != null) return result;
return AddSection(sectionName);
}
}
public class ConfigurationSection
{
//private StringDictionary mEntries = new StringDictionary();
private SortedList mEntries = new SortedList();
private string mSectionName;
public SortedList Entries
{
get
{
return mEntries;
}
}
public string SectionName
{
get
{
return mSectionName;
}
}
public ConfigurationSection(string sectionName)
{
mSectionName = sectionName;
}
public int GetInt(string name, int defaultValue)
{
string res = mEntries[name] as string;
if (res != null)
{
return int.Parse(res);
}
return defaultValue;
}
public float GetFloat(string name, float defaultValue)
{
string res = mEntries[name] as string;
if (res != null)
{
return float.Parse(res);
}
return defaultValue;
}
public void SetInt(string name, int val)
{
mEntries[name] = val.ToString();
}
public void SetFloat(string name, float val)
{
mEntries[name] = val.ToString();
}
public long GetLong(string name, long defaultValue)
{
string res = mEntries[name] as string;
if (res != null)
{
return long.Parse(res);
}
return defaultValue;
}
public void SetLong(string name, long val)
{
mEntries[name] = val.ToString();
}
public string GetString(string name)
{
return mEntries[name] as string;
}
public void SetString(string name, string val)
{
mEntries[name] = val;
}
public bool GetBool(string name, bool defaultValue)
{
string res = mEntries[name] as string;
if (res != null)
{
res = res.ToLower();
return (res == "true" || res == "1");
}
return defaultValue;
}
public void SetBool(string name, bool val)
{
mEntries[name] = val ? "true" : "false";
}
public int[] GetInts(string name, int[] defaultValue)
{
string res = mEntries[name] as string;
if (res == null || res == string.Empty) return defaultValue;
int[] result = DeserializeInts(res);
return result == null ? defaultValue : result;
}
public void SetInts(string name, int[] values)
{
if (values == null) mEntries[name] = values;
mEntries[name] = SerializeWithCommas(values);
}
internal void ParseEntry(string entryLine)
{
if (entryLine != null && entryLine != "")
{
int split = entryLine.IndexOf('=');
if (split > 0)
{
string key = entryLine.Substring(0, split);
string val = "";
if (split < entryLine.Length - 1)
{
val = entryLine.Substring(split + 1);
}
mEntries[key] = val;
}
}
}
internal void Write(TextWriter writer)
{
if (mSectionName != "")
{
writer.WriteLine("[{0}]", mSectionName);
}
foreach (DictionaryEntry entry in mEntries)
{
writer.WriteLine("{0}={1}", ((string)entry.Key).ToLower(), entry.Value);
}
writer.WriteLine();
}
public static string SerializeWithCommas(params object[] args)
{
bool isFirst = true;
StringBuilder sb = new StringBuilder();
foreach (object obj in args)
{
if (isFirst)
{
sb.Append(obj.ToString());
isFirst = false;
}
else
{
sb.Append("," + obj.ToString());
}
}
return sb.ToString();
}
public static string SerializeGuidsWithCommas(params Guid[] args)
{
bool isFirst = true;
StringBuilder sb = new StringBuilder();
foreach (Guid guid in args)
{
long high = 0;
long low = 0;
GuidToLongs(guid, out high, out low);
if (isFirst)
{
sb.Append(high.ToString() + "&" + low.ToString());
isFirst = false;
}
else
{
sb.Append("," + high.ToString() + "&" + low.ToString());
}
}
return sb.ToString();
}
public static int[] DeserializeInts(string target)
{
string[] strings = target.Split(',');
if (strings == null || strings.Length == 0) return null;
int[] result = new int[strings.Length];
for (int i = 0; i < strings.Length; ++i)
{
try
{
result[i] = int.Parse(strings[i]);
}
catch
{
// FIXME: localize
throw new Exception(string.Format("Failed to parse int value '{0}' in string '{1}'.", result[i], target));
}
}
return result;
}
public static Guid[] DeserializeGuids(string target)
{
string[] strings = target.Split(',');
if (strings == null || strings.Length == 0) return null;
Guid[] result = new Guid[strings.Length];
for (int i = 0; i < strings.Length; ++i)
{
try
{
string[] longs = strings[i].Split('&');
result[i] = GuidFromLongs(
long.Parse(longs[0]),
long.Parse(longs[1]));
}
catch
{
// FIXME: localize
throw new Exception(string.Format("Failed to parse int value '{0}' in string '{1}'.", result[i], target));
}
}
return result;
}
private static void GuidToLongs(Guid guid, out long high, out long low)
{
byte[] bytes = guid.ToByteArray();
high = BitConverter.ToInt64(bytes, 8);
low = BitConverter.ToInt64(bytes, 0);
}
private static Guid GuidFromLongs(long high, long low)
{
byte[] guiddata = new byte[16];
byte[] byteshigh = BitConverter.GetBytes(high);
byte[] byteslow = BitConverter.GetBytes(low);
Array.Copy(byteshigh, 0, guiddata, 8, byteshigh.Length);
Array.Copy(byteslow, 0, guiddata, 0, byteshigh.Length);
return new Guid(guiddata);
}
}
}