add.license.preamble
[tfs.git] / class / Gtk.TeamFoundation / RepositoryView.cs
blob60bd54bfb54f3dd41658a575ba2ad6f4926fb440
1 //
2 // RepositoryView.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.IO;
31 using System.Net;
32 using Gtk;
34 using Microsoft.TeamFoundation.Client;
35 using Microsoft.TeamFoundation.VersionControl.Common;
36 using Microsoft.TeamFoundation.VersionControl.Client;
38 namespace Gtk.TeamFoundation
40 public class RepositoryView : Gtk.TreeView
42 private TreeStore store = new TreeStore(typeof(string), typeof(string));
43 private ICredentialsProvider credentialsProvider;
45 public RepositoryView(ICredentialsProvider credentialsProvider)
47 this.credentialsProvider = credentialsProvider;
48 AppendColumn("name", new CellRendererText (), "text", 0);
50 WorkspaceInfo[] infos = Workstation.Current.GetAllLocalWorkspaceInfo();
51 foreach (WorkspaceInfo info in infos)
53 Gtk.TreeIter serverIter = store.AppendValues(info.ServerUri.ToString(), VersionControlPath.RootFolder);
54 store.AppendValues(serverIter, "", "");
57 Model = store;
58 HeadersVisible = false;
60 ShowAll();
61 RowExpanded += MyRowExpandedHandler;
64 private void MyRowExpandedHandler (object o, RowExpandedArgs args)
66 string path = store.GetValue(args.Iter, 1).ToString();
68 string url = String.Empty;
69 TreeIter iterParent;
71 TreeIter current = args.Iter;
72 while (store.IterParent(out iterParent, current))
74 current = iterParent;
76 url = store.GetValue(current, 0).ToString();
78 //Console.WriteLine("path=" + path + ", url=" + url);
80 ICredentials credentials = credentialsProvider.GetCredentials(new Uri(url), null);
81 TeamFoundationServer tfs = TeamFoundationServerFactory.GetServer(url, credentials);
82 VersionControlServer versionControlServer = tfs.GetService(typeof(VersionControlServer)) as VersionControlServer;
84 int indx = 0;
85 ItemSpec itemSpec = new ItemSpec (path, RecursionType.OneLevel);
86 ItemSet itemSet = versionControlServer.GetItems (itemSpec, VersionSpec.Latest,
87 DeletedState.NonDeleted, ItemType.Any, false);
88 if (itemSet.Items.Length == 0)
89 SetRowValue(args.Iter, indx, " - item list not available - ", "");
91 foreach (Microsoft.TeamFoundation.VersionControl.Client.Item item in itemSet.Items)
93 if (item.ServerItem == path) continue;
95 string shortPath = item.ServerItem.Substring(item.ServerItem.LastIndexOf('/') + 1);
96 if (item.ItemType == ItemType.Folder)
97 shortPath += "/";
99 Gtk.TreeIter child = SetRowValue(args.Iter, indx, shortPath, item.ServerItem);
101 if (item.ItemType == ItemType.Folder)
102 store.AppendValues(child, "", "");
104 indx++;
108 private Gtk.TreeIter SetRowValue(Gtk.TreeIter parent, int childIndx,
109 string cell1, string cell2)
111 Gtk.TreeIter child;
112 if (store.IterNthChild(out child, parent, childIndx))
114 store.SetValue(child, 0, cell1);
115 store.SetValue(child, 1, cell2);
117 else
118 child = store.AppendValues (parent, cell1, cell2);
120 return child;