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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Dtf.Resources
{
using System;
using System.IO;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Diagnostics.CodeAnalysis;
/// <summary>
/// A subclass of Resource which provides specific methods for manipulating the resource data.
/// </summary>
/// <remarks>
/// The resource is of type <see cref="ResourceType.Version"/> (RT_VERSION).
/// </remarks>
[SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
public sealed class VersionResource : Resource, ICollection<VersionStringTable>
{
internal bool dirty;
private VersionInfo rawVersionInfo;
private FixedFileVersionInfo rawFileVersionInfo;
/// <summary>
/// Creates a new VersionResource object without any data. The data can be later loaded from a file.
/// </summary>
/// <param name="name">Name of the resource. For a numeric resource identifier, prefix the decimal number with a "#".</param>
/// <param name="locale">Locale of the resource</param>
public VersionResource(string name, int locale)
: this(name, locale, null)
{
}
/// <summary>
/// Creates a new VersionResource object with data. The data can be later saved to a file.
/// </summary>
/// <param name="name">Name of the resource. For a numeric resource identifier, prefix the decimal number with a "#".</param>
/// <param name="locale">Locale of the resource</param>
/// <param name="data">Raw resource data</param>
public VersionResource(string name, int locale, byte[] data)
: base(ResourceType.Version, name, locale, data)
{
this.RefreshVersionInfo(data);
}
/// <summary>
/// Gets or sets the raw data of the resource. The data is in the format of the VS_VERSIONINFO structure.
/// </summary>
public override byte[] Data
{
get
{
if (this.dirty)
{
this.rawVersionInfo.Data = (byte[]) this.rawFileVersionInfo;
base.Data = (byte[]) this.rawVersionInfo;
this.dirty = false;
}
return base.Data;
}
set
{
base.Data = value;
this.RefreshVersionInfo(value);
this.dirty = false;
}
}
private void RefreshVersionInfo(byte[] refreshData)
{
if (refreshData == null)
{
this.rawVersionInfo = new VersionInfo("VS_VERSION_INFO");
this.rawFileVersionInfo = new FixedFileVersionInfo();
}
else
{
this.rawVersionInfo = (VersionInfo) refreshData;
this.rawFileVersionInfo = (FixedFileVersionInfo) this.rawVersionInfo.Data;
}
}
/// <summary>
/// Gets or sets the binary locale-independent file version of the version resource.
/// </summary>
public Version FileVersion
{
get
{
return this.rawFileVersionInfo.FileVersion;
}
set
{
this.rawFileVersionInfo.FileVersion = value;
this.dirty = true;
}
}
/// <summary>
/// Gets or sets the binary locale-independent product version of the version resource.
/// </summary>
public Version ProductVersion
{
get
{
return this.rawFileVersionInfo.ProductVersion;
}
set
{
this.rawFileVersionInfo.ProductVersion = value;
this.dirty = true;
}
}
/// <summary>
/// Gets or sets a bitmask that specifies the build types of the file.
/// </summary>
public VersionBuildTypes BuildTypes
{
get
{
return this.rawFileVersionInfo.FileFlags &
this.rawFileVersionInfo.FileFlagsMask;
}
set
{
this.rawFileVersionInfo.FileFlags = value;
this.rawFileVersionInfo.FileFlagsMask = value;
this.dirty = true;
}
}
/// <summary>
/// Gets or sets the general type of the file.
/// </summary>
public VersionFileType FileType
{
get
{
return this.rawFileVersionInfo.FileType;
}
set
{
this.rawFileVersionInfo.FileType = value;
this.dirty = true;
}
}
/// <summary>
/// Gets or sets the specific type of the file.
/// </summary>
public VersionFileSubtype FileSubtype
{
get
{
return this.rawFileVersionInfo.FileSubtype;
}
set
{
this.rawFileVersionInfo.FileSubtype = value;
this.dirty = true;
}
}
/// <summary>
/// Gets or sets the binary creation date and time.
/// </summary>
public DateTime Timestamp
{
get
{
return this.rawFileVersionInfo.Timestamp;
}
set
{
this.rawFileVersionInfo.Timestamp = value;
this.dirty = true;
}
}
/// <summary>
/// Gets the string table for a specific locale, or null if there is no table for that locale.
/// </summary>
/// <seealso cref="Add(int)"/>
/// <seealso cref="Remove(int)"/>
public VersionStringTable this[int locale]
{
get
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi != null)
{
foreach (VersionInfo strings in svi)
{
int stringsLocale = UInt16.Parse(strings.Key.Substring(0, 4), NumberStyles.HexNumber, CultureInfo.InvariantCulture);
if (stringsLocale == locale)
{
return new VersionStringTable(this, strings);
}
}
}
return null;
}
}
/// <summary>
/// Adds a new version string table for a locale.
/// </summary>
/// <param name="locale">Locale of the table</param>
/// <returns>The new string table, or the existing table if the locale already existed.</returns>
public VersionStringTable Add(int locale)
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi == null)
{
svi = new VersionInfo("StringFileInfo");
this.rawVersionInfo.Add(svi);
}
foreach (VersionInfo strings in svi)
{
int stringsLocale = UInt16.Parse(strings.Key.Substring(0, 4), NumberStyles.HexNumber, CultureInfo.InvariantCulture);
if (stringsLocale == locale)
{
return new VersionStringTable(this, strings);
}
}
VersionInfo newStrings = new VersionInfo(
((ushort) locale).ToString("x4", CultureInfo.InvariantCulture) + ((ushort) 1200).ToString("x4", CultureInfo.InvariantCulture));
svi.Add(newStrings);
this.dirty = true;
VersionInfo vvi = this.rawVersionInfo["VarFileInfo"];
if (vvi == null)
{
vvi = new VersionInfo("VarFileInfo");
vvi.Add(new VersionInfo("Translation"));
this.rawVersionInfo.Add(vvi);
}
VersionInfo tVerInfo = vvi["Translation"];
if (tVerInfo != null)
{
byte[] oldValue = tVerInfo.Data;
if (oldValue == null) oldValue = new byte[0];
tVerInfo.Data = new byte[oldValue.Length + 4];
Array.Copy(oldValue, tVerInfo.Data, oldValue.Length);
using (BinaryWriter bw = new BinaryWriter(new MemoryStream(tVerInfo.Data, oldValue.Length, 4, true)))
{
bw.Write((ushort) locale);
bw.Write((ushort) 1200);
}
}
return new VersionStringTable(this, newStrings);
}
/// <summary>
/// Removes a version string table for a locale.
/// </summary>
/// <param name="locale">Locale of the table</param>
public void Remove(int locale)
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi != null)
{
foreach (VersionInfo strings in svi)
{
int stringsLocale = UInt16.Parse(strings.Key.Substring(0, 4), NumberStyles.HexNumber, CultureInfo.InvariantCulture);
if (stringsLocale == locale)
{
svi.Remove(strings);
this.dirty = true;
break;
}
}
}
VersionInfo vvi = this.rawVersionInfo["VarFileInfo"];
if (vvi != null)
{
VersionInfo tVerInfo = vvi["Translation"];
if (tVerInfo != null)
{
byte[] newValue = new byte[tVerInfo.Data.Length];
int j = 0;
using (BinaryWriter bw = new BinaryWriter(new MemoryStream(newValue, 0, newValue.Length, true)))
{
using (BinaryReader br = new BinaryReader(new MemoryStream(tVerInfo.Data)))
{
for (int i = tVerInfo.Data.Length / 4; i > 0; i--)
{
ushort tLocale = br.ReadUInt16();
ushort cp = br.ReadUInt16();
if (tLocale != locale)
{
bw.Write((ushort) tLocale);
bw.Write((ushort) cp);
j++;
}
}
}
}
tVerInfo.Data = new byte[j * 4];
Array.Copy(newValue, tVerInfo.Data, tVerInfo.Data.Length);
}
}
}
/// <summary>
/// Checks if a version string table exists for a given locale.
/// </summary>
/// <param name="locale">Locale to search for</param>
/// <returns>True if a string table was found for the locale; false otherwise.</returns>
public bool Contains(int locale)
{
return this[locale] != null;
}
/// <summary>
/// Gets the number string tables in the version resource.
/// </summary>
public int Count
{
get
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
return svi != null ? svi.Count : 0;
}
}
/// <summary>
/// Removes all string tables from the version resource.
/// </summary>
public void Clear()
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi != null)
{
svi.Clear();
this.dirty = true;
}
}
bool ICollection<VersionStringTable>.IsReadOnly
{
get
{
return false;
}
}
void ICollection<VersionStringTable>.Add(VersionStringTable item)
{
throw new NotSupportedException();
}
bool ICollection<VersionStringTable>.Remove(VersionStringTable item)
{
throw new NotSupportedException();
}
bool ICollection<VersionStringTable>.Contains(VersionStringTable item)
{
throw new NotSupportedException();
}
/// <summary>
/// Copies the version string tables to an array, starting at a particular array index.
/// </summary>
/// <param name="array">The one-dimensional Array that is the destination of the elements copied
/// from the collection. The Array must have zero-based indexing.</param>
/// <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
public void CopyTo(VersionStringTable[] array, int arrayIndex)
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi != null)
{
foreach (VersionInfo strings in svi)
{
array[arrayIndex++] = new VersionStringTable(this, strings);
}
}
}
/// <summary>
/// Gets an enumerator that can iterate over the version string tables in the collection.
/// </summary>
/// <returns>An enumerator that returns <see cref="VersionStringTable"/> objects.</returns>
public IEnumerator<VersionStringTable> GetEnumerator()
{
VersionInfo svi = this.rawVersionInfo["StringFileInfo"];
if (svi != null)
{
foreach (VersionInfo strings in svi)
{
yield return new VersionStringTable(this, strings);
}
}
}
/// <summary>
/// Gets an enumerator that can iterate over the version string tables in the collection.
/// </summary>
/// <returns>An enumerator that returns <see cref="VersionStringTable"/> objects.</returns>
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
}
}
|