DataCollectionManager.cs 16 KB

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