forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Translator.cs
375 lines (324 loc) · 8.65 KB
/
Translator.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
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using System.Xml;
using Waher.Persistence;
using Waher.Persistence.Filters;
using Waher.Runtime.Settings;
namespace Waher.Runtime.Language
{
/// <summary>
/// Basic access point for runtime language localization.
/// </summary>
public static class Translator
{
/// <summary>
/// Resource name of embedded schema file.
/// </summary>
public const string SchemaResource = "Waher.Runtime.Language.Schema.Translation.xsd";
/// <summary>
/// Namespace of embedded schema file.
/// </summary>
public const string SchemaNamespace = "http://waher.se/Schema/Translation.xsd";
/// <summary>
/// Expected root in XML files.
/// </summary>
public const string SchemaRoot = "Translation";
private static SortedDictionary<string, Language> languagesByCode = new SortedDictionary<string, Language>(StringComparer.CurrentCultureIgnoreCase);
private static SortedDictionary<string, Language> languagesByName = new SortedDictionary<string, Language>(StringComparer.CurrentCultureIgnoreCase);
private static object synchObject = new object();
private static bool langaugesLoaded = false;
/// <summary>
/// Gets the languge object, given its language code, if available.
/// </summary>
/// <param name="Code">Language code.</param>
/// <returns>Language object, if found, or null if not found.</returns>
public static async Task<Language> GetLanguageAsync(string Code)
{
lock (synchObject)
{
if (languagesByCode.TryGetValue(Code, out Language Result))
return Result;
}
foreach (Language Language in await Database.Find<Language>(new FilterFieldEqualTo("Code", Code)))
{
lock (synchObject)
{
languagesByCode[Language.Code] = Language;
languagesByName[Language.Name] = Language;
}
return Language;
}
return null;
}
/// <summary>
/// Gets available languages.
/// </summary>
/// <returns>Languages.</returns>
public static async Task<Language[]> GetLanguagesAsync()
{
if (!langaugesLoaded)
{
foreach (Language Language in await Database.Find<Language>())
{
lock (synchObject)
{
if (!languagesByCode.ContainsKey(Language.Code))
{
languagesByCode[Language.Code] = Language;
languagesByName[Language.Name] = Language;
}
}
}
langaugesLoaded = true;
}
lock (synchObject)
{
Language[] Result = new Language[languagesByCode.Count];
languagesByCode.Values.CopyTo(Result, 0);
return Result;
}
}
/// <summary>
/// Creates a new language, or updates an existing language, if one exist with the same code.
/// </summary>
/// <param name="Code">Language code.</param>
/// <param name="Name">Name.</param>
/// <param name="Flag">Flag.</param>
/// <param name="FlagWidth">Width of flag.</param>
/// <param name="FlagHeight">Height of flag.</param>
/// <returns>Language object.</returns>
public static async Task<Language> CreateLanguageAsync(string Code, string Name, byte[] Flag, int FlagWidth, int FlagHeight)
{
Language Result = await GetLanguageAsync(Code);
if (Result != null)
{
bool Updated = false;
if (Result.Name != Name)
{
lock (synchObject)
{
languagesByName.Remove(Result.Name);
Result.Name = Name;
languagesByName[Name] = Result;
}
Updated = true;
}
if (Flag != null)
{
Result.Flag = Flag;
Result.FlagWidth = FlagWidth;
Result.FlagHeight = FlagHeight;
Updated = true;
}
if (Updated)
await Database.Update(Result);
return Result;
}
else
{
Result = new Language()
{
Code = Code,
Name = Name,
Flag = Flag,
FlagWidth = FlagWidth,
FlagHeight = FlagHeight
};
lock (synchObject)
{
languagesByCode[Code] = Result;
languagesByName[Name] = Result;
}
await Database.Insert(Result);
return Result;
}
}
/// <summary>
/// Default language code.
/// </summary>
public static string DefaultLanguageCode
{
get
{
if (defaultLanguageCode == null)
defaultLanguageCode = RuntimeSettings.Get("DefaultLanguage", "en");
return defaultLanguageCode;
}
set
{
if (defaultLanguageCode != value)
{
defaultLanguageCode = value;
RuntimeSettings.Set("DefaultLanguage", value);
}
}
}
private static string defaultLanguageCode = null;
/// <summary>
/// Gets the default language.
/// </summary>
public static async Task<Language> GetDefaultLanguageAsync()
{
string Code = DefaultLanguageCode;
Language Result = await GetLanguageAsync(Code);
if (Result == null)
Result = await CreateLanguageAsync(Code, Code == "en" ? "English" : Code, null, 0, 0);
return Result;
}
/// <summary>
/// Imports language strings into the language database.
/// </summary>
/// <param name="Xml">XML containing language information.</param>
public static async Task ImportAsync(XmlReader Xml)
{
Language Language = null;
Namespace Namespace = null;
string Code = null;
string Name = null;
string Value = null;
byte[] Flag = null;
int? FlagWidth = null;
int? FlagHeight = null;
int? Id = null;
bool Untranslated = false;
bool InString = false;
while (Xml.Read())
{
switch (Xml.NodeType)
{
case XmlNodeType.Text:
case XmlNodeType.CDATA:
case XmlNodeType.SignificantWhitespace:
case XmlNodeType.Whitespace:
if (Value == null)
Value = Xml.Value;
else
Value += Xml.Value;
break;
case XmlNodeType.Element:
switch (Xml.Name)
{
case "Translation":
break;
case "Language":
Code = Name = null;
Flag = null;
FlagWidth = FlagHeight = null;
if (Xml.MoveToFirstAttribute())
{
do
{
switch (Xml.Name)
{
case "code":
Code = Xml.Value;
break;
case "name":
Name = Xml.Value;
break;
case "flag":
Flag = Convert.FromBase64String(Xml.Value);
break;
case "flagWidth":
FlagWidth = int.Parse(Xml.Value);
break;
case "flagHeight":
FlagHeight = int.Parse(Xml.Value);
break;
}
}
while (Xml.MoveToNextAttribute());
}
if (Flag != null && FlagWidth.HasValue && FlagHeight.HasValue)
Language = await CreateLanguageAsync(Code, Name, Flag, FlagWidth.Value, FlagHeight.Value);
else
Language = await CreateLanguageAsync(Code, Name, null, 0, 0);
Namespace = null;
break;
case "Namespace":
Name = null;
if (Xml.MoveToFirstAttribute())
{
do
{
switch (Xml.Name)
{
case "name":
Name = Xml.Value;
break;
}
}
while (Xml.MoveToNextAttribute());
}
Namespace = await Language.CreateNamespaceAsync(Name);
break;
case "String":
Id = null;
Untranslated = false;
InString = true;
if (Xml.MoveToFirstAttribute())
{
do
{
switch (Xml.Name)
{
case "id":
Id = int.Parse(Xml.Value);
break;
case "untranslated":
Untranslated = (Xml.Value == "true");
break;
}
}
while (Xml.MoveToNextAttribute());
}
break;
}
break;
case XmlNodeType.EndElement:
if (InString)
{
if (Id.HasValue && Value != null)
{
if (string.IsNullOrEmpty(Value))
await Namespace.DeleteStringAsync(Id.Value);
else
await Namespace.CreateStringAsync(Id.Value, Value, Untranslated);
}
InString = false;
}
Value = null;
break;
case XmlNodeType.Entity:
case XmlNodeType.EntityReference:
case XmlNodeType.Comment:
case XmlNodeType.Document:
case XmlNodeType.DocumentFragment:
case XmlNodeType.DocumentType:
case XmlNodeType.EndEntity:
case XmlNodeType.None:
case XmlNodeType.Notation:
case XmlNodeType.ProcessingInstruction:
case XmlNodeType.XmlDeclaration:
break;
}
}
}
/// <summary>
/// Imports language strings into the language database.
/// </summary>
/// <param name="FileName">Language file.</param>
public static async Task ImportAsync(string FileName)
{
using (StreamReader r = System.IO.File.OpenText(FileName))
{
using (XmlReader Xml = XmlReader.Create(r))
{
await ImportAsync(Xml);
}
}
}
}
}