blob: 66a693f24541a05c33e0f2c198d8edc9bc3b7d1c (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// 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
{
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using WixToolset.Data;
using Wix = WixToolset.Data.Serialize;
/// <summary>
/// The WiX Toolset harvester core.
/// </summary>
public sealed class HarvesterCore : IHarvesterCore
{
private string extensionArgument;
private string rootDirectory;
/// <summary>
/// Gets whether the harvester core encountered an error while processing.
/// </summary>
/// <value>Flag if core encountered an error during processing.</value>
public bool EncounteredError
{
get { return Messaging.Instance.EncounteredError; }
}
/// <summary>
/// Gets or sets the value of the extension argument passed to heat.
/// </summary>
/// <value>The extension argument.</value>
public string ExtensionArgument
{
get { return this.extensionArgument; }
set { this.extensionArgument = value; }
}
/// <summary>
/// Gets or sets the value of the root directory that is being harvested.
/// </summary>
/// <value>The root directory being harvested.</value>
public string RootDirectory
{
get { return this.rootDirectory; }
set { this.rootDirectory = value; }
}
/// <summary>
/// Create an identifier based on passed file name
/// </summary>
/// <param name="name">File name to generate identifer from</param>
/// <returns></returns>
public string CreateIdentifierFromFilename(string filename)
{
return Common.GetIdentifierFromName(filename);
}
/// <summary>
/// Generate an identifier by hashing data from the row.
/// </summary>
/// <param name="prefix">Three letter or less prefix for generated row identifier.</param>
/// <param name="args">Information to hash.</param>
/// <returns>The generated identifier.</returns>
[SuppressMessage("Microsoft.Globalization", "CA1303:DoNotPassLiteralsAsLocalizedParameters", MessageId = "System.InvalidOperationException.#ctor(System.String)")]
public string GenerateIdentifier(string prefix, params string[] args)
{
return Common.GenerateIdentifier(prefix, args);
}
/// <summary>
/// Sends a message to the message delegate if there is one.
/// </summary>
/// <param name="mea">Message event arguments.</param>
public void OnMessage(MessageEventArgs mea)
{
Messaging.Instance.OnMessage(mea);
}
/// <summary>
/// Resolves a file's path if the Wix.File.Source value starts with "SourceDir\".
/// </summary>
/// <param name="fileSource">The Wix.File.Source value with "SourceDir\".</param>
/// <returns>The full path of the file.</returns>
public string ResolveFilePath(string fileSource)
{
if (fileSource.StartsWith("SourceDir\\", StringComparison.Ordinal))
{
string file = Path.GetFullPath(this.rootDirectory);
if (File.Exists(file))
{
return file;
}
else
{
fileSource = fileSource.Substring(10);
fileSource = Path.Combine(Path.GetFullPath(this.rootDirectory), fileSource);
}
}
return fileSource;
}
}
}
|