/dev/DbcProvider/DbConnectionParameter.cs

# · C# · 450 lines · 319 code · 84 blank · 47 comment · 56 complexity · a62bee9bd6ce490e51938efc41d4b6a7 MD5 · raw file

  1. using System;
  2. using System.ComponentModel;
  3. using System.Diagnostics;
  4. using System.Diagnostics.CodeAnalysis;
  5. using System.Runtime.CompilerServices;
  6. using System.Text;
  7. using System.Xml.Serialization;
  8. namespace Sqt.DbcProvider
  9. {
  10. /// <summary>
  11. /// Generic database base connection parameter.
  12. /// </summary>
  13. [DefaultProperty( "DatasourceName" )]
  14. [CLSCompliant( true )]
  15. [Serializable]
  16. public class DbConnectionParameter : INotifyPropertyChanged
  17. {
  18. #region Private fields
  19. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  20. [NonSerialized]
  21. private readonly Authentication authentication = new Authentication();
  22. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  23. private ProviderType provider;
  24. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  25. private string datasoureComment;
  26. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  27. private string datasourceAddress;
  28. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  29. private string catalog;
  30. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  31. private int timeout;
  32. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  33. private string applicationName;
  34. [DebuggerBrowsable( DebuggerBrowsableState.Never )]
  35. [NonSerialized]
  36. private TraceSwitch traceSwitch;
  37. #endregion
  38. /// <summary>
  39. /// Default contructor.
  40. /// </summary>
  41. public DbConnectionParameter()
  42. {
  43. Provider = ProviderType.MsSql;
  44. DatasourceAddress = string.Empty;
  45. Catalog = string.Empty;
  46. UserId = string.Empty;
  47. Password = string.Empty;
  48. IntegratedSecurity = true;
  49. Timeout = 2;
  50. this.traceSwitch = new TraceSwitch( "Verbosity", "Verbosity", TraceLevel.Warning.ToString() );
  51. Type thisType = GetType();
  52. PropertyDescriptorCollection pdCollection = TypeDescriptor.GetProperties( thisType );
  53. PropertyDescriptor pdName = pdCollection["DatasourceComment"];
  54. TypeConverter nameConverter = pdName.Converter;
  55. StringLookupConverter nameLookupConverter = (StringLookupConverter)nameConverter;
  56. nameLookupConverter.GetLookupValues += new EventHandler<StringLookupGetValuesEventArgs>( DatasourceName_GetLookupValues );
  57. PropertyDescriptor pdDatasource = pdCollection["DatasourceAddress"];
  58. TypeConverter datasourceConverter = pdDatasource.Converter;
  59. StringLookupConverter datasourceLookupConverter = (StringLookupConverter)datasourceConverter;
  60. datasourceLookupConverter.GetLookupValues += new EventHandler<StringLookupGetValuesEventArgs>( DatasourceAddress_GetLookupValues );
  61. PropertyDescriptor pdCatalog = pdCollection["Catalog"];
  62. TypeConverter catalogConverter = pdCatalog.Converter;
  63. StringLookupConverter catalogLookupConverter = (StringLookupConverter)catalogConverter;
  64. catalogLookupConverter.GetLookupValues += new EventHandler<StringLookupGetValuesEventArgs>( Catalog_GetLookupValues );
  65. PropertyDescriptor pdUserId = pdCollection["UserId"];
  66. TypeConverter userIDConverter = pdUserId.Converter;
  67. StringLookupConverter userIDLookupConverter = (StringLookupConverter)userIDConverter;
  68. userIDLookupConverter.GetLookupValues += new EventHandler<StringLookupGetValuesEventArgs>( UserId_GetLookupValues );
  69. }
  70. /// <summary>
  71. /// Copy constructor.
  72. /// </summary>
  73. /// <param name="that">The parameters to copy.</param>
  74. public DbConnectionParameter( DbConnectionParameter that )
  75. {
  76. Provider = that.Provider;
  77. DatasourceAddress = that.DatasourceAddress;
  78. DatasourceComment = that.DatasourceComment;
  79. Catalog = that.Catalog;
  80. UserId = that.UserId;
  81. Password = that.Password;
  82. IntegratedSecurity = that.IntegratedSecurity;
  83. Timeout = that.Timeout;
  84. ApplicationName = that.ApplicationName;
  85. this.traceSwitch = that.traceSwitch;
  86. }
  87. #region Events
  88. public event EventHandler<StringLookupGetValuesEventArgs> GetDatasourceNameValues;
  89. public event EventHandler<StringLookupGetValuesEventArgs> GetDatasourceAddressValues;
  90. public event EventHandler<StringLookupGetValuesEventArgs> GetCatalogValues;
  91. public event EventHandler<StringLookupGetValuesEventArgs> GetUserIdValues;
  92. /// <inheritdoc />
  93. public event PropertyChangedEventHandler PropertyChanged;
  94. #endregion
  95. #region Properties
  96. /// <summary>
  97. /// The provider to use.
  98. /// </summary>
  99. [Category( "Database" )]
  100. [DefaultValue( ProviderType.MsSql )]
  101. public ProviderType Provider
  102. {
  103. get { return this.provider; }
  104. set
  105. {
  106. if ( value == this.provider )
  107. return;
  108. this.provider = value;
  109. RaisePropertyChanged( "Provider" );
  110. }
  111. }
  112. /// <summary>
  113. /// Add summary description
  114. /// </summary>
  115. [Category( "Database" )]
  116. [DisplayName( "Connection Name" )]
  117. [Description( "An abritary name for the connection. If you have to specify an IP address for some connection the name is useful to remember the connection parameters." )]
  118. [TypeConverter( typeof( StringLookupConverter ) )]
  119. public string DatasourceComment
  120. {
  121. get { return datasoureComment; }
  122. set
  123. {
  124. if ( !Object.Equals( this.datasoureComment, value ) ) {
  125. this.datasoureComment = value;
  126. RaisePropertyChanged();
  127. }
  128. }
  129. }
  130. /// <summary>
  131. /// The datasource / server.
  132. /// </summary>
  133. [Category( "Database" )]
  134. [DisplayName( "Server" )]
  135. [TypeConverter( typeof( StringLookupConverter ) )]
  136. public string DatasourceAddress
  137. {
  138. get { return this.datasourceAddress; }
  139. set
  140. {
  141. if ( value == null )
  142. value = string.Empty;
  143. if ( String.Equals( this.datasourceAddress, value ) )
  144. return;
  145. this.datasourceAddress = value;
  146. RaisePropertyChanged();
  147. }
  148. }
  149. /// <summary>
  150. /// The initial catalog / database.
  151. /// </summary>
  152. [Category( "Database" )]
  153. [DisplayName( "Database" )]
  154. [TypeConverter( typeof( StringLookupConverter ) )]
  155. public string Catalog
  156. {
  157. get { return this.catalog; }
  158. set
  159. {
  160. if ( value == null )
  161. value = string.Empty;
  162. if ( String.Equals( this.catalog, value ) )
  163. return;
  164. this.catalog = value;
  165. RaisePropertyChanged();
  166. }
  167. }
  168. /// <summary>
  169. /// The user id if using server authentication for the login
  170. /// </summary>
  171. [Category( "Database" )]
  172. [DefaultValue( true )]
  173. public bool IntegratedSecurity
  174. {
  175. get { return this.authentication.Integrated; }
  176. set
  177. {
  178. if ( value == this.authentication.Integrated )
  179. return;
  180. this.authentication.Integrated = value;
  181. RaisePropertyChanged();
  182. }
  183. }
  184. /// <summary>
  185. /// The user id if using server authentication for the login
  186. /// </summary>
  187. [Category( "Database" )]
  188. [DisplayName( "Login Name" )]
  189. [TypeConverter( typeof( StringLookupConverter ) )]
  190. public string UserId
  191. {
  192. get { return this.authentication.UserId; }
  193. set
  194. {
  195. if ( value == null )
  196. value = string.Empty;
  197. if ( string.Equals( this.authentication.UserId, value ) )
  198. return;
  199. this.authentication.UserId = value;
  200. RaisePropertyChanged();
  201. }
  202. }
  203. /// <summary>
  204. /// The password if using server authentication for the login
  205. /// </summary>
  206. [Category( "Database" )]
  207. [XmlIgnore]
  208. public string Password
  209. {
  210. get { return this.authentication.Password; }
  211. set
  212. {
  213. if ( value == null )
  214. value = string.Empty;
  215. if ( string.Equals( this.authentication.Password, value ) )
  216. return;
  217. this.authentication.Password = value;
  218. RaisePropertyChanged();
  219. }
  220. }
  221. /// <summary>
  222. /// The timeout when trying to establish / open the connection.
  223. /// </summary>
  224. [Category( "Database" )]
  225. [DisplayName( "Connection Timeout" )]
  226. [DefaultValue( 2 )]
  227. public int Timeout
  228. {
  229. get { return this.timeout; }
  230. set
  231. {
  232. if ( this.timeout == value )
  233. return;
  234. this.timeout = value;
  235. RaisePropertyChanged();
  236. }
  237. }
  238. /// <summary>
  239. /// The verbosity level of the traces.
  240. /// </summary>
  241. [Browsable( false )]
  242. [XmlIgnore]
  243. public string ApplicationName
  244. {
  245. get { return this.applicationName; }
  246. set { this.applicationName = value; }
  247. }
  248. /// <summary>
  249. /// The verbosity level of the traces.
  250. /// </summary>
  251. [Browsable( false )]
  252. [XmlIgnore]
  253. public TraceLevel VerbosityLevel
  254. {
  255. get { return this.traceSwitch.Level; }
  256. set { this.traceSwitch.Level = value; }
  257. }
  258. internal TraceSwitch VerbositySwitch
  259. {
  260. get { return this.traceSwitch; }
  261. }
  262. #endregion
  263. #region Common Object Overrides
  264. /// <inheritdoc />
  265. public override string ToString()
  266. {
  267. StringBuilder sb = new StringBuilder();
  268. sb.Append( "Provider=" ).Append( Provider );
  269. if ( !String.IsNullOrEmpty( DatasourceAddress ) )
  270. sb.Append( ", Datasource=" ).Append( DatasourceAddress );
  271. if ( !String.IsNullOrEmpty( DatasourceComment ) )
  272. sb.Append( " (" ).Append( DatasourceComment ).Append( ")" );
  273. if ( !String.IsNullOrEmpty( Catalog ) )
  274. sb.Append( ", Catalog=" ).Append( Catalog );
  275. if ( IntegratedSecurity )
  276. sb.Append( ", IntegratedSecurity=true" );
  277. if ( !String.IsNullOrEmpty( UserId ) )
  278. sb.Append( ", UserId=" ).Append( UserId );
  279. if ( !String.IsNullOrEmpty( ApplicationName ) )
  280. sb.Append( ", ApplicationName=" ).Append( ApplicationName );
  281. sb.Append( ", Timeout=" ).Append( Timeout );
  282. return sb.ToString();
  283. }
  284. /// <inheritdoc />
  285. public override bool Equals( object obj )
  286. {
  287. if ( obj == null || GetType() != obj.GetType() ) {
  288. return false;
  289. }
  290. var that = (DbConnectionParameter)obj;
  291. if ( this.Provider != that.Provider )
  292. return false;
  293. if ( !String.Equals( this.DatasourceAddress, that.DatasourceAddress ) )
  294. return false;
  295. if ( !String.Equals( this.DatasourceComment, that.DatasourceComment ) )
  296. return false;
  297. if ( !String.Equals( this.Catalog, that.Catalog ) )
  298. return false;
  299. if ( !Object.Equals( this.authentication, that.authentication ) )
  300. return false;
  301. if ( this.Timeout != that.Timeout )
  302. return false;
  303. return true;
  304. }
  305. /// <inheritdoc />
  306. public override int GetHashCode()
  307. {
  308. unchecked {
  309. int hashCode = Provider.GetHashCode();
  310. hashCode = hashCode * 31 + (DatasourceAddress == null ? 0 : DatasourceAddress.GetHashCode());
  311. hashCode = hashCode * 31 + (DatasourceComment == null ? 0 : DatasourceComment.GetHashCode());
  312. hashCode = hashCode * 31 + (Catalog == null ? 0 : Catalog.GetHashCode());
  313. hashCode = hashCode * 31 + (authentication == null ? 0 : authentication.GetHashCode());
  314. hashCode = hashCode * 31 + Timeout;
  315. return hashCode;
  316. }
  317. }
  318. #endregion
  319. #region INotifyPropertyChanged Members
  320. /// <summary>
  321. /// Raises the property changed event.
  322. /// </summary>
  323. [SuppressMessage( "Microsoft.Design", "CA1030:UseEventsWhereAppropriate", Justification = "This method raises an event." )]
  324. protected internal void RaisePropertyChanged( [CallerMemberName] string propertyName = null )
  325. {
  326. if ( PropertyChanged != null ) {
  327. PropertyChanged( this, new PropertyChangedEventArgs( propertyName ) );
  328. }
  329. }
  330. #endregion
  331. #region Event Handler to retrieve standard values for some fields.
  332. private void DatasourceName_GetLookupValues( object sender, StringLookupGetValuesEventArgs args )
  333. {
  334. if ( !Object.Equals( args.Context.Instance, this ) )
  335. return;
  336. if ( this.GetDatasourceNameValues != null ) {
  337. GetDatasourceNameValues( this, args );
  338. }
  339. }
  340. private void DatasourceAddress_GetLookupValues( object sender, StringLookupGetValuesEventArgs args )
  341. {
  342. if ( !Object.Equals( args.Context.Instance, this ) )
  343. return;
  344. if ( this.GetDatasourceAddressValues != null ) {
  345. GetDatasourceAddressValues( this, args );
  346. }
  347. }
  348. private void Catalog_GetLookupValues( object sender, StringLookupGetValuesEventArgs args )
  349. {
  350. if ( !Object.Equals( args.Context.Instance, this ) )
  351. return;
  352. if ( this.GetCatalogValues != null ) {
  353. GetCatalogValues( this, args );
  354. }
  355. }
  356. private void UserId_GetLookupValues( object sender, StringLookupGetValuesEventArgs args )
  357. {
  358. if ( !Object.Equals( args.Context.Instance, this ) )
  359. return;
  360. if ( this.GetUserIdValues != null ) {
  361. GetUserIdValues( this, args );
  362. }
  363. }
  364. #endregion
  365. }
  366. }