MySQLGenericTableHandler.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections.Generic;
  29. using System.Data;
  30. using System.Reflection;
  31. using System.Text;
  32. using MySql.Data.MySqlClient;
  33. using OpenMetaverse;
  34. namespace OpenSim.Data.MySQL
  35. {
  36. public class MySQLGenericTableHandler<T> : MySqlFramework where T: class, new()
  37. {
  38. // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  39. protected Dictionary<string, FieldInfo> m_Fields =
  40. new Dictionary<string, FieldInfo>();
  41. protected List<string> m_ColumnNames = null;
  42. protected string m_Realm;
  43. protected FieldInfo m_DataField = null;
  44. protected virtual Assembly Assembly
  45. {
  46. get { return GetType().Assembly; }
  47. }
  48. public MySQLGenericTableHandler(MySqlTransaction trans,
  49. string realm, string storeName) : base(trans)
  50. {
  51. m_Realm = realm;
  52. CommonConstruct(storeName);
  53. }
  54. public MySQLGenericTableHandler(string connectionString,
  55. string realm, string storeName) : base(connectionString)
  56. {
  57. m_Realm = realm;
  58. CommonConstruct(storeName);
  59. }
  60. protected void CommonConstruct(string storeName)
  61. {
  62. if (storeName != String.Empty)
  63. {
  64. // We always use a new connection for any Migrations
  65. using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
  66. {
  67. dbcon.Open();
  68. Migration m = new Migration(dbcon, Assembly, storeName);
  69. m.Update();
  70. }
  71. }
  72. Type t = typeof(T);
  73. FieldInfo[] fields = t.GetFields(BindingFlags.Public |
  74. BindingFlags.Instance |
  75. BindingFlags.DeclaredOnly);
  76. if (fields.Length == 0)
  77. return;
  78. foreach (FieldInfo f in fields)
  79. {
  80. if (f.Name != "Data")
  81. m_Fields[f.Name] = f;
  82. else
  83. m_DataField = f;
  84. }
  85. }
  86. private void CheckColumnNames(IDataReader reader)
  87. {
  88. if (m_ColumnNames != null)
  89. return;
  90. List<string> columnNames = new List<string>();
  91. DataTable schemaTable = reader.GetSchemaTable();
  92. foreach (DataRow row in schemaTable.Rows)
  93. {
  94. if (row["ColumnName"] != null &&
  95. (!m_Fields.ContainsKey(row["ColumnName"].ToString())))
  96. columnNames.Add(row["ColumnName"].ToString());
  97. }
  98. m_ColumnNames = columnNames;
  99. }
  100. public virtual T[] Get(string field, string key)
  101. {
  102. return Get(new string[] { field }, new string[] { key });
  103. }
  104. public virtual T[] Get(string[] fields, string[] keys)
  105. {
  106. return Get(fields, keys, String.Empty);
  107. }
  108. public virtual T[] Get(string[] fields, string[] keys, string options)
  109. {
  110. int flen = fields.Length;
  111. if (flen == 0 || flen != keys.Length)
  112. return new T[0];
  113. int flast = flen - 1;
  114. StringBuilder sb = new StringBuilder(1024);
  115. sb.AppendFormat("select * from {0} where ", m_Realm);
  116. using (MySqlCommand cmd = new MySqlCommand())
  117. {
  118. for (int i = 0 ; i < flen ; i++)
  119. {
  120. cmd.Parameters.AddWithValue(fields[i], keys[i]);
  121. if(i< flast)
  122. sb.AppendFormat("`{0}` = ?{0} and ", fields[i]);
  123. else
  124. sb.AppendFormat("`{0}` = ?{0} ", fields[i]);
  125. }
  126. sb.Append(options);
  127. cmd.CommandText = sb.ToString();
  128. return DoQuery(cmd);
  129. }
  130. }
  131. protected T[] DoQuery(MySqlCommand cmd)
  132. {
  133. if (m_trans == null)
  134. {
  135. using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
  136. {
  137. dbcon.Open();
  138. T[] ret = DoQueryWithConnection(cmd, dbcon);
  139. dbcon.Close();
  140. return ret;
  141. }
  142. }
  143. else
  144. {
  145. return DoQueryWithTransaction(cmd, m_trans);
  146. }
  147. }
  148. protected T[] DoQueryWithTransaction(MySqlCommand cmd, MySqlTransaction trans)
  149. {
  150. cmd.Transaction = trans;
  151. return DoQueryWithConnection(cmd, trans.Connection);
  152. }
  153. protected T[] DoQueryWithConnection(MySqlCommand cmd, MySqlConnection dbcon)
  154. {
  155. List<T> result = new List<T>();
  156. cmd.Connection = dbcon;
  157. using (IDataReader reader = cmd.ExecuteReader())
  158. {
  159. if (reader == null)
  160. return new T[0];
  161. CheckColumnNames(reader);
  162. while (reader.Read())
  163. {
  164. T row = new T();
  165. foreach (string name in m_Fields.Keys)
  166. {
  167. if (reader[name] is DBNull)
  168. {
  169. continue;
  170. }
  171. if (m_Fields[name].FieldType == typeof(bool))
  172. {
  173. int v = Convert.ToInt32(reader[name]);
  174. m_Fields[name].SetValue(row, v != 0);
  175. }
  176. else if (m_Fields[name].FieldType == typeof(UUID))
  177. {
  178. m_Fields[name].SetValue(row, DBGuid.FromDB(reader[name]));
  179. }
  180. else if (m_Fields[name].FieldType == typeof(int))
  181. {
  182. int v = Convert.ToInt32(reader[name]);
  183. m_Fields[name].SetValue(row, v);
  184. }
  185. else if (m_Fields[name].FieldType == typeof(uint))
  186. {
  187. uint v = Convert.ToUInt32(reader[name]);
  188. m_Fields[name].SetValue(row, v);
  189. }
  190. else
  191. {
  192. m_Fields[name].SetValue(row, reader[name]);
  193. }
  194. }
  195. if (m_DataField != null)
  196. {
  197. Dictionary<string, string> data =
  198. new Dictionary<string, string>();
  199. foreach (string col in m_ColumnNames)
  200. {
  201. data[col] = reader[col].ToString();
  202. if (data[col] == null)
  203. data[col] = String.Empty;
  204. }
  205. m_DataField.SetValue(row, data);
  206. }
  207. result.Add(row);
  208. }
  209. }
  210. cmd.Connection = null;
  211. return result.ToArray();
  212. }
  213. public virtual T[] Get(string where)
  214. {
  215. using (MySqlCommand cmd = new MySqlCommand())
  216. {
  217. string query = String.Format("select * from {0} where {1}",
  218. m_Realm, where);
  219. cmd.CommandText = query;
  220. return DoQuery(cmd);
  221. }
  222. }
  223. public virtual bool Store(T row)
  224. {
  225. // m_log.DebugFormat("[MYSQL GENERIC TABLE HANDLER]: Store(T row) invoked");
  226. using (MySqlCommand cmd = new MySqlCommand())
  227. {
  228. string query = "";
  229. List<String> names = new List<String>();
  230. List<String> values = new List<String>();
  231. foreach (FieldInfo fi in m_Fields.Values)
  232. {
  233. names.Add(fi.Name);
  234. values.Add("?" + fi.Name);
  235. // Temporarily return more information about what field is unexpectedly null for
  236. // http://opensimulator.org/mantis/view.php?id=5403. This might be due to a bug in the
  237. // InventoryTransferModule or we may be required to substitute a DBNull here.
  238. if (fi.GetValue(row) == null)
  239. throw new NullReferenceException(
  240. string.Format(
  241. "[MYSQL GENERIC TABLE HANDLER]: Trying to store field {0} for {1} which is unexpectedly null",
  242. fi.Name, row));
  243. cmd.Parameters.AddWithValue(fi.Name, fi.GetValue(row).ToString());
  244. }
  245. if (m_DataField != null)
  246. {
  247. Dictionary<string, string> data =
  248. (Dictionary<string, string>)m_DataField.GetValue(row);
  249. foreach (KeyValuePair<string, string> kvp in data)
  250. {
  251. names.Add(kvp.Key);
  252. values.Add("?" + kvp.Key);
  253. cmd.Parameters.AddWithValue("?" + kvp.Key, kvp.Value);
  254. }
  255. }
  256. query = String.Format("replace into {0} (`", m_Realm) + String.Join("`,`", names.ToArray()) + "`) values (" + String.Join(",", values.ToArray()) + ")";
  257. cmd.CommandText = query;
  258. if (ExecuteNonQuery(cmd) > 0)
  259. return true;
  260. return false;
  261. }
  262. }
  263. public virtual bool Delete(string field, string key)
  264. {
  265. return Delete(new string[] { field }, new string[] { key });
  266. }
  267. public virtual bool Delete(string[] fields, string[] keys)
  268. {
  269. // m_log.DebugFormat(
  270. // "[MYSQL GENERIC TABLE HANDLER]: Delete(string[] fields, string[] keys) invoked with {0}:{1}",
  271. // string.Join(",", fields), string.Join(",", keys));
  272. if (fields.Length != keys.Length)
  273. return false;
  274. List<string> terms = new List<string>();
  275. using (MySqlCommand cmd = new MySqlCommand())
  276. {
  277. for (int i = 0 ; i < fields.Length ; i++)
  278. {
  279. cmd.Parameters.AddWithValue(fields[i], keys[i]);
  280. terms.Add("`" + fields[i] + "` = ?" + fields[i]);
  281. }
  282. string where = String.Join(" and ", terms.ToArray());
  283. string query = String.Format("delete from {0} where {1}", m_Realm, where);
  284. cmd.CommandText = query;
  285. return ExecuteNonQuery(cmd) > 0;
  286. }
  287. }
  288. public long GetCount(string field, string key)
  289. {
  290. return GetCount(new string[] { field }, new string[] { key });
  291. }
  292. public long GetCount(string[] fields, string[] keys)
  293. {
  294. if (fields.Length != keys.Length)
  295. return 0;
  296. List<string> terms = new List<string>();
  297. using (MySqlCommand cmd = new MySqlCommand())
  298. {
  299. for (int i = 0; i < fields.Length; i++)
  300. {
  301. cmd.Parameters.AddWithValue(fields[i], keys[i]);
  302. terms.Add("`" + fields[i] + "` = ?" + fields[i]);
  303. }
  304. string where = String.Join(" and ", terms.ToArray());
  305. string query = String.Format("select count(*) from {0} where {1}",
  306. m_Realm, where);
  307. cmd.CommandText = query;
  308. Object result = DoQueryScalar(cmd);
  309. return Convert.ToInt64(result);
  310. }
  311. }
  312. public long GetCount(string where)
  313. {
  314. using (MySqlCommand cmd = new MySqlCommand())
  315. {
  316. string query = String.Format("select count(*) from {0} where {1}",
  317. m_Realm, where);
  318. cmd.CommandText = query;
  319. object result = DoQueryScalar(cmd);
  320. return Convert.ToInt64(result);
  321. }
  322. }
  323. public object DoQueryScalar(MySqlCommand cmd)
  324. {
  325. if (m_trans == null)
  326. {
  327. using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
  328. {
  329. dbcon.Open();
  330. cmd.Connection = dbcon;
  331. Object ret = cmd.ExecuteScalar();
  332. cmd.Connection = null;
  333. dbcon.Close();
  334. return ret;
  335. }
  336. }
  337. else
  338. {
  339. cmd.Connection = m_trans.Connection;
  340. cmd.Transaction = m_trans;
  341. return cmd.ExecuteScalar();
  342. }
  343. }
  344. }
  345. }