-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettingsBase.cs
217 lines (177 loc) · 6.73 KB
/
SettingsBase.cs
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
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelpersLib
{
public abstract class SettingsBase<T> where T : SettingsBase<T>, new()
{
public delegate void SettingsSavedEventHandler(T settings, string filePath, bool result);
public event SettingsSavedEventHandler SettingsSaved;
public string FilePath { get; private set; }
public string ApplicationVersion { get; set; }
public bool IsFirstTimeRun
{
get
{
return string.IsNullOrEmpty(ApplicationVersion);
}
}
protected virtual void OnSettingsSaved(string filePath, bool result)
{
if (SettingsSaved != null)
{
SettingsSaved((T)this, filePath, result);
}
}
public bool Save(string filePath)
{
FilePath = filePath;
ApplicationVersion = AppInfo.Version;
bool result = SaveInternal(this, FilePath, true);
OnSettingsSaved(FilePath, result);
return result;
}
public bool Save()
{
return Save(FilePath);
}
public Task<bool> SaveAsync(string filePath)
{
return Task.Run(() => Save(filePath));
}
public Task<bool> SaveAsync(Stream s)
{
return Task.Run(() => SaveInternal(this, s));
}
public void SaveAsync()
{
SaveAsync(FilePath);
}
public static T Load(string filePath)
{
T setting = LoadInternal(filePath, true);
if (setting != null)
{
setting.FilePath = filePath;
}
return setting;
}
private static bool SaveInternal(object obj, string filePath, bool createBackup)
{
string typeName = obj.GetType().Name;
DebugHelper.WriteLine("{0} save started: {1}", typeName, filePath);
bool isSuccess = false;
try
{
if (!string.IsNullOrEmpty(filePath))
{
lock (obj)
{
Helpers.CreateDirectoryIfNotExist(filePath);
string tempFilePath = filePath + ".temp";
isSuccess = SaveInternal(obj, new FileStream(tempFilePath, FileMode.Create, FileAccess.Write, FileShare.Read));
if (File.Exists(filePath))
{
if (createBackup)
{
File.Copy(filePath, filePath + ".bak", true);
}
File.Delete(filePath);
}
File.Move(tempFilePath, filePath);
isSuccess = true;
}
}
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
finally
{
DebugHelper.WriteLine("{0} save {1}: {2}", typeName, isSuccess ? "successful" : "failed", filePath);
}
return isSuccess;
}
private static bool SaveInternal(object obj, Stream s)
{
bool isSuccess = false;
try
{
if (s != null)
{
lock (obj)
{
using (StreamWriter streamWriter = new StreamWriter(s))
using (JsonTextWriter jsonWriter = new JsonTextWriter(streamWriter))
{
jsonWriter.Formatting = Formatting.Indented;
JsonSerializer serializer = new JsonSerializer();
serializer.ContractResolver = new WritablePropertiesOnlyResolver();
serializer.Converters.Add(new StringEnumConverter());
serializer.Serialize(jsonWriter, obj);
jsonWriter.Flush();
}
isSuccess = true;
}
}
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
return isSuccess;
}
private static T LoadInternal(string filePath, bool checkBackup)
{
string typeName = typeof(T).Name;
if (!string.IsNullOrEmpty(filePath))
{
DebugHelper.WriteLine("{0} load started: {1}", typeName, filePath);
try
{
if (File.Exists(filePath))
{
using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read))
{
if (fileStream.Length > 0)
{
T settings;
using (StreamReader streamReader = new StreamReader(fileStream))
using (JsonTextReader jsonReader = new JsonTextReader(streamReader))
{
JsonSerializer serializer = new JsonSerializer();
serializer.Converters.Add(new StringEnumConverter());
serializer.ObjectCreationHandling = ObjectCreationHandling.Replace;
serializer.Error += (sender, e) => e.ErrorContext.Handled = true;
settings = serializer.Deserialize<T>(jsonReader);
}
if (settings == null)
{
throw new Exception(typeName + " object is null.");
}
DebugHelper.WriteLine("{0} load finished: {1}", typeName, filePath);
return settings;
}
}
}
}
catch (Exception e)
{
DebugHelper.WriteException(e, typeName + " load failed: " + filePath);
}
if (checkBackup)
{
return LoadInternal(filePath + ".bak", false);
}
}
DebugHelper.WriteLine("{0} not found. Loading new instance.", typeName);
return new T();
}
}
}