Windows-powershell / PowerShell-master /src /Microsoft.Management.Infrastructure.CimCmdlets /RegisterCimIndicationCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.Management.Automation; | |
| using Microsoft.PowerShell.Commands; | |
| namespace Microsoft.Management.Infrastructure.CimCmdlets | |
| { | |
| /// <summary> | |
| /// Enables the user to subscribe to indications using Filter Expression or | |
| /// Query Expression. | |
| /// -SourceIdentifier is a name given to the subscription | |
| /// The Cmdlet should return a PS EventSubscription object that can be used to | |
| /// cancel the subscription | |
| /// Should we have the second parameter set with a -Query? | |
| /// </summary> | |
| [] | |
| [] | |
| public class RegisterCimIndicationCommand : ObjectEventRegistrationBase | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// The following is the definition of the input parameter "Namespace". | |
| /// Specifies the NameSpace under which to look for the specified class name. | |
| /// </para> | |
| /// <para> | |
| /// Default value is root\cimv2 | |
| /// </para> | |
| /// </summary> | |
| [] | |
| public string Namespace { get; set; } | |
| /// <summary> | |
| /// The following is the definition of the input parameter "ClassName". | |
| /// Specifies the Class Name to register the indication on. | |
| /// </summary> | |
| [ | |
| ] | |
| [ | |
| ] | |
| public string ClassName | |
| { | |
| get | |
| { | |
| return className; | |
| } | |
| set | |
| { | |
| className = value; | |
| this.SetParameter(value, nameClassName); | |
| } | |
| } | |
| private string className; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "Query". | |
| /// The Query Expression to pass. | |
| /// </summary> | |
| [ | |
| ] | |
| [ | |
| ] | |
| public string Query | |
| { | |
| get | |
| { | |
| return query; | |
| } | |
| set | |
| { | |
| query = value; | |
| this.SetParameter(value, nameQuery); | |
| } | |
| } | |
| private string query; | |
| /// <summary> | |
| /// <para> | |
| /// The following is the definition of the input parameter "QueryDialect". | |
| /// Specifies the dialect used by the query Engine that interprets the Query | |
| /// string. | |
| /// </para> | |
| /// </summary> | |
| [] | |
| [] | |
| public string QueryDialect | |
| { | |
| get | |
| { | |
| return queryDialect; | |
| } | |
| set | |
| { | |
| queryDialect = value; | |
| this.SetParameter(value, nameQueryDialect); | |
| } | |
| } | |
| private string queryDialect; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "OperationTimeoutSec". | |
| /// Enables the user to specify the operation timeout in Seconds. This value | |
| /// overwrites the value specified by the CimSession Operation timeout. | |
| /// </summary> | |
| [] | |
| [] | |
| public uint OperationTimeoutSec { get; set; } | |
| /// <summary> | |
| /// The following is the definition of the input parameter "Session". | |
| /// Uses a CimSession context. | |
| /// </summary> | |
| [ | |
| ] | |
| [ | |
| ] | |
| public CimSession CimSession | |
| { | |
| get | |
| { | |
| return cimSession; | |
| } | |
| set | |
| { | |
| cimSession = value; | |
| this.SetParameter(value, nameCimSession); | |
| } | |
| } | |
| private CimSession cimSession; | |
| /// <summary> | |
| /// The following is the definition of the input parameter "ComputerName". | |
| /// Specifies the computer on which the commands associated with this session | |
| /// will run. The default value is LocalHost. | |
| /// </summary> | |
| [] | |
| [] | |
| [] | |
| public string ComputerName | |
| { | |
| get | |
| { | |
| return computername; | |
| } | |
| set | |
| { | |
| computername = value; | |
| this.SetParameter(value, nameComputerName); | |
| } | |
| } | |
| private string computername; | |
| /// <summary> | |
| /// Returns the object that generates events to be monitored. | |
| /// </summary> | |
| protected override object GetSourceObject() | |
| { | |
| CimIndicationWatcher watcher = null; | |
| string parameterSetName = null; | |
| try | |
| { | |
| parameterSetName = this.parameterBinder.GetParameterSet(); | |
| } | |
| finally | |
| { | |
| this.parameterBinder.reset(); | |
| } | |
| string tempQueryExpression = string.Empty; | |
| switch (parameterSetName) | |
| { | |
| case CimBaseCommand.QueryExpressionSessionSet: | |
| case CimBaseCommand.QueryExpressionComputerSet: | |
| tempQueryExpression = this.Query; | |
| break; | |
| case CimBaseCommand.ClassNameSessionSet: | |
| case CimBaseCommand.ClassNameComputerSet: | |
| // validate the classname | |
| this.CheckArgument(); | |
| tempQueryExpression = string.Create(CultureInfo.CurrentCulture, $"Select * from {this.ClassName}"); | |
| break; | |
| } | |
| switch (parameterSetName) | |
| { | |
| case CimBaseCommand.QueryExpressionSessionSet: | |
| case CimBaseCommand.ClassNameSessionSet: | |
| { | |
| watcher = new CimIndicationWatcher(this.CimSession, this.Namespace, this.QueryDialect, tempQueryExpression, this.OperationTimeoutSec); | |
| } | |
| break; | |
| case CimBaseCommand.QueryExpressionComputerSet: | |
| case CimBaseCommand.ClassNameComputerSet: | |
| { | |
| watcher = new CimIndicationWatcher(this.ComputerName, this.Namespace, this.QueryDialect, tempQueryExpression, this.OperationTimeoutSec); | |
| } | |
| break; | |
| } | |
| watcher?.SetCmdlet(this); | |
| return watcher; | |
| } | |
| /// <summary> | |
| /// Returns the event name to be monitored on the input object. | |
| /// </summary> | |
| protected override string GetSourceObjectEventName() | |
| { | |
| return "CimIndicationArrived"; | |
| } | |
| /// <summary> | |
| /// EndProcessing method. | |
| /// </summary> | |
| protected override void EndProcessing() | |
| { | |
| DebugHelper.WriteLogEx(); | |
| base.EndProcessing(); | |
| // Register for the "Unsubscribed" event so that we can stop the | |
| // Cimindication event watcher. | |
| PSEventSubscriber newSubscriber = NewSubscriber; | |
| if (newSubscriber != null) | |
| { | |
| DebugHelper.WriteLog("RegisterCimIndicationCommand::EndProcessing subscribe to Unsubscribed event", 4); | |
| newSubscriber.Unsubscribed += newSubscriber_Unsubscribed; | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Handler to handle unsubscribe event | |
| /// </para> | |
| /// </summary> | |
| /// <param name="sender"></param> | |
| /// <param name="e"></param> | |
| private static void newSubscriber_Unsubscribed( | |
| object sender, PSEventUnsubscribedEventArgs e) | |
| { | |
| DebugHelper.WriteLogEx(); | |
| CimIndicationWatcher watcher = sender as CimIndicationWatcher; | |
| watcher?.Stop(); | |
| } | |
| /// <summary> | |
| /// Check argument value. | |
| /// </summary> | |
| private void CheckArgument() | |
| { | |
| this.className = ValidationHelper.ValidateArgumentIsValidName(nameClassName, this.className); | |
| } | |
| /// <summary> | |
| /// Parameter binder used to resolve parameter set name. | |
| /// </summary> | |
| private readonly ParameterBinder parameterBinder = new( | |
| parameters, parameterSets); | |
| /// <summary> | |
| /// Set the parameter. | |
| /// </summary> | |
| /// <param name="parameterName"></param> | |
| private void SetParameter(object value, string parameterName) | |
| { | |
| if (value == null) | |
| { | |
| return; | |
| } | |
| this.parameterBinder.SetParameter(parameterName, true); | |
| } | |
| internal const string nameClassName = "ClassName"; | |
| internal const string nameQuery = "Query"; | |
| internal const string nameQueryDialect = "QueryDialect"; | |
| internal const string nameCimSession = "CimSession"; | |
| internal const string nameComputerName = "ComputerName"; | |
| /// <summary> | |
| /// Static parameter definition entries. | |
| /// </summary> | |
| private static readonly Dictionary<string, HashSet<ParameterDefinitionEntry>> parameters = new() | |
| { | |
| { | |
| nameClassName, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.ClassNameSessionSet, true), | |
| new ParameterDefinitionEntry(CimBaseCommand.ClassNameComputerSet, true), | |
| } | |
| }, | |
| { | |
| nameQuery, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionSessionSet, true), | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionComputerSet, true), | |
| } | |
| }, | |
| { | |
| nameQueryDialect, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionSessionSet, false), | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionComputerSet, false), | |
| } | |
| }, | |
| { | |
| nameCimSession, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionSessionSet, true), | |
| new ParameterDefinitionEntry(CimBaseCommand.ClassNameSessionSet, true), | |
| } | |
| }, | |
| { | |
| nameComputerName, new HashSet<ParameterDefinitionEntry> { | |
| new ParameterDefinitionEntry(CimBaseCommand.QueryExpressionComputerSet, false), | |
| new ParameterDefinitionEntry(CimBaseCommand.ClassNameComputerSet, false), | |
| } | |
| }, | |
| }; | |
| /// <summary> | |
| /// Static parameter set entries. | |
| /// </summary> | |
| private static readonly Dictionary<string, ParameterSetEntry> parameterSets = new() | |
| { | |
| { CimBaseCommand.QueryExpressionSessionSet, new ParameterSetEntry(2) }, | |
| { CimBaseCommand.QueryExpressionComputerSet, new ParameterSetEntry(1) }, | |
| { CimBaseCommand.ClassNameSessionSet, new ParameterSetEntry(2) }, | |
| { CimBaseCommand.ClassNameComputerSet, new ParameterSetEntry(1, true) }, | |
| }; | |
| } | |
| } | |