BUGFIX: tf online <path> shouldn't croak if <path> is an add awaiting
[tfs.git] / tools / opentf / LabelsCommand.cs
blob2b6895c3d34282a4ca8c75ae12776a01382b2c02
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 public LabelsCommand(Driver driver, string[] args): base(driver, args)
50 public void BriefOutput(VersionControlLabel[] labels)
52 int maxName = 9, maxOwner = 5;
53 foreach (VersionControlLabel label in labels)
55 if (label.Name.Length > maxName) maxName = label.Name.Length;
57 // domain is stripped on output
58 int ownerNameLen = label.OwnerName.Length;
59 int slash = label.OwnerName.IndexOf('\\');
60 if (-1 != slash) ownerNameLen = label.OwnerName.Length - slash;
62 if (ownerNameLen > maxOwner)
64 maxOwner = ownerNameLen;
68 int maxDate = WindowWidth - maxName - maxOwner - 3;
69 if (maxDate < 0) maxDate = 0;
71 string line = String.Format("{0} {1} {2}",
72 "Label".PadRight(maxName),
73 "Owner".PadRight(maxOwner),
74 "Date".PadRight(maxDate));
75 Console.WriteLine(line);
77 line = String.Format("{0} {1} {2}",
78 "-".PadRight(maxName, '-'),
79 "-".PadRight(maxOwner, '-'),
80 "-".PadRight(maxDate, '-'));
81 Console.WriteLine(line);
83 foreach (VersionControlLabel label in labels)
85 string date = label.LastModifiedDate.ToString("d");
87 // domain is stripped on output
88 string ownerName = label.OwnerName;
89 int slash = label.OwnerName.IndexOf('\\');
90 if (-1 != slash)
92 ownerName = label.OwnerName.Substring(slash+1);
95 line = String.Format("{0} {1} {2}",
96 label.Name.PadRight(maxName),
97 ownerName.PadRight(maxOwner),
98 date);
99 Console.WriteLine(line);
103 public void DetailedOutput(VersionControlLabel[] labels)
105 bool first = true;
107 foreach (VersionControlLabel label in labels)
109 if (!first)
111 Console.WriteLine("=".PadRight(WindowWidth, '='));
113 else first = false;
115 Console.WriteLine("Label : " + label.Name);
116 Console.WriteLine("Scope : " + label.Scope);
117 Console.WriteLine("Owner : " + label.OwnerName);
118 Console.WriteLine("Date : " + label.LastModifiedDate.ToString("F"));
119 Console.WriteLine("Comment: " + label.Comment);
121 Console.WriteLine();
122 Console.WriteLine("Changeset Item");
123 Console.WriteLine("--------- {0}", new String('-', 70));
125 foreach (Item item in label.Items)
127 Console.WriteLine(item.ChangesetId + " " + item.ServerItem);
130 Console.WriteLine();
134 public override void Run()
136 string labelName = null;
137 if (Arguments.Length > 0)
138 labelName = Arguments[0];
140 bool detailed = OptionFormat.Equals("detailed", StringComparison.InvariantCultureIgnoreCase);
141 VersionControlLabel[] labels = VersionControlServer.QueryLabels(labelName, null, OwnerFromString(OptionOwner), detailed);
143 if (detailed) DetailedOutput(labels);
144 else BriefOutput(labels);