show the difference between two versions for a specified path
[tfs.git] / tools / opentf / LabelsCommand.cs
blob0187a0d12437be78634e880930f8f0a77a24e0de
1 //
2 //LabelsCommand.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.Client;
35 using Mono.GetOptions;
37 [Command("labels", "View labels by owner or name.", "<label name>")]
38 class LabelsCommand : Command
40 [Option("Format \"brief\" or \"detailed\".", "F", "format")]
41 public string OptionFormat = "";
43 [Option("Owner name", "O", "owner")]
44 public string OptionOwner;
46 [Option("Server path", "P", "path")]
47 public string OptionPath = null;
49 public LabelsCommand(Driver driver, string[] args): base(driver, args)
53 public void BriefOutput(VersionControlLabel[] labels)
55 int maxName = 9, maxOwner = 5;
56 foreach (VersionControlLabel label in labels)
58 if (label.Name.Length > maxName) maxName = label.Name.Length;
60 // domain is stripped on output
61 int ownerNameLen = label.OwnerName.Length;
62 int slash = label.OwnerName.IndexOf('\\');
63 if (-1 != slash) ownerNameLen = label.OwnerName.Length - slash;
65 if (ownerNameLen > maxOwner)
67 maxOwner = ownerNameLen;
71 int maxDate = WindowWidth - maxName - maxOwner - 3;
72 if (maxDate < 0) maxDate = 0;
74 string line = String.Format("{0} {1} {2}",
75 "Label".PadRight(maxName),
76 "Owner".PadRight(maxOwner),
77 "Date".PadRight(maxDate));
78 Console.WriteLine(line);
80 line = String.Format("{0} {1} {2}",
81 "-".PadRight(maxName, '-'),
82 "-".PadRight(maxOwner, '-'),
83 "-".PadRight(maxDate, '-'));
84 Console.WriteLine(line);
86 foreach (VersionControlLabel label in labels)
88 string date = label.LastModifiedDate.ToString("d");
90 // domain is stripped on output
91 string ownerName = label.OwnerName;
92 int slash = label.OwnerName.IndexOf('\\');
93 if (-1 != slash)
95 ownerName = label.OwnerName.Substring(slash+1);
98 line = String.Format("{0} {1} {2}",
99 label.Name.PadRight(maxName),
100 ownerName.PadRight(maxOwner),
101 date);
102 Console.WriteLine(line);
106 public void DetailedOutput(VersionControlLabel[] labels)
108 bool first = true;
110 foreach (VersionControlLabel label in labels)
112 if (!first)
114 Console.WriteLine("=".PadRight(WindowWidth, '='));
116 else first = false;
118 Console.WriteLine("Label : " + label.Name);
119 Console.WriteLine("Scope : " + label.Scope);
120 Console.WriteLine("Owner : " + label.OwnerName);
121 Console.WriteLine("Date : " + label.LastModifiedDate.ToString("F"));
122 Console.WriteLine("Comment: " + label.Comment);
124 Console.WriteLine();
125 Console.WriteLine("Changeset Item");
126 Console.WriteLine("--------- {0}", new String('-', 70));
128 foreach (Item item in label.Items)
130 Console.WriteLine(item.ChangesetId + " " + item.ServerItem);
133 Console.WriteLine();
137 public override void Run()
139 string labelName = null;
140 if (Arguments.Length > 0)
141 labelName = Arguments[0];
143 bool detailed = OptionFormat.Equals("detailed", StringComparison.InvariantCultureIgnoreCase);
144 VersionControlLabel[] labels = VersionControlServer.QueryLabels(labelName, OptionPath, OwnerFromString(OptionOwner), detailed);
146 if (detailed) DetailedOutput(labels);
147 else BriefOutput(labels);