forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSSyncOutputEvents.cs
295 lines (254 loc) · 11.7 KB
/
PSSyncOutputEvents.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
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ----------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using Microsoft.WindowsAzure.Commands.ServiceManagement.Properties;
using Microsoft.WindowsAzure.Commands.Sync;
using Microsoft.WindowsAzure.Commands.Sync.Upload;
using Microsoft.WindowsAzure.Commands.Tools.Vhd.Model;
using Microsoft.WindowsAzure.Storage;
using ProgressRecord = Microsoft.WindowsAzure.Commands.Sync.ProgressRecord;
namespace Microsoft.WindowsAzure.Commands.ServiceManagement.Model
{
public class PSSyncOutputEvents : ISyncOutputEvents, IDisposable
{
private readonly PSCmdlet cmdlet;
private Runspace runspace;
private bool disposed;
public PSSyncOutputEvents(PSCmdlet cmdlet)
{
this.cmdlet = cmdlet;
this.runspace = RunspaceFactory.CreateRunspace(this.cmdlet.Host);
this.runspace.Open();
}
private static string FormatDuration(TimeSpan ts)
{
if (ts.Days == 0)
{
return String.Format("{0:00}:{1:00}:{2:00}", ts.Hours, ts.Minutes, ts.Seconds);
}
return String.Format(Resources.PSSyncOutputEventsFormatDuration, ts.Days, ts.Hours, ts.Minutes, ts.Seconds);
}
public void ProgressCopyStatus(ProgressRecord record)
{
ProgressCopyStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime);
}
public void ProgressCopyStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime)
{
LogProgress(0, Resources.PSSyncOutputEventsCopying, precentComplete, remainingTime, avgThroughputMbps);
}
public void ProgressCopyComplete(TimeSpan elapsed)
{
LogProgressComplete(0, Resources.PSSyncOutputEventsCopying);
LogMessage(Resources.PSSyncOutputEventsElapsedTimeForCopy, FormatDuration(elapsed));
}
public void ProgressUploadStatus(ProgressRecord record)
{
ProgressUploadStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime);
}
public void ProgressUploadStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime)
{
LogProgress(0, Resources.PSSyncOutputEventsUploading, precentComplete, remainingTime, avgThroughputMbps);
}
private void LogProgress(int activityId, string activity, double precentComplete, TimeSpan remainingTime, double avgThroughputMbps)
{
var message = String.Format(Resources.PSSyncOutputEventsLogProgress,
precentComplete,
FormatDuration(remainingTime),
avgThroughputMbps);
var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -SecondsRemaining {3} -PercentComplete {4}", activityId, activity, message, (int) remainingTime.TotalSeconds, (int) precentComplete);
using(var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddScript(progressCommand);
ps.Invoke();
}
}
private void LogProgressComplete(int activityId, string activity)
{
var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -Completed", activityId, activity, Resources.PSSyncOutputEventsLogProgressCompleteCompleted);
using(var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddScript(progressCommand);
ps.Invoke();
}
}
public void MessageCreatingNewPageBlob(long pageBlobSize)
{
LogMessage(Resources.PSSyncOutputEventsCreatingNewPageBlob, pageBlobSize);
}
private void LogMessage(string format, params object[] parameters)
{
var message = String.Format(format, parameters);
var verboseMessage = String.Format("Write-Host '{0}'", message);
using (var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddScript(verboseMessage);
ps.Invoke();
}
}
private void LogError(Exception e)
{
using (var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddCommand("Write-Error");
ps.AddParameter("ErrorRecord", new ErrorRecord(e, String.Empty, ErrorCategory.NotSpecified, null));
ps.Invoke();
}
}
public void MessageResumingUpload()
{
LogMessage(Resources.PSSyncOutputEventsResumingUpload);
}
public void ProgressUploadComplete(TimeSpan elapsed)
{
LogProgressComplete(0, Resources.PSSyncOutputEventsUploading);
LogMessage(Resources.PSSyncOutputEventsElapsedTimeForUpload, FormatDuration(elapsed));
}
public void ProgressDownloadStatus(ProgressRecord record)
{
ProgressDownloadStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime);
}
public void ProgressDownloadStatus(double precentComplete, double avgThroughputMbps, TimeSpan remainingTime)
{
LogProgress(0, Resources.PSSyncOutputEventsDownloading, precentComplete, remainingTime, avgThroughputMbps);
}
public void ProgressDownloadComplete(TimeSpan elapsed)
{
LogProgressComplete(0, Resources.PSSyncOutputEventsDownloading);
LogMessage(Resources.PSSyncOutputEventsElapsedTimeForDownload, FormatDuration(elapsed));
}
public void ProgressOperationStatus(ProgressRecord record)
{
ProgressOperationStatus(record.PercentComplete, record.AvgThroughputMbPerSecond, record.RemainingTime);
}
public void ProgressOperationStatus(double percentComplete, double avgThroughputMbps, TimeSpan remainingTime)
{
LogProgress(1, Resources.PSSyncOutputEventsCalculatingMD5Hash, percentComplete, remainingTime, avgThroughputMbps);
}
public void ProgressOperationComplete(TimeSpan elapsed)
{
LogProgressComplete(1, Resources.PSSyncOutputEventsCalculatingMD5Hash);
LogMessage(Resources.PSSyncOutputEventsElapsedTimeForOperation, FormatDuration(elapsed));
}
public void ErrorUploadFailedWithExceptions(IList<Exception> exceptions)
{
LogMessage(Resources.PSSyncOutputEventsUploadFailedWithException);
foreach (var exception in exceptions)
{
LogError(exception);
}
}
public void MessageCalculatingMD5Hash(string filePath)
{
LogMessage(Resources.PSSyncOutputEventsCalculatingMD5HashForFile, filePath);
}
public void MessageMD5HashCalculationFinished()
{
LogMessage(Resources.PSSyncOutputEventsMD5HashCalculationFinished);
}
public void MessageRetryingAfterANetworkDisruption()
{
LogMessage(Resources.PSSyncOutputEventsRetryingAfterANetworkDisruption);
}
public void DebugRetryingAfterException(Exception lastException)
{
LogDebug(lastException.ToString());
var storageException = lastException as StorageException;
var message = ExceptionUtil.DumpStorageExceptionErrorDetails(storageException);
if (message != String.Empty)
{
LogDebug(message);
}
}
public void MessageDetectingActualDataBlocks()
{
LogMessage(Resources.PSSyncOutputEventsDetectingActualDataBlocks);
}
public void MessageDetectingActualDataBlocksCompleted()
{
LogMessage(Resources.PSSyncOutputEventsDetectingActualDataBlocksCompleted);
}
public void MessagePrintBlockRange(IndexRange range)
{
LogMessage(Resources.PSSyncOutputEventsPrintBlockRange, range, range.Length);
}
public void DebugEmptyBlockDetected(IndexRange range)
{
LogDebug(Resources.PSSyncOutputEventsEmptyBlockDetected, range.ToString());
}
private void LogDebug(string format, params object[] parameters)
{
var message = String.Format(format, parameters);
var debugMessage = String.Format("Write-Debug -Message '{0}'", message);
using (var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddScript(debugMessage);
ps.Invoke();
}
}
public void ProgressEmptyBlockDetection(int processedRangeCount, int totalRangeCount)
{
using(var ps = System.Management.Automation.PowerShell.Create())
{
if (processedRangeCount >= totalRangeCount)
{
var progressCommand1 = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -Completed", 2, Resources.PSSyncOutputEventsProgressEmptyBlockDetection, Resources.PSSyncOutputEventsEmptyBlockDetectionCompleted);
ps.Runspace = runspace;
ps.AddScript(progressCommand1);
ps.Invoke();
return;
}
var progressCommand = String.Format(@"Write-Progress -Id {0} -Activity '{1}' -Status '{2}' -SecondsRemaining {3} -PercentComplete {4}", 2, Resources.PSSyncOutputEventsProgressEmptyBlockDetection, Resources.PSSyncOutputEventsEmptyBlockDetectionDetecting, -1, ((double)processedRangeCount / totalRangeCount) * 100);
ps.Runspace = runspace;
ps.AddScript(progressCommand);
ps.Invoke();
}
}
public void WriteVerboseWithTimestamp(string message, params object[] args)
{
var messageWithTimeStamp = string.Format(CultureInfo.CurrentCulture, "{0:T} - {1}", DateTime.Now, string.Format(message, args));
var progressCommand = String.Format(@"Write-Verbose -Message {0}", messageWithTimeStamp);
using (var ps = System.Management.Automation.PowerShell.Create())
{
ps.Runspace = runspace;
ps.AddScript(progressCommand);
ps.Invoke();
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if(!disposed)
{
if (disposing)
{
runspace.Dispose();
}
this.disposed = true;
}
}
}
}