forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite.cs
More file actions
503 lines (442 loc) · 17.4 KB
/
Copy pathwrite.cs
File metadata and controls
503 lines (442 loc) · 17.4 KB
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Management.Automation;
using System.Management.Automation.Internal;
using System.Runtime.Serialization;
using System.Diagnostics.CodeAnalysis;
#if CORECLR
// Use stub for SystemException, SerializationInfo, SerializableAttribute and Serializable
// It is needed for WriteErrorException which ONLY used in Write-Error cmdlet.
using Microsoft.PowerShell.CoreClr.Stubs;
#endif
namespace Microsoft.PowerShell.Commands
{
#region WriteDebugCommand
/// <summary>
/// This class implements Write-Debug command
///
/// </summary>
[Cmdlet(VerbsCommunications.Write, "Debug", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113424", RemotingCapability = RemotingCapability.None)]
public sealed class WriteDebugCommand : PSCmdlet
{
/// <summary>
/// Message to be sent and processed if debug mode is on.
/// </summary>
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
[AllowEmptyString]
[Alias("Msg")]
public string Message { get; set; } = null;
/// <summary>
/// This method implements the ProcessRecord method for Write-Debug command
/// </summary>
protected override void ProcessRecord()
{
//
// The write-debug command must use the script's InvocationInfo rather than its own,
// so we create the DebugRecord here and fill it up with the appropriate InvocationInfo;
// then, we call the command runtime directly and pass this record to WriteDebug().
//
MshCommandRuntime mshCommandRuntime = this.CommandRuntime as MshCommandRuntime;
if (mshCommandRuntime != null)
{
DebugRecord record = new DebugRecord(Message);
InvocationInfo invocationInfo = GetVariableValue(SpecialVariables.MyInvocation) as InvocationInfo;
if (invocationInfo != null)
{
record.SetInvocationInfo(invocationInfo);
}
mshCommandRuntime.WriteDebug(record);
}
else
{
WriteDebug(Message);
}
}//processrecord
}//WriteDebugCommand
#endregion WriteDebugCommand
#region WriteVerboseCommand
/// <summary>
/// This class implements Write-Verbose command
///
/// </summary>
[Cmdlet(VerbsCommunications.Write, "Verbose", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113429", RemotingCapability = RemotingCapability.None)]
public sealed class WriteVerboseCommand : PSCmdlet
{
/// <summary>
/// Message to be sent if verbose messages are being shown.
/// </summary>
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
[AllowEmptyString]
[Alias("Msg")]
public string Message { get; set; } = null;
/// <summary>
/// This method implements the ProcessRecord method for Write-verbose command
/// </summary>
protected override void ProcessRecord()
{
//
// The write-verbose command must use the script's InvocationInfo rather than its own,
// so we create the VerboseRecord here and fill it up with the appropriate InvocationInfo;
// then, we call the command runtime directly and pass this record to WriteVerbose().
//
MshCommandRuntime mshCommandRuntime = this.CommandRuntime as MshCommandRuntime;
if (mshCommandRuntime != null)
{
VerboseRecord record = new VerboseRecord(Message);
InvocationInfo invocationInfo = GetVariableValue(SpecialVariables.MyInvocation) as InvocationInfo;
if (invocationInfo != null)
{
record.SetInvocationInfo(invocationInfo);
}
mshCommandRuntime.WriteVerbose(record);
}
else
{
WriteVerbose(Message);
}
}//processrecord
}//WriteVerboseCommand
#endregion WriteVerboseCommand
#region WriteWarningCommand
/// <summary>
/// This class implements Write-Warning command
///
/// </summary>
[Cmdlet(VerbsCommunications.Write, "Warning", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113430", RemotingCapability = RemotingCapability.None)]
public sealed class WriteWarningCommand : PSCmdlet
{
/// <summary>
/// Message to be sent if warning messages are being shown.
/// </summary>
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
[AllowEmptyString]
[Alias("Msg")]
public string Message { get; set; } = null;
/// <summary>
/// This method implements the ProcessRecord method for Write-Warning command
/// </summary>
protected override void ProcessRecord()
{
//
// The write-warning command must use the script's InvocationInfo rather than its own,
// so we create the WarningRecord here and fill it up with the appropriate InvocationInfo;
// then, we call the command runtime directly and pass this record to WriteWarning().
//
MshCommandRuntime mshCommandRuntime = this.CommandRuntime as MshCommandRuntime;
if (mshCommandRuntime != null)
{
WarningRecord record = new WarningRecord(Message);
InvocationInfo invocationInfo = GetVariableValue(SpecialVariables.MyInvocation) as InvocationInfo;
if (invocationInfo != null)
{
record.SetInvocationInfo(invocationInfo);
}
mshCommandRuntime.WriteWarning(record);
}
else
{
WriteWarning(Message);
}
}//processrecord
}//WriteWarningCommand
#endregion WriteWarningCommand
#region WriteInformationCommand
/// <summary>
/// This class implements Write-Information command
///
/// </summary>
[Cmdlet(VerbsCommunications.Write, "Information", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=525909", RemotingCapability = RemotingCapability.None)]
public sealed class WriteInformationCommand : PSCmdlet
{
/// <summary>
/// Object to be sent to the Information stream.
/// </summary>
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true)]
[Alias("Msg")]
public Object MessageData { get; set; }
/// <summary>
/// Any tags to be associated with this information
/// </summary>
[Parameter(Position = 1)]
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public string[] Tags { get; set; }
/// <summary>
/// This method implements the processing of the Write-Information command
/// </summary>
protected override void BeginProcessing()
{
if (Tags != null)
{
foreach (string tag in Tags)
{
if (tag.StartsWith("PS", StringComparison.OrdinalIgnoreCase))
{
ErrorRecord er = new ErrorRecord(
new InvalidOperationException(StringUtil.Format(UtilityCommonStrings.PSPrefixReservedInInformationTag, tag)),
"PSPrefixReservedInInformationTag", ErrorCategory.InvalidArgument, tag);
ThrowTerminatingError(er);
}
}
}
}
/// <summary>
/// This method implements the ProcessRecord method for Write-Information command
/// </summary>
protected override void ProcessRecord()
{
WriteInformation(MessageData, Tags);
}
}//WriteInformationCommand
#endregion WriteInformationCommand
#region WriteOrThrowErrorCommand
/// <summary>
/// This class implements the Write-Error command
/// </summary>
public class WriteOrThrowErrorCommand : PSCmdlet
{
/// <summary>
/// ErrorRecord.Exception -- if not specified, ErrorRecord.Exception is
/// System.Exception.
/// </summary>
[Parameter(ParameterSetName = "WithException", Mandatory = true)]
public Exception Exception { get; set; } = null;
/// <summary>
/// If Exception is specified, this is ErrorRecord.ErrorDetails.Message.
/// Otherwise, the Exception is System.Exception, and this is
/// Exception.Message.
/// </summary>
[Parameter(Position = 0, ParameterSetName = "NoException", Mandatory = true, ValueFromPipeline = true)]
[Parameter(ParameterSetName = "WithException")]
[AllowNull]
[AllowEmptyString]
[Alias("Msg")]
public string Message { get; set; } = null;
/// <summary>
/// If Exception is specified, this is ErrorRecord.ErrorDetails.Message.
/// Otherwise, the Exception is System.Exception, and this is
/// Exception.Message.
/// </summary>
[Parameter(ParameterSetName = "ErrorRecord", Mandatory = true)]
public ErrorRecord ErrorRecord { get; set; } = null;
/// <summary>
/// ErrorRecord.CategoryInfo.Category
/// </summary>
[Parameter(ParameterSetName = "NoException")]
[Parameter(ParameterSetName = "WithException")]
public ErrorCategory Category { get; set; } = ErrorCategory.NotSpecified;
/// <summary>
/// ErrorRecord.ErrorId
/// </summary>
[Parameter(ParameterSetName = "NoException")]
[Parameter(ParameterSetName = "WithException")]
public string ErrorId { get; set; } = "";
/// <summary>
/// ErrorRecord.TargetObject
/// </summary>
[Parameter(ParameterSetName = "NoException")]
[Parameter(ParameterSetName = "WithException")]
public object TargetObject { get; set; } = null;
/// <summary>
/// ErrorRecord.ErrorDetails.RecommendedAction
/// </summary>
[Parameter]
public string RecommendedAction { get; set; } = "";
/* 2005/01/25 removing throw-error
/// <summary>
/// If true, this is throw-error. Otherwise, this is write-error.
/// </summary>
internal bool _terminating = false;
*/
/// <summary>
/// ErrorRecord.CategoryInfo.Activity
/// </summary>
[Parameter]
[Alias("Activity")]
public string CategoryActivity { get; set; } = "";
/// <summary>
/// ErrorRecord.CategoryInfo.Reason
/// </summary>
[Parameter]
[Alias("Reason")]
public string CategoryReason { get; set; } = "";
/// <summary>
/// ErrorRecord.CategoryInfo.TargetName
/// </summary>
[Parameter]
[Alias("TargetName")]
public string CategoryTargetName { get; set; } = "";
/// <summary>
/// ErrorRecord.CategoryInfo.TargetType
/// </summary>
[Parameter]
[Alias("TargetType")]
public string CategoryTargetType { get; set; } = "";
/// <summary>
/// Write an error to the output pipe, or throw a terminating error.
/// </summary>
protected override void ProcessRecord()
{
ErrorRecord errorRecord = this.ErrorRecord;
if (null != errorRecord)
{
// copy constructor
errorRecord = new ErrorRecord(errorRecord, null);
}
else
{
Exception e = this.Exception;
string msg = Message;
if (null == e)
{
e = new WriteErrorException(msg);
}
string errid = ErrorId;
if (String.IsNullOrEmpty(errid))
{
errid = e.GetType().FullName;
}
errorRecord = new ErrorRecord(
e,
errid,
Category,
TargetObject
);
if ((null != this.Exception && !String.IsNullOrEmpty(msg)))
{
errorRecord.ErrorDetails = new ErrorDetails(msg);
}
}
string recact = RecommendedAction;
if (!String.IsNullOrEmpty(recact))
{
if (null == errorRecord.ErrorDetails)
{
errorRecord.ErrorDetails = new ErrorDetails(errorRecord.ToString());
}
errorRecord.ErrorDetails.RecommendedAction = recact;
}
if (!String.IsNullOrEmpty(CategoryActivity))
errorRecord.CategoryInfo.Activity = CategoryActivity;
if (!String.IsNullOrEmpty(CategoryReason))
errorRecord.CategoryInfo.Reason = CategoryReason;
if (!String.IsNullOrEmpty(CategoryTargetName))
errorRecord.CategoryInfo.TargetName = CategoryTargetName;
if (!String.IsNullOrEmpty(CategoryTargetType))
errorRecord.CategoryInfo.TargetType = CategoryTargetType;
/* 2005/01/25 removing throw-error
if (_terminating)
{
ThrowTerminatingError(errorRecord);
}
else
{
*/
// 2005/07/14-913791 "write-error output is confusing and misleading"
// set InvocationInfo to the script not the command
InvocationInfo myInvocation = GetVariableValue(SpecialVariables.MyInvocation) as InvocationInfo;
if (null != myInvocation)
{
errorRecord.SetInvocationInfo(myInvocation);
errorRecord.PreserveInvocationInfoOnce = true;
if (!String.IsNullOrEmpty(CategoryActivity))
errorRecord.CategoryInfo.Activity = CategoryActivity;
else
errorRecord.CategoryInfo.Activity = "Write-Error";
}
WriteError(errorRecord);
/*
}
*/
}//processrecord
}//WriteOrThrowErrorCommand
/// <summary>
/// This class implements Write-Error command
/// </summary>
[Cmdlet(VerbsCommunications.Write, "Error", DefaultParameterSetName = "NoException",
HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113425", RemotingCapability = RemotingCapability.None)]
public sealed class WriteErrorCommand : WriteOrThrowErrorCommand
{
/// <summary>
/// constructor
/// </summary>
public WriteErrorCommand()
{
}
}
/* 2005/01/25 removing throw-error
/// <summary>
/// This class implements Write-Error command
/// </summary>
[Cmdlet("Throw", "Error", DefaultParameterSetName = "NoException")]
public sealed class ThrowErrorCommand : WriteOrThrowErrorCommand
{
/// <summary>
/// constructor
/// </summary>
public ThrowErrorCommand()
{
using (tracer.TraceConstructor(this))
{
_terminating = true;
}
}
}
*/
#endregion WriteOrThrowErrorCommand
#region WriteErrorException
/// <summary>
/// The write-error cmdlet uses WriteErrorException
/// when the user only specifies a string and not
/// an Exception or ErrorRecord.
/// </summary>
[Serializable]
public class WriteErrorException : SystemException
{
#region ctor
/// <summary>
/// Constructor for class WriteErrorException
/// </summary>
/// <returns> constructed object </returns>
public WriteErrorException()
: base(StringUtil.Format(WriteErrorStrings.WriteErrorException))
{
}
/// <summary>
/// Constructor for class WriteErrorException
/// </summary>
/// <param name="message"> </param>
/// <returns> constructed object </returns>
public WriteErrorException(string message)
: base(message)
{
}
/// <summary>
/// Constructor for class WriteErrorException
/// </summary>
/// <param name="message"> </param>
/// <param name="innerException"> </param>
/// <returns> constructed object </returns>
public WriteErrorException(string message,
Exception innerException)
: base(message, innerException)
{
}
#endregion ctor
#region Serialization
/// <summary>
/// Serialization constructor for class WriteErrorException
/// </summary>
/// <param name="info"> serialization information </param>
/// <param name="context"> streaming context </param>
/// <returns> constructed object </returns>
protected WriteErrorException(SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
#endregion Serialization
} // WriteErrorException
#endregion WriteErrorException
} //namespace