DataCollectionManager.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Aitex.Core.Util;
  6. using Npgsql;
  7. using System.Threading;
  8. using Aitex.Core.RT.Log;
  9. using Aitex.Core.RT.Event;
  10. using Aitex.Core.RT.DBCore;
  11. using System.IO;
  12. using Aitex.Common.Util;
  13. using Aitex.Core.RT.DataCenter;
  14. using System.Collections.Concurrent;
  15. using MECF.Framework.Common.Communications;
  16. using Aitex.Core.RT.SCCore;
  17. namespace Aitex.Core.RT.DataCollection
  18. {
  19. public class DataCollectionManager : Singleton<DataCollectionManager>, IConnection
  20. {
  21. public string Address
  22. {
  23. get { return "DB:DataCollection"; }
  24. }
  25. public bool IsConnected { get; set; }
  26. NpgsqlConnection _conn;
  27. bool _bAlive = true;
  28. Dictionary<string, Func<object>> _preSubscribedRecordedData; //for other thread to subscribe data
  29. Dictionary<string, Func<object>> _subscribedRecordedData; //internal use
  30. object _lock = new object();
  31. F_TRIG _connFailTrig = new F_TRIG();
  32. private int dataCollectionInterval;
  33. IDataCollectionCallback _callback;
  34. private string[] _modules = new string[] {"Data"};
  35. public DataCollectionManager()
  36. {
  37. _preSubscribedRecordedData = new Dictionary<string, Func<object>>();
  38. _subscribedRecordedData = new Dictionary<string, Func<object>>();
  39. dataCollectionInterval = SC.ContainsItem("System.DataCollectionInterval") ? SC.GetValue<int>("System.DataCollectionInterval") : 1000;
  40. }
  41. public void Initialize(IDataCollectionCallback callback)
  42. {
  43. _callback = callback == null ? new DefaultDataCollectionCallback() : callback;
  44. Connect();
  45. System.Threading.Tasks.Task.Factory.StartNew(DataRecorderThread);
  46. }
  47. public void Initialize(string[] modules, string dbName)
  48. {
  49. _callback = new DefaultDataCollectionCallback(dbName);
  50. if (modules!=null && modules.Length>0 && !string.IsNullOrEmpty(modules[0]))
  51. _modules = modules;
  52. Connect();
  53. System.Threading.Tasks.Task.Factory.StartNew(DataRecorderThread);
  54. }
  55. public void Initialize(string dbName)
  56. {
  57. _callback = new DefaultDataCollectionCallback(dbName) ;
  58. Connect();
  59. System.Threading.Tasks.Task.Factory.StartNew(DataRecorderThread);
  60. }
  61. public void Terminate()
  62. {
  63. _bAlive = false;
  64. }
  65. /// <summary>
  66. /// initialization
  67. /// </summary>
  68. public void SubscribeData(string dataName, string alias, Func<object> dataValue)
  69. {
  70. lock (_lock)
  71. {
  72. if (!_preSubscribedRecordedData.Keys.Contains(dataName))
  73. {
  74. _preSubscribedRecordedData[dataName] = dataValue;
  75. }
  76. }
  77. }
  78. private void MonitorDataCenter()
  79. {
  80. lock (_lock)
  81. {
  82. SortedDictionary<string, Func<object>> data = DATA.GetDBRecorderList();
  83. foreach (var item in data)
  84. {
  85. if (!_subscribedRecordedData.ContainsKey(item.Key))
  86. {
  87. object o = item.Value.Invoke();
  88. if (o == null)
  89. continue;
  90. Type dataType = o.GetType();
  91. if (dataType == typeof(Boolean) || dataType == typeof(double) || dataType == typeof(float) ||
  92. dataType == typeof(int) || dataType == typeof(ushort) || dataType == typeof(short))
  93. {
  94. _subscribedRecordedData[item.Key] = item.Value;
  95. _preSubscribedRecordedData[item.Key] = item.Value;
  96. }
  97. }
  98. }
  99. }
  100. }
  101. public bool Connect()
  102. {
  103. bool result = true;
  104. try
  105. {
  106. if (_conn != null)
  107. _conn.Close();
  108. _conn = new NpgsqlConnection(PostgresqlHelper.ConnectionString);
  109. _conn.Open();
  110. _conn.ChangeDatabase(_callback.GetDBName());
  111. EV.PostInfoLog("DataCollection", "Connected with database");
  112. }
  113. catch (Exception ex)
  114. {
  115. if (_conn != null)
  116. {
  117. _conn.Close();
  118. _conn = null;
  119. }
  120. result = false;
  121. EV.PostInfoLog("DataCollection", "Can not connect database");
  122. LOG.Write(ex);
  123. }
  124. IsConnected = result;
  125. return result;
  126. }
  127. public bool Disconnect()
  128. {
  129. try
  130. {
  131. if (_conn != null)
  132. {
  133. _conn.Close();
  134. _conn = null;
  135. EV.PostInfoLog("DataCollection", "Disconnected with database");
  136. }
  137. }
  138. catch (Exception ex)
  139. {
  140. LOG.Write(ex);
  141. }
  142. IsConnected = false;
  143. return true;
  144. }
  145. /// <summary>
  146. /// 重置数据库连接出错事件
  147. /// </summary>
  148. public void Reset()
  149. {
  150. _connFailTrig.CLK = false;
  151. }
  152. /// <summary>
  153. /// data recorder thread
  154. /// </summary>
  155. void DataRecorderThread()
  156. {
  157. while (_bAlive)
  158. {
  159. try
  160. {
  161. Thread.Sleep(dataCollectionInterval);
  162. _connFailTrig.CLK = IsConnected;// Connect();
  163. if (_connFailTrig.Q)
  164. {
  165. EV.PostWarningLog("DataCollection", "Can not connect with database");
  166. }
  167. if (!_connFailTrig.M)
  168. continue;
  169. MonitorDataCenter();
  170. var moduleDataItem = new Dictionary<string, Dictionary<string, Func<object>>>();
  171. var moduleInsertSql = new Dictionary<string, string>();
  172. foreach (var module in _modules)
  173. {
  174. moduleDataItem[module] = new Dictionary<string, Func<object>>();
  175. }
  176. string defaultModule = _modules.Contains("System") ? "System" : (_modules.Contains("Data") ? "Data" : (_modules[0]));
  177. if (_subscribedRecordedData.Count > 0)
  178. {
  179. lock (_lock)
  180. {
  181. bool foundModule;
  182. foreach (var dataName in _subscribedRecordedData.Keys)
  183. {
  184. foundModule = false;
  185. foreach (var module in _modules)
  186. {
  187. if (dataName.StartsWith(module+"."))
  188. {
  189. moduleDataItem[module][dataName] = _subscribedRecordedData[dataName];
  190. foundModule = true;
  191. break;
  192. }
  193. }
  194. if (!foundModule)
  195. {
  196. moduleDataItem[defaultModule][dataName] = _subscribedRecordedData[dataName];
  197. }
  198. }
  199. _preSubscribedRecordedData.Clear();
  200. }
  201. }
  202. DateTime dtToday = DateTime.Now.Date;
  203. foreach (var module in _modules)
  204. {
  205. string tableName = $"{dtToday:yyyyMMdd}.{module}";
  206. UpdateTableSchema(tableName, moduleDataItem[module]);
  207. string preCreatedInsertSQL = string.Format("INSERT INTO \"{0}\"(\"time\" ", tableName);
  208. foreach (var dataName in moduleDataItem[module].Keys)
  209. {
  210. preCreatedInsertSQL += string.Format(",\"{0}\"", dataName);
  211. }
  212. preCreatedInsertSQL += ")";
  213. moduleInsertSql[module] = preCreatedInsertSQL;
  214. }
  215. //insert data into database
  216. StringBuilder sb = new StringBuilder(10000);
  217. while (_bAlive)
  218. {
  219. //Thread.Sleep(990);
  220. Thread.Sleep((int)(dataCollectionInterval * 0.99)); //for time delay in sleep function
  221. foreach (var module in _modules)
  222. {
  223. sb.Remove(0, sb.Length);
  224. sb.Append("Values(");
  225. sb.Append(DateTime.Now.Ticks.ToString());
  226. foreach (var dataName in moduleDataItem[module].Keys)
  227. {
  228. sb.Append(",");
  229. var v1 = moduleDataItem[module][dataName].Invoke();
  230. if (v1 == null)
  231. {
  232. sb.Append("0");
  233. }
  234. else
  235. {
  236. if (v1 is double || v1 is float)
  237. {
  238. double v2 = Convert.ToDouble(v1);
  239. if (double.IsNaN(v2))
  240. v2 = 0;
  241. sb.Append(v2.ToString());
  242. }
  243. else
  244. {
  245. sb.Append(v1.ToString());
  246. }
  247. }
  248. }
  249. sb.Append(");");
  250. NpgsqlCommand cmd = new NpgsqlCommand(moduleInsertSql[module] + sb.ToString(), _conn);
  251. try
  252. {
  253. cmd.ExecuteNonQuery();
  254. }
  255. catch (Exception ex)
  256. {
  257. LOG.Write(ex, "数据记录发生异常" + moduleInsertSql[module]);
  258. }
  259. }
  260. //if alert to another day, create a new table
  261. if (DateTime.Now.Date != dtToday)
  262. break;
  263. //if preSubscribed data not empty, alert current table's structure
  264. MonitorDataCenter();
  265. if (_preSubscribedRecordedData.Count > 0)
  266. break;
  267. }//end while
  268. }//end while
  269. catch (Exception ex)
  270. {
  271. LOG.Write(ex, "数据库操作记录发生异常");
  272. }
  273. }
  274. }
  275. private string UpdateTableSchema(string tblName, Dictionary<string, Func<object>> dataItem)
  276. {
  277. //query if table already exist?
  278. string sqlTblDefine = string.Format("select column_name from information_schema.columns where table_name = '{0}';", tblName);
  279. NpgsqlCommand cmdTblDefine = new NpgsqlCommand(sqlTblDefine, _conn);
  280. var tblDefineData = cmdTblDefine.ExecuteReader();
  281. string tblAlertString = string.Empty;
  282. List<string> colNameList = new List<string>();
  283. while (tblDefineData.Read())
  284. {
  285. for (int i = 0; i < tblDefineData.FieldCount; i++)
  286. colNameList.Add(tblDefineData[i].ToString());
  287. }
  288. tblDefineData.Close();
  289. if (colNameList.Count > 0)
  290. {
  291. //table exist
  292. foreach (var dataName in dataItem.Keys)
  293. {
  294. if (!colNameList.Contains(dataName) )
  295. {
  296. var dataType = dataItem[dataName].Invoke().GetType();
  297. if (dataType == typeof(Boolean))
  298. {
  299. tblAlertString += string.Format("ALTER TABLE \"{0}\" ADD COLUMN \"{1}\" {2};", tblName, dataName, "Boolean");
  300. }
  301. else if (dataType == typeof(double) || dataType == typeof(float) || dataType == typeof(int) || dataType == typeof(ushort) || dataType==typeof(short))
  302. {
  303. tblAlertString += string.Format("ALTER TABLE \"{0}\" ADD COLUMN \"{1}\" {2};", tblName, dataName, "Real");
  304. }
  305. else
  306. {
  307. }
  308. }
  309. }
  310. if (!string.IsNullOrEmpty(tblAlertString))
  311. {
  312. try
  313. {
  314. NpgsqlCommand alertTblCmd = new NpgsqlCommand(tblAlertString, _conn);
  315. alertTblCmd.ExecuteNonQuery();
  316. }
  317. catch (Exception ex)
  318. {
  319. LOG.Write(ex);
  320. }
  321. }
  322. }
  323. else
  324. {
  325. //table not exist, auto generate a table
  326. string createTble = string.Format("CREATE TABLE \"{0}\"(Time bigint NOT NULL,", tblName);
  327. string commentStr = "";
  328. foreach (var dataName in dataItem.Keys)
  329. {
  330. Type dataType = dataItem[dataName].Invoke().GetType();
  331. if (dataType == typeof(Boolean))
  332. {
  333. createTble += string.Format("\"{0}\" Boolean,\n", dataName);
  334. }
  335. else if (dataType == typeof(double) || dataType == typeof(float) ||
  336. dataType == typeof(int) || dataType == typeof(ushort) || dataType == typeof(short))
  337. {
  338. createTble += string.Format("\"{0}\" Real,\n", dataName);
  339. }
  340. //if (!string.IsNullOrEmpty(alias) && ((dataType == typeof(Boolean)) || (dataType == typeof(double) || dataType == typeof(float) ||
  341. // dataType == typeof(int) || dataType == typeof(ushort) || dataType == typeof(short))))
  342. // commentStr += string.Format("COMMENT ON COLUMN \"{0}\".\"{1}\" IS '{2}';\n", tblName, dataName, alias);
  343. }
  344. createTble += string.Format("CONSTRAINT \"{0}_pkey\" PRIMARY KEY (Time));", tblName);
  345. createTble += string.Format("GRANT SELECT ON TABLE \"{0}\" TO postgres;", tblName);
  346. // createTble += string.Format("CREATE INDEX \"{0}_time_idx\" ON \"{0}\" USING btree (\"time\" );", tblName);
  347. createTble += commentStr;
  348. try
  349. {
  350. NpgsqlCommand cmd = new NpgsqlCommand(createTble.ToString(), _conn);
  351. cmd.ExecuteNonQuery();
  352. }
  353. catch (Exception ex1)
  354. {
  355. LOG.Write(ex1, "创建数据库表格失败");
  356. throw;
  357. }
  358. }
  359. return tblName;
  360. }
  361. }
  362. }