/xlg/tags/Gamma2b/MetX/MetX/Data/TableSchema.cs

# · C# · 325 lines · 236 code · 39 blank · 50 comment · 20 complexity · eae25026e41b6179160911cf03307842 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using System.Data.Common;
  6. namespace MetX.Data
  7. {
  8. /// <summary>C#CD: </summary>
  9. [Serializable]
  10. public class TableSchema
  11. {
  12. /// <summary>C#CD: </summary>
  13. [Serializable]
  14. public class TableColumnSettingCollection : Dictionary<string, TableColumnSetting>
  15. {
  16. bool Contains(string columnName)
  17. {
  18. return this.ContainsKey(columnName.ToLower());
  19. }
  20. /// <summary>C#CD: </summary>
  21. /// <param name="columnName">C#CD: </param>
  22. /// <returns>C#CD: </returns>
  23. public object GetValue(string columnName)
  24. {
  25. columnName = columnName.ToLower();
  26. if (this.ContainsKey(columnName))
  27. return this[columnName].CurrentValue;
  28. return null;
  29. }
  30. /// <summary>C#CD: </summary>
  31. /// <param name="columnName">C#CD: </param>
  32. /// <param name="oVal">C#CD: </param>
  33. public void SetValue(string columnName, object oVal)
  34. {
  35. columnName = columnName.ToLower();
  36. if (!this.ContainsKey(columnName))
  37. {
  38. TableColumnSetting setting = new TableColumnSetting();
  39. setting.ColumnName = columnName;
  40. setting.CurrentValue = oVal;
  41. this.Add(columnName.ToLower(), setting);
  42. }
  43. else
  44. {
  45. this[columnName].CurrentValue = oVal;
  46. }
  47. }
  48. }
  49. /// <summary>
  50. /// This is an intermediary class that holds the current value of a table column
  51. /// for each object instance.
  52. /// </summary>
  53. [Serializable]
  54. public class TableColumnSetting
  55. {
  56. /// <summary>C#CD: </summary>
  57. private string columnName;
  58. /// <summary>C#CD: </summary>
  59. public string ColumnName
  60. {
  61. get { return columnName; }
  62. set { columnName = value; }
  63. }
  64. /// <summary>C#CD: </summary>
  65. private object currentValue;
  66. /// <summary>C#CD: </summary>
  67. public object CurrentValue
  68. {
  69. get { return currentValue; }
  70. set
  71. {
  72. if (value is int && (int)value == int.MinValue)
  73. currentValue = DBNull.Value;
  74. else if (value is DateTime && (DateTime)value == DateTime.MinValue)
  75. currentValue = DBNull.Value;
  76. else
  77. currentValue = value;
  78. }
  79. }
  80. }
  81. /// <summary>
  82. /// Holds information about the base table - this class should be
  83. /// static for each object
  84. /// </summary>
  85. [Serializable]
  86. public class Table
  87. {
  88. public string Name;
  89. public TableColumnCollection Columns = new TableColumnCollection();
  90. public TableIndexCollection Indexes = new TableIndexCollection();
  91. public TableKeyCollection Keys = new TableKeyCollection();
  92. public DataProvider Instance;
  93. /// <summary>The basic INSERT INTO sql statement used for Insert type queries</summary>
  94. public string INSERT_SQL;
  95. /// <summary>The basic UPDATE sql statement used for Update type querie</summary>
  96. public string UPDATE_SQL;
  97. /// <summary>The basic SELECT sql statement used for Select, Count, Exists and paging type queries</summary>
  98. public string SELECT_SQL { get { return "SELECT " + FIELD_LIST + " FROM [" + Name + "] "; } }
  99. /// <summary>The field list as it goes into the SELECT sql statement used for Select, Count, Exists and paging type queries</summary>
  100. public string FIELD_LIST;
  101. /// <summary>C#CD: </summary>
  102. public Table() { }
  103. /// <summary>C#CD: </summary>
  104. /// <param name="tableName">C#CD: </param>
  105. public Table(string tableName)
  106. {
  107. Name = tableName;
  108. }
  109. public TableColumn PrimaryKey
  110. {
  111. get
  112. {
  113. if (Columns != null)
  114. return Columns.GetPrimaryKey();
  115. return null;
  116. }
  117. }
  118. }
  119. [Serializable]
  120. public class TableIndex
  121. {
  122. public string Name;
  123. public bool IsClustered;
  124. public List<string> Columns = new List<string>();
  125. public TableIndex() { }
  126. public TableIndex(IDataReader rdr)
  127. {
  128. this.Name = rdr["name"].ToString();
  129. this.IsClustered = rdr["isclustered"].ToString() == "1";
  130. this.Columns.Add(rdr["column"].ToString());
  131. }
  132. }
  133. [Serializable]
  134. public class TableIndexCollection : List<TableIndex>
  135. {
  136. public TableIndexCollection() { }
  137. }
  138. [Serializable]
  139. public class TableKeyCollection : List<TableKey>
  140. {
  141. public TableKeyCollection() { }
  142. public TableKey Find(string ToFind)
  143. {
  144. foreach (TableKey CurrKey in this)
  145. if(CurrKey.Name.ToLower() == ToFind.ToLower())
  146. return CurrKey;
  147. return null;
  148. }
  149. }
  150. [Serializable]
  151. public class TableKey
  152. {
  153. public string Name;
  154. public bool IsPrimary;
  155. public List<TableKeyColumn> Columns = new List<TableKeyColumn>();
  156. public TableKey() { }
  157. }
  158. [Serializable]
  159. public class TableKeyColumn
  160. {
  161. public string Column;
  162. public string Related;
  163. public TableKeyColumn() { }
  164. public TableKeyColumn(string Column, string Related)
  165. {
  166. this.Column = Column;
  167. this.Related = Related;
  168. }
  169. }
  170. /// <summary>C#CD: </summary>
  171. [Serializable]
  172. public class TableColumnCollection : List<TableColumn>
  173. {
  174. public TableColumnCollection() { }
  175. private Dictionary<string, TableColumn> iList = new Dictionary<string, TableColumn>();
  176. public TableColumn PrimaryKeyColumn = null;
  177. #region Collection Methods
  178. public bool Contains(string columnName)
  179. {
  180. return iList.ContainsKey(columnName.ToLower());
  181. }
  182. public new void Add(TableColumn column)
  183. {
  184. iList.Add(column.ColumnName.ToLower(), column);
  185. base.Add(column);
  186. }
  187. /// <summary>C#CD: </summary>
  188. /// <param name="name">C#CD: </param>
  189. /// <param name="dbType">C#CD: </param>
  190. /// <param name="isNullable">C#CD: </param>
  191. /// <param name="isPrimaryKey">C#CD: </param>
  192. /// <param name="isForeignKey">C#CD: </param>
  193. public void Add(string name, DbType dbType, bool isNullable, bool isPrimaryKey, bool isForeignKey)
  194. {
  195. TableColumn col = new TableColumn();
  196. col.IsPrimaryKey = isPrimaryKey;
  197. col.IsForiegnKey = isForeignKey;
  198. col.IsNullable = isNullable;
  199. col.DataType = dbType;
  200. col.ColumnName = name;
  201. if (!Contains(name))
  202. {
  203. Add(col);
  204. iList.Add(name.ToLower(), col);
  205. }
  206. if (isPrimaryKey)
  207. PrimaryKeyColumn = col;
  208. }
  209. /// <summary>C#CD: </summary>
  210. /// <param name="name">C#CD: </param>
  211. /// <param name="dbType">C#CD: </param>
  212. /// <param name="isNullable">C#CD: </param>
  213. public void Add(string name, DbType dbType, bool isNullable)
  214. {
  215. Add(name, dbType, isNullable, false, false);
  216. }
  217. #endregion
  218. /// <summary>C#CD: </summary>
  219. /// <param name="columnName">C#CD: </param>
  220. public TableColumn GetColumn(string columnName)
  221. {
  222. columnName = columnName.ToLower();
  223. if (iList.ContainsKey(columnName))
  224. return iList[columnName];
  225. return null;
  226. }
  227. /// <summary>C#CD: </summary>
  228. public TableColumn GetPrimaryKey()
  229. {
  230. if (PrimaryKeyColumn != null)
  231. return PrimaryKeyColumn;
  232. TableColumn coll = null;
  233. foreach (TableColumn child in this)
  234. {
  235. if (child.IsPrimaryKey)
  236. {
  237. coll = child;
  238. break;
  239. }
  240. }
  241. PrimaryKeyColumn = this[0];
  242. return coll;
  243. }
  244. }
  245. /// <summary>
  246. /// A helper class to help define the columns in an underlying table
  247. /// </summary>
  248. [Serializable]
  249. public class TableColumn
  250. {
  251. public bool IsForiegnKey;
  252. public bool IsPrimaryKey;
  253. public bool IsNullable;
  254. public bool IsIdentity;
  255. public DbType DataType;
  256. public int MaxLength;
  257. public string ColumnName;
  258. public bool AutoIncrement;
  259. public bool IsIndexed;
  260. /// <summary>C#CD: </summary>
  261. public TableColumn(){ }
  262. /// <summary>C#CD: </summary>
  263. /// <param name="columnName">C#CD: </param>
  264. /// <param name="dbType">C#CD: </param>
  265. /// <param name="isPrimaryKey">C#CD: </param>
  266. /// <param name="isForeignKey">C#CD: </param>
  267. public TableColumn(string columnName, DbType dbType, bool isPrimaryKey, bool isForeignKey)
  268. {
  269. this.ColumnName = columnName;
  270. this.IsPrimaryKey = isPrimaryKey;
  271. this.IsForiegnKey = isForeignKey;
  272. this.DataType = dbType;
  273. }
  274. public TableColumn(string columnName, DbType dbType, bool AutoIncrement, int MaxLength, bool IsNullable, bool isPrimaryKey, bool isForeignKey)
  275. {
  276. this.ColumnName = columnName;
  277. this.IsPrimaryKey = isPrimaryKey;
  278. this.IsForiegnKey = isForeignKey;
  279. this.DataType = dbType;
  280. this.AutoIncrement = AutoIncrement;
  281. this.MaxLength = MaxLength;
  282. this.IsNullable = IsNullable;
  283. }
  284. }
  285. }
  286. }