public override void OnCommandExecuting(SuperSocket.SocketBase.CommandExecutingContext commandContext) { BLL.DeviceLog bllLog = new DeviceLog(); BLL.Device bllDevice = new Device(); DGNSZSession session = (DGNSZSession)commandContext.Session; DeviceLogInfo log = null; //如果没有设备id,则进行了校时操作。 if (string.IsNullOrEmpty(session.MacID)) { session.Logger.Info("多功能漏损监测仪校时成功!"); byte[] sectionClose = Utility.ApplicationContext.getInstance().getLSSectionCloseConfig(); session.Send(sectionClose, 0, sectionClose.Length); session.Logger.Info("LSSECTION结束帧已经发送!" + BitConverter.ToString(sectionClose)); commandContext.Cancel = true; return; } //设备下发了噪声的默认配置 if (session.NoiseConf == null) { session.Logger.Info("多功能漏损监测仪噪声(" + session.MacID + ")默认配置成功!"); log = new DeviceLogInfo(); log.DEVICE_ID = Convert.ToInt32(bllDevice.getDeviceIdByCode(session.MacID)); log.MESSAGE = "噪声初始化!"; log.OPERATETYPE = "下发"; log.LOGTIME = DateTime.Now; bllLog.insert(log); return; } //设备配置下发 session.Logger.Info("多功能漏损监测仪噪声(" + session.MacID + ")配置成功:" + session.NoiseConf.FrameContent); session.NoiseConf.Status = true; new DeviceConfig().Update(session.NoiseConf); string[] config = session.NoiseConf.FrameContent.Split(new char[] { '#' }, StringSplitOptions.RemoveEmptyEntries); string hour1 = byte.Parse(config[9], System.Globalization.NumberStyles.HexNumber).ToString(); string second1 = byte.Parse(config[10], System.Globalization.NumberStyles.HexNumber).ToString(); string interval1 = byte.Parse(config[11], System.Globalization.NumberStyles.HexNumber).ToString(); string count1 = byte.Parse(config[12], System.Globalization.NumberStyles.HexNumber).ToString(); string hour2 = byte.Parse(config[17], System.Globalization.NumberStyles.HexNumber).ToString(); string second2 = byte.Parse(config[18], System.Globalization.NumberStyles.HexNumber).ToString(); string interval2 = byte.Parse(config[19], System.Globalization.NumberStyles.HexNumber).ToString(); log = new DeviceLogInfo(); log.DEVICE_ID = Convert.ToInt32(bllDevice.getDeviceIdByCode(session.MacID)); log.MESSAGE = "噪声配置下发。密集开始时间" + hour1 + ":" + second1 + ";密集间隔" + interval1 + ";密集样本数:" + count1 + ";松散开始时间" + hour2 + ":" + second2 + ";松散间隔:" + interval2; log.OPERATETYPE = "下发"; log.LOGTIME = DateTime.Now; bllLog.insert(log); }
public override void OnCommandExecuting(SuperSocket.SocketBase.CommandExecutingContext commandContext) { BLL.DeviceLog bllLog = new DeviceLog(); BLL.Device bllDevice = new Device(); DGNSZSession session = (DGNSZSession)commandContext.Session; Model.DeviceLogInfo log = new Model.DeviceLogInfo(); log.DEVICE_ID = Convert.ToInt32(bllDevice.getDeviceIdByCode(session.MacID)); log.MESSAGE = "压力数据上报"; log.OPERATETYPE = "上报"; log.LOGTIME = DateTime.Now; bllLog.insert(log); }
public void handleMessage(DGNSZSession session, StringRequestInfo requestInfo) { if (isThisLevel(requestInfo)) { handleSection(session); } else { if (nextHandler != null) { nextHandler.handleMessage(session, requestInfo); } } }
public override void handleSection(DGNSZSession session) { //如果传上来的LSSECTION帧中无法获取MacID,则对多功能监测仪下发噪声校时 if (string.IsNullOrEmpty(session.MacID)) { byte[] set = Utility.ApplicationContext.getInstance().getLSNoiseCALIConfig(); session.Send(set, 0, set.Length); session.Logger.Info("多功能漏损监测仪下发噪声校时配置:" + BitConverter.ToString(set, 0)); return; } //如果能能够从数据库中获取到噪声配置信息,则将噪声配置下发给多功能检测仪 DeviceConfigInfo conf = (new DeviceConfig()).GetLatestConfigByDeviceCodeAndSensorCode(session.MacID, "000032"); if (null != conf) { string content = conf.FrameContent; string[] items = content.Split(new char[] { '#' }, StringSplitOptions.RemoveEmptyEntries); byte[] sendData = new byte[items.Length]; for (int i = 0; i < items.Length; i++) { sendData[i] = byte.Parse(items[i], System.Globalization.NumberStyles.HexNumber); } sendData[20] = StringUtil.SEC; sendData[21] = StringUtil.MIN; sendData[22] = StringUtil.HOR; sendData[23] = StringUtil.WEEK; sendData[24] = StringUtil.DAY; sendData[25] = StringUtil.MON; sendData[26] = StringUtil.YEAR; session.Send(sendData, 0, sendData.Length); session.Logger.Info("多功能漏损监测仪噪声(" + session.MacID + ")配置下发成功:" + BitConverter.ToString(sendData)); session.NoiseConf = conf; session.NoiseConf.SendTime = DateTime.Now; } else //如果从数据库中获取不到噪声配置,在将噪声的默认配置下发给多功能监测仪。 { byte[] set = Utility.ApplicationContext.getInstance().getLSNoiseDefaultConfig(); session.Send(set, 0, set.Length); session.Logger.Info("多功能漏损监测仪噪声(" + session.MacID + ")默认配置下发成功:" + BitConverter.ToString(set, 0)); } }
public override void OnCommandExecuting(SuperSocket.SocketBase.CommandExecutingContext commandContext) { DeviceLog bllLog = new DeviceLog(); Device bllDevice = new Device(); DGNSZSession session = (DGNSZSession)commandContext.Session; DeviceLogInfo log = null; if (session.PressConf != null) { session.Logger.Info("多功能漏损监测仪压力(" + session.MacID + ")配置成功!"); session.PressConf.Status = true; new DeviceConfig().Update(session.PressConf); string[] config = session.PressConf.FrameContent.Split(new char[] { '#' }, StringSplitOptions.RemoveEmptyEntries); string interval1 = Int16.Parse(config[8] + config[9], System.Globalization.NumberStyles.HexNumber).ToString(); string interval2 = Int16.Parse(config[10] + config[11], System.Globalization.NumberStyles.HexNumber).ToString(); log = new Model.DeviceLogInfo(); log.DEVICE_ID = Convert.ToInt32(bllDevice.getDeviceIdByCode(session.MacID)); log.MESSAGE = "压力配置下发.采集间隔" + interval1 + ";发送间隔" + interval2; log.OPERATETYPE = "add"; log.LOGTIME = DateTime.Now; bllLog.insert(log); } else { session.Logger.Info("多功能漏损监测仪压力(" + session.MacID + ")默认配置成功!"); log = new Model.DeviceLogInfo(); log.DEVICE_ID = Convert.ToInt32(bllDevice.getDeviceIdByCode(session.MacID)); log.MESSAGE = "压力初始化!"; log.OPERATETYPE = "add"; log.LOGTIME = DateTime.Now; bllLog.insert(log); } }
public abstract void handleSection(DGNSZSession session);