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
|
// 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.Bind
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.AccessControl;
using WixToolset.Data;
using WixToolset.Data.Bind;
using WixToolset.Extensibility;
using WixToolset.Extensibility.Services;
internal class TransferFilesCommand
{
public TransferFilesCommand(IMessaging messaging, IEnumerable<IFileSystemExtension> extensions, IEnumerable<FileTransfer> fileTransfers, bool suppressAclReset)
{
this.FileSystem = new FileSystem(extensions);
this.Messaging = messaging;
this.FileTransfers = fileTransfers;
this.SuppressAclReset = suppressAclReset;
}
private FileSystem FileSystem { get; }
private IMessaging Messaging { get; }
private IEnumerable<FileTransfer> FileTransfers { get; }
private bool SuppressAclReset { get; }
public void Execute()
{
List<string> destinationFiles = new List<string>();
foreach (var fileTransfer in this.FileTransfers)
{
// If the source and destination are identical, then there's nothing to do here
if (0 == String.Compare(fileTransfer.Source, fileTransfer.Destination, StringComparison.OrdinalIgnoreCase))
{
fileTransfer.Redundant = true;
continue;
}
bool retry = false;
do
{
try
{
if (fileTransfer.Move)
{
this.Messaging.Write(VerboseMessages.MoveFile(fileTransfer.Source, fileTransfer.Destination));
this.TransferFile(true, fileTransfer.Source, fileTransfer.Destination);
}
else
{
this.Messaging.Write(VerboseMessages.CopyFile(fileTransfer.Source, fileTransfer.Destination));
this.TransferFile(false, fileTransfer.Source, fileTransfer.Destination);
}
retry = false;
destinationFiles.Add(fileTransfer.Destination);
}
catch (FileNotFoundException e)
{
throw new WixFileNotFoundException(fileTransfer.SourceLineNumbers, e.FileName);
}
catch (DirectoryNotFoundException)
{
// if we already retried, give up
if (retry)
{
throw;
}
string directory = Path.GetDirectoryName(fileTransfer.Destination);
this.Messaging.Write(VerboseMessages.CreateDirectory(directory));
Directory.CreateDirectory(directory);
retry = true;
}
catch (UnauthorizedAccessException)
{
// if we already retried, give up
if (retry)
{
throw;
}
if (File.Exists(fileTransfer.Destination))
{
this.Messaging.Write(VerboseMessages.RemoveDestinationFile(fileTransfer.Destination));
// try to ensure the file is not read-only
FileAttributes attributes = File.GetAttributes(fileTransfer.Destination);
try
{
File.SetAttributes(fileTransfer.Destination, attributes & ~FileAttributes.ReadOnly);
}
catch (ArgumentException) // thrown for unauthorized access errors
{
throw new WixException(ErrorMessages.UnauthorizedAccess(fileTransfer.Destination));
}
// try to delete the file
try
{
File.Delete(fileTransfer.Destination);
}
catch (IOException)
{
throw new WixException(ErrorMessages.FileInUse(null, fileTransfer.Destination));
}
retry = true;
}
else // no idea what just happened, bail
{
throw;
}
}
catch (IOException)
{
// if we already retried, give up
if (retry)
{
throw;
}
if (File.Exists(fileTransfer.Destination))
{
this.Messaging.Write(VerboseMessages.RemoveDestinationFile(fileTransfer.Destination));
// ensure the file is not read-only, then delete it
FileAttributes attributes = File.GetAttributes(fileTransfer.Destination);
File.SetAttributes(fileTransfer.Destination, attributes & ~FileAttributes.ReadOnly);
try
{
File.Delete(fileTransfer.Destination);
}
catch (IOException)
{
throw new WixException(ErrorMessages.FileInUse(null, fileTransfer.Destination));
}
retry = true;
}
else // no idea what just happened, bail
{
throw;
}
}
} while (retry);
}
// Finally, if there were any files remove the ACL that may have been added to
// during the file transfer process.
if (0 < destinationFiles.Count && !this.SuppressAclReset)
{
var aclReset = new FileSecurity();
aclReset.SetAccessRuleProtection(false, false);
try
{
//WixToolset.Core.Native.NativeMethods.ResetAcls(destinationFiles.ToArray(), (uint)destinationFiles.Count);
foreach (var file in destinationFiles)
{
new FileInfo(file).SetAccessControl(aclReset);
}
}
catch
{
this.Messaging.Write(WarningMessages.UnableToResetAcls());
}
}
}
private void TransferFile(bool move, string source, string destination)
{
bool complete = false;
if (move)
{
complete = this.FileSystem.MoveFile(source, destination, true);
}
else
{
complete = this.FileSystem.CopyFile(source, destination, true);
}
if (!complete)
{
throw new InvalidOperationException(); // TODO: something needs to be said here that none of the binder file managers returned a result.
}
}
}
}
|