File size: 35,427 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 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Management.Automation.Host;
using System.Management.Automation.Language;
using System.Management.Automation.Runspaces;
using System.Security;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation.Internal.Host
{
internal partial
class InternalHostUserInterface : PSHostUserInterface, IHostUISupportsMultipleChoiceSelection
{
internal
InternalHostUserInterface(PSHostUserInterface externalUI, InternalHost parentHost)
{
// externalUI may be null
_externalUI = externalUI;
// parent may not be null, however
Dbg.Assert(parentHost != null, "parent may not be null");
if (parentHost == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(parentHost));
}
_parent = parentHost;
PSHostRawUserInterface rawui = null;
if (externalUI != null)
{
rawui = externalUI.RawUI;
}
_internalRawUI = new InternalHostRawUserInterface(rawui, _parent);
}
private
void
ThrowNotInteractive()
{
_internalRawUI.ThrowNotInteractive();
}
private static void
ThrowPromptNotInteractive(string promptMessage)
{
string message = StringUtil.Format(HostInterfaceExceptionsStrings.HostFunctionPromptNotImplemented, promptMessage);
HostException e = new HostException(
message,
null,
"HostFunctionNotImplemented",
ErrorCategory.NotImplemented);
throw e;
}
/// <summary>
/// See base class.
/// </summary>
/// <value></value>
/// <exception/>
public override
System.Management.Automation.Host.PSHostRawUserInterface
RawUI
{
get
{
return _internalRawUI;
}
}
public override bool SupportsVirtualTerminal
{
get { return _externalUI != null && _externalUI.SupportsVirtualTerminal; }
}
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if the UI property of the external host is null, possibly because the PSHostUserInterface is not
/// implemented by the external host.
/// </exception>
public override
string
ReadLine()
{
if (_externalUI == null)
{
ThrowNotInteractive();
}
string result = null;
try
{
result = _externalUI.ReadLine();
}
catch (PipelineStoppedException)
{
// PipelineStoppedException is thrown by host when it wants
// to stop the pipeline.
LocalPipeline lpl = (LocalPipeline)((RunspaceBase)_parent.Context.CurrentRunspace).GetCurrentlyRunningPipeline();
if (lpl == null)
{
throw;
}
lpl.Stopper.Stop();
}
return result;
}
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if the UI property of the external host is null, possibly because the PSHostUserInterface is not
/// implemented by the external host.
/// </exception>
public override
SecureString
ReadLineAsSecureString()
{
if (_externalUI == null)
{
ThrowNotInteractive();
}
SecureString result = null;
try
{
result = _externalUI.ReadLineAsSecureString();
}
catch (PipelineStoppedException)
{
// PipelineStoppedException is thrown by host when it wants
// to stop the pipeline.
LocalPipeline lpl = (LocalPipeline)((RunspaceBase)_parent.Context.CurrentRunspace).GetCurrentlyRunningPipeline();
if (lpl == null)
{
throw;
}
lpl.Stopper.Stop();
}
return result;
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="value">
/// </param>
/// <exception cref="HostException">
/// if <paramref name="value"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
Write(string value)
{
if (value == null)
{
return;
}
if (_externalUI == null)
{
return;
}
_externalUI.Write(value);
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="foregroundColor">
/// </param>
/// <param name="backgroundColor">
/// </param>
/// <param name="value">
/// </param>
/// <exception cref="HostException">
/// if <paramref name="value"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
Write(ConsoleColor foregroundColor, ConsoleColor backgroundColor, string value)
{
if (value == null)
{
return;
}
if (_externalUI == null)
{
return;
}
if (PSStyle.Instance.OutputRendering == OutputRendering.PlainText)
{
_externalUI.Write(value);
}
else
{
_externalUI.Write(foregroundColor, backgroundColor, value);
}
}
/// <summary>
/// See base class
/// <seealso cref="Write(string)"/>
/// <seealso cref="WriteLine(string)"/>
/// </summary>
/// <exception cref="HostException">
/// if the UI property of the external host is null, possibly because the PSHostUserInterface is not
/// implemented by the external host
/// </exception>
public override
void
WriteLine()
{
if (_externalUI == null)
{
return;
}
_externalUI.WriteLine();
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="value">
/// </param>
/// <exception cref="HostException">
/// if <paramref name="value"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
WriteLine(string value)
{
if (value == null)
{
return;
}
if (_externalUI == null)
{
return;
}
_externalUI.WriteLine(value);
}
public override
void
WriteErrorLine(string value)
{
if (value == null)
{
return;
}
if (_externalUI == null)
{
return;
}
_externalUI.WriteErrorLine(value);
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="foregroundColor">
/// </param>
/// <param name="backgroundColor">
/// </param>
/// <param name="value">
/// </param>
/// <exception cref="HostException">
/// if <paramref name="value"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
WriteLine(ConsoleColor foregroundColor, ConsoleColor backgroundColor, string value)
{
if (value == null)
{
return;
}
if (_externalUI == null)
{
return;
}
if (PSStyle.Instance.OutputRendering == OutputRendering.PlainText)
{
_externalUI.WriteLine(value);
}
else
{
_externalUI.WriteLine(foregroundColor, backgroundColor, value);
}
}
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if <paramref name="message"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
WriteDebugLine(string message)
{
WriteDebugLineHelper(message);
}
/// <summary>
/// </summary>
internal void WriteDebugRecord(DebugRecord record)
{
WriteDebugInfoBuffers(record);
if (_externalUI == null)
{
return;
}
_externalUI.WriteDebugLine(record.Message);
}
/// <summary>
/// Writes the DebugRecord to informational buffers.
/// </summary>
/// <param name="record">DebugRecord.</param>
internal void WriteDebugInfoBuffers(DebugRecord record) => _informationalBuffers?.AddDebug(record);
/// <summary>
/// Helper function for WriteDebugLine.
/// </summary>
/// <param name="message"></param>
/// <param name="preference"></param>
/// <exception cref="ActionPreferenceStopException">
/// If the debug preference is set to ActionPreference.Stop
/// </exception>
/// <exception cref="ActionPreferenceStopException">
/// If the debug preference is set to ActionPreference.Inquire and user requests to stop execution.
/// </exception>
/// <exception cref="ArgumentException">
/// If the debug preference is not a valid ActionPreference value.
/// </exception>
internal
void
WriteDebugLine(string message, ref ActionPreference preference)
{
string errorMsg = null;
ErrorRecord errorRecord = null;
switch (preference)
{
case ActionPreference.Continue:
case ActionPreference.Break:
WriteDebugLineHelper(message);
break;
case ActionPreference.SilentlyContinue:
case ActionPreference.Ignore:
break;
case ActionPreference.Inquire:
if (!DebugShouldContinue(message, ref preference))
{
// user asked to exit with an error
errorMsg = InternalHostUserInterfaceStrings.WriteDebugLineStoppedError;
errorRecord = new ErrorRecord(new ParentContainsErrorRecordException(errorMsg),
"UserStopRequest", ErrorCategory.OperationStopped, null);
ActionPreferenceStopException e = new ActionPreferenceStopException(errorRecord);
// We cannot call ThrowTerminatingError since this is not a cmdlet or provider
throw e;
}
else
{
WriteDebugLineHelper(message);
}
break;
case ActionPreference.Stop:
WriteDebugLineHelper(message);
errorMsg = InternalHostUserInterfaceStrings.WriteDebugLineStoppedError;
errorRecord = new ErrorRecord(new ParentContainsErrorRecordException(errorMsg),
"ActionPreferenceStop", ErrorCategory.OperationStopped, null);
ActionPreferenceStopException ense = new ActionPreferenceStopException(errorRecord);
// We cannot call ThrowTerminatingError since this is not a cmdlet or provider
throw ense;
default:
Dbg.Assert(false, "all preferences should be checked");
throw PSTraceSource.NewArgumentException(nameof(preference),
InternalHostUserInterfaceStrings.UnsupportedPreferenceError, preference);
// break;
}
}
/// <summary>
/// If informationBuffers is not null, the respective messages will also
/// be written to the buffers along with external host.
/// </summary>
/// <param name="informationalBuffers">
/// Buffers to which Debug, Verbose, Warning, Progress, Information messages
/// will be written to.
/// </param>
/// <remarks>
/// This method is not thread safe. Caller should make sure of the
/// associated risks.
/// </remarks>
internal void SetInformationalMessageBuffers(PSInformationalBuffers informationalBuffers)
{
_informationalBuffers = informationalBuffers;
}
/// <summary>
/// Gets the informational message buffers of the host.
/// </summary>
/// <returns>Informational message buffers.</returns>
internal PSInformationalBuffers GetInformationalMessageBuffers()
{
return _informationalBuffers;
}
private
void
WriteDebugLineHelper(string message)
{
if (message == null)
{
return;
}
WriteDebugRecord(new DebugRecord(message));
}
/// <summary>
/// Ask the user whether to continue/stop or break to a nested prompt.
/// </summary>
/// <param name="message">
/// Message to display to the user. This routine will append the text "Continue" to ensure that people know what question
/// they are answering.
/// </param>
/// <param name="actionPreference">
/// Preference setting which determines the behaviour. This is by-ref and will be modified based upon what the user
/// types. (e.g. YesToAll will change Inquire => NotifyContinue)
/// </param>
private
bool
DebugShouldContinue(string message, ref ActionPreference actionPreference)
{
Dbg.Assert(actionPreference == ActionPreference.Inquire, "Why are you inquiring if your preference is not to?");
bool shouldContinue = false;
Collection<ChoiceDescription> choices = new Collection<ChoiceDescription>();
choices.Add(new ChoiceDescription(InternalHostUserInterfaceStrings.ShouldContinueYesLabel, InternalHostUserInterfaceStrings.ShouldContinueYesHelp));
choices.Add(new ChoiceDescription(InternalHostUserInterfaceStrings.ShouldContinueYesToAllLabel, InternalHostUserInterfaceStrings.ShouldContinueYesToAllHelp));
choices.Add(new ChoiceDescription(InternalHostUserInterfaceStrings.ShouldContinueNoLabel, InternalHostUserInterfaceStrings.ShouldContinueNoHelp));
choices.Add(new ChoiceDescription(InternalHostUserInterfaceStrings.ShouldContinueNoToAllLabel, InternalHostUserInterfaceStrings.ShouldContinueNoToAllHelp));
choices.Add(new ChoiceDescription(InternalHostUserInterfaceStrings.ShouldContinueSuspendLabel, InternalHostUserInterfaceStrings.ShouldContinueSuspendHelp));
bool endLoop = true;
do
{
endLoop = true;
switch (
PromptForChoice(
InternalHostUserInterfaceStrings.ShouldContinuePromptMessage,
message,
choices,
0))
{
case 0:
shouldContinue = true;
break;
case 1:
actionPreference = ActionPreference.Continue;
shouldContinue = true;
break;
case 2:
shouldContinue = false;
break;
case 3:
// No to All means that we want to stop every time WriteDebug is called. Since No throws an error, I
// think that ordinarily, the caller will terminate. So I don't think the caller will ever get back
// calling WriteDebug again, and thus "No to All" might not be a useful option to have.
actionPreference = ActionPreference.Stop;
shouldContinue = false;
break;
case 4:
// This call returns when the user exits the nested prompt.
_parent.EnterNestedPrompt();
endLoop = false;
break;
}
} while (!endLoop);
return shouldContinue;
}
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if <paramref name="record"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
WriteProgress(Int64 sourceId, ProgressRecord record)
{
if (record == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(record));
}
// Write to Information Buffers
_informationalBuffers?.AddProgress(record);
if (_externalUI == null)
{
return;
}
_externalUI.WriteProgress(sourceId, record);
}
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if <paramref name="message"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
void
WriteVerboseLine(string message)
{
if (message == null)
{
return;
}
WriteVerboseRecord(new VerboseRecord(message));
}
/// <summary>
/// </summary>
internal void WriteVerboseRecord(VerboseRecord record)
{
WriteVerboseInfoBuffers(record);
if (_externalUI == null)
{
return;
}
_externalUI.WriteVerboseLine(record.Message);
}
/// <summary>
/// Writes the VerboseRecord to informational buffers.
/// </summary>
/// <param name="record">VerboseRecord.</param>
internal void WriteVerboseInfoBuffers(VerboseRecord record) => _informationalBuffers?.AddVerbose(record);
/// <summary>
/// See base class.
/// </summary>
/// <exception cref="HostException">
/// if <paramref name="message"/> is not null and the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override void WriteWarningLine(string message)
{
if (message == null)
{
return;
}
WriteWarningRecord(new WarningRecord(message));
}
/// <summary>
/// </summary>
internal void WriteWarningRecord(WarningRecord record)
{
WriteWarningInfoBuffers(record);
if (_externalUI == null)
{
return;
}
_externalUI.WriteWarningLine(record.Message);
}
/// <summary>
/// Writes the WarningRecord to informational buffers.
/// </summary>
/// <param name="record">WarningRecord.</param>
internal void WriteWarningInfoBuffers(WarningRecord record) => _informationalBuffers?.AddWarning(record);
/// <summary>
/// </summary>
internal void WriteInformationRecord(InformationRecord record)
{
WriteInformationInfoBuffers(record);
if (_externalUI == null)
{
return;
}
_externalUI.WriteInformation(record);
}
/// <summary>
/// Writes the InformationRecord to informational buffers.
/// </summary>
/// <param name="record">WarningRecord.</param>
internal void WriteInformationInfoBuffers(InformationRecord record) => _informationalBuffers?.AddInformation(record);
internal static Type GetFieldType(FieldDescription field)
{
Type result;
if (TypeResolver.TryResolveType(field.ParameterAssemblyFullName, out result) ||
TypeResolver.TryResolveType(field.ParameterTypeFullName, out result))
{
return result;
}
return null;
}
internal static bool IsSecuritySensitiveType(string typeName)
{
if (typeName.Equals(nameof(PSCredential), StringComparison.OrdinalIgnoreCase))
{
return true;
}
if (typeName.Equals(nameof(SecureString), StringComparison.OrdinalIgnoreCase))
{
return true;
}
return false;
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="caption">
/// </param>
/// <param name="message">
/// </param>
/// <param name="descriptions">
/// </param>
/// <exception cref="ArgumentNullException">
/// If <paramref name="descriptions"/> is null.
/// </exception>
/// <exception cref="ArgumentException">
/// If <paramref name="descriptions"/>.Count is less than 1.
/// </exception>
/// <exception cref="HostException">
/// if the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
Dictionary<string, PSObject>
Prompt(string caption, string message, Collection<FieldDescription> descriptions)
{
if (descriptions == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(descriptions));
}
if (descriptions.Count < 1)
{
throw PSTraceSource.NewArgumentException(nameof(descriptions), InternalHostUserInterfaceStrings.PromptEmptyDescriptionsError, "descriptions");
}
if (_externalUI == null)
{
ThrowPromptNotInteractive(message);
}
Dictionary<string, PSObject> result = null;
try
{
result = _externalUI.Prompt(caption, message, descriptions);
}
catch (PipelineStoppedException)
{
// PipelineStoppedException is thrown by host when it wants
// to stop the pipeline.
LocalPipeline lpl = (LocalPipeline)((RunspaceBase)_parent.Context.CurrentRunspace).GetCurrentlyRunningPipeline();
if (lpl == null)
{
throw;
}
lpl.Stopper.Stop();
}
return result;
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="caption"></param>
/// <param name="message"></param>
/// <param name="choices"></param>
/// <param name="defaultChoice">
/// </param>
/// <exception cref="HostException">
/// if the UI property of the external host is null,
/// possibly because the PSHostUserInterface is not implemented by the external host
/// </exception>
public override
int
PromptForChoice(string caption, string message, Collection<ChoiceDescription> choices, int defaultChoice)
{
if (_externalUI == null)
{
ThrowPromptNotInteractive(message);
}
int result = -1;
try
{
result = _externalUI.PromptForChoice(caption, message, choices, defaultChoice);
}
catch (PipelineStoppedException)
{
// PipelineStoppedException is thrown by host when it wants
// to stop the pipeline.
LocalPipeline lpl = (LocalPipeline)((RunspaceBase)_parent.Context.CurrentRunspace).GetCurrentlyRunningPipeline();
if (lpl == null)
{
throw;
}
lpl.Stopper.Stop();
}
return result;
}
/// <summary>
/// Presents a dialog allowing the user to choose options from a set of options.
/// </summary>
/// <param name="caption">
/// Caption to precede or title the prompt. E.g. "Parameters for get-foo (instance 1 of 2)"
/// </param>
/// <param name="message">
/// A message that describes what the choice is for.
/// </param>
/// <param name="choices">
/// An Collection of ChoiceDescription objects that describe each choice.
/// </param>
/// <param name="defaultChoices">
/// The index of the labels in the choices collection element to be presented to the user as
/// the default choice(s).
/// </param>
/// <returns>
/// The indices of the choice elements that corresponds to the options selected.
/// </returns>
/// <seealso cref="System.Management.Automation.Host.PSHostUserInterface.PromptForChoice"/>
public Collection<int> PromptForChoice(string caption,
string message,
Collection<ChoiceDescription> choices,
IEnumerable<int> defaultChoices)
{
if (_externalUI == null)
{
ThrowPromptNotInteractive(message);
}
IHostUISupportsMultipleChoiceSelection hostForMultipleChoices =
_externalUI as IHostUISupportsMultipleChoiceSelection;
Collection<int> result = null;
try
{
if (hostForMultipleChoices == null)
{
// host did not implement this new interface..
// so work with V1 host API to get the behavior..
// this will allow Hosts that were developed with
// V1 API to interact with PowerShell V2.
result = EmulatePromptForMultipleChoice(caption, message, choices, defaultChoices);
}
else
{
result = hostForMultipleChoices.PromptForChoice(caption, message, choices, defaultChoices);
}
}
catch (PipelineStoppedException)
{
// PipelineStoppedException is thrown by host when it wants
// to stop the pipeline.
LocalPipeline lpl = (LocalPipeline)((RunspaceBase)_parent.Context.CurrentRunspace).GetCurrentlyRunningPipeline();
if (lpl == null)
{
throw;
}
lpl.Stopper.Stop();
}
return result;
}
/// <summary>
/// This method is added to be backward compatible with V1 hosts w.r.t
/// new PromptForChoice method added in PowerShell V2.
/// </summary>
/// <param name="caption"></param>
/// <param name="message"></param>
/// <param name="choices"></param>
/// <param name="defaultChoices"></param>
/// <returns></returns>
/// <exception cref="ArgumentException">
/// 1. Choices is null.
/// 2. Choices.Count = 0
/// 3. DefaultChoice is either less than 0 or greater than Choices.Count
/// </exception>
private Collection<int> EmulatePromptForMultipleChoice(string caption,
string message,
Collection<ChoiceDescription> choices,
IEnumerable<int> defaultChoices)
{
Dbg.Assert(_externalUI != null, "externalUI cannot be null.");
if (choices == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(choices));
}
if (choices.Count == 0)
{
throw PSTraceSource.NewArgumentException(nameof(choices),
InternalHostUserInterfaceStrings.EmptyChoicesError, "choices");
}
Dictionary<int, bool> defaultChoiceKeys = new Dictionary<int, bool>();
if (defaultChoices != null)
{
foreach (int defaultChoice in defaultChoices)
{
if ((defaultChoice < 0) || (defaultChoice >= choices.Count))
{
throw PSTraceSource.NewArgumentOutOfRangeException("defaultChoice", defaultChoice,
InternalHostUserInterfaceStrings.InvalidDefaultChoiceForMultipleSelection,
"defaultChoice",
"choices",
defaultChoice);
}
defaultChoiceKeys.TryAdd(defaultChoice, true);
}
}
// Construct the caption + message + list of choices + default choices
Text.StringBuilder choicesMessage = new Text.StringBuilder();
const char newLine = '\n';
if (!string.IsNullOrEmpty(caption))
{
choicesMessage.Append(caption);
choicesMessage.Append(newLine);
}
if (!string.IsNullOrEmpty(message))
{
choicesMessage.Append(message);
choicesMessage.Append(newLine);
}
string[,] hotkeysAndPlainLabels = null;
HostUIHelperMethods.BuildHotkeysAndPlainLabels(choices, out hotkeysAndPlainLabels);
const string choiceTemplate = "[{0}] {1} ";
for (int i = 0; i < hotkeysAndPlainLabels.GetLength(1); ++i)
{
string choice =
string.Format(
Globalization.CultureInfo.InvariantCulture,
choiceTemplate,
hotkeysAndPlainLabels[0, i],
hotkeysAndPlainLabels[1, i]);
choicesMessage.Append(choice);
choicesMessage.Append(newLine);
}
// default choices
string defaultPrompt = string.Empty;
if (defaultChoiceKeys.Count > 0)
{
string prepend = string.Empty;
Text.StringBuilder defaultChoicesBuilder = new Text.StringBuilder();
foreach (int defaultChoice in defaultChoiceKeys.Keys)
{
string defaultStr = hotkeysAndPlainLabels[0, defaultChoice];
if (string.IsNullOrEmpty(defaultStr))
{
defaultStr = hotkeysAndPlainLabels[1, defaultChoice];
}
defaultChoicesBuilder.Append(Globalization.CultureInfo.InvariantCulture, $"{prepend}{defaultStr}");
prepend = ",";
}
string defaultChoicesStr = defaultChoicesBuilder.ToString();
if (defaultChoiceKeys.Count == 1)
{
defaultPrompt = StringUtil.Format(InternalHostUserInterfaceStrings.DefaultChoice, defaultChoicesStr);
}
else
{
defaultPrompt = StringUtil.Format(InternalHostUserInterfaceStrings.DefaultChoicesForMultipleChoices,
defaultChoicesStr);
}
}
string messageToBeDisplayed = choicesMessage.ToString() + defaultPrompt + newLine;
// read choices from the user
Collection<int> result = new Collection<int>();
int choicesSelected = 0;
while (true)
{
string choiceMsg = StringUtil.Format(InternalHostUserInterfaceStrings.ChoiceMessage, choicesSelected);
messageToBeDisplayed += choiceMsg;
_externalUI.WriteLine(messageToBeDisplayed);
string response = _externalUI.ReadLine();
// they just hit enter
if (response.Length == 0)
{
// this may happen when
// 1. user wants to go with the defaults
// 2. user selected some choices and wanted those
// choices to be picked.
// user did not pick up any choices..choose the default
if (result.Count == 0)
{
// if there's a default, pick that one.
foreach (int defaultChoice in defaultChoiceKeys.Keys)
{
result.Add(defaultChoice);
}
}
// allow for no choice selection.
break;
}
int choicePicked = HostUIHelperMethods.DetermineChoicePicked(response.Trim(), choices, hotkeysAndPlainLabels);
if (choicePicked >= 0)
{
result.Add(choicePicked);
choicesSelected++;
}
// reset messageToBeDisplayed
messageToBeDisplayed = string.Empty;
}
return result;
}
private readonly PSHostUserInterface _externalUI = null;
private readonly InternalHostRawUserInterface _internalRawUI = null;
private readonly InternalHost _parent = null;
private PSInformationalBuffers _informationalBuffers = null;
}
}
|