Fix #5662 - Gitlive - create a tracking branch
[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         
39         public string toString()
40         {
41                 return 
42                         "active: " + (active ? "true" : "false") + "\n" +
43                         "is_remote: " + (is_remote ? "true" : "false") + "\n" +                 
44                         "lastrev: " + lastrev + "\n" +
45                         "name: " + name + "\n" +
46                         "remote: " + remote + "\n" +
47                         "remoterev: " + remoterev + "\n";
48         }
49         
50         
51         public GitBranch(GitRepo repo)
52         {
53                 this.repo = repo;
54         }
55
56         public static  void loadBranches(GitRepo repo)
57         {
58                 repo.branches = new Gee.HashMap<string,GitBranch>();
59         
60         var branches =  new Gee.HashMap<string,GitBranch>();
61         var local =  new Gee.HashMap<string,GitBranch>();
62         var remotes  =  new Gee.HashMap<string,GitBranch>();
63         
64       //         repo.git( { "fetch",  "-a" } ); == done async before...
65         
66         string[] cmd = { "branch",   "--no-color", "--verbose", "--no-abbrev" , "-a"  };
67         var res = repo.git( cmd );
68         var lines = res.split("\n");
69         for (var i = 0; i < lines.length ; i++) {
70                 var br = new GitBranch(repo);
71                 if (!br.parseBranchListItem(lines[i])) {
72                         continue;
73                 }
74                 GLib.debug("add branch %s", br.realName());
75                 if (!br.is_remote) {
76                         local.set(br.name, br);
77                 } else {
78                         remotes.set(br.remote, br);
79                         }
80                  
81                 branches.set(br.realName(), br);
82                 if (br.active) {
83                         repo.currentBranch = br;
84                 }
85         }
86         
87          var bl = repo.git({
88                 "for-each-ref",
89                 "--format",   "%(refname:short):remotes/%(upstream:short)",
90                 "refs/heads"
91                 }).split("\n");
92         
93         foreach(var line in bl) {
94                 if (line.length < 1) continue;
95                 
96                 var ar = line.split(":remotes/");
97                 var lname= ar[0];
98             var rname = "remotes/" + ar[1];
99             
100                 //print(rname);
101                 // we should always have a local version of it.
102             if (branches.has_key(lname)) {      
103                     branches.get(lname).remote = rname;
104             }
105             
106             if (!branches.has_key(rname) || !branches.has_key(lname)  ) {
107                     continue;
108             }
109             branches.get(lname).remoterev =  branches.get(rname).lastrev;
110                 // flag it for not adding..
111                 
112             branches.get(rname).name = lname;
113         }
114         foreach(var br in branches.values) {
115                 GLib.debug("BRANCH:\n%s\n" , br.toString());
116                 if (br.name.length > 0 || ! /^remotes\/origin\//.match(br.remote)) {
117                         GLib.debug("SKIP - track exists");
118                         continue;
119                 }
120                 var newname = br.remote.replace("remotes/origin/","");
121                 if (branches.has_key(newname)) {
122                         GLib.debug("SKIP - have branch already");
123                         continue;
124                         }
125                     
126                  
127                 repo.git(  { "branch" ,"--track" , newname,  "origin/" + newname} ); 
128                 //
129                 br.name  = newname;
130                 local.set(br.name, br);
131         }
132         
133         /*
134         this bit of the code tries to turn a local branch into a track of a remote one.
135         -- that's probably not a good idea.
136         var r_replace = new Regex("^remotes/");
137         var o_replace = new Regex("^origin/");
138         foreach(var r in remotes.values) {
139                 if (r.name.length >0) {
140                         return;
141                 }
142                 var name = r_replace.replace(r.name, r.name.length,0, "");
143                 name = o_replace.replace(name, name.length,0, "");
144                 name = name.replace("/", ".");
145                 
146         }
147         */
148         repo.branches = local;
149         
150     
151         
152         }
153
154
155         public bool parseBranchListItem(string str)
156         {
157                 if (str.length  < 1) {
158                         return false;
159                 }
160                 this.active = str[0] == '*';
161                 
162                 var parts = Regex.split_simple ("[ \t]+", str.substring(2).strip());
163                 if (parts[1] == "->") { // it's an alias.. eg. remotes/origin/HEAD -> origin/master..
164                         return false;
165                 }
166                 this.is_remote = false;
167                 this.lastrev = parts[1];
168                 if (parts[0].has_prefix("remotes/")) {
169                         this.is_remote  = true;
170                         this.remote = parts[0];
171                 } else {
172                         this.name = parts[0];
173                 }
174             return true;
175         }
176         public string  realName()
177         {
178                 return this.is_remote ? this.remote : this.name;
179         }
180         
181         public void create()
182         {
183         
184         }
185         
186 }
187         
188