123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519 |
-
- using System;
- using System.Collections.ObjectModel;
- using System.Collections.Generic;
- using Wayne.Lib;
- using Wayne.ForecourtControl.Fusion;
- namespace Wayne.ForecourtControl.OptBridge.Fusion
- {
- public enum OPTManagedBy
- {
- SINP = 1,
- Fusion = 2
- }
- internal class FUSIONOptBridge : IOptBridge, IConnectable, IIdentifiableEntity, IDisposable
- {
-
- private int clientId;
- private string clientName;
- private DeviceConnectionState connectionState;
- private int id;
- public FUSIONManager manager;
- private List<IOpt> optList = new List<IOpt>();
- private IIdentifiableEntity parentEntity;
-
- public event EventHandler OnConfigurationChanged;
- public event EventHandler<ConnectionChangedEventArgs> OnConnectionStateChange;
-
- public FUSIONOptBridge(int id, IIdentifiableEntity parentEntity)
- {
- this.id = id;
- this.parentEntity = parentEntity;
- try
- {
- Trace.Add(this);
- if (!FUSIONFactory.fusionForecourtControlList.ContainsKey(id))
- {
- Trace.WriteLine(string.Format("fusionForecourtControl id={0} NOT exist - creating", id));
- Wayne.ForecourtControl.Fusion.FUSIONFactory.CreateForecourtControl(id);
- }
- if (FUSIONFactory.fusionForecourtControlList.ContainsKey(id))
- {
- Trace.WriteLine(string.Format("fusionForecourtControl id={0} adding event OnConnectionStateChange", id));
- manager = ((FUSIONForecourtControl)(FUSIONFactory.fusionForecourtControlList[id])).manager;
- this.manager.ifsfManager.clientSocket.OnConnectionStateChange += new EventHandler<ConnectionChangedEventArgs>(clientSocket_OnConnectionStateChange);
- }
- else
- Trace.WriteLine(string.Format("fusionForecourtControl id={0} NOT exist - error!!!", id));
- }
- catch (Exception ex)
- {
- Trace.WriteLine(string.Format("Exception creating FUSIONOptBridge ! '{0}'", ex.Message + " - " + ex.StackTrace));
- }
- }
- public void AddOptAsync(int optId, EventHandler<AsyncCompletedEventArgs> requestCompleted, object userToken)
- {
-
- string sValue = "";
- IOpt opt = null;
- try
- {
- opt = this.GetOptFromId(optId);
- if (opt == null)
- {
- opt = new FUSIONOpt(optId, this);
- this.WritableOptList.Add(opt);
- }
- }
- catch (Exception ex)
- {
- Trace.WriteLine(string.Format("Exception adding opt ! '{0}'", ex.Message + " - " + ex.StackTrace));
- }
- try
- {
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "Port");
- if (sValue.Length > 0)
- {
-
- ((FUSIONOpt)opt).COMPort = sValue;
- Trace.WriteLine(string.Format("port={0}", ((FUSIONOpt)opt).COMPort));
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "BaudRate");
- if (sValue.Length > 0)
- ((FUSIONOpt)opt).baudRate = Convert.ToInt16(sValue);
- Trace.WriteLine(string.Format("baudRate={0}", ((FUSIONOpt)opt).baudRate));
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "DataBit");
- if (sValue.Length > 0)
- ((FUSIONOpt)opt).dataBit = Convert.ToInt16(sValue);
- Trace.WriteLine(string.Format("dataBit={0}", ((FUSIONOpt)opt).dataBit));
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "StopBit");
- if (sValue.Length > 0)
- ((FUSIONOpt)opt).stopBit = Convert.ToInt16(sValue);
- Trace.WriteLine(string.Format("stopBit={0}", ((FUSIONOpt)opt).stopBit));
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "Parity");
- if (sValue.Length > 0)
- ((FUSIONOpt)opt).parity = Convert.ToInt16(sValue);
- Trace.WriteLine(string.Format("parity={0}", ((FUSIONOpt)opt).parity));
- ((FUSIONOpt)opt).managedBy = OPTManagedBy.Fusion;
- if (this.manager == null || this.manager.ifsfManager == null)
- Trace.WriteLine((this.manager == null) ? "this.manager == null" : "this.manager.ifsfManager == null");
- else
- {
- Trace.WriteLine(string.Format("OptAddSerialPort calling"));
- this.manager.ifsfManager.OptAddSerialPort(optId, ((FUSIONOpt)opt).COMPort, ((FUSIONOpt)opt).baudRate, ((FUSIONOpt)opt).dataBit, ((FUSIONOpt)opt).stopBit, ((FUSIONOpt)opt).parity, requestCompleted, userToken, this);
- }
- Trace.WriteLine(string.Format("OptAddSerialPort called"));
- }
- else
- {
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "IPAddress");
- Trace.WriteLine(string.Format("IPAddress={0}", sValue));
- if (sValue.Length > 0)
- {
- ((FUSIONOpt)opt).address = sValue;
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "IPPort");
- if (sValue.Length > 0)
- ((FUSIONOpt)opt).IPPort = Convert.ToInt16(sValue);
- Trace.WriteLine(string.Format("port={0}", ((FUSIONOpt)opt).IPPort));
- sValue = IniFile.IniReadValue(ConfigurationParams.inifile, "OPT" + optId.ToString(), "ManagedBy");
- if (sValue.Length == 0 || sValue.ToUpper() == "FUSION")
- ((FUSIONOpt)opt).managedBy = OPTManagedBy.Fusion;
- else
- ((FUSIONOpt)opt).managedBy = OPTManagedBy.SINP;
- Trace.WriteLine(string.Format("managedBy={0}", sValue));
- if (((FUSIONOpt)opt).managedBy == OPTManagedBy.Fusion && manager != null && manager.ifsfManager != null)
- this.manager.ifsfManager.OptAddTCP(optId, ((FUSIONOpt)opt).address, ((FUSIONOpt)opt).IPPort, requestCompleted, userToken, this);
-
- else
- {
-
- if (((FUSIONOpt)opt).optTCP == null)
- {
- ((FUSIONOpt)opt).optTCP = new OptTCP(optId, ((FUSIONOpt)opt).address, ((FUSIONOpt)opt).IPPort, ((FUSIONOpt)opt));
- }
-
- requestCompleted.Invoke(this, new AsyncCompletedEventArgs(true, userToken));
- ((FUSIONOpt)opt).optTCP.ConnectionState = DeviceConnectionState.Disconnected;
- ((FUSIONOpt)opt).optTCP.Connect();
- }
- }
- }
- if (((FUSIONOpt)opt).managedBy == OPTManagedBy.Fusion && manager != null && manager.ifsfManager != null)
- manager.ifsfManager.GetDeviceState(Wayne.FDCPOSLibrary.DeviceType.DT_OutdoorPaymentTerminal, optId, null, null, null);
- Trace.WriteLine(string.Format("GetDeviceState called"));
- }
- catch (Exception ex)
- {
- Trace.WriteLine(string.Format("Exception ! '{0}'", ex.Message + " - " + ex.StackTrace));
- }
- }
- public void AddOptAsync(int optId, string port, int baudRate, int dataBit, int stopBit, int parity, EventHandler<AsyncCompletedEventArgs> requestCompleted, object userToken)
- {
-
- IOpt opt = this.GetOptFromId(optId);
- if (opt == null)
- {
- opt = new FUSIONOpt(optId, this);
- this.WritableOptList.Add(opt);
- }
- this.manager.ifsfManager.OptAddSerialPort(optId, port, baudRate, dataBit, stopBit, parity, requestCompleted, userToken, this);
- manager.ifsfManager.GetDeviceState(Wayne.FDCPOSLibrary.DeviceType.DT_OutdoorPaymentTerminal, optId, null, null, null);
- }
- public void AddOptAsync(int optId, string address, int port, EventHandler<AsyncCompletedEventArgs> requestCompleted, object userToken)
- {
-
- IOpt opt = this.GetOptFromId(optId);
- if (opt == null)
- {
- opt = new FUSIONOpt(optId, this);
- this.WritableOptList.Add(opt);
- }
- if (((FUSIONOpt)opt).managedBy == OPTManagedBy.Fusion && manager != null && manager.ifsfManager != null)
- {
- this.manager.ifsfManager.OptAddTCP(optId, address, port, requestCompleted, userToken, this);
- manager.ifsfManager.GetDeviceState(Wayne.FDCPOSLibrary.DeviceType.DT_OutdoorPaymentTerminal, optId, null, null, null);
- }
-
- else
- {
-
- ((FUSIONOpt)opt).optTCP = new OptTCP(optId, address, port, ((FUSIONOpt)opt));
-
- requestCompleted.Invoke(this, new AsyncCompletedEventArgs(true, userToken));
- ((FUSIONOpt)opt).optTCP.ConnectionState = DeviceConnectionState.Disconnected;
- ((FUSIONOpt)opt).optTCP.Connect();
- }
- }
- public void Connect(string connectionString)
- {
-
- WritableConnectionState = DeviceConnectionState.Connected;
-
-
- }
- public void Disconnect()
- {
- this.manager.Disconnect();
- }
- public void Dispose()
- {
- this.Dispose(true);
- GC.SuppressFinalize(this);
- }
- private void Dispose(bool disposing)
- {
- if (disposing && (this.manager != null))
- {
- this.manager.Dispose();
- }
- this.manager = null;
- }
- ~FUSIONOptBridge()
- {
- this.Dispose(false);
- }
- internal void FireOnConfigurationChanged()
- {
- if (this.OnConfigurationChanged != null)
- {
- this.OnConfigurationChanged(this, EventArgs.Empty);
- }
- }
- internal void FireOnDataRead(int optId, byte[] data)
- {
- FUSIONOpt opt = this.GetOptFromId(optId);
- if (opt != null)
- {
- opt.FireOnDataRead(data);
- }
- }
- public void RemoveOptAsync(int optId, EventHandler<AsyncCompletedEventArgs> requestCompleted, object userToken)
- {
-
- this.manager.ifsfManager.OptRemove(optId, requestCompleted, userToken, this);
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public int ClientId
- {
- get
- {
- return this.clientId;
- }
- }
- public string ClientName
- {
- get
- {
- return this.clientName;
- }
- }
- public DeviceConnectionState ConnectionState
- {
- get
- {
- return this.connectionState;
- }
- }
- public string EntitySubType
- {
- get
- {
- return "Nfs";
- }
- }
- public string EntityType
- {
- get
- {
- return "OptBridge";
- }
- }
-
-
-
- public string FullEntityName { get; set; }
- public int Id
- {
- get
- {
- return this.id;
- }
- }
- public ReadOnlyCollection<IOpt> Opts
- {
- get
- {
- return this.optList.AsReadOnly();
- }
- }
- public IIdentifiableEntity ParentEntity
- {
- get
- {
- return this.parentEntity;
- }
- }
- internal int WritableClientId
- {
- get
- {
- return this.clientId;
- }
- set
- {
- this.clientId = value;
- }
- }
- internal string WritableClientName
- {
- get
- {
- return this.clientName;
- }
- set
- {
- this.clientName = value;
- }
- }
- internal DeviceConnectionState WritableConnectionState
- {
- get
- {
- return this.connectionState;
- }
- set
- {
- if (this.connectionState != value)
- {
- this.connectionState = value;
- if (this.OnConnectionStateChange != null)
- {
- this.OnConnectionStateChange.BeginInvoke(this, new ConnectionChangedEventArgs(this.connectionState), null, null);
- }
- }
- }
- }
- private void clientSocket_OnConnectionStateChange(object sender, ConnectionChangedEventArgs e)
- {
- Trace.WriteLine("bridge clientSocket_OnConnectionStateChange ConnectionState=" + e.ConnectionState);
- this.WritableConnectionState = e.ConnectionState;
- if (e.ConnectionState == DeviceConnectionState.Disconnected)
- {
- foreach (IOpt opt in Opts)
- {
- if (((FUSIONOpt)opt).managedBy == OPTManagedBy.Fusion)
- ((FUSIONOpt)opt).WritableConnectionState = DeviceConnectionState.Disconnected;
- }
- }
- }
- internal List<IOpt> WritableOptList
- {
- get
- {
- return this.optList;
- }
- }
- public FUSIONOpt GetOptFromId(int deviceId)
- {
- foreach (FUSIONOpt opt in this.Opts)
- {
- if (opt.Id == deviceId)
- {
- return opt;
- }
- }
- return null;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|