FindWorkspace.cs
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System.IO;
using Codice.Client.Common;
using Codice.CM.Common;
using PlasticGui;
namespace Unity.PlasticSCM.Editor
{
internal static class FindWorkspace
{
internal static bool HasWorkspace(string path)
{
string wkPath = PathForApplicationPath(path);
return !string.IsNullOrEmpty(wkPath);
}
internal static string PathForApplicationPath(string path)
{
try
{
return FindWorkspacePath(path, ClientConfig.Get().GetWkConfigDir());
}
catch (NotConfiguredClientException)
{
return null;
}
}
internal static WorkspaceInfo InfoForApplicationPath(string path, IPlasticAPI plasticApi)
{
string wkPath = PathForApplicationPath(path);
if (string.IsNullOrEmpty(wkPath))
return null;
return plasticApi.GetWorkspaceFromPath(wkPath);
}
static string FindWorkspacePath(string path, string wkConfigDir)
{
while (!string.IsNullOrEmpty(path))
{
if (Directory.Exists(Path.Combine(path, wkConfigDir)))
return path;
path = Path.GetDirectoryName(path);
}
return null;
}
}
}