123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- using log4net;
- using Newtonsoft.Json;
- using Quartz;
- using RabbitMQ.Client;
- using RDIFramework.Utilities;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- namespace TimedUpload.QuartzJobs
- {
- public class ChangleWorkmanshipDataUploadJob : IJob
- {
- private readonly ILog log = LogManager.GetLogger(typeof(WorkmanshipDataUploadJob));
- public void Execute(IJobExecutionContext context)
- {
- string[] uploadUrls = Constants.UploadUrl.Split('|');
- Dictionary<string, IConnection> connections = new Dictionary<string, IConnection>();
- Dictionary<string, IModel> channels = new Dictionary<string, IModel>();
- Dictionary<string, IBasicProperties> properties = new Dictionary<string, IBasicProperties>();
- foreach (string uploadUrl in uploadUrls)
- {
- ConnectionFactory factory = new ConnectionFactory();
- factory.HostName = uploadUrl;//主机名,Rabbit会拿这个IP生成一个endpoint,这个很熟悉吧,就是socket绑定的那个终结点。
- factory.UserName = Constants.UploadUserName;//默认用户名,用户可以在服务端自定义创建,有相关命令行
- factory.Password = Constants.UploadPassword;//默认密码
- factory.AutomaticRecoveryEnabled = true; // 链接断开会自动重连
- IConnection connection = factory.CreateConnection();
- IModel channel = connection.CreateModel();
- channel.QueueDeclare("workmanship", true, false, false, null);//创建一个名称为kibaqueue的消息队列
- IBasicProperties property = channel.CreateBasicProperties();
- property.ContentType = "text/plain";
- property.DeliveryMode = 2; //持久化
- connections.Add(uploadUrl, connection);
- properties.Add(uploadUrl, property);
- channels.Add(uploadUrl, channel);
- }
- if (channels.Count > 0)
- {
- SendSeconddaryPumpData(channels, properties);
- //SendWaterWellData(channels, properties);
- SendWaterFactoryData(channels, properties);
- }
- foreach (KeyValuePair<string, IConnection> item in connections)
- {
- IConnection connection = item.Value;
- connection.Close();
- }
- }
- /// <summary>
- /// 二供数据
- /// </summary>
- /// <param name="channel"></param>
- private void SendSeconddaryPumpData(Dictionary<string, IModel> channels, Dictionary<string, IBasicProperties> properties)
- {
- try
- {
- log.Info("二供工艺图数据同步任务开始执行.................\r\n");
- DateTime newTime = DateTime.Now;
- String yearStr = newTime.Year.ToString();
- #region 获取水质
- string ph = "0", chlorine = "0", turbidity = "0";
- string waterQulitySql = @"SELECT TOP 2 [RecordName],[RecordValue] FROM [dbo].[历史记录] where DevId = 3 order by GetDateTime DESC";
- DataTable waterQulityDt = dbHelper.Fill(waterQulitySql);
- if (waterQulityDt != null && waterQulityDt.Rows.Count > 0)
- {
- for (int i = 0; i < waterQulityDt.Rows.Count; i++)
- {
- DataRow row = waterQulityDt.Rows[i];
- if (row["RecordName"].ToString().Trim() == "余氯") {
- chlorine = row["RecordValue"].ToString();
- }
- if (row["RecordName"].ToString().Trim() == "浊度")
- {
- turbidity = row["RecordValue"].ToString();
- }
- }
- }
- #endregion
- string factorySql = @"SELECT top 1 1 rid,
- 1 Type,CONVERT(varchar(100),采集时间,111) 日期,CONVERT(varchar(100),采集时间,108) 时间
- CONVERT(varchar(100),采集时间,111) + ' ' + CONVERT(varchar(100),采集时间,108) ReadTime,CONVERT(varchar(100),采集时间,111) + ' ' + CONVERT(varchar(5),采集时间,108) 更新时间,
- " + ph + " PH," + chlorine + " 余氯, " + turbidity + @" 浊度,13.9 温度,'南流泉泵站' 编号,'second001' 编码,'second001' DeviceCode,0 水箱液位,0 爆管报警,'' 电源故障,
- '' 真空报警,瞬时流量,'' 硬件超压,'' 系统电压,0 缺水报警,0 网络状态,0 超压报警,'' 软件超压,0 进水报警, 累计流量 净累计流量,'' 正累计流量,'' 负累计流量,
- 0 一段压力设定,0 三段压力设定,0 二段压力设定
- ,[表1A相电压] 电压AB
- ,[表1B相电压] 电压AC
- ,[表1C相电压] 电压BC
- ,[表1A相电流] + 表2A相电流 + 表3A相电流 电流A
- ,[表1B相电流] + 表2B相电流 + 表3B相电流 电流B
- ,[表1C相电流] + 表2C相电流 + 表3C相电流 电流C
- ,[表1电能] + 表2电能 + 表3电能 用电量
- ,[表1A相电压] 一泵电压,'' 一泵故障
- ,[表1A相电流] 一泵电流
- ,[表2A相电压] 二泵电压,'' 二泵故障
- ,[表2A相电流] 二泵电流
- ,[表3A相电压] 三泵电压,'' 二泵故障
- ,[表3A相电流] 三泵电流
- ,[泵3状态] 三泵运行状态
- ,[泵2状态] 二泵运行状态
- ,[泵1状态] 一泵运行状态
- ,[一号泵有功功率] 一泵功率
- ,[一号泵频率] 一泵频率
- ,[二号泵有功功率] 二泵功率
- ,[二号泵频率] 二泵频率
- ,[三号泵有功功率] 三泵功率
- ,[三号泵频率] 三泵频率
- ,[出水设定压力] 泵设定压力
- ,[出水端实际压力] 泵出口压力
- ,[进水端实际压力] 泵进口压力
- FROM [dbo].[历史记录_000015_" + yearStr + "] order by id DESC";
- DataTable dtDevice = dbHelper.Fill(factorySql);
- if (dtDevice == null || dtDevice.Rows.Count == 0)
- {
- return;
- }
- DataColumnCollection cols = dtDevice.Columns;
- // 处理设备列表
- for (int i = 0; i < dtDevice.Rows.Count; i++)
- {
- DataRow dr = dtDevice.Rows[i];
- string deviceCode = dr["DeviceCode"].ToString();
- string type = dr["Type"].ToString();
- string realData = CreateJsonParameters(cols, dr);
- Dictionary<string, object> deviceMap = new Dictionary<string, object>();
- deviceMap["DeviceCode"] = deviceCode;
- deviceMap["Type"] = type;
- deviceMap["RealData"] = realData;
- string message = JsonConvert.SerializeObject(deviceMap);
- foreach (KeyValuePair<string, IModel> item in channels)
- {
- string key = item.Key;
- IModel channel = item.Value;
- IBasicProperties property = properties[key];
- channel.BasicPublish("workmanship", "", property, Encoding.UTF8.GetBytes(message)); //生产消息
- }
- }
- log.Info("二供工艺图数据同步任务开始执行.................\r\n");
- }
- catch (Exception ex)
- {
- log.Error("二供工艺图数据同步任务错误:" + ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- }
- /// <summary>
- /// 水厂数据
- /// </summary>
- /// <param name="channel"></param>
- private void SendWaterFactoryData(Dictionary<string, IModel> channels, Dictionary<string, IBasicProperties> properties)
- {
- try
- {
- log.Info("水厂工艺图数据同步任务开始执行.................\r\n");
- DateTime newTime = DateTime.Now;
- String yearStr = newTime.Year.ToString();
- string factorySql = "";
- DataTable dtDevice = dbHelper.Fill(factorySql);
- if (dtDevice == null || dtDevice.Rows.Count == 0)
- {
- return;
- }
- DataColumnCollection cols = dtDevice.Columns;
- // 处理设备列表
- for (int i = 0; i < dtDevice.Rows.Count; i++)
- {
- DataRow dr = dtDevice.Rows[i];
- string deviceCode = dr["DeviceCode"].ToString();
- string type = dr["Type"].ToString();
- string realData = CreateJsonParameters(cols, dr);
- Dictionary<string, object> deviceMap = new Dictionary<string, object>();
- deviceMap["DeviceCode"] = deviceCode;
- deviceMap["Type"] = type;
- deviceMap["RealData"] = realData;
- string message = JsonConvert.SerializeObject(deviceMap);
- foreach (KeyValuePair<string, IModel> item in channels)
- {
- string key = item.Key;
- IModel channel = item.Value;
- IBasicProperties property = properties[key];
- channel.BasicPublish("workmanship", "", property, Encoding.UTF8.GetBytes(message)); //生产消息
- }
- }
- log.Info("水厂工艺图数据同步任务执行结束.................\r\n");
- }
- catch (Exception ex)
- {
- log.Error("水厂工艺图数据同步任务执行错误:" + ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- }
- private static string CreateJsonParameters(DataColumnCollection cols, DataRow dr)
- {
- StringBuilder JsonString = new StringBuilder();
- JsonString.Append("{");
- for (int j = 0; j < cols.Count; j++)
- {
- if (j < cols.Count - 1)
- {
- JsonString.Append("\"" + cols[j].ColumnName.ToString() + "\":" + "\"" + dr[j].ToString().Trim() + "\",");
- }
- else if (j == cols.Count - 1)
- {
- JsonString.Append("\"" + cols[j].ColumnName.ToString() + "\":" + "\"" + dr[j].ToString().Trim() + "\"");
- }
- }
- JsonString.Append("}");
- return JsonString.ToString();
- }
- static IDbProvider dbHelper
- {
- get
- {
- var DbDefine = DbFactoryProvider.GetProvider(CurrentDbType.SqlServer, Constants.WaterFactoryDbConncetion);
- return DbDefine;
- }
- }
- }
- }
|