Windows-powershell / PowerShell-master /src /Microsoft.Management.Infrastructure.CimCmdlets /CimIndicationWatcher.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.ComponentModel; | |
| using System.Management.Automation; | |
| namespace Microsoft.Management.Infrastructure.CimCmdlets | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// Abstract Cimindication event args, which containing all elements related to | |
| /// an Cimindication. | |
| /// </para> | |
| /// </summary> | |
| public abstract class CimIndicationEventArgs : EventArgs | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// Returns an Object value for an operation context | |
| /// </para> | |
| /// </summary> | |
| public object Context | |
| { | |
| get | |
| { | |
| return context; | |
| } | |
| } | |
| internal object context; | |
| } | |
| /// <summary> | |
| /// Cimindication exception event args, which containing occurred exception. | |
| /// </summary> | |
| public class CimIndicationEventExceptionEventArgs : CimIndicationEventArgs | |
| { | |
| /// <summary> | |
| /// <para> | |
| /// Returns an exception | |
| /// </para> | |
| /// </summary> | |
| public Exception Exception { get; } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimIndicationEventExceptionEventArgs"/> class. | |
| /// </summary> | |
| /// <param name="result"></param> | |
| public CimIndicationEventExceptionEventArgs(Exception theException) | |
| { | |
| context = null; | |
| this.Exception = theException; | |
| } | |
| } | |
| /// <summary> | |
| /// Cimindication event args, which containing all elements related to | |
| /// an Cimindication. | |
| /// </summary> | |
| public class CimIndicationEventInstanceEventArgs : CimIndicationEventArgs | |
| { | |
| /// <summary> | |
| /// Get ciminstance of the indication object. | |
| /// </summary> | |
| public CimInstance NewEvent | |
| { | |
| get | |
| { | |
| return result?.Instance; | |
| } | |
| } | |
| /// <summary> | |
| /// Get MachineId of the indication object. | |
| /// </summary> | |
| public string MachineId | |
| { | |
| get | |
| { | |
| return result?.MachineId; | |
| } | |
| } | |
| /// <summary> | |
| /// Get BookMark of the indication object. | |
| /// </summary> | |
| public string Bookmark | |
| { | |
| get | |
| { | |
| return result?.Bookmark; | |
| } | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimIndicationEventInstanceEventArgs"/> class. | |
| /// </summary> | |
| /// <param name="result"></param> | |
| public CimIndicationEventInstanceEventArgs(CimSubscriptionResult result) | |
| { | |
| context = null; | |
| this.result = result; | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// subscription result | |
| /// </para> | |
| /// </summary> | |
| private readonly CimSubscriptionResult result; | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// A public class used to start/stop the subscription to specific indication source, | |
| /// and listen to the incoming indications, event <see cref="CimIndicationArrived"/> | |
| /// will be raised for each cimindication. | |
| /// </para> | |
| /// </summary> | |
| public class CimIndicationWatcher | |
| { | |
| /// <summary> | |
| /// Status of <see cref="CimIndicationWatcher"/> object. | |
| /// </summary> | |
| internal enum Status | |
| { | |
| Default, | |
| Started, | |
| Stopped | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// CimIndication arrived event | |
| /// </para> | |
| /// </summary> | |
| public event EventHandler<CimIndicationEventArgs> CimIndicationArrived; | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimIndicationWatcher"/> class. | |
| /// </summary> | |
| /// <param name="computerName"></param> | |
| /// <param name="nameSpace"></param> | |
| /// <param name="queryExpression"></param> | |
| /// <param name="operationTimeout"></param> | |
| public CimIndicationWatcher( | |
| string computerName, | |
| string theNamespace, | |
| string queryDialect, | |
| string queryExpression, | |
| uint operationTimeout) | |
| { | |
| ValidationHelper.ValidateNoNullorWhiteSpaceArgument(queryExpression, queryExpressionParameterName); | |
| computerName = ConstValue.GetComputerName(computerName); | |
| theNamespace = ConstValue.GetNamespace(theNamespace); | |
| Initialize(computerName, null, theNamespace, queryDialect, queryExpression, operationTimeout); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="CimIndicationWatcher"/> class. | |
| /// </summary> | |
| /// <param name="cimSession"></param> | |
| /// <param name="nameSpace"></param> | |
| /// <param name="queryExpression"></param> | |
| /// <param name="operationTimeout"></param> | |
| public CimIndicationWatcher( | |
| CimSession cimSession, | |
| string theNamespace, | |
| string queryDialect, | |
| string queryExpression, | |
| uint operationTimeout) | |
| { | |
| ValidationHelper.ValidateNoNullorWhiteSpaceArgument(queryExpression, queryExpressionParameterName); | |
| ValidationHelper.ValidateNoNullArgument(cimSession, cimSessionParameterName); | |
| theNamespace = ConstValue.GetNamespace(theNamespace); | |
| Initialize(null, cimSession, theNamespace, queryDialect, queryExpression, operationTimeout); | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Initialize | |
| /// </para> | |
| /// </summary> | |
| private void Initialize( | |
| string theComputerName, | |
| CimSession theCimSession, | |
| string theNameSpace, | |
| string theQueryDialect, | |
| string theQueryExpression, | |
| uint theOperationTimeout) | |
| { | |
| enableRaisingEvents = false; | |
| status = Status.Default; | |
| myLock = new object(); | |
| cimRegisterCimIndication = new CimRegisterCimIndication(); | |
| cimRegisterCimIndication.OnNewSubscriptionResult += NewSubscriptionResultHandler; | |
| this.cimSession = theCimSession; | |
| this.nameSpace = theNameSpace; | |
| this.queryDialect = ConstValue.GetQueryDialectWithDefault(theQueryDialect); | |
| this.queryExpression = theQueryExpression; | |
| this.operationTimeout = theOperationTimeout; | |
| this.computerName = theComputerName; | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Handler of new subscription result | |
| /// </para> | |
| /// </summary> | |
| /// <param name="src"></param> | |
| /// <param name="args"></param> | |
| private void NewSubscriptionResultHandler(object src, CimSubscriptionEventArgs args) | |
| { | |
| EventHandler<CimIndicationEventArgs> temp = this.CimIndicationArrived; | |
| if (temp != null) | |
| { | |
| // raise the event | |
| if (args is CimSubscriptionResultEventArgs resultArgs) | |
| temp(this, new CimIndicationEventInstanceEventArgs(resultArgs.Result)); | |
| else if (args is CimSubscriptionExceptionEventArgs exceptionArgs) | |
| { | |
| temp(this, new CimIndicationEventExceptionEventArgs(exceptionArgs.Exception)); | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Will be called by admin\monad\src\eengine\EventManager.cs: | |
| /// PSEventManager::ProcessNewSubscriber to start to listen to the Cim Indication. | |
| /// </para> | |
| /// <para> | |
| /// If set EnableRaisingEvents to false, which will be ignored | |
| /// </para> | |
| /// </summary> | |
| [] | |
| public bool EnableRaisingEvents | |
| { | |
| get | |
| { | |
| return enableRaisingEvents; | |
| } | |
| set | |
| { | |
| DebugHelper.WriteLogEx(); | |
| if (value && !enableRaisingEvents) | |
| { | |
| enableRaisingEvents = value; | |
| Start(); | |
| } | |
| } | |
| } | |
| private bool enableRaisingEvents; | |
| /// <summary> | |
| /// <para> | |
| /// Start the subscription | |
| /// </para> | |
| /// </summary> | |
| public void Start() | |
| { | |
| DebugHelper.WriteLogEx(); | |
| lock (myLock) | |
| { | |
| if (status == Status.Default) | |
| { | |
| if (this.cimSession == null) | |
| { | |
| cimRegisterCimIndication.RegisterCimIndication( | |
| this.computerName, | |
| this.nameSpace, | |
| this.queryDialect, | |
| this.queryExpression, | |
| this.operationTimeout); | |
| } | |
| else | |
| { | |
| cimRegisterCimIndication.RegisterCimIndication( | |
| this.cimSession, | |
| this.nameSpace, | |
| this.queryDialect, | |
| this.queryExpression, | |
| this.operationTimeout); | |
| } | |
| status = Status.Started; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// Unsubscribe the subscription | |
| /// </para> | |
| /// </summary> | |
| public void Stop() | |
| { | |
| DebugHelper.WriteLogEx("Status = {0}", 0, this.status); | |
| lock (this.myLock) | |
| { | |
| if (status == Status.Started) | |
| { | |
| if (this.cimRegisterCimIndication != null) | |
| { | |
| DebugHelper.WriteLog("Dispose CimRegisterCimIndication object", 4); | |
| this.cimRegisterCimIndication.Dispose(); | |
| } | |
| status = Status.Stopped; | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Set the cmdlet object to throw ThrowTerminatingError | |
| /// in case there is a subscription failure. | |
| /// </summary> | |
| /// <param name="cmdlet"></param> | |
| internal void SetCmdlet(Cmdlet cmdlet) | |
| { | |
| if (this.cimRegisterCimIndication != null) | |
| { | |
| this.cimRegisterCimIndication.Cmdlet = cmdlet; | |
| } | |
| } | |
| /// <summary> | |
| /// <para> | |
| /// CimRegisterCimIndication object | |
| /// </para> | |
| /// </summary> | |
| private CimRegisterCimIndication cimRegisterCimIndication; | |
| /// <summary> | |
| /// The status of <see cref="CimIndicationWatcher"/> object. | |
| /// </summary> | |
| private Status status; | |
| /// <summary> | |
| /// Lock started field. | |
| /// </summary> | |
| private object myLock; | |
| /// <summary> | |
| /// CimSession parameter name. | |
| /// </summary> | |
| private const string cimSessionParameterName = "cimSession"; | |
| /// <summary> | |
| /// QueryExpression parameter name. | |
| /// </summary> | |
| private const string queryExpressionParameterName = "queryExpression"; | |
| /// <summary> | |
| /// <para> | |
| /// parameters used to start the subscription | |
| /// </para> | |
| /// </summary> | |
| private string computerName; | |
| private CimSession cimSession; | |
| private string nameSpace; | |
| private string queryDialect; | |
| private string queryExpression; | |
| private uint operationTimeout; | |
| } | |
| } | |