show the difference between two versions for a specified path
[tfs.git] / tools / opentf / ShelvesetsCommand.cs
blobe5c54c0dd59d402ea62c5351d5dacb52d314206d
1 //
2 // ShelvesetsCommand.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("shelvesets", "List shelvesets in server repository.", "[<shelveset name> | <shelveset name;owner name>]")]
38 class ShelvesetsCommand : 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 ShelvesetsCommand(Driver driver, string[] args): base(driver, args)
50 public void BriefOutput(Shelveset[] shelvesets)
52 int maxName = 9, maxOwner = 5;
53 foreach (Shelveset shelveset in shelvesets)
55 if (shelveset.Name.Length > maxName) maxName = shelveset.Name.Length;
57 // domain is stripped on output
58 int ownerNameLen = shelveset.OwnerName.Length;
59 int slash = shelveset.OwnerName.IndexOf('\\');
60 if (-1 != slash) ownerNameLen = shelveset.OwnerName.Length - slash;
62 if (ownerNameLen > maxOwner)
64 maxOwner = ownerNameLen;
68 int maxComment = WindowWidth - maxName - maxOwner - 2;
69 if (maxComment < 0) maxComment = 0;
71 string line = String.Format("{0} {1} {2}",
72 "Shelveset".PadRight(maxName),
73 "Owner".PadRight(maxOwner),
74 "Comment");
75 Console.WriteLine(line);
77 line = String.Format("{0} {1} {2}",
78 "-".PadRight(maxName, '-'),
79 "-".PadRight(maxOwner, '-'),
80 "-".PadRight(maxComment, '-'));
82 Console.WriteLine(line);
84 foreach (Shelveset shelveset in shelvesets)
86 string comment;
87 if (shelveset.Comment.Length > maxComment)
88 comment = shelveset.Comment.Remove(maxComment);
89 else
90 comment = shelveset.Comment;
92 // domain is stripped on output
93 string ownerName = shelveset.OwnerName;
94 int slash = shelveset.OwnerName.IndexOf('\\');
95 if (-1 != slash)
97 ownerName = shelveset.OwnerName.Substring(slash+1);
100 line = String.Format("{0} {1} {2}",
101 shelveset.Name.PadRight(maxName),
102 ownerName.PadRight(maxOwner),
103 comment);
104 Console.WriteLine(line);
108 public void DetailedOutput(Shelveset[] shelvesets)
110 foreach (Shelveset shelveset in shelvesets)
112 Console.WriteLine(shelveset);
116 public override void Run()
118 string name = String.Empty;
119 string owner = OwnerFromString(OptionOwner);
121 if (Arguments.Length > 0)
123 int semicolon = Arguments[0].IndexOf(";");
124 if (semicolon == -1) name = Arguments[0];
125 else
127 name = Arguments[0].Substring(0, semicolon);
128 owner = Arguments[0].Substring(semicolon+1);
132 Shelveset[] shelvesets = VersionControlServer.QueryShelvesets(name, owner);
134 if (shelvesets.Length == 0)
136 if (String.IsNullOrEmpty(name)) name = "*";
137 Console.WriteLine("No shelvesets matching {0};{1}",
138 name, owner);
139 Environment.Exit((int)ExitCode.Failure);
142 //bool detailed = OptionFormat.Equals("detailed", StringComparison.InvariantCultureIgnoreCase);
143 //if (detailed) BriefOutput(shelvesets);
144 //else
145 BriefOutput(shelvesets);