GitBranch.vala
[gitlive] / GitBranch.vala
1 /**
2 represent a git branch..
3 Branching / Gitlive:
4
5 Does repo require branching? - flag in config?
6 ** list of repo's ?? with ability to turn on/off
7
8 Start editing without branch?
9 -> show prompt to start branch
10 -> flag a ticket? optional ??
11
12 Once editing branch...
13 -> merge with squash / ticket...
14 ** show list of repo's with 'working' branches?
15 ** select some/all to merge with a issue fix..
16
17 ?? closing ticket in system ??
18 -> done by the ui?
19
20 need to push all? / fetch all?
21
22
23 list of repo's
24
25
26 */
27
28 public class GitBranch : Object
29 {
30         public GitRepo repo;
31         
32         public bool active = false;
33         public string lastrev = "";
34         public string name = "";
35         public bool is_remote;
36         public string remote = "";
37         public string remoterev = "";
38         public string age = "";
39  
40         
41      
42         
43         public string toString()
44         {
45                 return 
46                         "active: " + (active ? "true" : "false") + "\n" +
47                         "is_remote: " + (is_remote ? "true" : "false") + "\n" +                 
48                         "lastrev: " + lastrev + "\n" +
49                         "name: " + name + "\n" +
50                         "remote: " + remote + "\n" +
51                         "remoterev: " + remoterev + "\n" +
52                         "age: " + age + "\n" ;
53         }
54         
55         
56         public GitBranch(GitRepo repo)
57         {
58                 this.repo = repo;
59         }
60         
61         
62         
63
64         public static  void loadBranches(GitRepo repo)
65         {
66                 repo.branches = new Gee.HashMap<string,GitBranch>();
67         
68         //var branches =  new Gee.HashMap<string,GitBranch>();
69         //var local =  new Gee.HashMap<string,GitBranch>();
70         //var remotes  =  new Gee.HashMap<string,GitBranch>();
71          
72
73                 repo.loadRemoteHeads();
74                 
75                  
76                 var r = repo.repo.enumerate_branches(Ggit.BranchType.LOCAL);
77                 while (r.next()) {
78                         var br = new GitBranch(repo);
79                         var gbr = r.get() as Ggit.Branch;
80                         repo.branches.set(gbr.get_name(), br);
81                         br.active = gbr.is_head();
82                         
83                         
84                 }
85                 
86                 
87         
88       //         repo.git( { "fetch",  "-a" } ); == done async before...
89         
90         string[] cmd = { "branch",   "--no-color", "--verbose", "--no-abbrev" , "-a"  };
91         var res = repo.git( cmd );
92         var lines = res.split("\n");
93         for (var i = 0; i < lines.length ; i++) {
94                 var br = new GitBranch(repo);
95                 if (!br.parseBranchListItem(lines[i])) {
96                         continue;
97                 }
98                 GLib.debug("add branch %s", br.realName());
99                 if (!br.is_remote) {
100                         local.set(br.name, br);
101                 } else {
102                         remotes.set(br.remote, br);
103                         }
104                  
105                 branches.set(br.realName(), br);
106                 if (br.active) {
107                         repo.currentBranch = br;
108                 }
109         }
110         
111          var bl = repo.git({
112                 "for-each-ref",
113                 "--format",   "%(refname:short):remotes/%(upstream:short):remotes/%(authordate:relative)",
114                 "refs/heads"
115                 }).split("\n");
116         
117         foreach(var line in bl) {
118                 if (line.length < 1) continue;
119                 
120                 var ar = line.split(":remotes/");
121                 var lname= ar[0];
122             var rname = "remotes/" + ar[1];
123             
124             
125                 //print(rname);
126                 // we should always have a local version of it.
127             if (branches.has_key(lname)) {      
128                     branches.get(lname).remote = rname;
129                     branches.get(lname).age = ar[2];
130             }
131             
132             if (!branches.has_key(rname) || !branches.has_key(lname)  ) {
133                     continue;
134             }
135             branches.get(lname).remoterev =  branches.get(rname).lastrev;
136                 // flag it for not adding..
137                 
138             branches.get(rname).name = lname;
139         }
140         foreach(var br in branches.values) {
141                 GLib.debug("BRANCH:\n%s\n" , br.toString());
142                 if (br.name.length > 0 || ! /^remotes\/origin\//.match(br.remote)) {
143                         GLib.debug("SKIP - track exists");
144                         continue;
145                 }
146                 var newname = br.remote.replace("remotes/origin/","");
147                 if (branches.has_key(newname)) {
148                         GLib.debug("SKIP - have branch already");
149                         continue;
150                         }
151                     
152                  
153                 repo.git(  { "branch" ,"--track" , newname,  "origin/" + newname} ); 
154                 //
155                 br.name  = newname;
156                 local.set(br.name, br);
157         }
158         
159         /*
160         this bit of the code tries to turn a local branch into a track of a remote one.
161         -- that's probably not a good idea.
162         var r_replace = new Regex("^remotes/");
163         var o_replace = new Regex("^origin/");
164         foreach(var r in remotes.values) {
165                 if (r.name.length >0) {
166                         return;
167                 }
168                 var name = r_replace.replace(r.name, r.name.length,0, "");
169                 name = o_replace.replace(name, name.length,0, "");
170                 name = name.replace("/", ".");
171                 
172         }
173         */
174         repo.branches = local;
175         
176     
177         
178         }
179
180
181         public bool parseBranchListItem(string str)
182         {
183                 if (str.length  < 1) {
184                         return false;
185                 }
186                 this.active = str[0] == '*';
187                 
188                 var parts = Regex.split_simple ("[ \t]+", str.substring(2).strip());
189                 if (parts[1] == "->") { // it's an alias.. eg. remotes/origin/HEAD -> origin/master..
190                         return false;
191                 }
192                 this.is_remote = false;
193                 this.lastrev = parts[1];
194                 if (parts[0].has_prefix("remotes/")) {
195                         this.is_remote  = true;
196                         this.remote = parts[0];
197                 } else {
198                         this.name = parts[0];
199                 }
200             return true;
201         }
202         public string  realName()
203         {
204                 return this.is_remote ? this.remote : this.name;
205         }
206         
207         public void create()
208         {
209         
210         }
211         
212 }
213         
214