File size: 23,756 Bytes
8c763fb | 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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.Management.Automation;
using System.Management.Automation.Host;
using System.Management.Automation.Internal;
using System.Security;
using System.Text;
using Dbg = System.Management.Automation.Diagnostics;
using InternalHostUserInterface = System.Management.Automation.Internal.Host.InternalHostUserInterface;
namespace Microsoft.PowerShell
{
internal partial
class ConsoleHostUserInterface : System.Management.Automation.Host.PSHostUserInterface
{
/// <summary>
/// Used by Prompt to indicate any common errors when converting the user input string to
/// the type of the parameter.
/// </summary>
private enum PromptCommonInputErrors
{
/// <summary>
/// No error or not an error prompt handles.
/// </summary>
None,
/// <summary>
/// Format error.
/// </summary>
Format,
/// <summary>
/// Overflow error.
/// </summary>
Overflow
}
private static
bool
AtLeastOneHelpMessageIsPresent(Collection<FieldDescription> descriptions)
{
foreach (FieldDescription fd in descriptions)
{
if (fd != null)
{
if (!string.IsNullOrEmpty(fd.HelpMessage))
{
return true;
}
}
}
return false;
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="caption"></param>
/// <param name="message"></param>
/// <param name="descriptions"></param>
/// <returns></returns>
/// <exception cref="ArgumentNullException">
/// If <paramref name="descriptions"/> is null
/// OR
/// at least one FieldDescription in <paramref name="descriptions"/> is null
/// </exception>
/// <exception cref="ArgumentException">
/// If <paramref name="descriptions"/> count is less than 1
/// OR
/// at least one FieldDescription.AssemblyFullName in <paramref name="descriptions"/> is
/// null or empty
/// </exception>
/// <exception cref="PromptingException">
/// If a FieldDescription in <paramref name="descriptions"/> specifies one of SecureString or
/// PSCredential and the type can not be loaded.
/// OR
/// at least one FieldDescription in <paramref name="descriptions"/> specifies an array
/// whose rank is less than 1.
/// </exception>
/// <exception cref="PSInvalidCastException">
/// If the converting the user input to the prompt field type fails unless it is caused by
/// OverflowException or FormatException
/// </exception>
public override
Dictionary<string, PSObject>
Prompt(string caption, string message, Collection<FieldDescription> descriptions)
{
// Need to implement EchoOnPrompt
HandleThrowOnReadAndPrompt();
if (descriptions == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(descriptions));
}
if (descriptions.Count < 1)
{
throw PSTraceSource.NewArgumentException(nameof(descriptions),
ConsoleHostUserInterfaceStrings.PromptEmptyDescriptionsErrorTemplate, "descriptions");
}
// we lock here so that multiple threads won't interleave the various reads and writes here.
lock (_instanceLock)
{
Dictionary<string, PSObject> results = new Dictionary<string, PSObject>();
bool cancelInput = false;
if (!string.IsNullOrEmpty(caption))
{
// Should be a skin lookup
WriteLineToConsole();
WriteLineToConsole(PromptColor, RawUI.BackgroundColor, WrapToCurrentWindowWidth(caption));
}
if (!string.IsNullOrEmpty(message))
{
WriteLineToConsole(WrapToCurrentWindowWidth(message));
}
if (AtLeastOneHelpMessageIsPresent(descriptions))
{
WriteLineToConsole(WrapToCurrentWindowWidth(ConsoleHostUserInterfaceStrings.PromptHelp));
}
int descIndex = -1;
foreach (FieldDescription desc in descriptions)
{
descIndex++;
if (desc == null)
{
throw PSTraceSource.NewArgumentException(nameof(descriptions),
ConsoleHostUserInterfaceStrings.NullErrorTemplate,
string.Create(CultureInfo.InvariantCulture, $"descriptions[{descIndex}]"));
}
PSObject inputPSObject = null;
string fieldPrompt = null;
fieldPrompt = desc.Name;
// FieldDescription.ParameterAssemblyFullName never returns null. But this is
// defense in depth.
if (string.IsNullOrEmpty(desc.ParameterAssemblyFullName))
{
string paramName =
string.Create(CultureInfo.InvariantCulture, $"descriptions[{descIndex}].AssemblyFullName");
throw PSTraceSource.NewArgumentException(paramName, ConsoleHostUserInterfaceStrings.NullOrEmptyErrorTemplate, paramName);
}
Type fieldType = InternalHostUserInterface.GetFieldType(desc);
if (fieldType == null)
{
if (InternalHostUserInterface.IsSecuritySensitiveType(desc.ParameterTypeName))
{
string errMsg =
StringUtil.Format(ConsoleHostUserInterfaceStrings.PromptTypeLoadErrorTemplate,
desc.Name, desc.ParameterTypeFullName);
PromptingException e = new PromptingException(errMsg,
null, "BadTypeName", ErrorCategory.InvalidType);
throw e;
}
fieldType = typeof(string);
}
if (fieldType.GetInterface(typeof(IList).FullName) != null)
{
// field is a type implementing IList
ArrayList inputList = new ArrayList(); // stores all converted user input before
// assigned to an array
// if the field is an array, the element type can be found; else, use Object
Type elementType = typeof(object);
if (fieldType.IsArray)
{
elementType = fieldType.GetElementType();
int rank = fieldType.GetArrayRank();
// This check may be redundant because it doesn't seem possible to create
// an array of zero dimension.
if (rank <= 0)
{
string msg = StringUtil.Format(ConsoleHostUserInterfaceStrings.RankZeroArrayErrorTemplate, desc.Name);
ArgumentException innerException = PSTraceSource.NewArgumentException(
string.Create(CultureInfo.InvariantCulture, $"descriptions[{descIndex}].AssemblyFullName"));
PromptingException e = new PromptingException(msg, innerException, "ZeroRankArray", ErrorCategory.InvalidOperation);
throw e;
}
}
StringBuilder fieldPromptList = new StringBuilder(fieldPrompt);
// fieldPromptList = fieldPrompt + "[i] :"
fieldPromptList.Append('[');
while (true)
{
fieldPromptList.Append(CultureInfo.InvariantCulture, $"{inputList.Count}]: ");
bool endListInput = false;
object convertedObj = null;
_ = PromptForSingleItem(
elementType,
fieldPromptList.ToString(),
fieldPrompt,
caption,
message,
desc,
fieldEchoOnPrompt: true,
listInput: true,
out endListInput,
out cancelInput,
out convertedObj);
if (cancelInput || endListInput)
{
break;
}
else if (!cancelInput)
{
inputList.Add(convertedObj);
// Remove the indices from the prompt
fieldPromptList.Length = fieldPrompt.Length + 1;
}
}
// if cancelInput, should throw OperationCancelException?
if (!cancelInput)
{
object tryConvertResult = null;
if (LanguagePrimitives.TryConvertTo(inputList, fieldType, out tryConvertResult))
{
inputPSObject = PSObject.AsPSObject(tryConvertResult);
}
else
{
inputPSObject = PSObject.AsPSObject(inputList);
}
}
}
else
{
string printFieldPrompt = StringUtil.Format(ConsoleHostUserInterfaceStrings.PromptFieldPromptInputSeparatorTemplate,
fieldPrompt);
// field is not a list
object convertedObj = null;
_ = PromptForSingleItem(
fieldType,
printFieldPrompt,
fieldPrompt,
caption,
message,
desc,
fieldEchoOnPrompt: true,
listInput: false,
endListInput: out _,
out cancelInput,
out convertedObj);
if (!cancelInput)
{
inputPSObject = PSObject.AsPSObject(convertedObj);
}
}
if (cancelInput)
{
s_tracer.WriteLine("Prompt canceled");
WriteLineToConsole();
results.Clear();
break;
}
results.Add(desc.Name, PSObject.AsPSObject(inputPSObject));
}
return results;
}
}
private string PromptForSingleItem(Type fieldType,
string printFieldPrompt,
string fieldPrompt,
string caption,
string message,
FieldDescription desc,
bool fieldEchoOnPrompt,
bool listInput,
out bool endListInput,
out bool cancelInput,
out object convertedObj
)
{
cancelInput = false;
endListInput = false;
convertedObj = null;
if (fieldType.Equals(typeof(SecureString)))
{
WriteToConsole(printFieldPrompt, true);
SecureString secureString = ReadLineAsSecureString();
convertedObj = secureString;
cancelInput = (convertedObj == null);
if ((secureString != null) && (secureString.Length == 0) && listInput)
{
endListInput = true;
}
}
else if (fieldType.Equals(typeof(PSCredential)))
{
WriteLineToConsole(WrapToCurrentWindowWidth(fieldPrompt));
PSCredential credential = null;
credential =
PromptForCredential(
null, // caption already written
null, // message already written
null,
string.Empty);
convertedObj = credential;
cancelInput = (convertedObj == null);
if ((credential != null) && (credential.Password.Length == 0) && listInput)
{
endListInput = true;
}
}
else
{
string inputString = null;
do
{
inputString = PromptReadInput(
printFieldPrompt, desc, fieldEchoOnPrompt,
listInput, out endListInput, out cancelInput);
}
while (!cancelInput && !endListInput && PromptTryConvertTo(fieldType, desc.IsFromRemoteHost, inputString, out convertedObj) !=
PromptCommonInputErrors.None);
return inputString;
}
return null;
}
/// <summary>
/// Called by Prompt. Reads user input and processes tilde commands.
/// </summary>
/// <param name="fieldPrompt">Prompt written to host for the field.</param>
/// <param name="desc">The field to be read.</param>
/// <param name="fieldEchoOnPrompt">True to echo user input.</param>
/// <param name="listInput">True if the field is a list.</param>
/// <param name="endListInput">Valid only if listInput is true. set to true if the input signals end of list input.</param>
/// <param name="cancelled">True if-and-only-if the input is canceled, e.g., by Ctrl-C or Ctrl-Break.</param>
/// <returns>Processed input string to be converted with LanguagePrimitives.ConvertTo.</returns>
private string PromptReadInput(string fieldPrompt, FieldDescription desc, bool fieldEchoOnPrompt,
bool listInput, out bool endListInput, out bool cancelled)
{
Dbg.Assert(fieldPrompt != null, "fieldPrompt should never be null when PromptReadInput is called");
Dbg.Assert(desc != null, "desc should never be null when PromptReadInput is called");
string processedInputString = null;
endListInput = false;
cancelled = false;
bool inputDone = false;
while (!inputDone)
{
WriteToConsole(fieldPrompt, true);
string rawInputString = null;
// Implement no echo here.
if (fieldEchoOnPrompt)
{
rawInputString = ReadLine();
}
else
{
object userInput = ReadLineSafe(false, null);
string userInputString = userInput as string;
System.Management.Automation.Diagnostics.Assert(userInputString != null, "ReadLineSafe did not return a string");
rawInputString = userInputString;
}
if (rawInputString == null)
{
// processedInputString is null as well. No need to assign null to it.
cancelled = true;
break;
}
else
if (!string.IsNullOrEmpty(desc.Label) && rawInputString.StartsWith(PromptCommandPrefix, StringComparison.Ordinal))
{
processedInputString = PromptCommandMode(rawInputString, desc, out inputDone);
}
else
{
if (rawInputString.Length == 0 && listInput)
{
endListInput = true;
}
processedInputString = rawInputString;
break;
}
}
return processedInputString;
}
/// <summary>
/// Uses LanguagePrimitives.ConvertTo to parse inputString for fieldType. Handles two most common parse
/// exceptions: OverflowException and FormatException.
/// </summary>
/// <param name="fieldType">The type that inputString is to be interpreted.</param>
/// <param name="isFromRemoteHost">Is the call coming from a remote host.</param>
/// <param name="inputString">The string to be converted.</param>
/// <param name="convertedObj">if there's no error in the conversion, the converted object will be assigned here;
/// otherwise, this will be the same as the inputString</param>
/// <returns>An object of type fieldType that inputString represents.</returns>
private PromptCommonInputErrors PromptTryConvertTo(Type fieldType, bool isFromRemoteHost, string inputString, out object convertedObj)
{
Dbg.Assert(fieldType != null, "fieldType should never be null when PromptTryConvertTo is called");
convertedObj = inputString;
// do not do any type conversion if the prompt request is coming from a remote host
// (bug Windows 7: #381643) + its bad to have potential side effects from casting on the client (think casting to a FileStream)
if (isFromRemoteHost)
{
return PromptCommonInputErrors.None;
}
try
{
convertedObj = LanguagePrimitives.ConvertTo(inputString, fieldType, CultureInfo.InvariantCulture);
}
catch (PSInvalidCastException e)
{
Exception innerE = e.InnerException;
if (innerE != null)
{
if (innerE is OverflowException)
{
string errMsgTemplate =
ConsoleHostUserInterfaceStrings.PromptParseOverflowErrorTemplate;
WriteLineToConsole(
WrapToCurrentWindowWidth(
string.Format(CultureInfo.CurrentCulture, errMsgTemplate, fieldType, inputString)));
return PromptCommonInputErrors.Overflow;
}
else if (innerE is FormatException)
{
// Don't output error message if the inputString is empty
if (inputString.Length > 0)
{
string errMsgTemplate =
ConsoleHostUserInterfaceStrings.PromptParseFormatErrorTemplate;
WriteLineToConsole(
WrapToCurrentWindowWidth(
string.Format(CultureInfo.CurrentCulture, errMsgTemplate, fieldType, inputString)));
}
return PromptCommonInputErrors.Format;
}
else
{
}
}
else
{
}
}
return PromptCommonInputErrors.None;
}
/// <summary>
/// Handles Tilde Commands in Prompt
/// If input does not start with PromptCommandPrefix (= "!"), returns input
/// Tilde commands -
/// ! end of list, only valid for input field types that implement IList, returns string.Empty
/// !!* input !* literally, returns !* where * is any string
/// !h prints out field's Quick Help, returns null
/// All others tilde comments are invalid and return null
///
/// returns null if-and-only-if there's nothing the caller can process.
/// </summary>
/// <param name="input"></param>
/// <param name="desc"></param>
/// <param name="inputDone"></param>
/// <returns></returns>
private string PromptCommandMode(string input, FieldDescription desc, out bool inputDone)
{
Dbg.Assert(input != null && input.StartsWith(PromptCommandPrefix, StringComparison.OrdinalIgnoreCase),
string.Create(CultureInfo.InvariantCulture, $"input should start with {PromptCommandPrefix}"));
Dbg.Assert(desc != null, "desc should never be null when PromptCommandMode is called");
string command = input.Substring(1);
inputDone = true;
if (command.StartsWith(PromptCommandPrefix, StringComparison.OrdinalIgnoreCase))
{
return command;
}
if (command.Length == 1)
{
if (command[0] == '?')
{
if (string.IsNullOrEmpty(desc.HelpMessage))
{
string noHelpErrMsg =
StringUtil.Format(ConsoleHostUserInterfaceStrings.PromptNoHelpAvailableErrorTemplate, desc.Name);
s_tracer.TraceWarning(noHelpErrMsg);
WriteLineToConsole(WrapToCurrentWindowWidth(noHelpErrMsg));
}
else
{
WriteLineToConsole(WrapToCurrentWindowWidth(desc.HelpMessage));
}
}
else
{
ReportUnrecognizedPromptCommand(input);
}
inputDone = false;
return null;
}
if (command.Length == 2)
{
if (string.Equals(command, "\"\"", StringComparison.OrdinalIgnoreCase))
{
return string.Empty;
}
}
if (string.Equals(command, "$null", StringComparison.OrdinalIgnoreCase))
{
return null;
}
else
{
ReportUnrecognizedPromptCommand(input);
inputDone = false;
return null;
}
}
private void ReportUnrecognizedPromptCommand(string command)
{
string msg = StringUtil.Format(ConsoleHostUserInterfaceStrings.PromptUnrecognizedCommandErrorTemplate, command);
WriteLineToConsole(WrapToCurrentWindowWidth(msg));
}
// Prefix for command mode in Prompt
private const string PromptCommandPrefix = "!";
}
} // namespace
|