Windows-powershell / PowerShell-master /src /Microsoft.Management.Infrastructure.CimCmdlets /CimCommandBase.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Globalization; | |
| using System.Management.Automation; | |
| using System.Net; | |
| using System.Text; | |
| using Microsoft.Management.Infrastructure.Options; | |
| namespace Microsoft.Management.Infrastructure.CimCmdlets | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// Define class <c>ParameterDefinitionEntry</c>. | |
| /// </para> | |
| /// </summary> | |
| internal class ParameterDefinitionEntry | |
| { | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ParameterDefinitionEntry"/> class. | |
| /// </summary> | |
| /// <param name="parameterSetName"></param> | |
| /// <param name="mandatory"></param> | |
| internal ParameterDefinitionEntry(string parameterSetName, bool mandatory) | |
| { | |
| this.IsMandatory = mandatory; | |
| this.ParameterSetName = parameterSetName; | |
| } | |
| /// <summary> | |
| /// Property ParameterSetName. | |
| /// </summary> | |
| internal string ParameterSetName { get; } | |
| /// <summary> | |
| /// Whether the parameter is mandatory to the set. | |
| /// </summary> | |
| internal bool IsMandatory { get; } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Define class <c>ParameterSetEntry</c>. | |
| /// </para> | |
| /// </summary> | |
| internal class ParameterSetEntry | |
| { | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ParameterSetEntry"/> class. | |
| /// </summary> | |
| /// <param name="mandatoryParameterCount"></param> | |
| internal ParameterSetEntry(uint mandatoryParameterCount) | |
| { | |
| this.MandatoryParameterCount = mandatoryParameterCount; | |
| this.IsDefaultParameterSet = false; | |
| reset(); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ParameterSetEntry"/> class. | |
| /// </summary> | |
| /// <param name="toClone"></param> | |
| internal ParameterSetEntry(ParameterSetEntry toClone) | |
| { | |
| this.MandatoryParameterCount = toClone.MandatoryParameterCount; | |
| this.IsDefaultParameterSet = toClone.IsDefaultParameterSet; | |
| reset(); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ParameterSetEntry"/> class. | |
| /// </summary> | |
| /// <param name="mandatoryParameterCount"></param> | |
| /// <param name="mandatory"></param> | |
| internal ParameterSetEntry(uint mandatoryParameterCount, bool isDefault) | |
| { | |
| this.MandatoryParameterCount = mandatoryParameterCount; | |
| this.IsDefaultParameterSet = isDefault; | |
| reset(); | |
| } | |
| /// <summary> | |
| /// Reset the internal status. | |
| /// </summary> | |
| internal void reset() | |
| { | |
| this.SetMandatoryParameterCount = this.SetMandatoryParameterCountAtBeginProcess; | |
| this.IsValueSet = this.IsValueSetAtBeginProcess; | |
| } | |
| /// <summary> | |
| /// Property <c>DefaultParameterSet</c> | |
| /// </summary> | |
| internal bool IsDefaultParameterSet { get; } | |
| /// <summary> | |
| /// Property <c>MandatoryParameterCount</c> | |
| /// </summary> | |
| internal uint MandatoryParameterCount { get; } = 0; | |
| /// <summary> | |
| /// Property <c>IsValueSet</c> | |
| /// </summary> | |
| internal bool IsValueSet { get; set; } | |
| /// <summary> | |
| /// Property <c>IsValueSetAtBeginProcess</c> | |
| /// </summary> | |
| internal bool IsValueSetAtBeginProcess { get; set; } | |
| /// <summary> | |
| /// Property <c>SetMandatoryParameterCount</c> | |
| /// </summary> | |
| internal uint SetMandatoryParameterCount { get; set; } = 0; | |
| /// <summary> | |
| /// Property <c>SetMandatoryParameterCountAtBeginProcess</c> | |
| /// </summary> | |
| internal uint SetMandatoryParameterCountAtBeginProcess { get; set; } = 0; | |
| } | |
| /// <summary> | |
| /// Define class <c>ParameterBinder</c>. | |
| /// </summary> | |
| internal class ParameterBinder | |
| { | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ParameterBinder"/> class. | |
| /// </summary> | |
| /// <param name="parameters"></param> | |
| /// <param name="sets"></param> | |
| internal ParameterBinder( | |
| Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters, | |
| Dictionary<string, ParameterSetEntry> sets) | |
| { | |
| this.CloneParameterEntries(parameters, sets); | |
| } | |
| /// <summary> | |
| /// Define the parameter definition entries, | |
| /// each parameter may belong a set of parameterSets, each parameter set | |
| /// are defined by a <seealso cref="ParameterDefinitionEntry"/>. | |
| /// </summary> | |
| private Dictionary<string, HashSet<ParameterDefinitionEntry>> parameterDefinitionEntries; | |
| /// <summary> | |
| /// <para> | |
| /// Define parameter set entries, | |
| /// each cmdlet has a list of parameter set, each has number of mandatory parameters, etc. | |
| /// This data structure is used to track the number of mandatory parameter has been set for | |
| /// current parameterset, whether the parameter set was been set by user. | |
| /// </para> | |
| /// </summary> | |
| private Dictionary<string, ParameterSetEntry> parameterSetEntries; | |
| /// <summary> | |
| /// <para> | |
| /// Used to remember the set of parameterset were set | |
| /// if any conflict occurred with current parameter, | |
| /// throw exception | |
| /// </para> | |
| /// </summary> | |
| private List<string> parametersetNamesList = new(); | |
| /// <summary> | |
| /// Parameter names list. | |
| /// </summary> | |
| private readonly List<string> parameterNamesList = new(); | |
| /// <summary> | |
| /// <para> | |
| /// Used to remember the set of parameterset were set before begin process | |
| /// if any conflict occurred with current parameter, | |
| /// throw exception | |
| /// </para> | |
| /// </summary> | |
| private List<string> parametersetNamesListAtBeginProcess = new(); | |
| /// <summary> | |
| /// Parameter names list before begin process. | |
| /// </summary> | |
| private readonly List<string> parameterNamesListAtBeginProcess = new(); | |
| /// <summary> | |
| /// <para> | |
| /// Reset the status of parameter set entries | |
| /// </para> | |
| /// </summary> | |
| internal void reset() | |
| { | |
| foreach (KeyValuePair<string, ParameterSetEntry> setEntry in parameterSetEntries) | |
| { | |
| setEntry.Value.reset(); | |
| } | |
| this.parametersetNamesList.Clear(); | |
| foreach (string parametersetName in this.parametersetNamesListAtBeginProcess) | |
| { | |
| this.parametersetNamesList.Add(parametersetName); | |
| } | |
| this.parameterNamesList.Clear(); | |
| foreach (string parameterName in this.parameterNamesListAtBeginProcess) | |
| { | |
| this.parameterNamesList.Add(parameterName); | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// A given parameter's value was set by cmdlet caller, | |
| /// check and change the status of parameter set, | |
| /// throw exception if confliction occurred | |
| /// </para> | |
| /// </summary> | |
| /// <param name="parameterName"></param> | |
| /// <exception cref="PSArgumentException">Throw if conflict parameter was set.</exception> | |
| internal void SetParameter(string parameterName, bool isBeginProcess) | |
| { | |
| DebugHelper.WriteLogEx("ParameterName = {0}, isBeginProcess = {1}", 0, parameterName, isBeginProcess); | |
| if (this.parameterNamesList.Contains(parameterName)) | |
| { | |
| DebugHelper.WriteLogEx("ParameterName {0} is already bound ", 1, parameterName); | |
| return; | |
| } | |
| else | |
| { | |
| this.parameterNamesList.Add(parameterName); | |
| if (isBeginProcess) | |
| { | |
| this.parameterNamesListAtBeginProcess.Add(parameterName); | |
| } | |
| } | |
| if (this.parametersetNamesList.Count == 0) | |
| { | |
| List<string> nameset = new(); | |
| foreach (ParameterDefinitionEntry parameterDefinitionEntry in this.parameterDefinitionEntries[parameterName]) | |
| { | |
| DebugHelper.WriteLogEx("parameterset name = '{0}'; mandatory = '{1}'", 1, parameterDefinitionEntry.ParameterSetName, parameterDefinitionEntry.IsMandatory); | |
| ParameterSetEntry psEntry = this.parameterSetEntries[parameterDefinitionEntry.ParameterSetName]; | |
| if (psEntry == null) | |
| continue; | |
| if (parameterDefinitionEntry.IsMandatory) | |
| { | |
| psEntry.SetMandatoryParameterCount++; | |
| if (isBeginProcess) | |
| { | |
| psEntry.SetMandatoryParameterCountAtBeginProcess++; | |
| } | |
| DebugHelper.WriteLogEx("parameterset name = '{0}'; SetMandatoryParameterCount = '{1}'", 1, parameterDefinitionEntry.ParameterSetName, psEntry.SetMandatoryParameterCount); | |
| } | |
| if (!psEntry.IsValueSet) | |
| { | |
| psEntry.IsValueSet = true; | |
| if (isBeginProcess) | |
| { | |
| psEntry.IsValueSetAtBeginProcess = true; | |
| } | |
| } | |
| nameset.Add(parameterDefinitionEntry.ParameterSetName); | |
| } | |
| this.parametersetNamesList = nameset; | |
| if (isBeginProcess) | |
| { | |
| this.parametersetNamesListAtBeginProcess = nameset; | |
| } | |
| } | |
| else | |
| { | |
| List<string> nameset = new(); | |
| foreach (ParameterDefinitionEntry entry in this.parameterDefinitionEntries[parameterName]) | |
| { | |
| if (this.parametersetNamesList.Contains(entry.ParameterSetName)) | |
| { | |
| nameset.Add(entry.ParameterSetName); | |
| if (entry.IsMandatory) | |
| { | |
| ParameterSetEntry psEntry = this.parameterSetEntries[entry.ParameterSetName]; | |
| psEntry.SetMandatoryParameterCount++; | |
| if (isBeginProcess) | |
| { | |
| psEntry.SetMandatoryParameterCountAtBeginProcess++; | |
| } | |
| DebugHelper.WriteLogEx("parameterset name = '{0}'; SetMandatoryParameterCount = '{1}'", | |
| 1, | |
| entry.ParameterSetName, | |
| psEntry.SetMandatoryParameterCount); | |
| } | |
| } | |
| } | |
| if (nameset.Count == 0) | |
| { | |
| throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName); | |
| } | |
| else | |
| { | |
| this.parametersetNamesList = nameset; | |
| if (isBeginProcess) | |
| { | |
| this.parametersetNamesListAtBeginProcess = nameset; | |
| } | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Get the parameter set name based on current binding results. | |
| /// </summary> | |
| /// <returns></returns> | |
| internal string GetParameterSet() | |
| { | |
| DebugHelper.WriteLogEx(); | |
| string boundParameterSetName = null; | |
| string defaultParameterSetName = null; | |
| List<string> noMandatoryParameterSet = new(); | |
| // Looking for parameter set which have mandatory parameters | |
| foreach (string parameterSetName in this.parameterSetEntries.Keys) | |
| { | |
| ParameterSetEntry entry = this.parameterSetEntries[parameterSetName]; | |
| DebugHelper.WriteLogEx( | |
| "parameterset name = {0}, {1}/{2} mandatory parameters.", | |
| 1, | |
| parameterSetName, | |
| entry.SetMandatoryParameterCount, | |
| entry.MandatoryParameterCount); | |
| // Ignore the parameter set which has no mandatory parameter firstly | |
| if (entry.MandatoryParameterCount == 0) | |
| { | |
| if (entry.IsDefaultParameterSet) | |
| { | |
| defaultParameterSetName = parameterSetName; | |
| } | |
| if (entry.IsValueSet) | |
| { | |
| noMandatoryParameterSet.Add(parameterSetName); | |
| } | |
| continue; | |
| } | |
| if ((entry.SetMandatoryParameterCount == entry.MandatoryParameterCount) && | |
| this.parametersetNamesList.Contains(parameterSetName)) | |
| { | |
| if (boundParameterSetName != null) | |
| { | |
| throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName); | |
| } | |
| boundParameterSetName = parameterSetName; | |
| } | |
| } | |
| // Looking for parameter set which has no mandatory parameters | |
| if (boundParameterSetName == null) | |
| { | |
| // throw if there are > 1 parameter set | |
| if (noMandatoryParameterSet.Count > 1) | |
| { | |
| throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName); | |
| } | |
| else if (noMandatoryParameterSet.Count == 1) | |
| { | |
| boundParameterSetName = noMandatoryParameterSet[0]; | |
| } | |
| } | |
| // Looking for default parameter set | |
| boundParameterSetName ??= defaultParameterSetName; | |
| // throw if still can not find the parameter set name | |
| if (boundParameterSetName == null) | |
| { | |
| throw new PSArgumentException(CimCmdletStrings.UnableToResolveParameterSetName); | |
| } | |
| return boundParameterSetName; | |
| } | |
| /// <summary> | |
| /// Deep clone the parameter entries to member variable. | |
| /// </summary> | |
| private void CloneParameterEntries( | |
| Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters, | |
| Dictionary<string, ParameterSetEntry> sets) | |
| { | |
| this.parameterDefinitionEntries = parameters; | |
| this.parameterSetEntries = new Dictionary<string, ParameterSetEntry>(); | |
| foreach (KeyValuePair<string, ParameterSetEntry> parameterSet in sets) | |
| { | |
| this.parameterSetEntries.Add(parameterSet.Key, new ParameterSetEntry(parameterSet.Value)); | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Base command for all cim cmdlets. | |
| /// </summary> | |
| public class CimBaseCommand : Cmdlet, IDisposable | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// Check set parameters and set ParameterSetName | |
| /// </para> | |
| /// <para> | |
| /// Following are special types to be handled | |
| /// Microsoft.Management.Infrastructure.Options.PacketEncoding | |
| /// Microsoft.Management.Infrastructure.Options.ImpersonationType | |
| /// UInt32 | |
| /// Authentication.None (default value)? | |
| /// ProxyType.None | |
| /// </para> | |
| /// </summary> | |
| internal void CheckParameterSet() | |
| { | |
| if (this.parameterBinder != null) | |
| { | |
| try | |
| { | |
| this.ParameterSetName = this.parameterBinder.GetParameterSet(); | |
| } | |
| finally | |
| { | |
| this.parameterBinder.reset(); | |
| } | |
| } | |
| DebugHelper.WriteLog("current parameterset is: " + this.ParameterSetName, 4); | |
| } | |
| /// <summary> | |
| /// Redirect to parameterBinder to set one parameter. | |
| /// </summary> | |
| /// <param name="parameterName"></param> | |
| internal void SetParameter(object value, string parameterName) | |
| { | |
| // Ignore the null value being set, | |
| // Null value could be set by caller unintentionally, | |
| // or by powershell to reset the parameter to default value | |
| // before the next parameter binding, and ProcessRecord call | |
| if (value == null) | |
| { | |
| return; | |
| } | |
| this.parameterBinder?.SetParameter(parameterName, this.AtBeginProcess); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimBaseCommand"/> class. | |
| /// </summary> | |
| internal CimBaseCommand() | |
| { | |
| this.disposed = false; | |
| this.parameterBinder = null; | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimBaseCommand"/> class. | |
| /// </summary> | |
| internal CimBaseCommand(Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters, | |
| Dictionary<string, ParameterSetEntry> sets) | |
| { | |
| this.disposed = false; | |
| this.parameterBinder = new ParameterBinder(parameters, sets); | |
| } | |
| /// <summary> | |
| /// StopProcessing method. | |
| /// </summary> | |
| protected override void StopProcessing() | |
| { | |
| Dispose(); | |
| } | |
| /// <summary> | |
| /// IDisposable interface. | |
| /// </summary> | |
| private bool disposed; | |
| /// <summary> | |
| /// <para> | |
| /// Dispose() calls Dispose(true). | |
| /// Implement IDisposable. Do not make this method virtual. | |
| /// A derived class should not be able to override this method. | |
| /// </para> | |
| /// </summary> | |
| public void Dispose() | |
| { | |
| Dispose(true); | |
| // This object will be cleaned up by the Dispose method. | |
| // Therefore, you should call GC.SuppressFinalize to | |
| // take this object off the finalization queue | |
| // and prevent finalization code for this object | |
| // from executing a second time. | |
| GC.SuppressFinalize(this); | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Dispose(bool disposing) executes in two distinct scenarios. | |
| /// If disposing equals true, the method has been called directly | |
| /// or indirectly by a user's code. Managed and unmanaged resources | |
| /// can be disposed. | |
| /// If disposing equals false, the method has been called by the | |
| /// runtime from inside the finalizer and you should not reference | |
| /// other objects. Only unmanaged resources can be disposed. | |
| /// </para> | |
| /// </summary> | |
| /// <param name="disposing">Whether it is directly called.</param> | |
| protected void Dispose(bool disposing) | |
| { | |
| // Check to see if Dispose has already been called. | |
| if (!this.disposed) | |
| { | |
| // If disposing equals true, dispose all managed | |
| // and unmanaged resources. | |
| if (disposing) | |
| { | |
| DisposeInternal(); | |
| } | |
| // Call the appropriate methods to clean up | |
| // unmanaged resources here. | |
| // If disposing is false, | |
| // only the following code is executed. | |
| // Note disposing has been done. | |
| disposed = true; | |
| } | |
| } | |
| /// <summary> | |
| /// Clean up resources. | |
| /// </summary> | |
| protected virtual void DisposeInternal() | |
| { | |
| // Dispose managed resources. | |
| this.operation?.Dispose(); | |
| } | |
| /// <summary> | |
| /// Parameter binder used to resolve parameter set name. | |
| /// </summary> | |
| private readonly ParameterBinder parameterBinder; | |
| /// <summary> | |
| /// <para> | |
| /// Async operation handler | |
| /// </para> | |
| /// </summary> | |
| private CimAsyncOperation operation; | |
| /// <summary> | |
| /// Lock object. | |
| /// </summary> | |
| private readonly object myLock = new(); | |
| /// <summary> | |
| /// This flag is introduced to resolve the parameter set name | |
| /// during process record | |
| /// Whether at begin process time, false means in processrecord. | |
| /// </summary> | |
| private bool atBeginProcess = true; | |
| internal bool AtBeginProcess | |
| { | |
| get | |
| { | |
| return this.atBeginProcess; | |
| } | |
| set | |
| { | |
| this.atBeginProcess = value; | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Set <see cref="CimAsyncOperation"/> object, to which | |
| /// current cmdlet will delegate all operations. | |
| /// </para> | |
| /// </summary> | |
| internal CimAsyncOperation AsyncOperation | |
| { | |
| get | |
| { | |
| return this.operation; | |
| } | |
| set | |
| { | |
| lock (this.myLock) | |
| { | |
| Debug.Assert(this.operation == null, "Caller should verify that operation is null"); | |
| this.operation = value; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Get current ParameterSetName of the cmdlet | |
| /// </para> | |
| /// </summary> | |
| internal string ParameterSetName { get; private set; } | |
| /// <summary> | |
| /// Gets/Sets cmdlet operation wrapper object. | |
| /// </summary> | |
| internal virtual CmdletOperationBase CmdletOperation | |
| { | |
| get; | |
| set; | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Throw terminating error | |
| /// </para> | |
| /// </summary> | |
| [] | |
| internal void ThrowTerminatingError(Exception exception, string operation) | |
| { | |
| ErrorRecord errorRecord = new(exception, operation, ErrorCategory.InvalidOperation, this); | |
| this.CmdletOperation.ThrowTerminatingError(errorRecord); | |
| } | |
| /// <summary> | |
| /// Alias CN - computer name. | |
| /// </summary> | |
| internal const string AliasCN = "CN"; | |
| /// <summary> | |
| /// Alias ServerName - computer name. | |
| /// </summary> | |
| internal const string AliasServerName = "ServerName"; | |
| /// <summary> | |
| /// Alias OT - operation timeout. | |
| /// </summary> | |
| internal const string AliasOT = "OT"; | |
| /// <summary> | |
| /// Session set name. | |
| /// </summary> | |
| internal const string SessionSetName = "SessionSet"; | |
| /// <summary> | |
| /// Computer set name. | |
| /// </summary> | |
| internal const string ComputerSetName = "ComputerSet"; | |
| /// <summary> | |
| /// Class name computer set name. | |
| /// </summary> | |
| internal const string ClassNameComputerSet = "ClassNameComputerSet"; | |
| /// <summary> | |
| /// Resource Uri computer set name. | |
| /// </summary> | |
| internal const string ResourceUriComputerSet = "ResourceUriComputerSet"; | |
| /// <summary> | |
| /// <see cref="CimInstance"/> computer set name. | |
| /// </summary> | |
| internal const string CimInstanceComputerSet = "CimInstanceComputerSet"; | |
| /// <summary> | |
| /// Query computer set name. | |
| /// </summary> | |
| internal const string QueryComputerSet = "QueryComputerSet"; | |
| /// <summary> | |
| /// Class name session set name. | |
| /// </summary> | |
| internal const string ClassNameSessionSet = "ClassNameSessionSet"; | |
| /// <summary> | |
| /// Resource Uri session set name. | |
| /// </summary> | |
| internal const string ResourceUriSessionSet = "ResourceUriSessionSet"; | |
| /// <summary> | |
| /// <see cref="CimInstance"/> session set name. | |
| /// </summary> | |
| internal const string CimInstanceSessionSet = "CimInstanceSessionSet"; | |
| /// <summary> | |
| /// Query session set name. | |
| /// </summary> | |
| internal const string QuerySessionSet = "QuerySessionSet"; | |
| /// <summary> | |
| /// <see cref="CimClass"/> computer set name. | |
| /// </summary> | |
| internal const string CimClassComputerSet = "CimClassComputerSet"; | |
| /// <summary> | |
| /// <see cref="CimClass"/> session set name. | |
| /// </summary> | |
| internal const string CimClassSessionSet = "CimClassSessionSet"; | |
| internal const string ComputerNameSet = "ComputerNameSet"; | |
| internal const string SessionIdSet = "SessionIdSet"; | |
| internal const string InstanceIdSet = "InstanceIdSet"; | |
| internal const string NameSet = "NameSet"; | |
| internal const string CimSessionSet = "CimSessionSet"; | |
| internal const string WSManParameterSet = "WSManParameterSet"; | |
| internal const string DcomParameterSet = "DcomParameterSet"; | |
| internal const string ProtocolNameParameterSet = "ProtocolTypeSet"; | |
| internal const string QueryExpressionSessionSet = "QueryExpressionSessionSet"; | |
| internal const string QueryExpressionComputerSet = "QueryExpressionComputerSet"; | |
| /// <summary> | |
| /// Credential parameter set. | |
| /// </summary> | |
| internal const string CredentialParameterSet = "CredentialParameterSet"; | |
| /// <summary> | |
| /// Certificate parameter set. | |
| /// </summary> | |
| internal const string CertificateParameterSet = "CertificateParameterSet"; | |
| /// <summary> | |
| /// CimInstance parameter alias. | |
| /// </summary> | |
| internal const string AliasCimInstance = "CimInstance"; | |
| /// <summary> | |
| /// <para> | |
| /// Throw invalid AuthenticationType | |
| /// </para> | |
| /// </summary> | |
| /// <param name="operationName"></param> | |
| /// <param name="parameterName"></param> | |
| /// <param name="authentication"></param> | |
| internal void ThrowInvalidAuthenticationTypeError( | |
| string operationName, | |
| string parameterName, | |
| PasswordAuthenticationMechanism authentication) | |
| { | |
| string message = string.Format(CultureInfo.CurrentUICulture, CimCmdletStrings.InvalidAuthenticationTypeWithNullCredential, | |
| authentication, | |
| ImpersonatedAuthenticationMechanism.None, | |
| ImpersonatedAuthenticationMechanism.Negotiate, | |
| ImpersonatedAuthenticationMechanism.Kerberos, | |
| ImpersonatedAuthenticationMechanism.NtlmDomain); | |
| PSArgumentOutOfRangeException exception = new( | |
| parameterName, authentication, message); | |
| ThrowTerminatingError(exception, operationName); | |
| } | |
| /// <summary> | |
| /// Throw conflict parameter error. | |
| /// </summary> | |
| /// <param name="operationName"></param> | |
| /// <param name="parameterName"></param> | |
| /// <param name="conflictParameterName"></param> | |
| internal void ThrowConflictParameterWasSet( | |
| string operationName, | |
| string parameterName, | |
| string conflictParameterName) | |
| { | |
| string message = string.Format(CultureInfo.CurrentUICulture, | |
| CimCmdletStrings.ConflictParameterWasSet, | |
| parameterName, conflictParameterName); | |
| PSArgumentException exception = new(message, parameterName); | |
| ThrowTerminatingError(exception, operationName); | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Throw not found property error | |
| /// </para> | |
| /// </summary> | |
| internal void ThrowInvalidProperty( | |
| IEnumerable<string> propertiesList, | |
| string className, | |
| string parameterName, | |
| string operationName, | |
| IDictionary actualValue) | |
| { | |
| StringBuilder propList = new(); | |
| foreach (string property in propertiesList) | |
| { | |
| if (propList.Length > 0) | |
| { | |
| propList.Append(','); | |
| } | |
| propList.Append(property); | |
| } | |
| string message = string.Format(CultureInfo.CurrentUICulture, CimCmdletStrings.CouldNotFindPropertyFromGivenClass, | |
| className, propList); | |
| PSArgumentOutOfRangeException exception = new( | |
| parameterName, actualValue, message); | |
| ThrowTerminatingError(exception, operationName); | |
| } | |
| /// <summary> | |
| /// Create credentials based on given authentication type and PSCredential. | |
| /// </summary> | |
| /// <param name="psCredentials"></param> | |
| /// <param name="passwordAuthentication"></param> | |
| /// <returns></returns> | |
| internal CimCredential CreateCimCredentials(PSCredential psCredentials, | |
| PasswordAuthenticationMechanism passwordAuthentication, | |
| string operationName, | |
| string parameterName) | |
| { | |
| DebugHelper.WriteLogEx("PSCredential:{0}; PasswordAuthenticationMechanism:{1}; operationName:{2}; parameterName:{3}.", 0, psCredentials, passwordAuthentication, operationName, parameterName); | |
| CimCredential credentials = null; | |
| if (psCredentials != null) | |
| { | |
| NetworkCredential networkCredential = psCredentials.GetNetworkCredential(); | |
| DebugHelper.WriteLog("Domain:{0}; UserName:{1}; Password:{2}.", 1, networkCredential.Domain, networkCredential.UserName, psCredentials.Password); | |
| credentials = new CimCredential(passwordAuthentication, networkCredential.Domain, networkCredential.UserName, psCredentials.Password); | |
| } | |
| else | |
| { | |
| ImpersonatedAuthenticationMechanism impersonatedAuthentication; | |
| switch (passwordAuthentication) | |
| { | |
| case PasswordAuthenticationMechanism.Default: | |
| impersonatedAuthentication = ImpersonatedAuthenticationMechanism.None; | |
| break; | |
| case PasswordAuthenticationMechanism.Negotiate: | |
| impersonatedAuthentication = ImpersonatedAuthenticationMechanism.Negotiate; | |
| break; | |
| case PasswordAuthenticationMechanism.Kerberos: | |
| impersonatedAuthentication = ImpersonatedAuthenticationMechanism.Kerberos; | |
| break; | |
| case PasswordAuthenticationMechanism.NtlmDomain: | |
| impersonatedAuthentication = ImpersonatedAuthenticationMechanism.NtlmDomain; | |
| break; | |
| default: | |
| ThrowInvalidAuthenticationTypeError(operationName, parameterName, passwordAuthentication); | |
| return null; | |
| } | |
| credentials = new CimCredential(impersonatedAuthentication); | |
| } | |
| DebugHelper.WriteLogEx("return credential {0}", 1, credentials); | |
| return credentials; | |
| } | |
| } | |
| } | |