File size: 20,251 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Linq;
using System.Collections.ObjectModel;
using System.Management.Automation;
using System.Management.Automation.Internal;
namespace Microsoft.PowerShell.Commands.Internal.Format
{
/// <summary>
/// Base class for the various types of formatting shapes.
/// </summary>
internal abstract class ViewGenerator
{
internal virtual void Initialize(TerminatingErrorContext terminatingErrorContext,
PSPropertyExpressionFactory mshExpressionFactory,
TypeInfoDataBase db,
ViewDefinition view,
FormattingCommandLineParameters formatParameters)
{
Diagnostics.Assert(mshExpressionFactory != null, "mshExpressionFactory cannot be null");
Diagnostics.Assert(db != null, "db cannot be null");
Diagnostics.Assert(view != null, "view cannot be null");
errorContext = terminatingErrorContext;
expressionFactory = mshExpressionFactory;
parameters = formatParameters;
dataBaseInfo.db = db;
dataBaseInfo.view = view;
dataBaseInfo.applicableTypes = DisplayDataQuery.GetAllApplicableTypes(db, view.appliesTo);
InitializeHelper();
}
internal virtual void Initialize(TerminatingErrorContext terminatingErrorContext,
PSPropertyExpressionFactory mshExpressionFactory,
PSObject so,
TypeInfoDataBase db,
FormattingCommandLineParameters formatParameters)
{
errorContext = terminatingErrorContext;
expressionFactory = mshExpressionFactory;
parameters = formatParameters;
dataBaseInfo.db = db;
InitializeHelper();
}
/// <summary>
/// Let the view prepare itself for RemoteObjects. Specific view generators can
/// use this call to customize display for remote objects like showing/hiding
/// computername property etc.
/// </summary>
/// <param name="so"></param>
internal virtual void PrepareForRemoteObjects(PSObject so)
{
}
private void InitializeHelper()
{
InitializeFormatErrorManager();
InitializeGroupBy();
InitializeAutoSize();
InitializeRepeatHeader();
}
private void InitializeFormatErrorManager()
{
FormatErrorPolicy formatErrorPolicy = new FormatErrorPolicy();
if (parameters != null && parameters.showErrorsAsMessages.HasValue)
{
formatErrorPolicy.ShowErrorsAsMessages = parameters.showErrorsAsMessages.Value;
}
else
{
formatErrorPolicy.ShowErrorsAsMessages = this.dataBaseInfo.db.defaultSettingsSection.formatErrorPolicy.ShowErrorsAsMessages;
}
if (parameters != null && parameters.showErrorsInFormattedOutput.HasValue)
{
formatErrorPolicy.ShowErrorsInFormattedOutput = parameters.showErrorsInFormattedOutput.Value;
}
else
{
formatErrorPolicy.ShowErrorsInFormattedOutput = this.dataBaseInfo.db.defaultSettingsSection.formatErrorPolicy.ShowErrorsInFormattedOutput;
}
_errorManager = new FormatErrorManager(formatErrorPolicy);
}
private void InitializeGroupBy()
{
// first check if there is an override from the command line
if (parameters != null && parameters.groupByParameter != null)
{
// get the expression to use
PSPropertyExpression groupingKeyExpression = parameters.groupByParameter.GetEntry(FormatParameterDefinitionKeys.ExpressionEntryKey) as PSPropertyExpression;
// set the label
string label = null;
object labelKey = parameters.groupByParameter.GetEntry(FormatParameterDefinitionKeys.LabelEntryKey);
if (labelKey != AutomationNull.Value)
{
label = labelKey as string;
}
_groupingManager = new GroupingInfoManager();
_groupingManager.Initialize(groupingKeyExpression, label);
return;
}
// check if we have a view to initialize from
if (this.dataBaseInfo.view != null)
{
GroupBy gb = this.dataBaseInfo.view.groupBy;
if (gb == null)
{
return;
}
if (gb.startGroup == null || gb.startGroup.expression == null)
{
return;
}
PSPropertyExpression ex = this.expressionFactory.CreateFromExpressionToken(gb.startGroup.expression, this.dataBaseInfo.view.loadingInfo);
_groupingManager = new GroupingInfoManager();
_groupingManager.Initialize(ex, null);
}
}
private void InitializeAutoSize()
{
// check the autosize flag first
if (parameters != null && parameters.autosize.HasValue)
{
_autosize = parameters.autosize.Value;
return;
}
// check if we have a view with autosize checked
if (this.dataBaseInfo.view != null && this.dataBaseInfo.view.mainControl != null
&& this.dataBaseInfo.view.mainControl is ControlBody controlBody && controlBody.autosize.HasValue)
{
_autosize = controlBody.autosize.Value;
}
}
private void InitializeRepeatHeader()
{
if (parameters != null)
{
_repeatHeader = parameters.repeatHeader;
}
}
internal virtual FormatStartData GenerateStartData(PSObject so)
{
FormatStartData startFormat = new FormatStartData();
if (_autosize)
{
startFormat.autosizeInfo = new AutosizeInfo();
}
return startFormat;
}
internal abstract FormatEntryData GeneratePayload(PSObject so, int enumerationLimit);
internal GroupStartData GenerateGroupStartData(PSObject firstObjectInGroup, int enumerationLimit)
{
GroupStartData startGroup = new GroupStartData();
if (_groupingManager == null)
return startGroup;
object currentGroupingValue = _groupingManager.CurrentGroupingKeyPropertyValue;
if (currentGroupingValue == AutomationNull.Value)
return startGroup;
PSObject so = PSObjectHelper.AsPSObject(currentGroupingValue);
// we need to determine how to display the group header
ControlBase control = null;
TextToken labelTextToken = null;
if (this.dataBaseInfo.view != null && this.dataBaseInfo.view.groupBy != null)
{
if (this.dataBaseInfo.view.groupBy.startGroup != null)
{
// NOTE: from the database constraints, only one of the
// two will be non null
control = this.dataBaseInfo.view.groupBy.startGroup.control;
labelTextToken = this.dataBaseInfo.view.groupBy.startGroup.labelTextToken;
}
}
startGroup.groupingEntry = new GroupingEntry();
if (control == null)
{
// we do not have a control, we auto generate a
// snippet of complex display using a label
StringFormatError formatErrorObject = null;
if (_errorManager.DisplayFormatErrorString)
{
// we send a format error object down to the formatting calls
// only if we want to show the formatting error strings
formatErrorObject = new StringFormatError();
}
string currentGroupingValueDisplay = PSObjectHelper.SmartToString(so, this.expressionFactory, enumerationLimit, formatErrorObject);
if (formatErrorObject != null && formatErrorObject.exception != null)
{
// if we did not have any errors in the expression evaluation
// we might have errors in the formatting, if present
_errorManager.LogStringFormatError(formatErrorObject);
if (_errorManager.DisplayFormatErrorString)
{
currentGroupingValueDisplay = _errorManager.FormatErrorString;
}
}
FormatEntry fe = new FormatEntry();
startGroup.groupingEntry.formatValueList.Add(fe);
FormatTextField ftf = new FormatTextField();
// determine what the label should be. If we have a label from the
// database, let's use it, else fall back to the string provided
// by the grouping manager
string label;
if (labelTextToken != null)
label = this.dataBaseInfo.db.displayResourceManagerCache.GetTextTokenString(labelTextToken);
else
label = _groupingManager.GroupingKeyDisplayName;
ftf.text = StringUtil.Format(FormatAndOut_format_xxx.GroupStartDataIndentedAutoGeneratedLabel, label);
fe.formatValueList.Add(ftf);
FormatPropertyField fpf = new FormatPropertyField();
fpf.propertyValue = currentGroupingValueDisplay;
fe.formatValueList.Add(fpf);
}
else
{
// NOTE: we set a max depth to protect ourselves from infinite loops
const int maxTreeDepth = 50;
ComplexControlGenerator controlGenerator =
new ComplexControlGenerator(this.dataBaseInfo.db,
this.dataBaseInfo.view.loadingInfo,
this.expressionFactory,
this.dataBaseInfo.view.formatControlDefinitionHolder.controlDefinitionList,
this.ErrorManager,
enumerationLimit,
this.errorContext);
controlGenerator.GenerateFormatEntries(maxTreeDepth,
control, firstObjectInGroup, startGroup.groupingEntry.formatValueList);
}
return startGroup;
}
/// <summary>
/// Update the current value of the grouping key.
/// </summary>
/// <param name="so">Object to use for the update.</param>
/// <returns>True if the value of the key changed.</returns>
internal bool UpdateGroupingKeyValue(PSObject so)
{
if (_groupingManager == null)
return false;
return _groupingManager.UpdateGroupingKeyValue(so);
}
internal GroupEndData GenerateGroupEndData()
{
return new GroupEndData();
}
internal bool IsObjectApplicable(Collection<string> typeNames)
{
if (dataBaseInfo.view == null)
return true;
if (typeNames.Count == 0)
return false;
TypeMatch match = new TypeMatch(expressionFactory, dataBaseInfo.db, typeNames);
if (match.PerfectMatch(new TypeMatchItem(this, dataBaseInfo.applicableTypes)))
{
return true;
}
bool result = match.BestMatch != null;
// we were unable to find a best match so far..try
// to get rid of Deserialization prefix and see if a
// match can be found.
if (!result)
{
Collection<string> typesWithoutPrefix = Deserializer.MaskDeserializationPrefix(typeNames);
if (typesWithoutPrefix != null)
{
result = IsObjectApplicable(typesWithoutPrefix);
}
}
return result;
}
private GroupingInfoManager _groupingManager = null;
protected bool AutoSize
{
get { return _autosize; }
}
private bool _autosize = false;
protected bool RepeatHeader
{
get { return _repeatHeader; }
}
private bool _repeatHeader = false;
protected class DataBaseInfo
{
internal TypeInfoDataBase db = null;
internal ViewDefinition view = null;
internal AppliesTo applicableTypes = null;
}
protected TerminatingErrorContext errorContext;
protected FormattingCommandLineParameters parameters;
protected PSPropertyExpressionFactory expressionFactory;
protected DataBaseInfo dataBaseInfo = new DataBaseInfo();
/// <summary>
/// Builds the raw association list for the given object.
/// Subclasses override this to provide cmdlet-specific property expansion logic.
/// </summary>
/// <param name="so">The object to build the association list for.</param>
/// <param name="propertyList">The list of properties specified by the user, or null if not specified.</param>
/// <returns>The raw association list, or null if not applicable.</returns>
protected virtual List<MshResolvedExpressionParameterAssociation> BuildRawAssociationList(PSObject so, List<MshParameter> propertyList)
{
return null;
}
/// <summary>
/// Builds the active association list for the given object, with ExcludeProperty filter applied.
/// </summary>
/// <param name="so">The object to build the association list for.</param>
/// <returns>The filtered association list.</returns>
protected List<MshResolvedExpressionParameterAssociation> BuildActiveAssociationList(PSObject so)
{
var propertyList = parameters?.mshParameterList;
var excludeFilter = parameters?.excludePropertyFilter;
var rawList = BuildRawAssociationList(so, propertyList);
return ApplyExcludeFilter(rawList, excludeFilter);
}
/// <summary>
/// Applies the ExcludeProperty filter to the given association list.
/// </summary>
/// <param name="associationList">The list to filter.</param>
/// <param name="excludeFilter">The exclude filter to apply.</param>
/// <returns>The filtered list, or the original list if no filter is specified.</returns>
internal static List<MshResolvedExpressionParameterAssociation> ApplyExcludeFilter(
List<MshResolvedExpressionParameterAssociation> associationList,
PSPropertyExpressionFilter excludeFilter)
{
if (associationList is null || excludeFilter is null)
{
return associationList;
}
return associationList
.Where(item => !excludeFilter.IsMatch(item.ResolvedExpression))
.ToList();
}
protected string GetExpressionDisplayValue(PSObject so, int enumerationLimit, PSPropertyExpression ex,
FieldFormattingDirective directive)
{
PSPropertyExpressionResult resolvedExpression;
return GetExpressionDisplayValue(so, enumerationLimit, ex, directive, out resolvedExpression);
}
protected string GetExpressionDisplayValue(PSObject so, int enumerationLimit, PSPropertyExpression ex,
FieldFormattingDirective directive, out PSPropertyExpressionResult expressionResult)
{
StringFormatError formatErrorObject = null;
if (_errorManager.DisplayFormatErrorString)
{
// we send a format error object down to the formatting calls
// only if we want to show the formatting error strings
formatErrorObject = new StringFormatError();
}
string retVal = PSObjectHelper.GetExpressionDisplayValue(so, enumerationLimit, ex,
directive, formatErrorObject, expressionFactory, out expressionResult);
if (expressionResult != null)
{
// we obtained a result, check if there is an error
if (expressionResult.Exception != null)
{
_errorManager.LogPSPropertyExpressionFailedResult(expressionResult, so);
if (_errorManager.DisplayErrorStrings)
{
retVal = _errorManager.ErrorString;
}
}
else if (formatErrorObject != null && formatErrorObject.exception != null)
{
// if we did not have any errors in the expression evaluation
// we might have errors in the formatting, if present
_errorManager.LogStringFormatError(formatErrorObject);
if (_errorManager.DisplayErrorStrings)
{
retVal = _errorManager.FormatErrorString;
}
}
}
return retVal;
}
protected bool EvaluateDisplayCondition(PSObject so, ExpressionToken conditionToken)
{
if (conditionToken == null)
return true;
PSPropertyExpression ex = this.expressionFactory.CreateFromExpressionToken(conditionToken, this.dataBaseInfo.view.loadingInfo);
PSPropertyExpressionResult expressionResult;
bool retVal = DisplayCondition.Evaluate(so, ex, out expressionResult);
if (expressionResult != null && expressionResult.Exception != null)
{
_errorManager.LogPSPropertyExpressionFailedResult(expressionResult, so);
}
return retVal;
}
internal FormatErrorManager ErrorManager
{
get { return _errorManager; }
}
private FormatErrorManager _errorManager;
#region helpers
protected FormatPropertyField GenerateFormatPropertyField(List<FormatToken> formatTokenList, PSObject so, int enumerationLimit)
{
PSPropertyExpressionResult result;
return GenerateFormatPropertyField(formatTokenList, so, enumerationLimit, out result);
}
protected FormatPropertyField GenerateFormatPropertyField(List<FormatToken> formatTokenList, PSObject so, int enumerationLimit, out PSPropertyExpressionResult result)
{
result = null;
FormatPropertyField fpf = new FormatPropertyField();
if (formatTokenList.Count != 0)
{
FormatToken token = formatTokenList[0];
if (token is FieldPropertyToken fpt)
{
PSPropertyExpression ex = this.expressionFactory.CreateFromExpressionToken(fpt.expression, this.dataBaseInfo.view.loadingInfo);
fpf.propertyValue = this.GetExpressionDisplayValue(so, enumerationLimit, ex, fpt.fieldFormattingDirective, out result);
}
else if (token is TextToken tt)
{
fpf.propertyValue = this.dataBaseInfo.db.displayResourceManagerCache.GetTextTokenString(tt);
}
}
else
{
fpf.propertyValue = string.Empty;
}
return fpf;
}
#endregion
}
}
|