/Provider.Source.Sql/SqlSourceProvider.cs

# · C# · 205 lines · 173 code · 32 blank · 0 comment · 26 complexity · befbd3718669da67efa06699b8ca79a4 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data.SqlClient;
  6. using DbDoc.BusinessObjects;
  7. using System.Configuration;
  8. using Microsoft.SqlServer.Server;
  9. using Microsoft.SqlServer.Management.Smo;
  10. using System.Configuration.Provider;
  11. using Microsoft.SqlServer.Management.Common;
  12. using DbDoc.Provider.Source;
  13. using DbDoc.Provider.Persistence;
  14. namespace DbDoc.Provider.Source.Sql
  15. {
  16. public class SqlSourceProvider : SourceProvider
  17. {
  18. private string targetConnectionString;
  19. private List<string> includeDatabases = new List<string>();
  20. private List<string> excludeDatabases = new List<string>();
  21. #region Properties
  22. public override string ConnectionInfo
  23. {
  24. get { return targetConnectionString; }
  25. }
  26. public override string StorageName
  27. {
  28. get
  29. {
  30. if (string.IsNullOrWhiteSpace(ConnectionInfo))
  31. return string.Empty;
  32. string[] settings = ConnectionInfo.Split(new char[] { ';' });
  33. var server = (from s in settings
  34. where s.Split(new char[] { '=' })[0].ToLower() == "server"
  35. select s.Split(new char[] { '=' })[1]).FirstOrDefault();
  36. return server;
  37. }
  38. }
  39. public override IEnumerable<string> ExcludedDatabasesList
  40. {
  41. get { return excludeDatabases; }
  42. }
  43. #endregion
  44. public override void Initialize()
  45. {
  46. Setting connectionString = PersistenceProviderManager.Provider.GetByKey(Constants.Settings.SOURCE_CONNECTIONSTRING);
  47. if (connectionString == null)
  48. throw new ConfigurationException("The source database connection string has not been defined");
  49. targetConnectionString = connectionString.RawValue;
  50. Setting dbs = PersistenceProviderManager.Provider.GetByKey(Constants.Settings.EXCLUDED_DATABASES);
  51. if (dbs != null)
  52. {
  53. excludeDatabases.AddRange(dbs.RawValue.Split(new char[] { ',' }));
  54. }
  55. }
  56. public override IList<string> GetServerDatabases()
  57. {
  58. using (SqlConnection con = new SqlConnection(targetConnectionString))
  59. {
  60. ServerConnection cn = new ServerConnection(con);
  61. Server server = new Server(cn);
  62. IList<string> databases = new List<string>();
  63. foreach (Microsoft.SqlServer.Management.Smo.Database db in server.Databases)
  64. if (!excludeDatabases.Contains(db.Name))
  65. databases.Add(db.Name);
  66. return databases;
  67. }
  68. }
  69. public override IList<string> GetServerTables(string database)
  70. {
  71. using (SqlConnection con = new SqlConnection(targetConnectionString))
  72. {
  73. ServerConnection cn = new ServerConnection(con);
  74. Server server = new Server(cn);
  75. IList<string> tables = new List<string>();
  76. Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];
  77. if (db != null && !excludeDatabases.Contains(db.Name))
  78. foreach (Microsoft.SqlServer.Management.Smo.Table tbl in db.Tables)
  79. tables.Add(tbl.Name);
  80. return tables;
  81. }
  82. }
  83. public override IList<string> GetServerViews(string database)
  84. {
  85. using (SqlConnection con = new SqlConnection(targetConnectionString))
  86. {
  87. ServerConnection cn = new ServerConnection(con);
  88. Server server = new Server(cn);
  89. IList<string> views = new List<string>();
  90. Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];
  91. if (db != null)
  92. foreach (Microsoft.SqlServer.Management.Smo.View vw in db.Views)
  93. views.Add(vw.Name);
  94. return views;
  95. }
  96. }
  97. public override IList<string> GetServerStoredProcs(string database)
  98. {
  99. using (SqlConnection con = new SqlConnection(targetConnectionString))
  100. {
  101. ServerConnection cn = new ServerConnection(con);
  102. Server server = new Server(cn);
  103. IList<string> procs = new List<string>();
  104. Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];
  105. if (db != null)
  106. foreach (Microsoft.SqlServer.Management.Smo.StoredProcedure proc in db.StoredProcedures)
  107. procs.Add(proc.Name);
  108. return procs;
  109. }
  110. }
  111. public override IList<string> GetServerStoredProcs(string database, bool includeSystemObjects)
  112. {
  113. using (SqlConnection con = new SqlConnection(targetConnectionString))
  114. {
  115. ServerConnection cn = new ServerConnection(con);
  116. Server server = new Server(cn);
  117. IList<string> procs = new List<string>();
  118. Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];
  119. if (db != null)
  120. foreach (Microsoft.SqlServer.Management.Smo.StoredProcedure proc in db.StoredProcedures)
  121. if (proc.IsSystemObject == includeSystemObjects)
  122. procs.Add(proc.Name);
  123. return procs;
  124. }
  125. }
  126. public override IList<string> GetServerColumns(string database, string table)
  127. {
  128. using (SqlConnection con = new SqlConnection(targetConnectionString))
  129. {
  130. ServerConnection cn = new ServerConnection(con);
  131. Server server = new Server(cn);
  132. IList<string> columns = new List<string>();
  133. if (server.Databases[database] != null)
  134. {
  135. Microsoft.SqlServer.Management.Smo.Table tbl = server.Databases[database].Tables[table];
  136. if (null != tbl)
  137. foreach (Microsoft.SqlServer.Management.Smo.Column column in tbl.Columns)
  138. columns.Add(column.Name);
  139. }
  140. return columns;
  141. }
  142. }
  143. public override IList<string> GetServerFunctions(string database)
  144. {
  145. using (SqlConnection con = new SqlConnection(targetConnectionString))
  146. {
  147. ServerConnection cn = new ServerConnection(con);
  148. Server server = new Server(cn);
  149. IList<string> functions = new List<string>();
  150. Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];
  151. foreach (Microsoft.SqlServer.Management.Smo.UserDefinedFunction func in db.UserDefinedFunctions)
  152. functions.Add(func.Name);
  153. return functions;
  154. }
  155. }
  156. #region Private Methods
  157. private static void PopulateDbObject(SqlDataReader reader, DbDoc.BusinessObjects.DbObject obj)
  158. {
  159. obj.Id = reader.GetInt32(reader.GetOrdinal("Id"));
  160. obj.Deleted = reader.GetBoolean(reader.GetOrdinal("Deleted"));
  161. obj.Name = reader.GetString(reader.GetOrdinal("Name"));
  162. if (!reader.IsDBNull(reader.GetOrdinal("CommentId")))
  163. obj.Comment.Id = reader.GetInt32(reader.GetOrdinal("CommentId"));
  164. if (!reader.IsDBNull(reader.GetOrdinal("Message")))
  165. obj.Comment.Text = reader.GetString(reader.GetOrdinal("Message"));
  166. if (!reader.IsDBNull(reader.GetOrdinal("IsSystemObject")))
  167. obj.Comment.Text = reader.GetString(reader.GetOrdinal("IsSystemObject"));
  168. if (!reader.IsDBNull(reader.GetOrdinal("SystemInfo")))
  169. obj.Comment.Text = reader.GetString(reader.GetOrdinal("SystemInfo"));
  170. }
  171. #endregion
  172. }
  173. }