예제 #1
0
        public UnSubscribeTopicCommand(string topicName, string recepientId, SubscriptionType pubSubType)
        {
            name = "UnSubscribeTopicCommand";

            _unSubscribeTopicCommand             = new Common.Protobuf.UnSubscribeTopicCommand();
            _unSubscribeTopicCommand.topicName   = topicName;
            _unSubscribeTopicCommand.recepientId = recepientId;
            _unSubscribeTopicCommand.pubSubType  = (int)pubSubType;
        }
예제 #2
0
        public UnSubscribeTopicCommand(string topicName, string recepientId, SubscriptionType pubSubType, SubscriptionPolicyType subscriptionPolicy, bool isDispose)
        {
            name = "UnSubscribeTopicCommand";

            _unSubscribeTopicCommand                    = new Common.Protobuf.UnSubscribeTopicCommand();
            _unSubscribeTopicCommand.topicName          = topicName;
            _unSubscribeTopicCommand.recepientId        = recepientId;
            _unSubscribeTopicCommand.pubSubType         = (int)pubSubType;
            _unSubscribeTopicCommand.subscriptionPolicy = (int)subscriptionPolicy;
            _unSubscribeTopicCommand.isDispose          = isDispose;
        }
예제 #3
0
        public override void ExecuteCommand(ClientManager clientManager, Common.Protobuf.Command command)
        {
            System.Diagnostics.Stopwatch stopWatch = new System.Diagnostics.Stopwatch();
            stopWatch.Start();
            int overload = 1;

            bool   unSubscribed     = false;
            string exceptionMessage = null;

            try
            {
                NCache nCache           = clientManager.CmdExecuter as NCache;
                var    operationContext = new OperationContext(OperationContextFieldName.OperationType, OperationContextOperationType.CacheOperation);
                CommandsUtil.PopulateClientIdInContext(ref operationContext, clientManager.ClientAddress);
                if (command.commandVersion < 1)
                {
                    operationContext.Add(OperationContextFieldName.ClientLastViewId, forcedViewId);
                }
                else
                {
                    operationContext.Add(OperationContextFieldName.ClientLastViewId, command.clientLastViewId.ToString(CultureInfo.InvariantCulture));
                }
                if (nCache != null)
                {
                    _command = command.unSubscribeTopicCommand;

                    SubscriptionInfo subInfo = new SubscriptionInfo()
                    {
                        SubscriptionId = _command.recepientId, ClientId = clientManager.ClientID, Type = (SubscriptionType)_command.pubSubType, SubPolicyType = (SubscriptionPolicyType)_command.subscriptionPolicy
                    };
                    var topicOperation = new SubscriptionOperation(_command.topicName, TopicOperationType.UnSubscribe, subInfo, _command.isDispose);

                    unSubscribed = nCache.Cache.TopicOpertion(topicOperation, operationContext);
                    stopWatch.Stop();
                    //Common.Protobuf.Response response = new Common.Protobuf.Response();
                    Common.Protobuf.UnSubscribeTopicResponse unSubscribeTopicResponse = new Common.Protobuf.UnSubscribeTopicResponse();

                    unSubscribeTopicResponse.success = unSubscribed;
                    if (clientManager.ClientVersion >= 5000)
                    {
                        Common.Util.ResponseHelper.SetResponse(unSubscribeTopicResponse, command.requestID, command.commandID);
                        _serializedResponsePackets.Add(Common.Util.ResponseHelper.SerializeResponse(unSubscribeTopicResponse, Common.Protobuf.Response.Type.UNSUBSCRIBE_TOPIC));
                    }
                    else
                    {
                        //PROTOBUF:RESPONSE
                        Common.Protobuf.Response response = new Common.Protobuf.Response();
                        response.unSubscribeTopicResponse = unSubscribeTopicResponse;
                        Common.Util.ResponseHelper.SetResponse(response, command.requestID, command.commandID, Common.Protobuf.Response.Type.UNSUBSCRIBE_TOPIC);
                        _serializedResponsePackets.Add(Alachisoft.NCache.Common.Util.ResponseHelper.SerializeResponse(response));
                    }
                }
            }
            catch (Exception exc)
            {
                exceptionMessage = exc.ToString();
                _serializedResponsePackets.Add(ResponseHelper.SerializeExceptionResponseWithType(exc, command.requestID, command.commandID, clientManager.ClientVersion));
            }
            finally
            {
                TimeSpan executionTime = stopWatch.Elapsed;
                try
                {
                    if (Alachisoft.NCache.Management.APILogging.APILogManager.APILogManger != null && Alachisoft.NCache.Management.APILogging.APILogManager.EnableLogging)
                    {
                        APILogItemBuilder log = new APILogItemBuilder(MethodsName.UnSubscribe);
                        log.GenerateSubscribeToTopicAPILogItem(_command.topicName, (SubscriptionType)_command.pubSubType, executionTime, clientManager.ClientID, clientManager.ClientIP, overload, unSubscribed, exceptionMessage, APIClassNames.TOPICSUBSCRIPTION);
                    }
                }
                catch
                {
                }
            }
        }