-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathIniWriter.cs
More file actions
165 lines (103 loc) · 3.83 KB
/
Copy pathIniWriter.cs
File metadata and controls
165 lines (103 loc) · 3.83 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
using System;
using System.IO;
using System.Text;
using static Gsemac.Text.Ini.IniConstants;
namespace Gsemac.Text.Ini {
public class IniWriter :
IIniWriter {
// Public members
public IniWriter() :
this(IniOptions.Default) {
}
public IniWriter(IIniOptions options) {
if (options is null)
throw new ArgumentNullException(nameof(options));
stream = new MemoryStream();
writer = new StreamWriter(stream, Encoding.UTF8);
this.options = options;
ownsWriter = true;
}
public IniWriter(Stream stream) :
this(new StreamWriter(stream, Encoding.UTF8)) {
}
public IniWriter(Stream stream, IIniOptions options) :
this(new StreamWriter(stream, Encoding.UTF8), options) {
}
public IniWriter(TextWriter writer) :
this(writer, IniOptions.Default) {
}
public IniWriter(TextWriter writer, IIniOptions options) {
if (writer is null)
throw new ArgumentNullException(nameof(writer));
if (options is null)
throw new ArgumentNullException(nameof(options));
this.writer = writer;
this.options = options;
}
public void WriteSectionStart() {
if (lastAction == LastAction.WroteProperty)
writer.WriteLine();
writer.Write(SectionNameStart);
}
public void WriteSectionName(string value) {
writer.Write(IniUtilities.FormatValue(value, options, isPropertyValue: false, writingValue: true));
}
public void WriteSectionEnd() {
writer.WriteLine(SectionNameEnd);
lastAction = LastAction.WroteSection;
}
public void WritePropertyName(string value) {
writer.Write(IniUtilities.FormatValue(value, options, isPropertyValue: false, writingValue: true));
}
public void WriteNameValueSeparator() {
writer.Write(options.NameValueSeparator);
}
public void WritePropertyValue(string value) {
writer.WriteLine(IniUtilities.FormatValue(value, options, isPropertyValue: true, writingValue: true));
lastAction = LastAction.WroteProperty;
}
public void WriteComment(string value) {
if (options.TrimWhiteSpace && !string.IsNullOrEmpty(value))
value = value.Trim();
writer.Write(options.CommentMarker);
writer.Write(' ');
writer.WriteLine(value);
}
public void Dispose() {
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
public override string ToString() {
writer.Flush();
long prevPosition = stream.Position;
stream.Seek(0, SeekOrigin.Begin);
string result = StringUtilities.StreamToString(stream);
stream.Seek(prevPosition, SeekOrigin.Begin);
return result;
}
// Protected members
protected virtual void Dispose(bool disposing) {
if (!disposedValue) {
if (disposing) {
if (ownsWriter) {
writer.Dispose();
stream.Dispose();
}
}
disposedValue = true;
}
}
// Private members
private enum LastAction {
None,
WroteSection,
WroteProperty,
}
private readonly Stream stream;
private readonly TextWriter writer;
private readonly IIniOptions options;
private readonly bool ownsWriter;
private LastAction lastAction = LastAction.None;
private bool disposedValue;
}
}