// 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.Internal; using System.Management.Automation.Runspaces; using System.Reflection; using System.Text; namespace Microsoft.PowerShell.Commands.Internal.Format { /// /// Class containing miscellaneous helpers to deal with /// PSObject manipulation. /// internal static class PSObjectHelper { #region tracer [TraceSource("PSObjectHelper", "PSObjectHelper")] private static readonly PSTraceSource s_tracer = PSTraceSource.GetTracer("PSObjectHelper", "PSObjectHelper"); #endregion tracer internal const char Ellipsis = '\u2026'; internal const string EllipsisStr = "\u2026"; internal static string PSObjectIsOfExactType(Collection typeNames) { if (typeNames.Count != 0) return typeNames[0]; return null; } internal static bool PSObjectIsEnum(Collection typeNames) { if (typeNames.Count < 2 || string.IsNullOrEmpty(typeNames[1])) return false; return string.Equals(typeNames[1], "System.Enum", StringComparison.Ordinal); } /// /// Retrieve the display name. It looks for a well known property and, /// if not found, it uses some heuristics to get a "close" match. /// /// Shell object to process. /// Expression factory to create PSPropertyExpression. /// Resolved PSPropertyExpression; null if no match was found. internal static PSPropertyExpression GetDisplayNameExpression(PSObject target, PSPropertyExpressionFactory expressionFactory) { // first try to get the expression from the object (types.ps1xml data) PSPropertyExpression expressionFromObject = GetDefaultNameExpression(target); if (expressionFromObject != null) { return expressionFromObject; } // we failed the default display name, let's try some well known names // trying to get something potentially useful string[] knownPatterns = new string[] { "name", "id", "key", "*key", "*name", "*id", }; // go over the patterns, looking for the first match foreach (string pattern in knownPatterns) { PSPropertyExpression ex = new PSPropertyExpression(pattern); List exprList = ex.ResolveNames(target); while ((exprList.Count > 0) && ( exprList[0].ToString().Equals(RemotingConstants.ComputerNameNoteProperty, StringComparison.OrdinalIgnoreCase) || exprList[0].ToString().Equals(RemotingConstants.ShowComputerNameNoteProperty, StringComparison.OrdinalIgnoreCase) || exprList[0].ToString().Equals(RemotingConstants.RunspaceIdNoteProperty, StringComparison.OrdinalIgnoreCase) || exprList[0].ToString().Equals(RemotingConstants.SourceJobInstanceId, StringComparison.OrdinalIgnoreCase))) { exprList.RemoveAt(0); } if (exprList.Count == 0) continue; // if more than one match, just return the first one return exprList[0]; } // we did not find anything return null; } /// /// It gets the display name value. /// /// Shell object to process. /// Expression factory to create PSPropertyExpression. /// PSPropertyExpressionResult if successful; null otherwise. internal static PSPropertyExpressionResult GetDisplayName(PSObject target, PSPropertyExpressionFactory expressionFactory) { // get the expression to evaluate PSPropertyExpression ex = GetDisplayNameExpression(target, expressionFactory); if (ex == null) return null; // evaluate the expression List resList = ex.GetValues(target); if (resList.Count == 0 || resList[0].Exception != null) { // no results or the retrieval on the first one failed return null; } // return something only if the first match was successful return resList[0]; } /// /// This is necessary only to consider IDictionaries as IEnumerables, since LanguagePrimitives.GetEnumerable does not. /// /// Object to extract the IEnumerable from. internal static IEnumerable GetEnumerable(object obj) { if (obj is PSObject mshObj) { obj = mshObj.BaseObject; } if (obj is IDictionary) { return (IEnumerable)obj; } return LanguagePrimitives.GetEnumerable(obj); } private static string GetSmartToStringDisplayName(object x, PSPropertyExpressionFactory expressionFactory) { PSPropertyExpressionResult r = PSObjectHelper.GetDisplayName(PSObjectHelper.AsPSObject(x), expressionFactory); if ((r != null) && (r.Exception == null)) { return PSObjectHelper.AsPSObject(r.Result).ToString(); } else { return PSObjectHelper.AsPSObject(x).ToString(); } } private static string GetObjectName(object x, PSPropertyExpressionFactory expressionFactory) { string objName; // check if the underlying object is of primitive type // if so just return its value if (x is PSObject && (LanguagePrimitives.IsBoolOrSwitchParameterType((((PSObject)x).BaseObject).GetType()) || LanguagePrimitives.IsNumeric(((((PSObject)x).BaseObject).GetType()).GetTypeCode()) || LanguagePrimitives.IsNull(x))) { objName = x.ToString(); } else if (x == null) { // use PowerShell's $null variable to indicate that the value is null... objName = "$null"; } else { MethodInfo toStringMethod = x.GetType().GetMethod("ToString", Type.EmptyTypes); // TODO:CORECLR double check with CORE CLR that x.GetType() == toStringMethod.ReflectedType // Check if the given object "x" implements "toString" method. Do that by comparing "DeclaringType" which 'Gets the class that declares this member' and the object type if (toStringMethod.DeclaringType == x.GetType()) { objName = PSObjectHelper.AsPSObject(x).ToString(); } else { PSPropertyExpressionResult r = PSObjectHelper.GetDisplayName(PSObjectHelper.AsPSObject(x), expressionFactory); if ((r != null) && (r.Exception == null)) { objName = PSObjectHelper.AsPSObject(r.Result).ToString(); } else { objName = PSObjectHelper.AsPSObject(x).ToString(); if (objName == string.Empty) { var baseObj = PSObject.Base(x); if (baseObj != null) { objName = baseObj.ToString(); } } } } } return objName; } /// /// Helper to convert an PSObject into a string /// It takes into account enumerations (use display name) /// /// Shell object to process. /// Expression factory to create PSPropertyExpression. /// Limit on IEnumerable enumeration. /// Stores errors during string conversion. /// Determine if to format floating point numbers using current culture. /// String representation. internal static string SmartToString(PSObject so, PSPropertyExpressionFactory expressionFactory, int enumerationLimit, StringFormatError formatErrorObject, bool formatFloat = false) { if (so == null) return string.Empty; try { IEnumerable e = PSObjectHelper.GetEnumerable(so); if (e != null) { StringBuilder sb = new StringBuilder(); sb.Append('{'); bool first = true; int enumCount = 0; IEnumerator enumerator = e.GetEnumerator(); if (enumerator != null) { if (enumerator is IBlockingEnumerator be) { while (be.MoveNext(false)) { if (LocalPipeline.GetExecutionContextFromTLS().CurrentPipelineStopping) { throw new PipelineStoppedException(); } if (enumerationLimit >= 0) { if (enumCount == enumerationLimit) { sb.Append(Ellipsis); break; } enumCount++; } if (!first) { sb.Append(", "); } sb.Append(GetObjectName(be.Current, expressionFactory)); if (first) first = false; } } else { foreach (object x in e) { if (LocalPipeline.GetExecutionContextFromTLS().CurrentPipelineStopping) { throw new PipelineStoppedException(); } if (enumerationLimit >= 0) { if (enumCount == enumerationLimit) { sb.Append(Ellipsis); break; } enumCount++; } if (!first) { sb.Append(", "); } sb.Append(GetObjectName(x, expressionFactory)); if (first) first = false; } } } sb.Append('}'); return sb.ToString(); } if (formatFloat && so.BaseObject is not null) { // format numbers using the current culture if (so.BaseObject is double dbl) { return dbl.ToString("F"); } else if (so.BaseObject is float f) { return f.ToString("F"); } else if (so.BaseObject is decimal d) { return d.ToString("F"); } } return so.ToString(); } catch (Exception e) when (e is ExtendedTypeSystemException || e is InvalidOperationException) { // These exceptions are being caught and handled by returning an empty string when // the object cannot be stringified due to ETS or an instance in the collection has been modified s_tracer.TraceWarning($"SmartToString method: Exception during conversion to string, emitting empty string: {e.Message}"); if (formatErrorObject != null) { formatErrorObject.sourceObject = so; formatErrorObject.exception = e; } return string.Empty; } } private static readonly PSObject s_emptyPSObject = new PSObject(string.Empty); internal static PSObject AsPSObject(object obj) { return (obj == null) ? s_emptyPSObject : PSObject.AsPSObject(obj); } /// /// Format an object using a provided format string directive. /// /// Format directive object to use. /// Object to format. /// Limit on IEnumerable enumeration. /// Formatting error object, if present. /// Expression factory to create PSPropertyExpression. /// String representation. internal static string FormatField(FieldFormattingDirective directive, object val, int enumerationLimit, StringFormatError formatErrorObject, PSPropertyExpressionFactory expressionFactory) { PSObject so = PSObjectHelper.AsPSObject(val); bool isTable = false; if (directive is not null) { isTable = directive.isTable; if (!string.IsNullOrEmpty(directive.formatString)) { // we have a formatting directive, apply it // NOTE: with a format directive, we do not make any attempt // to deal with IEnumerable try { // use some heuristics to determine if we have "composite formatting" // 2004/11/16-JonN This is heuristic but should be safe enough if (directive.formatString.Contains("{0") || directive.formatString.Contains('}')) { // we do have it, just use it return string.Format(CultureInfo.CurrentCulture, directive.formatString, so); } // we fall back to the PSObject's IFormattable.ToString() // pass a null IFormatProvider return so.ToString(directive.formatString, formatProvider: null); } catch (Exception e) // 2004/11/17-JonN This covers exceptions thrown in // string.Format and PSObject.ToString(). // I think we can swallow these. { // NOTE: we catch all the exceptions, since we do not know // what the underlying object access would throw if (formatErrorObject is not null) { formatErrorObject.sourceObject = so; formatErrorObject.exception = e; formatErrorObject.formatString = directive.formatString; return string.Empty; } } } } // we do not have a formatting directive or we failed the formatting (fallback) // but we did not report as an error; // this call would deal with IEnumerable if the object implements it return PSObjectHelper.SmartToString(so, expressionFactory, enumerationLimit, formatErrorObject, isTable); } private static PSMemberSet MaskDeserializedAndGetStandardMembers(PSObject so) { Diagnostics.Assert(so != null, "Shell object to process cannot be null"); var typeNames = so.InternalTypeNames; Collection typeNamesWithoutDeserializedPrefix = Deserializer.MaskDeserializationPrefix(typeNames); if (typeNamesWithoutDeserializedPrefix == null) { return null; } TypeTable typeTable = so.GetTypeTable(); if (typeTable == null) { return null; } PSMemberInfoInternalCollection members = typeTable.GetMembers(new ConsolidatedString(typeNamesWithoutDeserializedPrefix)); return members[TypeTable.PSStandardMembers] as PSMemberSet; } private static List GetDefaultPropertySet(PSMemberSet standardMembersSet) { if (standardMembersSet != null && standardMembersSet.Members[TypeTable.DefaultDisplayPropertySet] is PSPropertySet defaultDisplayPropertySet) { List retVal = new List(); foreach (string prop in defaultDisplayPropertySet.ReferencedPropertyNames) { if (!string.IsNullOrEmpty(prop)) { retVal.Add(new PSPropertyExpression(prop)); } } return retVal; } return new List(); } /// /// Helper to retrieve the default property set of a shell object. /// /// Shell object to process. /// Resolved expression; empty list if not found. internal static List GetDefaultPropertySet(PSObject so) { List retVal = GetDefaultPropertySet(so.PSStandardMembers); if (retVal.Count == 0) { retVal = GetDefaultPropertySet(MaskDeserializedAndGetStandardMembers(so)); } return retVal; } private static PSPropertyExpression GetDefaultNameExpression(PSMemberSet standardMembersSet) { if (standardMembersSet != null && standardMembersSet.Members[TypeTable.DefaultDisplayProperty] is PSNoteProperty defaultDisplayProperty) { string expressionString = defaultDisplayProperty.Value.ToString(); if (string.IsNullOrEmpty(expressionString)) { // invalid data, the PSObject is empty return null; } else { return new PSPropertyExpression(expressionString); } } return null; } private static PSPropertyExpression GetDefaultNameExpression(PSObject so) { PSPropertyExpression retVal = GetDefaultNameExpression(so.PSStandardMembers) ?? GetDefaultNameExpression(MaskDeserializedAndGetStandardMembers(so)); return retVal; } /// /// Helper to retrieve the value of an PSPropertyExpression and to format it. /// /// Shell object to process. /// Limit on IEnumerable enumeration. /// Expression to use for retrieval. /// Format directive to use for formatting. /// /// Expression factory to create PSPropertyExpression. /// Not null if an error condition arose. /// Formatted string. internal static string GetExpressionDisplayValue( PSObject so, int enumerationLimit, PSPropertyExpression ex, FieldFormattingDirective directive, StringFormatError formatErrorObject, PSPropertyExpressionFactory expressionFactory, out PSPropertyExpressionResult result) { result = null; List resList = ex.GetValues(so); if (resList.Count == 0) { return string.Empty; } result = resList[0]; if (result.Exception != null) { return string.Empty; } return PSObjectHelper.FormatField(directive, result.Result, enumerationLimit, formatErrorObject, expressionFactory); } /// /// Queries PSObject and determines if ComputerName property should be shown. /// /// /// internal static bool ShouldShowComputerNameProperty(PSObject so) { bool result = false; if (so != null) { try { PSPropertyInfo computerNameProperty = so.Properties[RemotingConstants.ComputerNameNoteProperty]; PSPropertyInfo showComputerNameProperty = so.Properties[RemotingConstants.ShowComputerNameNoteProperty]; // if computer name property exists then this must be a remote object. see // if it can be displayed. if ((computerNameProperty != null) && (showComputerNameProperty != null)) { LanguagePrimitives.TryConvertTo(showComputerNameProperty.Value, out result); } } catch (ArgumentException) { // ignore any exceptions thrown retrieving the *ComputerName properties // from the object } catch (ExtendedTypeSystemException) { // ignore any exceptions thrown retrieving the *ComputerName properties // from the object } } return result; } } internal abstract class FormattingError { internal object sourceObject; } internal sealed class PSPropertyExpressionError : FormattingError { internal PSPropertyExpressionResult result; } internal sealed class StringFormatError : FormattingError { internal string formatString; internal Exception exception; } internal delegate ScriptBlock CreateScriptBlockFromString(string scriptBlockString); /// /// Helper class to create PSPropertyExpression's from format.ps1xml data structures. /// internal sealed class PSPropertyExpressionFactory { /// internal void VerifyScriptBlockText(string scriptText) { ScriptBlock.Create(scriptText); } /// /// Create an expression from an expression token. /// /// Expression token to use. /// Constructed expression. /// internal PSPropertyExpression CreateFromExpressionToken(ExpressionToken et) { return CreateFromExpressionToken(et, null); } /// /// Create an expression from an expression token. /// /// Expression token to use. /// The context from which the file was loaded. /// Constructed expression. /// internal PSPropertyExpression CreateFromExpressionToken(ExpressionToken et, DatabaseLoadingInfo loadingInfo) { if (et.isScriptBlock) { // we cache script blocks from expression tokens if (_expressionCache != null) { PSPropertyExpression value; if (_expressionCache.TryGetValue(et, out value)) { // got a hit on the cache, just return return value; } } else { _expressionCache = new Dictionary(); } bool isFullyTrusted = false; bool isProductCode = false; if (loadingInfo != null) { isFullyTrusted = loadingInfo.isFullyTrusted; isProductCode = loadingInfo.isProductCode; } // no hit, we build one and we cache ScriptBlock sb = ScriptBlock.CreateDelayParsedScriptBlock(et.expressionValue, isProductCode: isProductCode); sb.DebuggerStepThrough = true; if (isFullyTrusted) { sb.LanguageMode = PSLanguageMode.FullLanguage; } PSPropertyExpression ex = new PSPropertyExpression(sb); _expressionCache.Add(et, ex); return ex; } // we do not cache if it is just a property name return new PSPropertyExpression(et.expressionValue); } private Dictionary _expressionCache; } }