forked from trevorr/vss2git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVssPathMapper.cs
executable file
·645 lines (586 loc) · 20.2 KB
/
VssPathMapper.cs
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
/* Copyright 2009 HPDI, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using Hpdi.VssLogicalLib;
namespace Hpdi.Vss2Git
{
/// <summary>
/// Base class for representing VSS items.
/// </summary>
/// <author>Trevor Robinson</author>
class VssItemInfo
{
private readonly string physicalName;
public string PhysicalName
{
get { return physicalName; }
}
private string logicalName;
public string LogicalName
{
get { return logicalName; }
set { logicalName = value; }
}
private bool destroyed;
public bool Destroyed
{
get { return destroyed; }
set { destroyed = value; }
}
public VssItemInfo(string physicalName, string logicalName)
{
this.physicalName = physicalName;
this.logicalName = logicalName;
}
}
/// <summary>
/// Represents the current state of a VSS project.
/// </summary>
/// <author>Trevor Robinson</author>
class VssProjectInfo : VssItemInfo
{
private VssProjectInfo parentInfo;
public VssProjectInfo Parent
{
get { return parentInfo; }
set
{
if (parentInfo != value)
{
if (parentInfo != null)
{
parentInfo.RemoveItem(this);
}
parentInfo = value;
if (parentInfo != null)
{
parentInfo.AddItem(this);
}
}
}
}
private bool isRoot;
public bool IsRoot
{
get { return isRoot; }
set { isRoot = value; }
}
// valid only for root paths; used to resolve project specifiers
private string originalVssPath;
public string OriginalVssPath
{
get { return originalVssPath; }
set { originalVssPath = value; }
}
public bool IsRooted
{
get
{
var project = this;
while (project.parentInfo != null)
{
project = project.parentInfo;
}
return project.isRoot;
}
}
private readonly LinkedList<VssItemInfo> items = new LinkedList<VssItemInfo>();
public IEnumerable<VssItemInfo> Items
{
get { return items; }
}
public VssProjectInfo(string physicalName, string logicalName)
: base(physicalName, logicalName)
{
}
public string GetPath()
{
if (IsRooted)
{
if (parentInfo != null)
{
return Path.Combine(parentInfo.GetPath(), LogicalName);
}
else
{
return LogicalName;
}
}
return null;
}
public bool IsSameOrSubproject(VssProjectInfo parentInfo)
{
var project = this;
while (project != null)
{
if (project == parentInfo)
{
return true;
}
project = project.parentInfo;
}
return false;
}
public void AddItem(VssItemInfo item)
{
items.AddLast(item);
}
public void RemoveItem(VssItemInfo item)
{
items.Remove(item);
}
public bool ContainsLogicalName(string logicalName)
{
foreach (var item in items)
{
if (item.LogicalName.Equals(logicalName))
{
return true;
}
}
return false;
}
public bool ContainsFiles()
{
var subprojects = new LinkedList<VssProjectInfo>();
var project = this;
while (project != null)
{
foreach (var item in project.items)
{
var subproject = item as VssProjectInfo;
if (subproject != null)
{
subprojects.AddLast(subproject);
}
else
{
return true;
}
}
if (subprojects.First != null)
{
project = subprojects.First.Value;
subprojects.RemoveFirst();
}
else
{
project = null;
}
}
return false;
}
public IEnumerable<VssFileInfo> GetAllFiles()
{
var subprojects = new LinkedList<VssProjectInfo>();
var project = this;
while (project != null)
{
foreach (var item in project.items)
{
var subproject = item as VssProjectInfo;
if (subproject != null)
{
subprojects.AddLast(subproject);
}
else
{
yield return (VssFileInfo)item;
}
}
if (subprojects.First != null)
{
project = subprojects.First.Value;
subprojects.RemoveFirst();
}
else
{
project = null;
}
}
}
public IEnumerable<VssProjectInfo> GetAllProjects()
{
var subprojects = new LinkedList<VssProjectInfo>();
var project = this;
while (project != null)
{
foreach (var item in project.items)
{
var subproject = item as VssProjectInfo;
if (subproject != null)
{
subprojects.AddLast(subproject);
yield return subproject;
}
}
if (subprojects.First != null)
{
project = subprojects.First.Value;
subprojects.RemoveFirst();
}
else
{
project = null;
}
}
}
}
/// <summary>
/// Represents the current state of a VSS file.
/// </summary>
/// <author>Trevor Robinson</author>
class VssFileInfo : VssItemInfo
{
private readonly List<VssProjectInfo> projects = new List<VssProjectInfo>();
public IEnumerable<VssProjectInfo> Projects
{
get { return projects; }
}
private int version = 1;
public int Version
{
get { return version; }
set { version = value; }
}
public VssFileInfo(string physicalName, string logicalName)
: base(physicalName, logicalName)
{
}
public void AddProject(VssProjectInfo project)
{
projects.Add(project);
}
public void RemoveProject(VssProjectInfo project)
{
projects.Remove(project);
}
}
/// <summary>
/// Tracks the names and locations of VSS projects and files as revisions are replayed.
/// </summary>
/// <author>Trevor Robinson</author>
class VssPathMapper
{
// keyed by physical name
private readonly Dictionary<string, VssProjectInfo> projectInfos = new Dictionary<string, VssProjectInfo>();
private readonly Dictionary<string, VssProjectInfo> rootInfos = new Dictionary<string, VssProjectInfo>();
private readonly Dictionary<string, VssFileInfo> fileInfos = new Dictionary<string, VssFileInfo>();
public bool IsProjectRooted(string project)
{
VssProjectInfo projectInfo;
if (projectInfos.TryGetValue(project, out projectInfo))
{
return projectInfo.IsRooted;
}
return false;
}
public string GetProjectPath(string project)
{
VssProjectInfo projectInfo;
if (projectInfos.TryGetValue(project, out projectInfo))
{
return projectInfo.GetPath();
}
return null;
}
public void SetProjectPath(string project, string path, string originalVssPath)
{
var projectInfo = new VssProjectInfo(project, path);
projectInfo.IsRoot = true;
projectInfo.OriginalVssPath = originalVssPath;
projectInfos[project] = projectInfo;
rootInfos[project] = projectInfo;
}
public IEnumerable<VssFileInfo> GetAllFiles(string project)
{
VssProjectInfo projectInfo;
if (projectInfos.TryGetValue(project, out projectInfo))
{
return projectInfo.GetAllFiles();
}
return null;
}
public IEnumerable<VssProjectInfo> GetAllProjects(string project)
{
VssProjectInfo projectInfo;
if (projectInfos.TryGetValue(project, out projectInfo))
{
return projectInfo.GetAllProjects();
}
return null;
}
public IEnumerable<string> GetFilePaths(string file, string underProject)
{
var result = new LinkedList<string>();
VssFileInfo fileInfo;
if (fileInfos.TryGetValue(file, out fileInfo))
{
VssProjectInfo underProjectInfo = null;
if (underProject != null)
{
if (!projectInfos.TryGetValue(underProject, out underProjectInfo))
{
return result;
}
}
foreach (var project in fileInfo.Projects)
{
if (underProjectInfo == null || project.IsSameOrSubproject(underProjectInfo))
{
// ignore projects that are not rooted
var projectPath = project.GetPath();
if (projectPath != null)
{
var path = Path.Combine(projectPath, fileInfo.LogicalName);
result.AddLast(path);
}
}
}
}
return result;
}
public int GetFileVersion(string file)
{
VssFileInfo fileInfo;
return fileInfos.TryGetValue(file, out fileInfo) ? fileInfo.Version : 1;
}
public void SetFileVersion(VssItemName name, int version)
{
VssFileInfo fileInfo = GetOrCreateFile(name);
fileInfo.Version = version;
}
public VssItemInfo AddItem(VssItemName project, VssItemName name)
{
var parentInfo = GetOrCreateProject(project);
VssItemInfo itemInfo;
if (name.IsProject)
{
var projectInfo = GetOrCreateProject(name);
projectInfo.Parent = parentInfo;
itemInfo = projectInfo;
}
else
{
var fileInfo = GetOrCreateFile(name);
fileInfo.AddProject(parentInfo);
parentInfo.AddItem(fileInfo);
itemInfo = fileInfo;
}
// update name of item in case it was created on demand by
// an earlier unmapped item that was subsequently renamed
itemInfo.LogicalName = name.LogicalName;
return itemInfo;
}
public VssItemInfo RenameItem(VssItemName name)
{
VssItemInfo itemInfo;
if (name.IsProject)
{
itemInfo = GetOrCreateProject(name);
}
else
{
itemInfo = GetOrCreateFile(name);
}
itemInfo.LogicalName = name.LogicalName;
return itemInfo;
}
public VssItemInfo DeleteItem(VssItemName project, VssItemName name)
{
var parentInfo = GetOrCreateProject(project);
VssItemInfo itemInfo;
if (name.IsProject)
{
var projectInfo = GetOrCreateProject(name);
projectInfo.Parent = null;
itemInfo = projectInfo;
}
else
{
var fileInfo = GetOrCreateFile(name);
fileInfo.RemoveProject(parentInfo);
parentInfo.RemoveItem(fileInfo);
itemInfo = fileInfo;
}
return itemInfo;
}
public VssItemInfo RecoverItem(VssItemName project, VssItemName name)
{
var parentInfo = GetOrCreateProject(project);
VssItemInfo itemInfo;
if (name.IsProject)
{
var projectInfo = GetOrCreateProject(name);
projectInfo.Parent = parentInfo;
itemInfo = projectInfo;
}
else
{
var fileInfo = GetOrCreateFile(name);
fileInfo.AddProject(parentInfo);
parentInfo.AddItem(fileInfo);
itemInfo = fileInfo;
}
return itemInfo;
}
public VssItemInfo PinItem(VssItemName project, VssItemName name)
{
// pinning removes the project from the list of
// sharing projects, so it no longer receives edits
return DeleteItem(project, name);
}
public VssItemInfo UnpinItem(VssItemName project, VssItemName name)
{
// unpinning restores the project to the list of
// sharing projects, so it receives edits
return RecoverItem(project, name);
}
public VssItemInfo BranchFile(VssItemName project, VssItemName newName, VssItemName oldName)
{
Debug.Assert(!newName.IsProject);
Debug.Assert(!oldName.IsProject);
// "branching a file" (in VSS parlance) essentially moves it from
// one project to another (and could potentially change its name)
var parentInfo = GetOrCreateProject(project);
// remove filename from old project
var oldFile = GetOrCreateFile(oldName);
oldFile.RemoveProject(parentInfo);
parentInfo.RemoveItem(oldFile);
// add filename to new project
var newFile = GetOrCreateFile(newName);
newFile.AddProject(parentInfo);
parentInfo.AddItem(newFile);
// retain version number from old file
newFile.Version = oldFile.Version;
return newFile;
}
public VssProjectInfo MoveProjectFrom(VssItemName project, VssItemName subproject, string oldProjectSpec)
{
Debug.Assert(subproject.IsProject);
var parentInfo = GetOrCreateProject(project);
var subprojectInfo = GetOrCreateProject(subproject);
subprojectInfo.Parent = parentInfo;
return subprojectInfo;
}
public VssProjectInfo MoveProjectTo(VssItemName project, VssItemName subproject, string newProjectSpec)
{
var subprojectInfo = GetOrCreateProject(subproject);
var lastSlash = newProjectSpec.LastIndexOf('/');
if (lastSlash > 0)
{
var newParentSpec = newProjectSpec.Substring(0, lastSlash);
var parentInfo = ResolveProjectSpec(newParentSpec);
if (parentInfo != null)
{
// propagate the destroyed flag from the new parent
subprojectInfo.Parent = parentInfo;
subprojectInfo.Destroyed |= parentInfo.Destroyed;
}
else
{
// if resolution fails, the target project has been destroyed
// or is outside the set of projects being mapped
subprojectInfo.Destroyed = true;
}
}
return subprojectInfo;
}
public bool ProjectContainsLogicalName(VssItemName project, VssItemName name)
{
var parentInfo = GetOrCreateProject(project);
return parentInfo.ContainsLogicalName(name.LogicalName);
}
private VssProjectInfo GetOrCreateProject(VssItemName name)
{
VssProjectInfo projectInfo;
if (!projectInfos.TryGetValue(name.PhysicalName, out projectInfo))
{
projectInfo = new VssProjectInfo(name.PhysicalName, name.LogicalName);
projectInfos[name.PhysicalName] = projectInfo;
}
return projectInfo;
}
private VssFileInfo GetOrCreateFile(VssItemName name)
{
VssFileInfo fileInfo;
if (!fileInfos.TryGetValue(name.PhysicalName, out fileInfo))
{
fileInfo = new VssFileInfo(name.PhysicalName, name.LogicalName);
fileInfos[name.PhysicalName] = fileInfo;
}
return fileInfo;
}
private VssProjectInfo ResolveProjectSpec(string projectSpec)
{
if (!projectSpec.StartsWith("$/"))
{
throw new ArgumentException("Project spec must start with $/ but was \"" + projectSpec + "\"", "projectSpec");
}
foreach (var rootInfo in rootInfos.Values)
{
if (projectSpec.StartsWith(rootInfo.OriginalVssPath))
{
var rootLength = rootInfo.OriginalVssPath.Length;
if (!rootInfo.OriginalVssPath.EndsWith("/"))
{
++rootLength;
}
var subpath = projectSpec.Substring(rootLength);
var subprojectNames = subpath.Split('/');
var projectInfo = rootInfo;
foreach (var subprojectName in subprojectNames)
{
var found = false;
foreach (var item in projectInfo.Items)
{
var subprojectInfo = item as VssProjectInfo;
if (subprojectInfo != null && subprojectInfo.LogicalName == subprojectName)
{
projectInfo = subprojectInfo;
found = true;
break;
}
}
if (!found)
{
goto NotFound;
}
}
return projectInfo;
}
}
NotFound:
return null;
}
public static string GetWorkingPath(string workingRoot, string vssPath)
{
if (vssPath == "$")
{
return workingRoot;
}
if (vssPath.StartsWith("$/"))
{
vssPath = vssPath.Substring(2);
}
var relPath = vssPath.Replace(VssDatabase.ProjectSeparatorChar, Path.DirectorySeparatorChar);
return Path.Combine(workingRoot, relPath);
}
}
}