/QuickMon4/QuickMonDBAgents/Collectors/SqlQuery/SqlQueryCollectorEntry.cs

# · C# · 383 lines · 340 code · 19 blank · 24 comment · 44 complexity · 622055d111c4178b003cc698ca0c4529 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Data.SqlClient;
  5. using System.Linq;
  6. using System.Text;
  7. namespace QuickMon.Collectors
  8. {
  9. public class SqlQueryCollectorEntry : ICollectorConfigEntry
  10. {
  11. public SqlQueryCollectorEntry()
  12. {
  13. IntegratedSecurity = true;
  14. CmndTimeOut = 60;
  15. DataSourceType = Collectors.DataSourceType.SqlServer;
  16. ValueReturnType = DataBaseQueryValueReturnType.RawValue;
  17. ValueReturnCheckSequence = CollectorAgentReturnValueCheckSequence.GWE;
  18. }
  19. #region ICollectorConfigEntry Members
  20. public string Description
  21. {
  22. get
  23. {
  24. return Name;// +" (" + connectionString + ")";
  25. }
  26. }
  27. public string TriggerSummary
  28. {
  29. get {
  30. string connectionString = ConnectionString;
  31. if (connectionString == "" && DataSourceType == Collectors.DataSourceType.SqlServer)
  32. connectionString = string.Format("DB={0}\\{1}; ", Server, Database);
  33. return string.Format("{0} Success: {1} ({2}), Warn: {3} ({4}), Err: {5} ({6}), Check seq: {7}",
  34. connectionString,
  35. SuccessValueOrMacro, SuccessMatchType ,
  36. WarningValueOrMacro, WarningMatchType,
  37. ErrorValueOrMacro, ErrorMatchType, ValueReturnCheckSequence) +
  38. (ValueReturnType == DataBaseQueryValueReturnType.RowCount ? ", RowCnt" : "") +
  39. (ValueReturnType == DataBaseQueryValueReturnType.QueryTime ? ", QryTime" : "");
  40. }
  41. }
  42. public List<ICollectorConfigSubEntry> SubItems { get; set; }
  43. #endregion
  44. #region Properties
  45. public string Name { get; set; }
  46. public DataSourceType DataSourceType { get; set; }
  47. /// <summary>
  48. /// Full connectionstring. If specified then Server/Database settings are ignored
  49. /// </summary>
  50. public string ConnectionString { get; set; }
  51. /// <summary>
  52. /// For OLEDb. The provider name
  53. /// </summary>
  54. public string ProviderName { get; set; }
  55. /// <summary>
  56. /// For OLEDb. The file name (e.g. c:\somedir\db.mdb)
  57. /// </summary>
  58. public string FileName { get; set; }
  59. /// <summary>
  60. /// Server/Instance name. Only used for DataSourceType = SqlServer
  61. /// </summary>
  62. public string Server { get; set; }
  63. /// <summary>
  64. /// Database name.
  65. /// </summary>
  66. public string Database { get; set; }
  67. /// <summary>
  68. /// Use integrated security or not. Only used for DataSourceType = SqlServer
  69. /// </summary>
  70. public bool IntegratedSecurity { get; set; }
  71. /// <summary>
  72. /// User name. Only used for DataSourceType = SqlServer
  73. /// </summary>
  74. public string UserName { get; set; }
  75. /// <summary>
  76. /// Password. Only used for DataSourceType = SqlServer
  77. /// </summary>
  78. public string Password { get; set; }
  79. public int CmndTimeOut { get; set; }
  80. public string ApplicationName { get; set; }
  81. public bool UsePersistentConnection { get; set; }
  82. private System.Data.Common.DbConnection PersistentConnection = null;
  83. #region State query
  84. public string StateQuery { get; set; }
  85. public bool UseSPForStateQuery { get; set; }
  86. #endregion
  87. #region Detail query
  88. public string DetailQuery { get; set; }
  89. public bool UseSPForDetailQuery { get; set; }
  90. #endregion
  91. #region Alert settings
  92. public DataBaseQueryValueReturnType ValueReturnType { get; set; }
  93. public CollectorAgentReturnValueCheckSequence ValueReturnCheckSequence { get; set; }
  94. public CollectorAgentReturnValueCompareMatchType SuccessMatchType { get; set; }
  95. public string SuccessValueOrMacro { get; set; }
  96. public CollectorAgentReturnValueCompareMatchType WarningMatchType { get; set; }
  97. public string WarningValueOrMacro { get; set; }
  98. public CollectorAgentReturnValueCompareMatchType ErrorMatchType { get; set; }
  99. public string ErrorValueOrMacro { get; set; }
  100. #endregion
  101. #endregion
  102. #region GetStateQueryValue
  103. public object GetStateQueryValue()
  104. {
  105. object value = null;
  106. if (ValueReturnType == DataBaseQueryValueReturnType.RawValue)
  107. value = GetQuerySingleValue();
  108. else if (ValueReturnType == DataBaseQueryValueReturnType.RowCount)
  109. value = GetQueryRowCount();
  110. else // if (ValueReturnType == DataBaseQueryValueReturnType.QueryTime)
  111. value = GetQueryRunTime();
  112. return value;
  113. }
  114. private object GetQuerySingleValue()
  115. {
  116. object returnValue = null;
  117. try
  118. {
  119. using (System.Data.Common.DbCommand cmnd = GetCommand(StateQuery, UseSPForStateQuery))
  120. {
  121. cmnd.CommandType = UseSPForStateQuery ? CommandType.StoredProcedure : CommandType.Text;
  122. cmnd.CommandTimeout = CmndTimeOut;
  123. using (System.Data.Common.DbDataReader r = cmnd.ExecuteReader())
  124. {
  125. if (r.Read())
  126. returnValue = r[0];
  127. }
  128. }
  129. CloseConnection();
  130. }
  131. catch
  132. {
  133. CloseConnection(true);
  134. throw;
  135. }
  136. return returnValue;
  137. }
  138. private object GetQueryRowCount()
  139. {
  140. int returnValue = 0;
  141. try
  142. {
  143. using (System.Data.Common.DbCommand cmnd = GetCommand(StateQuery, UseSPForStateQuery))
  144. {
  145. cmnd.CommandType = UseSPForStateQuery ? CommandType.StoredProcedure : CommandType.Text;
  146. cmnd.CommandTimeout = CmndTimeOut;
  147. using (System.Data.Common.DbDataReader r = cmnd.ExecuteReader())
  148. {
  149. if (r.HasRows)
  150. while (r.Read())
  151. {
  152. returnValue++;
  153. }
  154. else
  155. returnValue = 0;
  156. }
  157. }
  158. CloseConnection();
  159. }
  160. catch
  161. {
  162. CloseConnection(true);
  163. throw;
  164. }
  165. return returnValue;
  166. }
  167. private object GetQueryRunTime()
  168. {
  169. long returnValue = 0;
  170. System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
  171. try
  172. {
  173. using (System.Data.Common.DbCommand cmnd = GetCommand(StateQuery, UseSPForStateQuery))
  174. {
  175. cmnd.CommandType = UseSPForStateQuery ? CommandType.StoredProcedure : CommandType.Text;
  176. cmnd.CommandTimeout = CmndTimeOut;
  177. cmnd.Prepare();
  178. sw.Start();
  179. using (System.Data.Common.DbDataReader r = cmnd.ExecuteReader())
  180. {
  181. if (r.HasRows)
  182. {
  183. while (r.Read())
  184. {
  185. returnValue = 0; //do something
  186. }
  187. }
  188. }
  189. sw.Stop();
  190. returnValue = sw.ElapsedMilliseconds;
  191. }
  192. CloseConnection();
  193. }
  194. catch
  195. {
  196. CloseConnection(true);
  197. throw;
  198. }
  199. return returnValue;
  200. }
  201. #endregion
  202. #region GetDetailQueryDataTable
  203. public DataTable GetDetailQueryDataTable()
  204. {
  205. DataTable dt = new DataTable(Name);
  206. try
  207. {
  208. using (System.Data.Common.DbCommand cmnd = GetCommand(DetailQuery, UseSPForDetailQuery))
  209. {
  210. cmnd.CommandType = UseSPForStateQuery ? CommandType.StoredProcedure : CommandType.Text;
  211. cmnd.CommandTimeout = CmndTimeOut;
  212. cmnd.Prepare();
  213. if (DataSourceType == Collectors.DataSourceType.SqlServer)
  214. {
  215. using (SqlDataAdapter da = new SqlDataAdapter((SqlCommand)cmnd))
  216. {
  217. DataSet returnValues = new DataSet();
  218. da.Fill(returnValues);
  219. dt = returnValues.Tables[0].Copy();
  220. }
  221. }
  222. else
  223. {
  224. using (System.Data.Common.DbDataAdapter da = new System.Data.OleDb.OleDbDataAdapter((System.Data.OleDb.OleDbCommand)cmnd))
  225. {
  226. DataSet returnValues = new DataSet();
  227. da.Fill(returnValues);
  228. dt = returnValues.Tables[0].Copy();
  229. }
  230. }
  231. }
  232. CloseConnection();
  233. }
  234. catch(Exception ex)
  235. {
  236. dt = new System.Data.DataTable("Exception");
  237. dt.Columns.Add(new System.Data.DataColumn("Text", typeof(string)));
  238. dt.Rows.Add(ex.ToString());
  239. CloseConnection(true);
  240. }
  241. return dt;
  242. }
  243. #endregion
  244. #region Generic Db functions
  245. private System.Data.Common.DbConnection CreateNewConnection()
  246. {
  247. if (DataSourceType == Collectors.DataSourceType.SqlServer)
  248. {
  249. return new SqlConnection(GetConnectionString());
  250. }
  251. else
  252. {
  253. return new System.Data.OleDb.OleDbConnection(GetConnectionString());
  254. }
  255. }
  256. private string GetConnectionString()
  257. {
  258. if (ConnectionString.Length > 0)
  259. return ConnectionString;
  260. else
  261. {
  262. if (DataSourceType == Collectors.DataSourceType.SqlServer)
  263. {
  264. SqlConnectionStringBuilder sb = new SqlConnectionStringBuilder();
  265. sb.ApplicationName = ApplicationName;
  266. sb.DataSource = Server;
  267. sb.InitialCatalog = Database;
  268. sb.IntegratedSecurity = IntegratedSecurity;
  269. if (!IntegratedSecurity)
  270. {
  271. sb.UserID = UserName;
  272. sb.Password = Password;
  273. }
  274. return sb.ConnectionString;
  275. }
  276. else
  277. {
  278. System.Data.OleDb.OleDbConnectionStringBuilder sb = new System.Data.OleDb.OleDbConnectionStringBuilder();
  279. sb.DataSource = Server;
  280. sb.Provider = ProviderName;
  281. sb.FileName = FileName;
  282. return sb.ConnectionString;
  283. }
  284. }
  285. }
  286. private System.Data.Common.DbConnection GetConnection()
  287. {
  288. try
  289. {
  290. if (UsePersistentConnection)
  291. {
  292. if (PersistentConnection == null || PersistentConnection.State == ConnectionState.Closed)
  293. {
  294. PersistentConnection = CreateNewConnection();
  295. PersistentConnection.Open();
  296. }
  297. }
  298. else
  299. {
  300. if (PersistentConnection != null)
  301. {
  302. CloseConnection();
  303. }
  304. PersistentConnection = CreateNewConnection();
  305. PersistentConnection.Open();
  306. }
  307. }
  308. catch
  309. {
  310. CloseConnection(true);
  311. throw;
  312. }
  313. return PersistentConnection;
  314. }
  315. private System.Data.Common.DbCommand GetCommand(string queryText, bool useSP)
  316. {
  317. System.Data.Common.DbConnection conn = GetConnection();
  318. if (DataSourceType == Collectors.DataSourceType.SqlServer)
  319. {
  320. return new SqlCommand(queryText,(SqlConnection) conn) { CommandType = useSP ? CommandType.StoredProcedure : CommandType.Text, CommandTimeout = CmndTimeOut };
  321. }
  322. else //if (DataSourceType == Collectors.DataSourceType.OLEDB)
  323. {
  324. return new System.Data.OleDb.OleDbCommand(queryText, (System.Data.OleDb.OleDbConnection)conn) { CommandType = useSP ? CommandType.StoredProcedure : CommandType.Text, CommandTimeout = CmndTimeOut };
  325. }
  326. }
  327. private void CloseConnection(bool closeNonPersistent = false)
  328. {
  329. try
  330. {
  331. if (closeNonPersistent && UsePersistentConnection && PersistentConnection != null)
  332. {
  333. PersistentConnection.Close();
  334. PersistentConnection = null;
  335. }
  336. }
  337. catch { }
  338. }
  339. #endregion
  340. }
  341. public enum DataBaseQueryValueReturnType
  342. {
  343. RawValue,
  344. RowCount,
  345. QueryTime
  346. }
  347. public static class DataBaseQueryValueReturnTypeConverter
  348. {
  349. public static DataBaseQueryValueReturnType FromString(string value)
  350. {
  351. if (value.ToLower() == "rowcount")
  352. return DataBaseQueryValueReturnType.RowCount;
  353. else if (value.ToLower() == "querytime")
  354. return DataBaseQueryValueReturnType.QueryTime;
  355. else
  356. return DataBaseQueryValueReturnType.RawValue;
  357. }
  358. }
  359. public enum DataSourceType
  360. {
  361. SqlServer,
  362. OLEDB
  363. }
  364. }