root.node
[tfs.git] / tools / tf / AddCommand.cs
blobe5dd8651d4b5223ad3d7d7ed3b126710cc494e2b
1 //
2 // AddCommand.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("add", "Add file(s) to the repository on commit.")]
38 class AddCommand : Command
40 [Option("Recursive", "R", "recursive")]
41 public bool OptionRecursive = false;
43 [Option("Add other/unknown files", "", "others")]
44 public bool OptionOthers = false;
46 public AddCommand(Driver driver, string[] args): base(driver, args)
50 public List<string> AddOtherFiles(Workspace workspace, string[] args)
52 string path = Environment.CurrentDirectory;
53 if (args.Length > 0)
54 path = Path.GetFullPath(args[0]);
56 char[] charsToTrim = { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar};
57 string itemPath = path.TrimEnd(charsToTrim);
59 workspace.RefreshMappings();
60 string serverPath = workspace.GetServerItemForLocalItem(itemPath);
62 ItemSpec itemSpec = new ItemSpec(itemPath, RecursionType.Full);
63 WorkspaceVersionSpec version = new WorkspaceVersionSpec(workspace);
65 ItemSet itemSet = VersionControlServer.GetItems(itemSpec, version, DeletedState.NonDeleted, ItemType.File, true);
66 Item[] items = itemSet.Items;
68 SortedList<string, bool> itemList = new SortedList<string, bool>(PathComparer);
70 foreach (Item item in items)
72 if (item.ServerItem.Length == serverPath.Length) continue;
73 string serverItem = item.ServerItem.Remove(0, serverPath.Length+1);
74 string fname = Path.Combine(itemPath, serverItem);
75 itemList.Add(fname, true);
78 List<string> paths = new List<string>();
79 DirectoryInfo dir = new DirectoryInfo(itemPath);
81 foreach (FileInfo file in dir.GetFiles("*", SearchOption.AllDirectories))
83 if (itemList.ContainsKey(file.FullName)) continue;
84 Console.WriteLine("Adding " + file.FullName);
85 paths.Add(file.FullName);
88 return paths;
91 public override void Run()
93 Workspace workspace = GetWorkspaceFromCache();
94 List<string> paths;
96 if (OptionOthers)
97 paths = AddOtherFiles(workspace, Arguments);
98 else
100 ConfirmFilesSpecified();
101 paths = VerifiedFullPaths(Arguments);
104 int rc = workspace.PendAdd(paths.ToArray(), OptionRecursive);
105 Console.WriteLine("{0} file(s) added.", rc);