File size: 51,191 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 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Management.Automation;
using System.Management.Automation.Internal;
namespace Microsoft.PowerShell.Commands.Internal.Format
{
/// <summary>
/// OutCommand base implementation
/// it manages the formatting protocol and it writes to a generic
/// screen host.
/// </summary>
internal class OutCommandInner : ImplementationCommandBase
{
#region tracer
[TraceSource("format_out_OutCommandInner", "OutCommandInner")]
internal static readonly PSTraceSource tracer = PSTraceSource.GetTracer("format_out_OutCommandInner", "OutCommandInner");
#endregion tracer
internal override void BeginProcessing()
{
base.BeginProcessing();
_formatObjectDeserializer = new FormatObjectDeserializer(this.TerminatingErrorContext);
// hook up the event handlers for the context manager object
_ctxManager.contextCreation = new FormatMessagesContextManager.FormatContextCreationCallback(this.CreateOutputContext);
_ctxManager.fs = new FormatMessagesContextManager.FormatStartCallback(this.ProcessFormatStart);
_ctxManager.fe = new FormatMessagesContextManager.FormatEndCallback(this.ProcessFormatEnd);
_ctxManager.gs = new FormatMessagesContextManager.GroupStartCallback(this.ProcessGroupStart);
_ctxManager.ge = new FormatMessagesContextManager.GroupEndCallback(this.ProcessGroupEnd);
_ctxManager.payload = new FormatMessagesContextManager.PayloadCallback(this.ProcessPayload);
}
/// <summary>
/// Execution entry point override
/// we assume that a LineOutput interface instance already has been acquired
///
/// IMPORTANT: it assumes the presence of a pre-processing formatting command.
/// </summary>
internal override void ProcessRecord()
{
PSObject so = this.ReadObject();
if (so == null || so == AutomationNull.Value)
return;
// try to process the object
if (ProcessObject(so))
return;
// send to the formatter for preprocessing
Array results = ApplyFormatting(so);
if (results != null)
{
foreach (object r in results)
{
PSObject obj = PSObjectHelper.AsPSObject(r);
obj.IsHelpObject = so.IsHelpObject;
ProcessObject(obj);
}
}
}
internal override void EndProcessing()
{
base.EndProcessing();
if (_command != null)
{
// shut down the command processor, if we ever used it
Array results = _command.ShutDown();
if (results != null)
{
foreach (object o in results)
{
ProcessObject(PSObjectHelper.AsPSObject(o));
}
}
}
if (this.LineOutput.RequiresBuffering)
{
// we need to notify the interface implementor that
// we are about to do the playback
LineOutput.DoPlayBackCall playBackCall = new LineOutput.DoPlayBackCall(this.DrainCache);
this.LineOutput.ExecuteBufferPlayBack(playBackCall);
}
else
{
// we drain the cache ourselves
DrainCache();
}
}
private void DrainCache()
{
if (_cache != null)
{
// drain the cache, since we are shutting down
List<PacketInfoData> unprocessedObjects = _cache.Drain();
if (unprocessedObjects != null)
{
foreach (object obj in unprocessedObjects)
{
_ctxManager.Process(obj);
}
}
}
}
private bool ProcessObject(PSObject so)
{
object o = _formatObjectDeserializer.Deserialize(so);
// Console.WriteLine("OutCommandInner.Execute() retrieved object {0}, of type {1}", o.ToString(), o.GetType());
if (NeedsPreprocessing(o))
{
return false;
}
// instantiate the cache if not done yet
_cache ??= new FormattedObjectsCache(this.LineOutput.RequiresBuffering);
// no need for formatting, just process the object
if (o is FormatStartData formatStart)
{
// get autosize flag from object
// turn on group caching
if (formatStart.autosizeInfo != null)
{
FormattedObjectsCache.ProcessCachedGroupNotification callBack = new FormattedObjectsCache.ProcessCachedGroupNotification(ProcessCachedGroup);
_cache.EnableGroupCaching(callBack, formatStart.autosizeInfo.objectCount);
}
else
{
// If the format info doesn't define column widths, then auto-size based on the first ten elements
if ((formatStart.shapeInfo is TableHeaderInfo headerInfo) &&
(headerInfo.tableColumnInfoList.Count > 0) &&
(headerInfo.tableColumnInfoList[0].width == 0))
{
FormattedObjectsCache.ProcessCachedGroupNotification callBack = new FormattedObjectsCache.ProcessCachedGroupNotification(ProcessCachedGroup);
_cache.EnableGroupCaching(callBack, TimeSpan.FromMilliseconds(300));
}
}
}
// Console.WriteLine("OutCommandInner.Execute() calling ctxManager.Process({0})",o.ToString());
List<PacketInfoData> info = _cache.Add((PacketInfoData)o);
if (info != null)
{
for (int k = 0; k < info.Count; k++)
_ctxManager.Process(info[k]);
}
return true;
}
/// <summary>
/// Helper to return what shape we have to use to format the output.
/// </summary>
private FormatShape ActiveFormattingShape
{
get
{
// we assume that the format context
// contains the information
const FormatShape shape = FormatShape.Table; // default
FormatOutputContext foc = this.FormatContext;
if (foc == null || foc.Data.shapeInfo == null)
return shape;
if (foc.Data.shapeInfo is TableHeaderInfo)
return FormatShape.Table;
if (foc.Data.shapeInfo is ListViewHeaderInfo)
return FormatShape.List;
if (foc.Data.shapeInfo is WideViewHeaderInfo)
return FormatShape.Wide;
if (foc.Data.shapeInfo is ComplexViewHeaderInfo)
return FormatShape.Complex;
return shape;
}
}
protected override void InternalDispose()
{
base.InternalDispose();
if (_command != null)
{
_command.Dispose();
_command = null;
}
}
/// <summary>
/// Enum describing the state for the output finite state machine.
/// </summary>
private enum FormattingState
{
/// <summary>
/// We are in the clear state: no formatting in process.
/// </summary>
Reset,
/// <summary>
/// We received a Format Start message, but we are not inside a group.
/// </summary>
Formatting,
/// <summary>
/// We are inside a group because we received a Group Start.
/// </summary>
InsideGroup
}
/// <summary>
/// Toggle to signal if we are in a formatting sequence.
/// </summary>
private FormattingState _currentFormattingState = FormattingState.Reset;
/// <summary>
/// Instance of a command wrapper to execute the
/// default formatter when needed.
/// </summary>
private CommandWrapper _command;
/// <summary>
/// Enumeration to drive the preprocessing stage.
/// </summary>
private enum PreprocessingState { raw, processed, error }
private const int DefaultConsoleWidth = 120;
private const int DefaultConsoleHeight = int.MaxValue;
internal const int StackAllocThreshold = 120;
/// <summary>
/// Test if an object coming from the pipeline needs to be
/// preprocessed by the default formatter.
/// </summary>
/// <param name="o">Object to examine for formatting.</param>
/// <returns>Whether the object needs to be shunted to preprocessing.</returns>
private bool NeedsPreprocessing(object o)
{
if (o is FormatEntryData fed)
{
// we got an already pre-processed object
if (!fed.outOfBand)
{
// we allow out of band data in any state
ValidateCurrentFormattingState(FormattingState.InsideGroup, o);
}
return false;
}
else if (o is FormatStartData)
{
// when encountering FormatStartDate out of sequence,
// pretend that the previous formatting directives were properly closed
if (_currentFormattingState == FormattingState.InsideGroup)
{
this.EndProcessing();
this.BeginProcessing();
}
// we got a Fs message, we enter a sequence
ValidateCurrentFormattingState(FormattingState.Reset, o);
_currentFormattingState = FormattingState.Formatting;
return false;
}
else if (o is FormatEndData)
{
// we got a Fe message, we exit a sequence
ValidateCurrentFormattingState(FormattingState.Formatting, o);
_currentFormattingState = FormattingState.Reset;
return false;
}
else if (o is GroupStartData)
{
ValidateCurrentFormattingState(FormattingState.Formatting, o);
_currentFormattingState = FormattingState.InsideGroup;
return false;
}
else if (o is GroupEndData)
{
ValidateCurrentFormattingState(FormattingState.InsideGroup, o);
_currentFormattingState = FormattingState.Formatting;
return false;
}
// this is a raw object
return true;
}
private void ValidateCurrentFormattingState(FormattingState expectedFormattingState, object obj)
{
// check if we are in the expected formatting state
if (_currentFormattingState != expectedFormattingState)
{
// we are not in the expected state, some message is out of sequence,
// need to abort the command
string violatingCommand = "format-*";
if (obj is StartData sdObj)
{
if (sdObj.shapeInfo is WideViewHeaderInfo)
{
violatingCommand = "format-wide";
}
else if (sdObj.shapeInfo is TableHeaderInfo)
{
violatingCommand = "format-table";
}
else if (sdObj.shapeInfo is ListViewHeaderInfo)
{
violatingCommand = "format-list";
}
else if (sdObj.shapeInfo is ComplexViewHeaderInfo)
{
violatingCommand = "format-complex";
}
}
string msg = StringUtil.Format(FormatAndOut_out_xxx.OutLineOutput_OutOfSequencePacket,
obj.GetType().FullName, violatingCommand);
ErrorRecord errorRecord = new ErrorRecord(
new InvalidOperationException(),
"ConsoleLineOutputOutOfSequencePacket",
ErrorCategory.InvalidData,
null);
errorRecord.ErrorDetails = new ErrorDetails(msg);
this.TerminatingErrorContext.ThrowTerminatingError(errorRecord);
}
}
/// <summary>
/// Shunt object to the formatting pipeline for preprocessing.
/// </summary>
/// <param name="o">Object to be preprocessed.</param>
/// <returns>Array of objects returned by the preprocessing step.</returns>
private Array ApplyFormatting(object o)
{
if (_command == null)
{
_command = new CommandWrapper();
_command.Initialize(this.OuterCmdlet().Context, "format-default", typeof(FormatDefaultCommand));
}
return _command.Process(o);
}
/// <summary>
/// Class factory for output context.
/// </summary>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatInfoData">Fromat info data received from the pipeline.</param>
/// <returns></returns>
private FormatMessagesContextManager.OutputContext CreateOutputContext(
FormatMessagesContextManager.OutputContext parentContext,
FormatInfoData formatInfoData)
{
// initialize the format context
if (formatInfoData is FormatStartData formatStartData)
{
FormatOutputContext foc = new FormatOutputContext(parentContext, formatStartData);
return foc;
}
// we are starting a group, initialize the group context
if (formatInfoData is GroupStartData gsd)
{
GroupOutputContext goc = null;
switch (ActiveFormattingShape)
{
case FormatShape.Table:
{
goc = new TableOutputContext(this, parentContext, gsd);
break;
}
case FormatShape.List:
{
goc = new ListOutputContext(this, parentContext, gsd);
break;
}
case FormatShape.Wide:
{
goc = new WideOutputContext(this, parentContext, gsd);
break;
}
case FormatShape.Complex:
{
goc = new ComplexOutputContext(this, parentContext, gsd);
break;
}
default:
{
Diagnostics.Assert(false, "Invalid shape. This should never happen");
}
break;
}
goc.Initialize();
return goc;
}
return null;
}
/// <summary>
/// Callback for Fs processing.
/// </summary>
/// <param name="c">The context containing the Fs entry.</param>
private void ProcessFormatStart(FormatMessagesContextManager.OutputContext c)
{
// we just add an empty line to the display
this.LineOutput.WriteLine(string.Empty);
}
/// <summary>
/// Callback for Fe processing.
/// </summary>
/// <param name="fe">Fe notification message.</param>
/// <param name="c">Current context, with Fs in it.</param>
private void ProcessFormatEnd(FormatEndData fe, FormatMessagesContextManager.OutputContext c)
{
if (c is FormatOutputContext foContext
&& foContext.Data.shapeInfo is ListViewHeaderInfo)
{
// Skip writing out a new line for List view, because we already wrote out
// an extra new line after displaying the last list entry.
return;
}
// We just add an empty line to the display.
LineOutput.WriteLine(string.Empty);
}
/// <summary>
/// Callback for Gs processing.
/// </summary>
/// <param name="c">The context containing the Gs entry.</param>
private void ProcessGroupStart(FormatMessagesContextManager.OutputContext c)
{
// Console.WriteLine("ProcessGroupStart");
GroupOutputContext goc = (GroupOutputContext)c;
if (goc.Data.groupingEntry != null)
{
ComplexWriter writer = new ComplexWriter();
writer.Initialize(_lo, _lo.ColumnNumber);
writer.WriteObject(goc.Data.groupingEntry.formatValueList);
_lo.WriteLine(string.Empty);
}
goc.GroupStart();
}
/// <summary>
/// Callback for Ge processing.
/// </summary>
/// <param name="ge">Ge notification message.</param>
/// <param name="c">Current context, with Gs in it.</param>
private void ProcessGroupEnd(GroupEndData ge, FormatMessagesContextManager.OutputContext c)
{
// Console.WriteLine("ProcessGroupEnd");
GroupOutputContext goc = (GroupOutputContext)c;
goc.GroupEnd();
}
/// <summary>
/// Process the current payload object.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
/// <param name="c">Currently active context.</param>
private void ProcessPayload(FormatEntryData fed, FormatMessagesContextManager.OutputContext c)
{
// we assume FormatEntryData as a standard wrapper
if (fed == null)
{
PSTraceSource.NewArgumentNullException(nameof(fed));
}
if (fed.formatEntryInfo == null)
{
PSTraceSource.NewArgumentNullException("fed.formatEntryInfo");
}
WriteStreamType oldWSState = _lo.WriteStream;
try
{
_lo.WriteStream = fed.writeStream;
if (c == null)
{
ProcessOutOfBandPayload(fed);
}
else
{
GroupOutputContext goc = (GroupOutputContext)c;
goc.ProcessPayload(fed);
}
}
finally
{
_lo.WriteStream = oldWSState;
}
}
private void ProcessOutOfBandPayload(FormatEntryData fed)
{
// try if it is raw text
if (fed.formatEntryInfo is RawTextFormatEntry rte)
{
if (fed.isHelpObject)
{
ComplexWriter complexWriter = new ComplexWriter();
complexWriter.Initialize(_lo, _lo.ColumnNumber);
complexWriter.WriteString(rte.text);
}
else
{
// Write out raw text without any changes to it.
_lo.WriteRawText(rte.text);
}
return;
}
// try if it is a complex entry
if (fed.formatEntryInfo is ComplexViewEntry cve && cve.formatValueList != null)
{
ComplexWriter complexWriter = new ComplexWriter();
complexWriter.Initialize(_lo, int.MaxValue);
complexWriter.WriteObject(cve.formatValueList);
return;
}
// try if it is a list view
if (fed.formatEntryInfo is ListViewEntry lve && lve.listViewFieldList != null)
{
ListWriter listWriter = new ListWriter();
_lo.WriteLine(string.Empty);
string[] properties = ListOutputContext.GetProperties(lve);
listWriter.Initialize(properties, _lo.ColumnNumber, _lo.DisplayCells);
string[] values = ListOutputContext.GetValues(lve);
listWriter.WriteProperties(values, _lo);
_lo.WriteLine(string.Empty);
return;
}
}
/// <summary>
/// The screen host associated with this outputter.
/// </summary>
private LineOutput _lo = null;
internal LineOutput LineOutput
{
get { return _lo; }
set { _lo = value; }
}
private ShapeInfo ShapeInfoOnFormatContext
{
get
{
FormatOutputContext foc = this.FormatContext;
if (foc == null)
return null;
return foc.Data.shapeInfo;
}
}
/// <summary>
/// Retrieve the active FormatOutputContext on the stack
/// by walking up to the top of the stack.
/// </summary>
private FormatOutputContext FormatContext
{
get
{
for (FormatMessagesContextManager.OutputContext oc = _ctxManager.ActiveOutputContext; oc != null; oc = oc.ParentContext)
{
if (oc is FormatOutputContext foc)
return foc;
}
return null;
}
}
/// <summary>
/// Context manager instance to guide the message traversal.
/// </summary>
private readonly FormatMessagesContextManager _ctxManager = new FormatMessagesContextManager();
private FormattedObjectsCache _cache = null;
/// <summary>
/// Handler for processing the caching notification and responsible for
/// setting the value of the formatting hint.
/// </summary>
/// <param name="formatStartData"></param>
/// <param name="objects"></param>
private void ProcessCachedGroup(FormatStartData formatStartData, List<PacketInfoData> objects)
{
_formattingHint = null;
if (formatStartData.shapeInfo is TableHeaderInfo thi)
{
ProcessCachedGroupOnTable(thi, objects);
return;
}
if (formatStartData.shapeInfo is WideViewHeaderInfo wvhi)
{
ProcessCachedGroupOnWide(wvhi, objects);
return;
}
}
private void ProcessCachedGroupOnTable(TableHeaderInfo thi, List<PacketInfoData> objects)
{
if (thi.tableColumnInfoList.Count == 0)
return;
int[] widths = new int[thi.tableColumnInfoList.Count];
for (int k = 0; k < thi.tableColumnInfoList.Count; k++)
{
string label = thi.tableColumnInfoList[k].label;
if (string.IsNullOrEmpty(label))
label = thi.tableColumnInfoList[k].propertyName;
if (string.IsNullOrEmpty(label))
widths[k] = 0;
else
widths[k] = _lo.DisplayCells.Length(label);
}
int cellCount; // scratch variable
foreach (PacketInfoData o in objects)
{
if (o is FormatEntryData fed)
{
TableRowEntry tre = fed.formatEntryInfo as TableRowEntry;
int kk = 0;
foreach (FormatPropertyField fpf in tre.formatPropertyFieldList)
{
cellCount = _lo.DisplayCells.Length(fpf.propertyValue);
if (widths[kk] < cellCount)
widths[kk] = cellCount;
kk++;
}
}
}
TableFormattingHint hint = new TableFormattingHint();
hint.columnWidths = widths;
_formattingHint = hint;
}
private void ProcessCachedGroupOnWide(WideViewHeaderInfo wvhi, List<PacketInfoData> objects)
{
if (wvhi.columns != 0)
{
// columns forced on the client
return;
}
int maxLen = 0;
int cellCount; // scratch variable
foreach (PacketInfoData o in objects)
{
if (o is FormatEntryData fed)
{
WideViewEntry wve = fed.formatEntryInfo as WideViewEntry;
FormatPropertyField fpf = wve.formatPropertyField as FormatPropertyField;
if (!string.IsNullOrEmpty(fpf.propertyValue))
{
cellCount = _lo.DisplayCells.Length(fpf.propertyValue);
if (cellCount > maxLen)
maxLen = cellCount;
}
}
}
WideFormattingHint hint = new WideFormattingHint();
hint.maxWidth = maxLen;
_formattingHint = hint;
}
/// <summary>
/// Tables and Wides need to use spaces for padding to maintain table look even if console window is resized.
/// For all other output, we use int.MaxValue if the user didn't explicitly specify a width.
/// If we detect that int.MaxValue is used, first we try to get the current console window width.
/// However, if we can't read that (for example, implicit remoting has no console window), we default
/// to something reasonable: 120 columns.
/// </summary>
private static int GetConsoleWindowWidth(int columnNumber)
{
if (InternalTestHooks.SetConsoleWidthToZero)
{
return DefaultConsoleWidth;
}
if (columnNumber == int.MaxValue)
{
try
{
// if Console width is set to 0, the default width is returned so that the output string is not null.
// This can happen in environments where TERM is not set.
return (Console.WindowWidth != 0) ? Console.WindowWidth : DefaultConsoleWidth;
}
catch
{
return DefaultConsoleWidth;
}
}
return columnNumber;
}
/// <summary>
/// Return the console height.null If not available (like when remoting), treat as Int.MaxValue.
/// </summary>
private static int GetConsoleWindowHeight(int rowNumber)
{
if (InternalTestHooks.SetConsoleHeightToZero)
{
return DefaultConsoleHeight;
}
if (rowNumber <= 0)
{
try
{
// if Console height is set to 0, the default height is returned.
// This can happen in environments where TERM is not set.
return (Console.WindowHeight > 0) ? Console.WindowHeight : DefaultConsoleHeight;
}
catch
{
return DefaultConsoleHeight;
}
}
return rowNumber;
}
/// <summary>
/// Base class for all the formatting hints.
/// </summary>
private abstract class FormattingHint
{
}
/// <summary>
/// Hint for format-table.
/// </summary>
private sealed class TableFormattingHint : FormattingHint
{
internal int[] columnWidths = null;
}
/// <summary>
/// Hint for format-wide.
/// </summary>
private sealed class WideFormattingHint : FormattingHint
{
internal int maxWidth = 0;
}
/// <summary>
/// Variable holding the autosize hint (set by the caching code and reset by the hint consumer.
/// </summary>
private FormattingHint _formattingHint = null;
/// <summary>
/// Helper for consuming the formatting hint.
/// </summary>
/// <returns></returns>
private FormattingHint RetrieveFormattingHint()
{
FormattingHint fh = _formattingHint;
_formattingHint = null;
return fh;
}
private FormatObjectDeserializer _formatObjectDeserializer;
/// <summary>
/// Context for the outer scope of the format sequence.
/// </summary>
private sealed class FormatOutputContext : FormatMessagesContextManager.OutputContext
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal FormatOutputContext(FormatMessagesContextManager.OutputContext parentContext, FormatStartData formatData)
: base(parentContext)
{
Data = formatData;
}
/// <summary>
/// Retrieve the format data in the context.
/// </summary>
internal FormatStartData Data { get; } = null;
}
/// <summary>
/// Context for the currently active group.
/// </summary>
private abstract class GroupOutputContext : FormatMessagesContextManager.OutputContext
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
internal GroupOutputContext(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(parentContext)
{
InnerCommand = cmd;
Data = formatData;
}
/// <summary>
/// Called at creation time, overrides will initialize here, e.g.
/// column widths, etc.
/// </summary>
internal virtual void Initialize() { }
/// <summary>
/// Called when a group of data is started, overridden will do
/// things such as headers, etc...
/// </summary>
internal virtual void GroupStart() { }
/// <summary>
/// Called when the end of a group is reached, overrides will do
/// things such as group footers.
/// </summary>
internal virtual void GroupEnd() { }
/// <summary>
/// Called when there is an entry to process, overrides will do
/// things such as writing a row in a table.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
internal virtual void ProcessPayload(FormatEntryData fed) { }
/// <summary>
/// Retrieve the format data in the context.
/// </summary>
internal GroupStartData Data { get; } = null;
protected OutCommandInner InnerCommand { get; }
}
private class TableOutputContextBase : GroupOutputContext
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="cmd">Reference to the OutCommandInner instance who owns this instance.</param>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal TableOutputContextBase(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(cmd, parentContext, formatData)
{
}
/// <summary>
/// Get the table writer for this context.
/// </summary>
protected TableWriter Writer { get { return _tableWriter; } }
/// <summary>
/// Helper class to properly write a table using text output.
/// </summary>
private readonly TableWriter _tableWriter = new TableWriter();
}
private sealed class TableOutputContext : TableOutputContextBase
{
private int _rowCount = 0;
private int _consoleHeight = -1;
private int _consoleWidth = -1;
private const int WhitespaceAndPagerLineCount = 2;
private readonly bool _repeatHeader = false;
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="cmd">Reference to the OutCommandInner instance who owns this instance.</param>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal TableOutputContext(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(cmd, parentContext, formatData)
{
if (parentContext is FormatOutputContext foc)
{
if (foc.Data.shapeInfo is TableHeaderInfo thi)
{
_repeatHeader = thi.repeatHeader;
}
}
}
/// <summary>
/// Initialize column widths.
/// </summary>
internal override void Initialize()
{
int[] columnWidthsHint = null;
// We expect that console width is less than 120.
if (this.InnerCommand.RetrieveFormattingHint() is TableFormattingHint tableHint)
{
columnWidthsHint = tableHint.columnWidths;
}
_consoleHeight = GetConsoleWindowHeight(this.InnerCommand._lo.RowNumber);
_consoleWidth = GetConsoleWindowWidth(this.InnerCommand._lo.ColumnNumber);
int columns = this.CurrentTableHeaderInfo.tableColumnInfoList.Count;
if (columns == 0)
{
return;
}
// create arrays for widths and alignment
Span<int> columnWidths = columns <= StackAllocThreshold ? stackalloc int[columns] : new int[columns];
Span<int> alignment = columns <= StackAllocThreshold ? stackalloc int[columns] : new int[columns];
Span<bool> headerMatchesProperty = columns <= StackAllocThreshold ? stackalloc bool[columns] : new bool[columns];
int k = 0;
foreach (TableColumnInfo tci in this.CurrentTableHeaderInfo.tableColumnInfoList)
{
columnWidths[k] = (columnWidthsHint != null) ? columnWidthsHint[k] : tci.width;
alignment[k] = tci.alignment;
headerMatchesProperty[k] = tci.HeaderMatchesProperty;
k++;
}
this.Writer.Initialize(0, _consoleWidth, columnWidths, alignment, headerMatchesProperty, this.CurrentTableHeaderInfo.hideHeader);
}
/// <summary>
/// Write the headers.
/// </summary>
internal override void GroupStart()
{
int columns = this.CurrentTableHeaderInfo.tableColumnInfoList.Count;
if (columns == 0)
{
return;
}
string[] properties = new string[columns];
int k = 0;
foreach (TableColumnInfo tci in this.CurrentTableHeaderInfo.tableColumnInfoList)
{
properties[k++] = tci.label ?? tci.propertyName;
}
_rowCount += this.Writer.GenerateHeader(properties, this.InnerCommand._lo);
}
/// <summary>
/// Write a row into the table.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
internal override void ProcessPayload(FormatEntryData fed)
{
int headerColumns = this.CurrentTableHeaderInfo.tableColumnInfoList.Count;
if (headerColumns == 0)
{
return;
}
if (_repeatHeader && _rowCount >= _consoleHeight - WhitespaceAndPagerLineCount)
{
this.InnerCommand._lo.WriteLine(string.Empty);
_rowCount = this.Writer.GenerateHeader(null, this.InnerCommand._lo);
}
TableRowEntry tre = fed.formatEntryInfo as TableRowEntry;
// need to make sure we have matching counts: the header count will have to prevail
string[] values = new string[headerColumns];
Span<int> alignment = headerColumns <= StackAllocThreshold ? stackalloc int[headerColumns] : new int[headerColumns];
int fieldCount = tre.formatPropertyFieldList.Count;
for (int k = 0; k < headerColumns; k++)
{
if (k < fieldCount)
{
values[k] = tre.formatPropertyFieldList[k].propertyValue;
alignment[k] = tre.formatPropertyFieldList[k].alignment;
}
else
{
values[k] = string.Empty;
alignment[k] = TextAlignment.Left; // hard coded default
}
}
this.Writer.GenerateRow(values, this.InnerCommand._lo, tre.multiLine, alignment, InnerCommand._lo.DisplayCells, generatedRows: null);
_rowCount++;
}
private TableHeaderInfo CurrentTableHeaderInfo
{
get
{
return (TableHeaderInfo)this.InnerCommand.ShapeInfoOnFormatContext;
}
}
}
private sealed class ListOutputContext : GroupOutputContext
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="cmd">Reference to the OutCommandInner instance who owns this instance.</param>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal ListOutputContext(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(cmd, parentContext, formatData)
{
}
/// <summary>
/// Initialize column widths.
/// </summary>
internal override void Initialize()
{
}
private void InternalInitialize(ListViewEntry lve)
{
_properties = GetProperties(lve);
_listWriter.Initialize(_properties, this.InnerCommand._lo.ColumnNumber, InnerCommand._lo.DisplayCells);
}
internal static string[] GetProperties(ListViewEntry lve)
{
int count = lve.listViewFieldList.Count;
if (count == 0)
{
return null;
}
string[] result = new string[count];
for (int index = 0; index < result.Length; ++index)
{
ListViewField lvf = lve.listViewFieldList[index];
result[index] = lvf.label ?? lvf.propertyName;
}
return result;
}
internal static string[] GetValues(ListViewEntry lve)
{
int count = lve.listViewFieldList.Count;
if (count == 0)
{
return null;
}
string[] result = new string[count];
for (int index = 0; index < result.Length; ++index)
{
ListViewField lvf = lve.listViewFieldList[index];
result[index] = lvf.formatPropertyField.propertyValue;
}
return result;
}
/// <summary>
/// Write the headers.
/// </summary>
internal override void GroupStart()
{
}
/// <summary>
/// Write a row into the list.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
internal override void ProcessPayload(FormatEntryData fed)
{
ListViewEntry lve = fed.formatEntryInfo as ListViewEntry;
InternalInitialize(lve);
string[] values = GetValues(lve);
_listWriter.WriteProperties(values, this.InnerCommand._lo);
this.InnerCommand._lo.WriteLine(string.Empty);
}
/// <summary>
/// Property list currently active.
/// </summary>
private string[] _properties = null;
/// <summary>
/// Writer to do the actual formatting.
/// </summary>
private readonly ListWriter _listWriter = new ListWriter();
}
private sealed class WideOutputContext : TableOutputContextBase
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="cmd">Reference to the OutCommandInner instance who owns this instance.</param>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal WideOutputContext(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(cmd, parentContext, formatData)
{
}
private StringValuesBuffer _buffer = null;
/// <summary>
/// Initialize column widths.
/// </summary>
internal override void Initialize()
{
// set the hard wider default, to be used if no other info is available
int itemsPerRow = 2;
// get the header info
int columnsOnTheScreen = GetConsoleWindowWidth(this.InnerCommand._lo.ColumnNumber);
// give a preference to the hint, if there
if (this.InnerCommand.RetrieveFormattingHint() is WideFormattingHint hint && hint.maxWidth > 0)
{
itemsPerRow = TableWriter.ComputeWideViewBestItemsPerRowFit(hint.maxWidth, columnsOnTheScreen);
}
else if (this.CurrentWideHeaderInfo.columns > 0)
{
itemsPerRow = this.CurrentWideHeaderInfo.columns;
}
// create a buffer object to hold partial rows
_buffer = new StringValuesBuffer(itemsPerRow);
// initialize the writer
Span<int> columnWidths = itemsPerRow <= StackAllocThreshold ? stackalloc int[itemsPerRow] : new int[itemsPerRow];
Span<int> alignment = itemsPerRow <= StackAllocThreshold ? stackalloc int[itemsPerRow] : new int[itemsPerRow];
for (int k = 0; k < itemsPerRow; k++)
{
columnWidths[k] = 0; // autosize
alignment[k] = TextAlignment.Left;
}
this.Writer.Initialize(leftMarginIndent: 0, columnsOnTheScreen, columnWidths, alignment, headerMatchesProperty: null, suppressHeader: false, screenRows: GetConsoleWindowHeight(this.InnerCommand._lo.RowNumber));
}
/// <summary>
/// Write the headers.
/// </summary>
internal override void GroupStart()
{
}
/// <summary>
/// Called when the end of a group is reached, flush the
/// write buffer.
/// </summary>
internal override void GroupEnd()
{
WriteStringBuffer();
}
/// <summary>
/// Write a row into the table.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
internal override void ProcessPayload(FormatEntryData fed)
{
WideViewEntry wve = fed.formatEntryInfo as WideViewEntry;
FormatPropertyField fpf = wve.formatPropertyField as FormatPropertyField;
_buffer.Add(fpf.propertyValue);
if (_buffer.IsFull)
{
WriteStringBuffer();
}
}
private WideViewHeaderInfo CurrentWideHeaderInfo
{
get
{
return (WideViewHeaderInfo)this.InnerCommand.ShapeInfoOnFormatContext;
}
}
private void WriteStringBuffer()
{
if (_buffer.IsEmpty)
{
return;
}
string[] values = new string[_buffer.Length];
for (int k = 0; k < values.Length; k++)
{
if (k < _buffer.CurrentCount)
values[k] = _buffer[k];
else
values[k] = string.Empty;
}
this.Writer.GenerateRow(values, this.InnerCommand._lo, false, null, InnerCommand._lo.DisplayCells, generatedRows: null);
_buffer.Reset();
}
/// <summary>
/// Helper class to accumulate the display values so that when the end
/// of a line is reached, a full line can be composed.
/// </summary>
private sealed class StringValuesBuffer
{
/// <summary>
/// Construct the buffer.
/// </summary>
/// <param name="size">Number of entries to cache.</param>
internal StringValuesBuffer(int size)
{
_arr = new string[size];
Reset();
}
/// <summary>
/// Get the size of the buffer.
/// </summary>
internal int Length { get { return _arr.Length; } }
/// <summary>
/// Get the current number of entries in the buffer.
/// </summary>
internal int CurrentCount { get { return _lastEmptySpot; } }
/// <summary>
/// Check if the buffer is full.
/// </summary>
internal bool IsFull
{
get { return _lastEmptySpot == _arr.Length; }
}
/// <summary>
/// Check if the buffer is empty.
/// </summary>
internal bool IsEmpty
{
get { return _lastEmptySpot == 0; }
}
/// <summary>
/// Indexer to access the k-th item in the buffer.
/// </summary>
internal string this[int k] { get { return _arr[k]; } }
/// <summary>
/// Add an item to the buffer.
/// </summary>
/// <param name="s">String to add.</param>
internal void Add(string s)
{
_arr[_lastEmptySpot++] = s;
}
/// <summary>
/// Reset the buffer.
/// </summary>
internal void Reset()
{
_lastEmptySpot = 0;
for (int k = 0; k < _arr.Length; k++)
_arr[k] = null;
}
private readonly string[] _arr;
private int _lastEmptySpot;
}
}
private sealed class ComplexOutputContext : GroupOutputContext
{
/// <summary>
/// Construct a context to push on the stack.
/// </summary>
/// <param name="cmd">Reference to the OutCommandInner instance who owns this instance.</param>
/// <param name="parentContext">Parent context in the stack.</param>
/// <param name="formatData">Format data to put in the context.</param>
internal ComplexOutputContext(OutCommandInner cmd,
FormatMessagesContextManager.OutputContext parentContext,
GroupStartData formatData)
: base(cmd, parentContext, formatData)
{
}
internal override void Initialize()
{
_writer.Initialize(this.InnerCommand._lo,
this.InnerCommand._lo.ColumnNumber);
}
/// <summary>
/// Write a row into the list.
/// </summary>
/// <param name="fed">FormatEntryData to process.</param>
internal override void ProcessPayload(FormatEntryData fed)
{
if (fed.formatEntryInfo is ComplexViewEntry cve && cve.formatValueList is not null)
{
_writer.WriteObject(cve.formatValueList);
}
}
private readonly ComplexWriter _writer = new ComplexWriter();
}
}
}
|