blob: 3ad2470f2c9259457a45c0feb725fdb8d62165c2 (
plain)
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
|
// 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.Core.WindowsInstaller.Bind
{
using System;
using System.IO;
using WixToolset.Data;
using WixToolset.Data.WindowsInstaller;
using WixToolset.Data.WindowsInstaller.Rows;
using WixToolset.Extensibility.Services;
internal class UpdateControlTextCommand
{
public IMessaging Messaging { private get; set; }
public Table BBControlTable { private get; set; }
public Table WixBBControlTable { private get; set; }
public Table ControlTable { private get; set; }
public Table WixControlTable { private get; set; }
public void Execute()
{
if (null != this.WixBBControlTable)
{
RowDictionary<BBControlRow> bbControlRows = new RowDictionary<BBControlRow>(this.BBControlTable);
foreach (Row wixRow in this.WixBBControlTable.Rows)
{
BBControlRow bbControlRow = bbControlRows.Get(wixRow.GetPrimaryKey());
bbControlRow.Text = this.ReadTextFile(bbControlRow.SourceLineNumbers, wixRow.FieldAsString(2));
}
}
if (null != this.WixControlTable)
{
RowDictionary<ControlRow> controlRows = new RowDictionary<ControlRow>(this.ControlTable);
foreach (Row wixRow in this.WixControlTable.Rows)
{
ControlRow controlRow = controlRows.Get(wixRow.GetPrimaryKey());
controlRow.Text = this.ReadTextFile(controlRow.SourceLineNumbers, wixRow.FieldAsString(2));
}
}
}
/// <summary>
/// Reads a text file and returns the contents.
/// </summary>
/// <param name="sourceLineNumbers">Source line numbers for row from source.</param>
/// <param name="source">Source path to file to read.</param>
/// <returns>Text string read from file.</returns>
private string ReadTextFile(SourceLineNumber sourceLineNumbers, string source)
{
string text = null;
try
{
using (StreamReader reader = new StreamReader(source))
{
text = reader.ReadToEnd();
}
}
catch (DirectoryNotFoundException e)
{
this.Messaging.Write(ErrorMessages.BinderFileManagerMissingFile(sourceLineNumbers, e.Message));
}
catch (FileNotFoundException e)
{
this.Messaging.Write(ErrorMessages.BinderFileManagerMissingFile(sourceLineNumbers, e.Message));
}
catch (IOException e)
{
this.Messaging.Write(ErrorMessages.BinderFileManagerMissingFile(sourceLineNumbers, e.Message));
}
catch (NotSupportedException)
{
this.Messaging.Write(ErrorMessages.FileNotFound(sourceLineNumbers, source));
}
return text;
}
}
}
|