File size: 15,641 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Management.Automation;
using System.Management.Automation.Internal;
using System.Management.Automation.Language;
using System.Runtime.CompilerServices;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// Class that represents the results from evaluating a PSPropertyExpression against an object.
/// </summary>
public class PSPropertyExpressionResult
{
/// <summary>
/// Create a property expression result containing the original object, matching property expression
/// and any exception generated during the match process.
/// </summary>
public PSPropertyExpressionResult(object res, PSPropertyExpression re, Exception e)
{
Result = res;
ResolvedExpression = re;
Exception = e;
}
/// <summary>
/// The value of the object property matched by this property expression.
/// </summary>
public object Result { get; } = null;
/// <summary>
/// The original property expression fully resolved.
/// </summary>
public PSPropertyExpression ResolvedExpression { get; } = null;
/// <summary>
/// Any exception thrown while evaluating the expression.
/// </summary>
public Exception Exception { get; } = null;
}
/// <summary>
/// PSPropertyExpression class. This class is used to get the names and/or values of properties
/// on an object. A property expression can be constructed using either a wildcard expression string
/// or a scriptblock to use to get the property value.
/// </summary>
public class PSPropertyExpression
{
/// <summary>
/// Constructor.
/// </summary>
/// <param name="s">Expression.</param>
/// <exception cref="ArgumentNullException"></exception>
public PSPropertyExpression(string s)
: this(s, false)
{
}
/// <summary>
/// Create a property expression with a wildcard pattern.
/// </summary>
/// <param name="s">Property name pattern to match.</param>
/// <param name="isResolved"><see langword="true"/> if no further attempts should be made to resolve wildcards.</param>
/// <exception cref="ArgumentNullException"></exception>
public PSPropertyExpression(string s, bool isResolved)
{
if (string.IsNullOrEmpty(s))
{
throw PSTraceSource.NewArgumentNullException(nameof(s));
}
_stringValue = s;
_isResolved = isResolved;
}
/// <summary>
/// Create a property expression with a ScriptBlock.
/// </summary>
/// <param name="scriptBlock">ScriptBlock to evaluate when retrieving the property value from an object.</param>
/// <exception cref="ArgumentNullException"></exception>
public PSPropertyExpression(ScriptBlock scriptBlock)
{
if (scriptBlock == null)
{
throw PSTraceSource.NewArgumentNullException(nameof(scriptBlock));
}
Script = scriptBlock;
}
/// <summary>
/// The ScriptBlock for this expression to use when matching.
/// </summary>
public ScriptBlock Script { get; } = null;
/// <summary>
/// ToString() implementation for the property expression.
/// </summary>
public override string ToString()
{
if (Script != null)
return Script.ToString();
return _stringValue;
}
/// <summary>
/// Resolve the names matched by the expression.
/// </summary>
/// <param name="target">The object to apply the expression against.</param>
public List<PSPropertyExpression> ResolveNames(PSObject target)
{
return ResolveNames(target, true);
}
/// <summary>
/// Indicates if the pattern has wildcard characters in it. If the supplied pattern was
/// a scriptblock, this will be false.
/// </summary>
public bool HasWildCardCharacters
{
get
{
if (Script != null)
return false;
return WildcardPattern.ContainsWildcardCharacters(_stringValue);
}
}
/// <summary>
/// Resolve the names matched by the expression.
/// </summary>
/// <param name="target">The object to apply the expression against.</param>
/// <param name="expand">If the matched properties are property sets, expand them.</param>
public List<PSPropertyExpression> ResolveNames(PSObject target, bool expand)
{
List<PSPropertyExpression> retVal = new List<PSPropertyExpression>();
if (_isResolved)
{
retVal.Add(this);
return retVal;
}
if (Script != null)
{
// script block, just add it to the list and be done
PSPropertyExpression ex = new PSPropertyExpression(Script);
ex._isResolved = true;
retVal.Add(ex);
return retVal;
}
// If the object passed in is a hashtable, then turn it into a PSCustomObject so
// that property expressions can work on it.
var wrappedTarget = IfHashtableWrapAsPSCustomObject(target, out bool wasHashtable);
// we have a string value
IEnumerable<PSMemberInfo> members;
if (HasWildCardCharacters)
{
// get the members first: this will expand the globbing on each parameter
members = wrappedTarget.Members.Match(
_stringValue,
PSMemberTypes.Properties | PSMemberTypes.PropertySet | PSMemberTypes.Dynamic);
// if target was a hashtable and no result is found from the keys, then use property value if available
if (wasHashtable && !members.Any())
{
members = target.Members.Match(
_stringValue,
PSMemberTypes.Properties | PSMemberTypes.PropertySet | PSMemberTypes.Dynamic);
}
}
else
{
// we have no globbing: try an exact match, because this is quicker.
PSMemberInfo x = wrappedTarget.Members[_stringValue];
if (x == null)
{
if (wasHashtable)
{
x = target.Members[_stringValue];
}
else if (wrappedTarget.BaseObject is System.Dynamic.IDynamicMetaObjectProvider)
{
// We could check if GetDynamicMemberNames includes the name... but
// GetDynamicMemberNames is only a hint, not a contract, so we'd want
// to attempt the binding whether it's in there or not.
x = new PSDynamicMember(_stringValue);
}
}
List<PSMemberInfo> temp = new List<PSMemberInfo>();
if (x != null)
{
temp.Add(x);
}
members = temp;
}
// we now have a list of members, we have to expand property sets
// and remove duplicates
List<PSMemberInfo> temporaryMemberList = new List<PSMemberInfo>();
foreach (PSMemberInfo member in members)
{
// it can be a property set
if (member is PSPropertySet propertySet)
{
if (expand)
{
// NOTE: we expand the property set under the
// assumption that it contains property names that
// do not require any further expansion
Collection<string> references = propertySet.ReferencedPropertyNames;
for (int j = 0; j < references.Count; j++)
{
ReadOnlyPSMemberInfoCollection<PSPropertyInfo> propertyMembers =
target.Properties.Match(references[j]);
for (int jj = 0; jj < propertyMembers.Count; jj++)
{
temporaryMemberList.Add(propertyMembers[jj]);
}
}
}
}
// it can be a property
else if (member is PSPropertyInfo)
{
temporaryMemberList.Add(member);
}
// it can be a dynamic member
else if (member is PSDynamicMember)
{
temporaryMemberList.Add(member);
}
}
var allMembers = new HashSet<string>();
// build the list of unique values: remove the possible duplicates
// from property set expansion
foreach (PSMemberInfo m in temporaryMemberList)
{
if (!allMembers.Contains(m.Name))
{
PSPropertyExpression ex = new PSPropertyExpression(m.Name);
ex._isResolved = true;
retVal.Add(ex);
allMembers.Add(m.Name);
}
}
return retVal;
}
/// <summary>
/// Gets the values of the object properties matched by this expression.
/// </summary>
/// <param name="target">The object to match against.</param>
public List<PSPropertyExpressionResult> GetValues(PSObject target)
{
return GetValues(target, true, true);
}
/// <summary>
/// Gets the values of the object properties matched by this expression.
/// </summary>
/// <param name="target">The object to match against.</param>
/// <param name="expand">If the matched properties are parameter sets, expand them.</param>
/// <param name="eatExceptions">If true, any exceptions that occur during the match process are ignored.</param>
public List<PSPropertyExpressionResult> GetValues(PSObject target, bool expand, bool eatExceptions)
{
List<PSPropertyExpressionResult> retVal = new List<PSPropertyExpressionResult>();
// process the script case
if (Script != null)
{
PSPropertyExpression scriptExpression = new PSPropertyExpression(Script);
PSPropertyExpressionResult r = scriptExpression.GetValue(target, eatExceptions);
retVal.Add(r);
return retVal;
}
foreach (PSPropertyExpression resolvedName in ResolveNames(target, expand))
{
PSPropertyExpressionResult result = resolvedName.GetValue(target, eatExceptions);
retVal.Add(result);
}
return retVal;
}
#region Private Members
private CallSite<Func<CallSite, object, object>> _getValueDynamicSite;
private PSPropertyExpressionResult GetValue(PSObject target, bool eatExceptions)
{
try
{
object result = null;
if (Script != null)
{
result = Script.DoInvokeReturnAsIs(
useLocalScope: true,
errorHandlingBehavior: ScriptBlock.ErrorHandlingBehavior.WriteToExternalErrorPipe,
dollarUnder: target,
input: AutomationNull.Value,
scriptThis: AutomationNull.Value,
args: Array.Empty<object>());
}
else
{
_getValueDynamicSite ??=
CallSite<Func<CallSite, object, object>>.Create(
PSGetMemberBinder.Get(
_stringValue,
classScope: (Type)null,
@static: false));
result = _getValueDynamicSite.Target.Invoke(_getValueDynamicSite, target);
}
return new PSPropertyExpressionResult(result, this, null);
}
catch (RuntimeException e)
{
if (eatExceptions)
{
return new PSPropertyExpressionResult(null, this, e);
}
else
{
throw;
}
}
}
private static PSObject IfHashtableWrapAsPSCustomObject(PSObject target, out bool wrapped)
{
wrapped = false;
// If the object passed in is a hashtable, then turn it into a PSCustomObject so
// that property expressions can work on it.
if (PSObject.Base(target) is Hashtable targetAsHash)
{
wrapped = true;
return (PSObject)(LanguagePrimitives.ConvertPSObjectToType(
targetAsHash,
typeof(PSObject),
recursion: false,
formatProvider: null,
ignoreUnknownMembers: true));
}
return target;
}
// private members
private readonly string _stringValue;
private bool _isResolved = false;
#endregion Private Members
}
/// <summary>
/// Helper class to do wildcard matching on PSPropertyExpressions.
/// </summary>
internal sealed class PSPropertyExpressionFilter
{
/// <summary>
/// Initializes a new instance of the <see cref="PSPropertyExpressionFilter"/> class
/// with the specified array of patterns.
/// </summary>
/// <param name="wildcardPatternsStrings">Array of pattern strings to use.</param>
internal PSPropertyExpressionFilter(string[] wildcardPatternsStrings)
{
ArgumentNullException.ThrowIfNull(wildcardPatternsStrings);
_wildcardPatterns = new WildcardPattern[wildcardPatternsStrings.Length];
for (int k = 0; k < wildcardPatternsStrings.Length; k++)
{
_wildcardPatterns[k] = WildcardPattern.Get(wildcardPatternsStrings[k], WildcardOptions.IgnoreCase);
}
}
/// <summary>
/// Try to match the expression against the array of wildcard patterns.
/// The first match short-circuits the search.
/// </summary>
/// <param name="expression">PSPropertyExpression to test against.</param>
/// <returns>True if there is a match, else false.</returns>
internal bool IsMatch(PSPropertyExpression expression)
{
string expressionString = expression.ToString();
return _wildcardPatterns.Any(pattern => pattern.IsMatch(expressionString));
}
private readonly WildcardPattern[] _wildcardPatterns;
}
}
|