/dotNet4/LizardRemoting/Settings/TFSettings.cs

# · C# · 232 lines · 187 code · 45 blank · 0 comment · 21 complexity · 181ad435e0c005492a7fe59968151020 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml.Serialization;
  5. using System.IO;
  6. using System.IO.IsolatedStorage;
  7. using Lizard.Remoting.Settings;
  8. namespace Ltf.Remoting.Settings
  9. {
  10. [Serializable]
  11. public class TFSettings : ISettings
  12. {
  13. private const string defaultMetaPath = "c:\\LizardMetaData";
  14. public TFSettings()
  15. {
  16. tempPath = Environment.GetEnvironmentVariable("Temp");
  17. includedDrives = "C";
  18. excludedfolders = "bin obj Debug Release x86 x64";
  19. excludedfiles = "exe dll ncb pdb suo";
  20. ltfMetaFolderName = defaultMetaPath;
  21. if (File.Exists("C:\\Program Files (x86)\\Notepad++\\Notepad++.exe"))
  22. editTool = "C:\\Program Files (x86)\\Notepad++\\Notepad++.exe";
  23. else if (File.Exists("C:\\Program Files\\Notepad++\\Notepad++.exe"))
  24. editTool = "C:\\Program Files\\Notepad++\\Notepad++.exe";
  25. else if (File.Exists(Path.Combine(Environment.SystemDirectory, "Notepad.exe")))
  26. editTool = Path.Combine(Environment.SystemDirectory, "Notepad.exe");
  27. }
  28. private string user;
  29. public string User
  30. {
  31. get { return user; }
  32. set { user = value; }
  33. }
  34. public string GetTFSUserName()
  35. {
  36. if (!string.IsNullOrEmpty(user))
  37. return user;
  38. else
  39. return Environment.UserDomainName + "\\" + Environment.UserName;
  40. }
  41. private string password;
  42. public string Password
  43. {
  44. get { return password; }
  45. set { password = value; }
  46. }
  47. private string domain;
  48. public string Domain
  49. {
  50. get { return domain; }
  51. set { domain = value; }
  52. }
  53. private string server;
  54. public string Server
  55. {
  56. get { return server; }
  57. set { server = value; }
  58. }
  59. private string editTool;
  60. public virtual string EditTool
  61. {
  62. get { return editTool; }
  63. set { editTool = value; }
  64. }
  65. private string tempPath;
  66. public virtual string TempPath
  67. {
  68. get { return tempPath; }
  69. set { tempPath = value; }
  70. }
  71. private string metaPath = defaultMetaPath;
  72. public virtual string MetaPath
  73. {
  74. get { return metaPath; }
  75. set {
  76. metaPath = value;
  77. if (!Directory.Exists(MetaPath))
  78. {
  79. metaPath = defaultMetaPath;
  80. }
  81. }
  82. }
  83. private string defaultWorkingPath;
  84. public virtual string DefaultWorkingPath
  85. {
  86. get { return defaultWorkingPath; }
  87. set { defaultWorkingPath = value; }
  88. }
  89. private string x64InstallPath;
  90. public virtual string X64InstallPath
  91. {
  92. get { return x64InstallPath; }
  93. set { x64InstallPath = value; }
  94. }
  95. private string ltfMetaFolderName;
  96. public virtual string LtfMetaFolderName
  97. {
  98. get { return ltfMetaFolderName; }
  99. set {
  100. if (excludedfoldersList!=null && excludedfoldersList.Contains(ltfMetaFolderName))
  101. excludedfoldersList.Remove(ltfMetaFolderName);
  102. ltfMetaFolderName = value;
  103. if (excludedfoldersList != null && !excludedfoldersList.Contains(ltfMetaFolderName))
  104. excludedfoldersList.Add(ltfMetaFolderName);
  105. }
  106. }
  107. private string includedDrives;
  108. private List<string> includedDrivesList;
  109. public virtual string IncludedDrives
  110. {
  111. get { return includedDrives; }
  112. set
  113. {
  114. includedDrives = value;
  115. includedDrivesList = new List<string>(includedDrives.ToUpper().Split(' '));
  116. if (!includedDrivesList.Contains("$"))
  117. includedDrivesList.Add("$");
  118. }
  119. }
  120. private string excludedfolders;
  121. private List<string> excludedfoldersList;
  122. public virtual string Excludedfolders
  123. {
  124. get { return excludedfolders; }
  125. set
  126. {
  127. excludedfolders = value;
  128. excludedfoldersList = new List<string>(excludedfolders.ToUpper().Split(' '));
  129. excludedfoldersList.Add(ltfMetaFolderName);
  130. }
  131. }
  132. private string excludedfiles;
  133. private List<string> excludedfilesList;
  134. public virtual string Excludedfiles
  135. {
  136. get { return excludedfiles; }
  137. set
  138. {
  139. excludedfiles = value;
  140. excludedfilesList = new List<string>(excludedfiles.ToUpper().Split(' '));
  141. }
  142. }
  143. public virtual bool IsFilePathIncluded(string path)
  144. {
  145. if (!includedDrivesList.Contains(path.Substring(0, 1).ToUpper()))
  146. return false;
  147. if (excludedfilesList.Contains(Path.GetExtension(path).Trim().ToUpper()))
  148. return false;
  149. return true;
  150. }
  151. public virtual bool IsFolderPathIncluded(string path)
  152. {
  153. if (!includedDrivesList.Contains(path.Substring(0, 1).ToUpper()))
  154. return false;
  155. if (excludedfoldersList.Contains(Path.GetFileName(path).ToUpper().Trim()))
  156. return false;
  157. return true;
  158. }
  159. public virtual bool IsFullFilePathIncluded(string path)
  160. {
  161. if (!includedDrivesList.Contains(path.Substring(0, 1).ToUpper()))
  162. return false;
  163. string fName = Path.GetDirectoryName(path).Trim();
  164. if (excludedfoldersList.Contains(Path.GetFileName(fName).ToUpper()))
  165. return false;
  166. if (excludedfilesList.Contains(Path.GetExtension(path).ToUpper().Trim()))
  167. return false;
  168. foreach (string folder in (fName.Split('\\')))
  169. if (excludedfoldersList.Contains(folder.ToUpper()))
  170. return false;
  171. return true;
  172. }
  173. private bool autoCheckoutChangedFiles;
  174. public bool AutoCheckoutChangedFiles
  175. {
  176. get { return autoCheckoutChangedFiles; }
  177. set { autoCheckoutChangedFiles = value; }
  178. }
  179. public string ForcedServer { get; set; }
  180. private List<TFSecondarySettings> alternativeServerSettings = new List<TFSecondarySettings>();
  181. public virtual List<TFSecondarySettings> AlternativeServerSettings
  182. {
  183. get {return alternativeServerSettings;}
  184. set { alternativeServerSettings = value; }
  185. }
  186. }
  187. }