| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using Aitex.Core.WCF;using Aitex.Core.RT.Event;using System.ServiceModel;using Aitex.Core.RT.Log;using Aitex.Core.Util;using Aitex.Core.Utilities;using Aitex.Core.WCF.Interface;using MECF.Framework.Common.Properties;namespace Aitex.Core.WCF{    public class EventClient : Singleton<EventClient>    {        public event Action<EventItem> OnEvent;        public event Action OnDisconnectedWithRT;        public event Action<bool> LockAndUnlockEvent;        public bool InProcess { get; set; }        private IEventService _service;        public IEventService Service        {            get            {                if (_service == null)                {                    if (InProcess)                    {                        _service = Singleton<EventManager>.Instance.Service;                    }                    else                    {                        _service = new EventServiceClient(new EventServiceCallback());                    }                    _service.OnEvent += _service_OnEvent;                    _service.OnLockAndUnlockEvent += _service_OnLockAndUnlockEvent;                }                return _service;            }        }        private void _service_OnLockAndUnlockEvent(bool obj)        {            if (LockAndUnlockEvent != null)            {                LockAndUnlockEvent(obj);            }        }        public bool IsConnectedWithRT        {            get { return _retryConnectRT.Result; }        }        public Guid ClientGuid        {            get { return _retryConnectRT.ClientGuid; }        }        Retry _retryConnectRT = new Retry();        FixSizeQueue<EventItem> _queue = new FixSizeQueue<EventItem>(500);        PeriodicJob _fireJob;        Guid _guid = Guid.NewGuid();        private R_TRIG _trigDisconnect = new R_TRIG();        private DeviceTimer _timer = new DeviceTimer();        public bool ConnectRT()        {            _retryConnectRT.Result = InProcess || Service.Register(_guid);            _retryConnectRT.ClientGuid = _guid;            return _retryConnectRT.IsSucceeded;        }        public void Start()        {            if (_fireJob != null)                return;            _fireJob = new PeriodicJob(500, this.FireEvent, "UIEvent", true);        }        public void Stop()        {            if (!InProcess)            {                if (_retryConnectRT.IsSucceeded)                {                    Service.UnRegister(_guid);                }            }            if (_fireJob != null)            {                _fireJob.Stop();            }        }        bool FireEvent()        {            _retryConnectRT.Result = InProcess || Service.Register(_guid);            if (_retryConnectRT.IsSucceeded)            {                _service_OnEvent(new EventItem()                {                    OccuringTime = DateTime.Now,                    Description = "Connected with RT",                    Id = 0,                    Level = EventLevel.Information,                    Type = EventType.EventUI_Notify,                });            }            if (_retryConnectRT.IsErrored)            {                _service_OnEvent(new EventItem()                {                    OccuringTime = DateTime.Now,                    Description = "Disconnect from RT",                    Id = 0,                    Level = EventLevel.Information,                    Type = EventType.EventUI_Notify,                });                _timer.Start(0);            }            if (_timer.GetElapseTime() > 2000 && !_retryConnectRT.Result && OnDisconnectedWithRT!=null)            {                OnDisconnectedWithRT();            }            if (OnEvent != null)            {                EventItem ev;                while (_queue.TryDequeue(out ev))                {                    //if (ev.Description.Equals("PM1 Process  Abort") || ev.Description.Equals("PM2 Process  Abort") || ev.Description.Equals("PM3 Process  Abort"))                    //{                    //    Console.WriteLine("EventServiceClient(QueeeD):" + ev.Description);                    //}                    OnEvent(ev);                }            }            return true;        }        private void _service_OnEvent(EventItem ev)        {            _queue.Enqueue(ev);            //if (ev.Description.Equals("PM1 Process  Abort") || ev.Description.Equals("PM2 Process  Abort") || ev.Description.Equals("PM3 Process  Abort"))            //{            //    Console.WriteLine("EventServiceClient(QueeeE):" + ev.Description);            //}        }    }    public class EventServiceClient : DuplexChannelServiceClientWrapper<IEventService>, IEventService    {        public event Action<EventItem> OnEvent;        public event Action<bool> OnLockAndUnlockEvent;        public EventServiceClient(EventServiceCallback callbackInstance)            : base(new InstanceContext(callbackInstance), "Client_IEventService", "EventService")        {            callbackInstance.FireEvent += new Action<EventItem>(callbackInstance_FireEvent);            callbackInstance.OnLockAndUnlockEvent += CallbackInstance_OnLockAndUnlockEvent;        }        void callbackInstance_FireEvent(EventItem obj)        {            if (OnEvent != null)            {                OnEvent(obj);            }        }     void CallbackInstance_OnLockAndUnlockEvent(bool isLock)    {        if (OnLockAndUnlockEvent != null)            {                OnLockAndUnlockEvent(isLock);            }        }        public bool Register(Guid id)        {            bool ret = false;            Invoke(svc => { ret = svc.Register(id); });            return ret;        }        public void UnRegister(Guid id)        {            Invoke(svc => { svc.UnRegister(id); });        }        public int Heartbeat()        {            int result = -1;            Invoke(svc => { result = svc.Heartbeat(); });            return result;        }    }}
 |