/Blocks/Data/Src/Data/ConnectionString.cs

# · C# · 232 lines · 159 code · 22 blank · 51 comment · 14 complexity · 59db0be1d094b5b1eee69db6c94f8e08 MD5 · raw file

  1. //===============================================================================
  2. // Microsoft patterns & practices Enterprise Library
  3. // Data Access Application Block
  4. //===============================================================================
  5. // Copyright Š Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===============================================================================
  11. using System;
  12. using System.Globalization;
  13. using System.Text;
  14. using Microsoft.Practices.EnterpriseLibrary.Data.Properties;
  15. namespace Microsoft.Practices.EnterpriseLibrary.Data
  16. {
  17. /// <summary>
  18. /// ConnectionString class constructs a connection string by
  19. /// inserting a username and password into a template.
  20. /// </summary>
  21. public class ConnectionString
  22. {
  23. private const char CONNSTRING_DELIM = ';';
  24. private string connectionString;
  25. private string connectionStringWithoutCredentials;
  26. private string userIdTokens;
  27. private string passwordTokens;
  28. /// <summary>
  29. /// Initializes a new instance of the <see cref="ConnectionString"/> with a connection string, the user ID tokens and password tokens.
  30. /// </summary>
  31. /// <param name="connectionString">The connection string.</param>
  32. /// <param name="userIdTokens">The user id tokens that can be parsed out of the connection string.</param>
  33. /// <param name="passwordTokens">The password tokens that can be parsed out of the conection string.</param>
  34. public ConnectionString(string connectionString, string userIdTokens, string passwordTokens)
  35. {
  36. if (string.IsNullOrEmpty(connectionString)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "connectionString");
  37. if (string.IsNullOrEmpty(userIdTokens)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "userIdTokens");
  38. if (string.IsNullOrEmpty(passwordTokens)) throw new ArgumentException(Resources.ExceptionNullOrEmptyString, "passwordTokens");
  39. this.connectionString = connectionString;
  40. this.userIdTokens = userIdTokens;
  41. this.passwordTokens = passwordTokens;
  42. this.connectionStringWithoutCredentials = null;
  43. }
  44. /// <summary>
  45. /// Gets or sets the name of the user.
  46. /// </summary>
  47. /// <value>The name of the user.</value>
  48. /// <devdoc>
  49. /// Database username for the connection string.
  50. /// </devdoc>
  51. public string UserName
  52. {
  53. get
  54. {
  55. string lowConnString = connectionString.ToLowerInvariant();
  56. int uidPos;
  57. int uidMPos;
  58. GetTokenPositions(userIdTokens, out uidPos, out uidMPos);
  59. if (0 <= uidPos)
  60. {
  61. // found a user id, so pull out the value
  62. int uidEPos = lowConnString.IndexOf(CONNSTRING_DELIM, uidMPos);
  63. return connectionString.Substring(uidMPos, uidEPos - uidMPos);
  64. }
  65. else
  66. {
  67. return String.Empty;
  68. }
  69. }
  70. set
  71. {
  72. string lowConnString = connectionString.ToLowerInvariant();
  73. int uidPos;
  74. int uidMPos;
  75. GetTokenPositions(userIdTokens, out uidPos, out uidMPos);
  76. if (0 <= uidPos)
  77. {
  78. // found a user id, so replace the value
  79. int uidEPos = lowConnString.IndexOf(CONNSTRING_DELIM, uidMPos);
  80. connectionString = connectionString.Substring(0, uidMPos) +
  81. value + connectionString.Substring(uidEPos);
  82. //_connectionStringNoCredentials = RemoveCredentials(_connectionString);
  83. }
  84. else
  85. {
  86. //no user id in the connection string so just append to the connection string
  87. string[] tokens = userIdTokens.Split(',');
  88. connectionString += tokens[0] + value + CONNSTRING_DELIM;
  89. }
  90. }
  91. }
  92. /// <devdoc>
  93. /// User password for the connection string.
  94. /// </devdoc>
  95. public string Password
  96. {
  97. get
  98. {
  99. string lowConnString = connectionString.ToLowerInvariant();
  100. int pwdPos;
  101. int pwdMPos;
  102. GetTokenPositions(passwordTokens, out pwdPos, out pwdMPos);
  103. if (0 <= pwdPos)
  104. {
  105. // found a password, so pull out the value
  106. int pwdEPos = lowConnString.IndexOf(CONNSTRING_DELIM, pwdMPos);
  107. return connectionString.Substring(pwdMPos, pwdEPos - pwdMPos);
  108. }
  109. else
  110. {
  111. return String.Empty;
  112. }
  113. }
  114. set
  115. {
  116. string lowConnString = connectionString.ToLowerInvariant();
  117. int pwdPos;
  118. int pwdMPos;
  119. GetTokenPositions(passwordTokens, out pwdPos, out pwdMPos);
  120. if (0 <= pwdPos)
  121. {
  122. // found a password, so replace the value
  123. int pwdEPos = lowConnString.IndexOf(CONNSTRING_DELIM, pwdMPos);
  124. connectionString = connectionString.Substring(0, pwdMPos) + value + connectionString.Substring(pwdEPos);
  125. //_connectionStringNoCredentials = RemoveCredentials(_connectionString);
  126. }
  127. else
  128. {
  129. //no password in the connection string so just append to the connection string
  130. string[] tokens = passwordTokens.Split(',');
  131. connectionString += tokens[0] + value + CONNSTRING_DELIM;
  132. }
  133. }
  134. }
  135. /// <devdoc>
  136. /// Gets the formatted connection string.
  137. /// </devdoc>
  138. public override string ToString()
  139. {
  140. return connectionString;
  141. }
  142. /// <devdoc>
  143. /// Gets the formatted connection string without the username and password.
  144. /// </devdoc>
  145. public string ToStringNoCredentials()
  146. {
  147. if (connectionStringWithoutCredentials == null)
  148. connectionStringWithoutCredentials = RemoveCredentials(connectionString);
  149. return connectionStringWithoutCredentials;
  150. }
  151. /// <summary>
  152. /// Formats a new connection string with a user ID and password.
  153. /// </summary>
  154. /// <param name="connectionStringToFormat">
  155. /// The connection string to format.
  156. /// </param>
  157. public ConnectionString CreateNewConnectionString(string connectionStringToFormat)
  158. {
  159. return new ConnectionString(connectionStringToFormat, userIdTokens, passwordTokens);
  160. }
  161. private void GetTokenPositions(string tokenString, out int tokenPos, out int tokenMPos)
  162. {
  163. string[] tokens = tokenString.Split(',');
  164. int currentPos = -1;
  165. int previousPos = -1;
  166. string lowConnString = connectionString.ToLowerInvariant();
  167. //initialze output parameter
  168. tokenPos = -1;
  169. tokenMPos = -1;
  170. foreach (string token in tokens)
  171. {
  172. currentPos = lowConnString.IndexOf(token);
  173. if (currentPos > previousPos)
  174. {
  175. tokenPos = currentPos;
  176. tokenMPos = currentPos + token.Length;
  177. previousPos = currentPos;
  178. }
  179. }
  180. }
  181. private string RemoveCredentials(string connectionStringToModify)
  182. {
  183. StringBuilder connStringNoCredentials = new StringBuilder();
  184. string[] tokens = connectionStringToModify.ToLowerInvariant().Split(CONNSTRING_DELIM);
  185. string thingsToRemove = userIdTokens + "," + passwordTokens;
  186. string[] avoidTokens = thingsToRemove.ToLowerInvariant().Split(',');
  187. foreach (string section in tokens)
  188. {
  189. bool found = false;
  190. string token = section.Trim();
  191. if (token.Length != 0)
  192. {
  193. foreach (string avoidToken in avoidTokens)
  194. {
  195. if (token.StartsWith(avoidToken))
  196. {
  197. found = true;
  198. break;
  199. }
  200. }
  201. if (!found)
  202. {
  203. connStringNoCredentials.Append(token + CONNSTRING_DELIM);
  204. }
  205. }
  206. }
  207. return connStringNoCredentials.ToString();
  208. }
  209. }
  210. }