/Cyotek.SourceSafeSvnMigration/VssUtilities.cs

# · C# · 121 lines · 92 code · 29 blank · 0 comment · 14 complexity · c86c5ce4a9872a264722d8aebe5defa4 MD5 · raw file

  1. using System;
  2. using System.IO;
  3. using SourceSafeTypeLib;
  4. namespace Cyotek.SourceSafeSvnMigration
  5. {
  6. public static class VssUtilities
  7. {
  8. #region  Public Class Methods  
  9. public static bool DoesProjectContainSubProjects(IVSSItem project)
  10. {
  11. bool result;
  12. if (project == null)
  13. throw new ArgumentNullException("project");
  14. if (!project.IsProject())
  15. throw new ArgumentException("project");
  16. result = false;
  17. foreach (IVSSItem childItem in project.Items)
  18. {
  19. if (childItem.IsProject())
  20. {
  21. result = true;
  22. break;
  23. }
  24. }
  25. return result;
  26. }
  27. public static string GetLocalPath(string path, IVSSItem vssFile, Int32 num_chars_to_chop_in_vss_path)
  28. {
  29. string specPath = vssFile.Spec.Substring(num_chars_to_chop_in_vss_path);
  30. specPath = specPath.Replace("/", @"\");
  31. if (specPath.StartsWith(@"\"))
  32. specPath = specPath.Substring(1, specPath.Length - 1);
  33. return Path.Combine(path, specPath);
  34. }
  35. public static bool IsFileCheckedOut(this IVSSItem item)
  36. {
  37. return (item.IsCheckedOut != (int)VSSFileStatus.VSSFILE_NOTCHECKEDOUT);
  38. }
  39. public static bool IsProject(this IVSSItem item)
  40. {
  41. return (item.Type == (int)VSSItemType.VSSITEM_PROJECT);
  42. }
  43. public static VSSDatabase OpenDatabase(string database, string username, string password)
  44. {
  45. VSSDatabase ssDatabase;
  46. if (!string.IsNullOrEmpty(database) && !database.ToLower().EndsWith("srcsafe.ini"))
  47. database = Path.Combine(database, "srcsafe.ini");
  48. ssDatabase = new VSSDatabase();
  49. ssDatabase.Open(string.IsNullOrEmpty(database) ? null : database, string.IsNullOrEmpty(username) ? null : username, string.IsNullOrEmpty(password) ? null : password);
  50. return ssDatabase;
  51. }
  52. public static VSSDatabase OpenDatabase(VssConnectionSettings connectionSettings)
  53. {
  54. if (connectionSettings == null)
  55. throw new ArgumentNullException("connectionSettings");
  56. return VssUtilities.OpenDatabase(connectionSettings.Database, connectionSettings.UserName, connectionSettings.Password);
  57. }
  58. public static bool TestConnection(VssConnectionSettings connectionSettings)
  59. {
  60. Exception ex;
  61. return VssUtilities.TestConnection(connectionSettings, out ex);
  62. }
  63. public static bool TestConnection(VssConnectionSettings connectionSettings, out Exception ex)
  64. {
  65. if (connectionSettings == null)
  66. throw new ArgumentNullException("connectionSettings");
  67. return VssUtilities.TestConnection(connectionSettings.Database, connectionSettings.UserName, connectionSettings.Password, out ex);
  68. }
  69. public static bool TestConnection(string database, string username, string password)
  70. {
  71. Exception ex;
  72. return VssUtilities.TestConnection(database, username, password, out ex);
  73. }
  74. public static bool TestConnection(string database, string username, string password, out Exception ex)
  75. {
  76. VSSDatabase ssDatabase;
  77. ssDatabase = null;
  78. ex = null;
  79. try
  80. {
  81. ssDatabase = VssUtilities.OpenDatabase(database, username, password);
  82. ssDatabase.Close();
  83. }
  84. catch (Exception e)
  85. {
  86. ex = e;
  87. }
  88. return ssDatabase != null;
  89. }
  90. #endregion  Public Class Methods  
  91. }
  92. }