show the difference between two versions for a specified path
[tfs.git] / tools / opentf / MergesCommand.cs
blobe04e4927adb3e51a9a03b2d6aa2cc5e37b3b3418
1 //
2 // MergesCommand.cs
3 //
4 // Authors:
5 // Joel Reed (joelwreed@gmail.com)
6 //
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System;
30 using System.Collections.Generic;
31 using System.IO;
32 using System.Text;
33 using Microsoft.TeamFoundation.Client;
34 using Microsoft.TeamFoundation.VersionControl.Common;
35 using Microsoft.TeamFoundation.VersionControl.Client;
36 using Mono.GetOptions;
37 using OpenTF.Common;
39 [Command("merges", "List merges for a path.", "[<source>] <destination>")]
40 class MergesCommand : Command
42 private readonly static string SourceHdr = "Changeset";
43 private readonly static string TargetHdr = "Merged in Changeset";
44 private readonly static string AuthorHdr = "Author";
45 private readonly static string DateHdr = "Date";
47 [Option("Recursive", "R", "recursive")]
48 public bool OptionRecursive = false;
50 public MergesCommand(Driver driver, string[] args): base(driver, args)
54 public void BriefOutput(ChangesetMerge[] merges)
56 if (merges.Length == 0) return;
57 int maxAuthor = 29;
59 string line = String.Format("{0} {1} {2} {3}", SourceHdr, TargetHdr,
60 AuthorHdr.PadRight(maxAuthor), DateHdr);
61 Console.WriteLine(line);
63 line = String.Format("{0} {1} {2} {3}", "-".PadRight(SourceHdr.Length, '-'),
64 "-".PadRight(TargetHdr.Length, '-'),
65 "-".PadRight(maxAuthor, '-'),
66 "-".PadRight(10, '-'));
67 Console.WriteLine(line);
69 foreach (ChangesetMerge merge in merges)
71 string srcver = merge.SourceVersion.ToString();
72 string trgver = merge.TargetVersion.ToString();
73 char partialCh = (merge.Partial)? '*' : ' ';
75 line = String.Format("{0}{1} {2} {3} {4}",
76 srcver.PadLeft(SourceHdr.Length-1),
77 partialCh,
78 trgver.PadLeft(TargetHdr.Length),
79 merge.TargetChangeset.Owner.PadRight(maxAuthor),
80 merge.TargetChangeset.CreationDate.ToString("d"));
81 Console.WriteLine(line);
85 public override void Run()
87 string sourcePath = String.Empty;
88 string targetPath = String.Empty;
90 switch (Arguments.Length)
92 case 0:
93 Console.WriteLine("Usage: tf merges [<source>] <destination>");
94 Environment.Exit((int)ExitCode.Failure);
95 break;
96 case 1:
97 targetPath = Arguments[0];
98 break;
99 case 2:
100 sourcePath = Arguments[0];
101 targetPath = Arguments[1];
102 break;
105 if (!VersionControlPath.IsServerItem(targetPath))
106 targetPath = Path.GetFullPath(targetPath);
108 RecursionType rtype = OptionRecursive ? RecursionType.Full : RecursionType.None;
109 bool setting = Settings.Current.GetAsBool("Merges.Recursive");
110 if (setting) rtype = RecursionType.Full;
112 ChangesetMerge[] merges = VersionControlServer.QueryMerges(sourcePath, null,
113 targetPath, VersionSpec.Latest,
114 null, null, rtype);
116 BriefOutput(merges);