forked from openfl/lime
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConfigHelper.hx
More file actions
333 lines (273 loc) · 6.83 KB
/
ConfigHelper.hx
File metadata and controls
333 lines (273 loc) · 6.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
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
package lime.tools;
import hxp.*;
import lime.tools.HXProject;
import lime.tools.Platform;
import lime.tools.ProjectXMLParser;
import sys.io.File;
import sys.FileSystem;
class ConfigHelper
{
private static var backedUpConfig:Bool = false;
private static var configPath:String = null;
public static function getConfig():HXProject
{
var config = getConfigPath();
if (FileSystem.exists(config))
{
Log.info("", Log.accentColor + "Reading Lime config: " + config + Log.resetColor);
return new ProjectXMLParser(config);
}
else
{
Log.warn("", "Could not read Lime config: " + config);
}
return null;
}
public static function getConfigPath():String
{
if (configPath == null)
{
var environment = Sys.environment();
if (environment.exists("LIME_CONFIG"))
{
configPath = environment.get("LIME_CONFIG");
}
else
{
var home = "";
if (environment.exists("HOME"))
{
home = environment.get("HOME");
}
else if (environment.exists("USERPROFILE"))
{
home = environment.get("USERPROFILE");
}
else
{
Log.warn("Lime config might be missing (Environment has no \"HOME\" variable)");
return null;
}
configPath = home + "/.lime/config.xml";
if (System.hostPlatform == WINDOWS)
{
configPath = configPath.split("/").join("\\");
}
if (!FileSystem.exists(configPath))
{
System.mkdir(Path.directory(configPath));
var hxcppConfig:String = null;
if (environment.exists("HXCPP_CONFIG"))
{
hxcppConfig = environment.get("HXCPP_CONFIG");
}
else
{
hxcppConfig = home + "/.hxcpp_config.xml";
}
if (FileSystem.exists(hxcppConfig))
{
var vars = new ProjectXMLParser(hxcppConfig);
for (key in vars.defines.keys())
{
if (key != key.toUpperCase())
{
vars.defines.remove(key);
}
}
writeConfig(configPath, vars.defines);
}
else
{
writeConfig(configPath, new Map());
}
}
Sys.putEnv("LIME_CONFIG", configPath);
}
}
return configPath;
}
public static function getConfigValue(name:String):String
{
var config = getConfig();
if (config.defines.exists(name))
{
return config.defines.get(name);
}
return null;
}
public static function removeConfigValue(name:String):Void
{
var path = getConfigPath();
if (FileSystem.exists(path))
{
var configText = File.getContent(path);
var lines = configText.split("\n");
var findSet = "<set name=\"" + name + "\"";
var findSetenv = "<setenv name=\"" + name + "\"";
var findDefine = "<define name=\"" + name + "\"";
var line, i = 0, index = 0, found = false;
while (i < lines.length)
{
line = lines[i];
if ((index = line.indexOf(findSet)) > -1)
{
found = true;
lines.splice(i, 1);
continue;
}
if ((index = line.indexOf(findSetenv)) > -1)
{
found = true;
lines.splice(i, 1);
continue;
}
if ((index = line.indexOf(findDefine)) > -1)
{
found = true;
lines.splice(i, 1);
continue;
}
i++;
}
var content = lines.join("\n");
File.saveContent(path, content);
if (found)
{
Log.info("Removed define \"" + name + "\"");
}
else
{
Log.info("There is no define \"" + name + "\"");
}
}
else
{
Log.error("Cannot find \"" + path + "\"");
}
}
private static function stripQuotes(path:String):String
{
if (path != null)
{
return path.split("\"").join("");
}
return path;
}
public static function writeConfig(path:String, defines:Map<String, Dynamic>):Void
{
var newContent = "";
var definesText = "";
var env = Sys.environment();
for (key in defines.keys())
{
if (key != "LIME_CONFIG" && key != "LIME_CONFIG" && (!env.exists(key) || env.get(key) != defines.get(key)))
{
definesText += "\t\t<set name=\"" + key + "\" value=\"" + stripQuotes(Std.string(defines.get(key))) + "\" />\n";
}
}
if (FileSystem.exists(path))
{
var input = File.read(path, false);
var bytes = input.readAll();
input.close();
if (!backedUpConfig)
{
try
{
var backup = File.write(path + ".bak", false);
backup.writeBytes(bytes, 0, bytes.length);
backup.close();
}
catch (e:Dynamic) {}
backedUpConfig = true;
}
var content = bytes.getString(0, bytes.length);
var startIndex = content.indexOf("<section id=\"defines\">");
var endIndex = content.indexOf("</section>", startIndex);
newContent += content.substr(0, startIndex) + "<section id=\"defines\">\n\t\t\n";
newContent += definesText;
newContent += "\t\t\n\t" + content.substr(endIndex);
}
else
{
newContent += "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
newContent += "<config>\n\t\n";
newContent += "\t<section id=\"defines\">\n\t\t\n";
newContent += definesText;
newContent += "\t\t\n\t</section>\n\t\n</config>";
}
var output = File.write(path, false);
output.writeString(newContent);
output.close();
if (backedUpConfig)
{
try
{
FileSystem.deleteFile(path + ".bak");
}
catch (e:Dynamic) {}
}
}
public static function writeConfigValue(name:String, value:String):Void
{
var path = getConfigPath();
try
{
if (!FileSystem.exists(value) && FileSystem.exists(Path.expand(value)))
{
value = Path.expand(value);
}
}
catch (e:Dynamic) {}
if (FileSystem.exists(path))
{
var configText = File.getContent(path);
var lines = configText.split("\n");
var findSet = "<set name=\"" + name + "\"";
var findSetenv = "<setenv name=\"" + name + "\"";
var findDefine = "<define name=\"" + name + "\"";
var line, i = 0, index = 0, found = false;
while (i < lines.length)
{
line = lines[i];
if ((index = line.indexOf(findSet)) > -1)
{
found = true;
lines[i] = line.substr(0, index) + "<set name=\"" + name + "\" value=\"" + value + "\" />";
}
if ((index = line.indexOf(findSetenv)) > -1)
{
found = true;
lines[i] = line.substr(0, index) + "<setenv name=\"" + name + "\" value=\"" + value + "\" />";
}
if ((index = line.indexOf(findDefine)) > -1)
{
found = true;
lines[i] = line.substr(0, index) + "<define name=\"" + name + "\" value=\"" + value + "\" />";
}
i++;
}
if (!found && lines.length > 2)
{
var insertPoint = lines.length - 3;
if (StringTools.trim(lines[lines.length - 1]) == "")
{
insertPoint--;
}
if (StringTools.trim(lines[insertPoint + 1]) != "")
{
lines.insert(insertPoint + 1, "\t");
}
lines.insert(insertPoint + 1, "\t<define name=\"" + name + "\" value=\"" + value + "\" />");
}
var content = lines.join("\n");
File.saveContent(path, content);
Log.info("Set \x1b[1m" + name + "\x1b[0m to \x1b[1m" + value + "\x1b[0m");
}
else
{
Log.error("Cannot find \"" + path + "\"");
}
}
}