-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathProjectSettingsStore.cs
342 lines (279 loc) · 10.2 KB
/
ProjectSettingsStore.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
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
using EnvDTE;
using EnvDTE80;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using Keys = MadsKristensen.EditorExtensions.WESettings.Keys;
namespace MadsKristensen.EditorExtensions
{
internal class Settings
{
public const string _fileName = "WE-settings.xml";
public const string _solutionFolder = "Solution Items";
private static readonly SortedDictionary<string, object> _cache = DefaultSettings();
private static bool _inProgress;
private static readonly object _syncFileRoot = new object();
private static readonly object _syncCacheRoot = new object();
public Settings()
{
UpdateCache();
}
public static bool SolutionSettingsExist
{
get { return File.Exists(GetSolutionFilePath()); }
}
public static float Version { get; private set; }
public static object GetValue(string propertyName)
{
lock (_syncCacheRoot)
{
if (_cache.ContainsKey(propertyName))
return _cache[propertyName];
}
return null;
}
public static void SetValue(string propertyName, object value)
{
lock (_syncCacheRoot)
{
string v = value.ToString().ToLowerInvariant();
_cache[propertyName] = v;
}
}
public static void Save(string file = null)
{
Task.Run(() =>
{
SaveToDisk(file);
UpdateStatusBar("updated");
});
}
internal static void CreateSolutionSettings()
{
string path = GetSolutionFilePath();
if (!File.Exists(path))
{
lock (_syncFileRoot)
{
File.WriteAllText(path, string.Empty);
}
Save(path);
Solution2 solution = EditorExtensionsPackage.DTE.Solution as Solution2;
Project project = solution.Projects
.OfType<Project>()
.FirstOrDefault(p => p.Name.Equals(_solutionFolder, StringComparison.OrdinalIgnoreCase));
if (project == null)
{
project = solution.AddSolutionFolder(_solutionFolder);
}
project.ProjectItems.AddFromFile(path);
UpdateStatusBar("applied");
}
}
public static void UpdateCache()
{
try
{
string path = GetFilePath();
if (File.Exists(path))
{
XmlDocument doc = LoadXmlDocument(path);
if (doc != null)
{
XmlNode settingsNode = doc.SelectSingleNode("webessentials/settings");
if (settingsNode != null)
{
XmlAttribute versionAttr = settingsNode.Attributes["version"];
if (versionAttr != null)
{
float version;
if (float.TryParse(versionAttr.InnerText, out version))
{
Version = version;
}
}
lock (_syncCacheRoot)
{
_cache.Clear();
foreach (XmlNode node in settingsNode.ChildNodes)
{
_cache[node.Name] = node.InnerText;
}
}
OnUpdated();
}
}
}
}
catch
{ }
}
private static void SaveToDisk(string file)
{
if (!_inProgress)
{
_inProgress = true;
string path = file ?? GetFilePath();
lock (_syncFileRoot)
{
string xml = GenerateXml();
ProjectHelpers.CheckOutFileFromSourceControl(path);
File.WriteAllText(path, xml);
}
_inProgress = false;
}
}
private static string GenerateXml()
{
StringBuilder sb = new StringBuilder();
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
using (XmlWriter writer = XmlWriter.Create(sb, settings))
{
writer.WriteStartElement("webessentials");
writer.WriteAttributeString("version", "1.9");
writer.WriteStartElement("settings");
lock (_syncCacheRoot)
{
foreach (string property in _cache.Keys)
{
string value = _cache[property].ToString();
writer.WriteElementString(property, value);
}
}
writer.WriteEndElement();// settings
writer.WriteEndElement();// webessentials
}
sb.Replace(Encoding.Unicode.WebName, Encoding.UTF8.WebName);
return sb.ToString();
}
private static XmlDocument LoadXmlDocument(string path)
{
try
{
lock (_syncFileRoot)
{
XmlDocument doc = new XmlDocument();
doc.Load(path);
return doc;
}
}
catch
{
return null;
}
}
private static string GetFilePath()
{
string path = GetSolutionFilePath();
if (!File.Exists(path))
{
path = GetUserFilePath();
}
return path;
}
public static string GetSolutionFilePath()
{
Solution solution = EditorExtensionsPackage.DTE.Solution;
if (solution == null || string.IsNullOrEmpty(solution.FullName))
return null;
return Path.Combine(Path.GetDirectoryName(solution.FullName), _fileName);
}
private static string GetUserFilePath()
{
string user = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
string folder = Path.Combine(user, "Web Essentials");
if (!Directory.Exists(folder))
{
Directory.CreateDirectory(folder);
}
return Path.Combine(folder, _fileName);
}
private static SortedDictionary<string, object> DefaultSettings()
{
var dic = new SortedDictionary<string, object>();
// MISC
dic.Add(Keys.EnableMustache, true);
dic.Add(Keys.EnableJavascriptRegions, true);
// LESS
dic.Add(Keys.GenerateCssFileFromLess, true);
dic.Add(Keys.ShowLessPreviewWindow, true);
dic.Add(Keys.LessMinify, true);
// SCSS
dic.Add(Keys.GenerateCssFileFromScss, true);
dic.Add(Keys.ShowScssPreviewWindow, true);
dic.Add(Keys.ScssMinify, true);
// CoffeeScript
dic.Add(Keys.GenerateJsFileFromCoffeeScript, true);
dic.Add(Keys.ShowCoffeeScriptPreviewWindow, true);
// CSS
dic.Add(Keys.CssErrorLocation, (int)Keys.ErrorLocation.Messages);
dic.Add(Keys.SyncVendorValues, true);
dic.Add(Keys.EnableCssSelectorHighligting, true);
dic.Add(Keys.ShowUnsupported, true);
dic.Add(Keys.AutoCloseCurlyBraces, true);
// TypeScript
dic.Add(Keys.ShowTypeScriptPreviewWindow, true);
//JSHint
dic.Add(Keys.EnableJsHint, true);
dic.Add(Keys.JsHintErrorLocation, (int)Keys.FullErrorLocation.Messages);
dic.Add(Keys.JsHint_bitwise, true);
dic.Add(Keys.JsHint_browser, true);
dic.Add(Keys.JsHint_devel, true);
dic.Add(Keys.JsHint_eqeqeq, true);
dic.Add(Keys.JsHint_es5, true);
dic.Add(Keys.JsHint_expr, true);
dic.Add(Keys.JsHint_debug, true);
dic.Add(Keys.JsHint_jquery, true);
dic.Add(Keys.JsHint_laxbreak, true);
dic.Add(Keys.JsHint_laxcomma, true);
dic.Add(Keys.JsHint_maxerr, 50);
dic.Add(Keys.JsHint_regexdash, true);
dic.Add(Keys.JsHint_smarttabs, true);
// MISC
dic.Add(Keys.ShowBrowserTooltip, true);
dic.Add(Keys.WrapCoffeeScriptClosure, true);
dic.Add(Keys.UseBom, false);
// Minification
dic.Add(Keys.EnableCssMinification, true);
dic.Add(Keys.EnableJsMinification, true);
// Minification
dic.Add(Keys.CoffeeScriptMinify, true);
dic.Add(Keys.GenerateJavaScriptSourceMaps, true);
dic.Add(Keys.EnableHtmlZenCoding, true);
dic.Add(Keys.JavaScriptAutoCloseBraces, true);
dic.Add(Keys.JavaScriptOutlining, true);
return dic;
}
public static event EventHandler Updated;
private static void OnUpdated()
{
if (Updated != null)
{
Updated(null, EventArgs.Empty);
}
}
public static void UpdateStatusBar(string action)
{
try
{
if (SolutionSettingsExist)
{
EditorExtensionsPackage.DTE.StatusBar.Text = "Web Essentials: Solution settings " + action;
}
else
{
EditorExtensionsPackage.DTE.StatusBar.Text = "Web Essentials: Global settings " + action;
}
}
catch
{
Logger.Log("Error updating status bar");
}
}
}
}