123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- using log4net;
- using Quartz;
- using RabbitMQ.Client;
- using RDIFramework.Utilities;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.IO;
- using System.Text;
- using TimedUpload.utils;
- namespace TimedUpload.QuartzJobs
- {
- [DisallowConcurrentExecution]
- public class HeTongDataUploadJob : IJob
- {
- private readonly ILog log = LogManager.GetLogger(typeof(HeTongDataUploadJob));
- MySqlHelper mySqlHelper = new MySqlHelper("DbMySQL");
- public void Execute(IJobExecutionContext context)
- {
- string[] uploadUrls = Constants.UploadUrlHeTong.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.UploadUserNameHeTong;//默认用户名,用户可以在服务端自定义创建,有相关命令行
- factory.Password = Constants.UploadPasswordHeTong;//默认密码
- factory.VirtualHost = Constants.VirtualHostHeTong;
- factory.AutomaticRecoveryEnabled = true; // 链接断开会自动重连
- IConnection connection = factory.CreateConnection();
- IModel channel = connection.CreateModel();
- channel.QueueDeclare("archives.dmaDevice.exchange", true, false, false, null);//创建一个名称为kibaqueue的消息队列
- channel.QueueDeclare("data.dmaDeviceData.exchange", 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)
- {
- //SendZoneDevice(channels, properties);
- SendZoneDeviceHis(channels, properties);
- }
- foreach (KeyValuePair<string, IConnection> item in connections)
- {
- IConnection connection = item.Value;
- connection.Close();
- }
- }
- /// <summary>
- /// 大表设备添加
- /// </summary>
- /// <param name="channels"></param>
- /// <param name="properties"></param>
- private void SendZoneDevice(Dictionary<string, IModel> channels, Dictionary<string, IBasicProperties> properties)
- {
- try
- {
- Dictionary<string, string> devIdDic = GetDevIds();
- string devIdsTmp = "";
- foreach (KeyValuePair<string, string> item in devIdDic)
- {
- devIdsTmp += item.Key + ",";
- }
- string devIds = devIdsTmp.Substring(0, devIdsTmp.Length - 1);
- log.Info("大表设备同步任务开始执行.................\r\n");
- string sql = "SELECT MeterAssessmentName,MeterAssessmentCode,ICCID,LngAndLat,IsPressucre,IsFlow,isZoneMeter,isTradeMeter,isLargeUser FROM bs_meterassessmentbase WHERE MeterAssessmentId IN (" + devIds + ")";
- DataTable dt = mySqlHelper.GetDataTable(sql);
- StringBuilder message = new StringBuilder();
- for (int i = 0; i < dt.Rows.Count; i++)
- {
- message.Clear();
- try
- {
- DataRow dr = dt.Rows[i];
- String iccid = "";
- if (!"".Equals(dr["ICCID"].ToString()))
- {
- iccid = dr["ICCID"].ToString().Split(',')[0];
- }
- String lngAndLat = "";
- if (!"".Equals(dr["LngAndLat"].ToString()))
- {
- lngAndLat = dr["LngAndLat"].ToString();
- }
- message.Append("{\"deviceAdd\":{");
- message.Append("\"meterAssessmentName\": \"").Append(dr["MeterAssessmentName"]).Append("\",");
- message.Append("\"iccId\": ").Append(iccid).Append(",");
- message.Append("\"lngAndLat\": \"").Append(lngAndLat).Append("\",");
- message.Append("\"isPressucre\": ").Append(dr["IsPressucre"]).Append(",");
- message.Append("\"isFlow\": ").Append(dr["IsFlow"]).Append(",");
- message.Append("\"isZoneMeter\": ").Append(dr["isZoneMeter"]).Append(",");
- message.Append("\"isTradeMeter\": ").Append(dr["isTradeMeter"]).Append(",");
- message.Append("\"isLargeUser\": ").Append(dr["isLargeUser"]).Append(",");
- message.Append("\"meterAssessmentCode\": \"").Append(dr["MeterAssessmentCode"]).Append("\",");
- message.Append("\"manufacturerCode\": \"ht\"");
- message.Append("}}");
- foreach (KeyValuePair<string, IModel> item in channels)
- {
- string key = item.Key;
- IModel channel = item.Value;
- IBasicProperties property = properties[key];
- channel.BasicPublish("archives.dmaDevice.exchange", "", property, Encoding.UTF8.GetBytes(message.ToString())); //生产消息
- }
- }
- catch (Exception ex)
- {
- log.Info("大表设备同步任务数据推送失败:" + message.ToString() + "\r\n");
- log.Error(ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- }
- log.Info("大表设备同步任务执行结束.................\r\n");
- }
- catch (Exception ex)
- {
- log.Error("大表设备同步任务执行错误:" + ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- }
- /// <summary>
- /// 大表历史数据
- /// </summary>
- /// <param name="channels"></param>
- /// <param name="properties"></param>
- private void SendZoneDeviceHis(Dictionary<string, IModel> channels, Dictionary<string, IBasicProperties> properties)
- {
- try
- {
- log.Info("大表设备历史数据同步和同DMA任务开始执行.................\r\n");
- Dictionary<String, String> uploadHis = GetDevIds();
- Dictionary<String, String> uploadHisNew = new Dictionary<string, string>();
- foreach (KeyValuePair<string, string> itemDev in uploadHis)
- {
- string meterId = itemDev.Key;
- string lastTime = itemDev.Value;
- string sql = "SELECT MeterAssessmentCode,GetDateTime,NetCumulativeFlow,PositiveCumulativeFlow,NegativeCumulativeFlow,InstantaneousFlow,Pressure,BatteryVoltageValue FROM bs_meterassessmentbase_" + meterId + " a WHERE a.GetDateTime > '" + lastTime + "' ORDER BY GetDateTime ASC";
- try
- {
- DataTable dtMeterHis = mySqlHelper.GetDataTable(sql);
- StringBuilder message = new StringBuilder();
- for (int j = 0; j < dtMeterHis.Rows.Count; j++)
- {
- message.Clear();
- try
- {
- DataRow drMeterHis = dtMeterHis.Rows[j];
- String meterCode = drMeterHis["MeterAssessmentCode"].ToString();
- String getDateTime = Convert.ToDateTime(drMeterHis["GetDateTime"]).ToString("yyyy-MM-dd HH:mm:ss");
- message.Append("{");
- message.Append("\"meterAssessmentCode\": \"").Append(meterCode).Append("\",");
- message.Append("\"manufacturerCode\": \"ht\",");
- message.Append("\"getDateTime\": \"").Append(getDateTime).Append("\",");
- if (Convert.DBNull != drMeterHis["NetCumulativeFlow"])
- {
- message.Append("\"netCumulativeFlow\": ").Append(Convert.ToDecimal(drMeterHis["NetCumulativeFlow"])).Append(",");
- }
- if (Convert.DBNull != drMeterHis["PositiveCumulativeFlow"])
- {
- message.Append("\"positiveCumulativeFlow\": ").Append(Convert.ToDecimal(drMeterHis["PositiveCumulativeFlow"])).Append(",");
- }
- if (Convert.DBNull != drMeterHis["NegativeCumulativeFlow"])
- {
- message.Append("\"negativeCumulativeFlow\": ").Append(Convert.ToDecimal(drMeterHis["NegativeCumulativeFlow"])).Append(",");
- }
- if (Convert.DBNull != drMeterHis["InstantaneousFlow"])
- {
- message.Append("\"instantaneousFlow\": ").Append(Convert.ToDecimal(drMeterHis["InstantaneousFlow"])).Append(",");
- }
- if (Convert.DBNull != drMeterHis["Pressure"])
- {
- message.Append("\"pressure\": ").Append(Convert.ToDecimal(drMeterHis["Pressure"])).Append(",");
- }
- if (Convert.DBNull != drMeterHis["BatteryVoltageValue"])
- {
- message.Append("\"batteryVoltageValue\": ").Append(Convert.ToDecimal(drMeterHis["BatteryVoltageValue"])).Append(",");
- }
- message.Append("}");
- foreach (KeyValuePair<string, IModel> item in channels)
- {
- string key = item.Key;
- IModel channel = item.Value;
- IBasicProperties property = properties[key];
- channel.BasicPublish("data.dmaDeviceData.exchange", "", property, Encoding.UTF8.GetBytes(message.ToString())); //生产消息
- }
- lastTime = getDateTime;
- }
- catch (Exception ex)
- {
- log.Info("大表设备历史记录同步和同DMA任务数据推送失败:" + meterId + "," + message.ToString() + "\r\n");
- log.Error(ex.Message + "===========" + ex.StackTrace + "\r\n");
- continue;
- }
- }
- }
- catch (Exception ex)
- {
- log.Error(meterId + "," + ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- uploadHisNew[meterId] = lastTime;
- }
- SavaUploadHis(uploadHisNew);
- log.Info("大表设备历史记录同步和同DMA任务执行结束.................\r\n");
- }
- catch (Exception ex)
- {
- log.Error("大表设备历史记录同步和同DMA任务执行错误:" + ex.Message + "===========" + ex.StackTrace + "\r\n");
- }
- }
- private Dictionary<string, string> GetDevIds()
- {
- Dictionary<String, String> uploadHis = new Dictionary<string, string>();
- using (StreamReader sr = new StreamReader(@"TextFileHeTong.txt"))
- {
- String line = "";
- while ((line = sr.ReadLine()) != null)
- {
- if (!"".Equals(line))
- {
- String[] item = line.Split(',');
- uploadHis[item[0]] = item[1];
- }
- }
- }
- return uploadHis;
- }
- /// <summary>
- /// 更新配置文件中的值
- /// </summary>
- /// <param name="key">键</param>
- /// <param name="value">值</param>
- private void UpdateAppConfig(String key, String value)
- {
- var cfg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
- cfg.AppSettings.Settings[key].Value = value;
- cfg.Save();
- ConfigurationManager.RefreshSection("appSettings");
- }
- /// <summary>
- /// 判断历史记录表是否存在
- /// </summary>
- /// <param name="tablename"></param>
- /// <returns></returns>
- private bool CheckTableExist(string tablename)
- {
- DataTable table = dbHelper.Fill("select top 1 * from sysobjects where name='" + tablename + "' and xtype='u'");
- if (table == null || table.Rows.Count == 0)
- {
- return false;
- }
- return true;
- }
- /// <summary>
- /// 保存每块块表的上传最后一条历史记录
- /// </summary>
- /// <param name="uploadHis"></param>
- private void SavaUploadHis(Dictionary<String,String> uploadHis)
- {
- // 清除之前的内容
- FileStream stream = File.Open(@"TextFileHeTong.txt", FileMode.OpenOrCreate, FileAccess.Write);
- stream.Seek(0, SeekOrigin.Begin);
- stream.SetLength(0);
- stream.Close();
- using (StreamWriter sw = new StreamWriter(@"TextFileHeTong.txt"))
- {
- foreach (var item in uploadHis)
- {
- sw.WriteLine(item.Key + "," + item.Value);
- }
- }
- }
- static IDbProvider dbHelper
- {
- get
- {
- var DbDefine = DbFactoryProvider.GetProvider(CurrentDbType.SqlServer, Constants.DbConncetion);
- return DbDefine;
- }
- }
- }
- }
|