Git.vala
[gitlive] / Git.vala
1
2 // valac -o /tmp/ggit Git.vala --pkg libgit2-glib-1.0 --pkg libsoup-2.4 --pkg gee-0.8 -g
3
4
5
6 void main()
7 {
8          GLib.Log.set_handler(null, 
9             GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING | GLib.LogLevelFlags.LEVEL_INFO, 
10             (dom, lvl, msg) => {
11                                         
12                                         
13                // should we debug..
14                                         
15                         
16                print("%s\n", msg);
17             }
18          ); 
19
20         Ggit.init();
21         
22         var loop = new MainLoop();
23         
24         var a = new GitLive.Repo("/home/alan/gitlive/gitlive");
25         
26         a.loadRemoteHeads.begin((obj,res) => {
27                 a.loadRemoteHeads.end(res);
28                 print("got results");
29                 a.loadLocalBranches();
30                 loop.quit();
31         });
32         loop.run();
33         //a.mergeMasterIntoHead();
34         //a.walkDiff();
35         //return;
36         //a.is_managed();
37         //a.is_autocommit();
38         
39
40         //a.fetchAll();
41         //
42         /*
43         var a = new GitLive.Repo("/home/alan/git/test1-clone");
44         //a.fetchAll();
45         var str = (new GLib.DateTime.now_utc()).format("%Y-%m-%d %H:%M:%S");
46         GLib.FileUtils.set_contents("/home/alan/git/test1-clone/test1",  str); 
47         
48         var ix = a.repo.get_index();
49         ix.add_path("test1");
50         ix.write();
51         var treeoid = ix.write_tree();
52
53         var head = a.repo.get_head();
54         var parent = head.lookup() as Ggit.Commit;
55         Ggit.Commit[] parents = (parent == null) ? 
56                 new Ggit.Commit[] {} :
57                 new Ggit.Commit[] { parent };
58
59         var tree = a.repo.lookup(treeoid,typeof (Ggit.Tree))  as   Ggit.Tree;// odd format.. 
60         
61         var sig = new Ggit.Signature.now("Alan Knowles", "alan@roojs.com");
62         a.repo.create_commit("HEAD", sig, sig, null, "test commit " + str, tree, parents);
63         */
64         // mmh.. no git add/commit in library...
65 //      string[] spawn_args = {"git", "commit", "-m", "test", "-a"};
66         //string[] spawn_env = Environ.get ();
67 //      Process.spawn_sync ("/home/alan/git/test1-clone", spawn_args, spawn_env, SpawnFlags.SEARCH_PATH, null);
68  
69         //a.pushAll();
70 }
71  
72
73 namespace  GitLive {
74
75         public class Repo : Object {
76
77                 string name = "";
78                 public Ggit.Repository  repo;
79                 Callbacks callbacks;
80
81                 public Repo(string path)
82                 {
83                         this.name = GLib.Path.get_basename(path);
84                         this.repo = Ggit.Repository.open(GLib.File.new_for_path(path));
85                         this.callbacks = new Callbacks(this);
86                 
87                 }
88                 Ggit.Branch                                             head = null;
89             Gee.ArrayList<Ggit.Branch>          branches = null;
90             Ggit.RemoteHead[]                           remote_heads = null;
91                 public void loadLocalBranches(bool force = false)
92                 {
93                         if (!force && this.branches != null) {
94                                 return;
95                         }
96                         
97                         this.branches =  new Gee.ArrayList<Ggit.Branch>();
98                         var r = this.repo.enumerate_branches(Ggit.BranchType.LOCAL);
99                         while (r.next()) {
100                                 var br = r.get() as Ggit.Branch;
101                                 //var head = this.repo.revparse("refs/heads/" + br.get_name() ).get_id();
102                                 //var rhead = this.repo.revparse(br.get_upstream().get_name() ).get_id();
103                             GLib.debug("got branch: H=%s name = %s upstream = %s oid = %s ", 
104                                                 br.is_head() ? "Y" : "n",
105                                                 br.get_name(), 
106                                                 br.get_upstream().get_name().substring(20), 
107                                             br.get_target().to_string());
108                                 this.branches.add(br);
109                                 if (br.is_head()) {
110                                         GLib.debug("HEAD= %s", br.get_name());
111                                         this.head = br;
112                                 }
113                                 
114                         }
115                         
116                         
117                 }
118                  
119                 public bool is_managed()
120                 {
121                         GLib.debug("is_managed: %d", this.repo.get_config().get_int32("gitlive.managed"));
122                         return this.repo.get_config().get_int32("gitlive.managed") == 1;
123                 }
124                 
125                 
126                 public bool is_autocommit ()
127                 {       
128                         GLib.debug("is_autocommit: %d", this.repo.get_config().get_int32("gitlive.autocommit"));
129                         return this.repo.get_config().get_int32("gitlive.autocommit") == 1;
130                 }
131                 public void set_autocommit(bool val)
132                 {
133                         this.repo.get_config().set_int32("gitlive.autocommit", val ? 1 : 0);
134                 
135                 }
136                  
137                 public void walkDiff()
138                 {
139                         this.loadLocalBranches();
140                         
141                         
142                         
143                         var oid =  this.repo.revparse(this.head.get_name() ).get_id()  ;
144                         var moid =  this.repo.revparse("refs/heads/master" ).get_id()  ;
145                         
146                         var a = new Ggit.RevisionWalker(this.repo);
147                         a.set_sort_mode(Ggit.SortMode.TOPOLOGICAL);
148                         a.push(oid);
149                         a.hide(moid);
150                         var last = oid;
151                         for (var noid = a.next(); noid != null; noid= a.next()) {
152                                 //var commit = this.repo.lookup(noid, typeof(Ggit.Commit)) as Ggit.Commit;
153                                 GLib.debug("rev: %s",
154                                         noid.to_string()
155                                 );
156                                 last = noid;
157                         }
158                         var commit = this.repo.lookup(last, typeof(Ggit.Commit)) as Ggit.Commit;
159                         var parent = commit.get_parents();
160                         GLib.debug("parent = %s", parent.get_id(0).to_string());
161                         var master_rev =  parent.get_id(0);
162                         var master_commit  = this.repo.lookup_commit(master_rev);;
163                         
164                         var head_commit = this.repo.lookup_commit(oid);
165                         
166                         var master_tree = master_commit.get_tree();
167                         var head_tree = head_commit.get_tree();
168                         
169                         var diff = new Ggit.Diff.tree_to_tree(this.repo, master_tree, head_tree, new Ggit.DiffOptions());
170                         
171                         diff.print(Ggit.DiffFormatType.PATCH, ( delta,  hunk,  line) => {
172                                 GLib.debug("%d: %s, %s", line.get_new_lineno(), line.get_origin().to_string(), line.get_text());
173                                 return 0;
174                         });
175                         // let's try a merge..
176                         var mo = new Ggit.MergeOptions();
177                         mo.set_file_favor(Ggit.MergeFileFavor.THEIRS);
178                         var ix = this.repo.merge_trees(master_tree, master_tree, head_tree, mo);
179                         
180                         if (ix.has_conflicts()) {
181                                 GLib.debug("merge has conflicts");
182                                 return;
183                         }
184                          var treeoid = ix.write_tree();
185                          
186                          
187                           
188                         var parents =   new Ggit.Commit[] { master_commit };
189
190
191                         var new_tree = this.repo.lookup(treeoid,typeof (Ggit.Tree))  as   Ggit.Tree;
192                         
193                         var sig = new Ggit.Signature.now(
194                                         this.repo.get_config().get_string("user.name"),
195                                         this.repo.get_config().get_string("user.email")
196                         );
197                         
198                         
199                         
200                         this.repo.create_commit("HEAD", sig, sig, null, "Test Merge", new_tree, parents);
201          
202                         
203                         
204                 }
205                 public void mergeMasterIntoHead()
206                 {
207                         // assumes head is not master...
208                         this.loadLocalBranches();
209                         GLib.debug("head rev = %s", this.head.get_name());
210                         var head_oid =  this.repo.revparse(this.head.get_name() ).get_id()  ;
211                         //var master_oid =  this.repo.revparse("refs/heads/master" ).get_id()  ;
212                         var master_oid =  this.repo.revparse("HEAD" ).get_id()  ;
213
214                         var master_commit  = this.repo.lookup_commit(master_oid);;
215                         var head_commit = this.repo.lookup_commit(head_oid);
216                          
217                 
218                         var anc_oid = this.repo.merge_base(master_commit.get_id(), head_commit.get_id());
219                         
220                         var anc_commit = this.repo.lookup_commit(anc_oid);
221                         var anc_tree = anc_commit.get_tree();
222                         
223                         var mo = new Ggit.MergeOptions();
224                         var co = new Ggit.CheckoutOptions();
225                         var the_ref = this.repo.lookup_reference_dwim("refs/heads/master");
226
227                     var ac = new Ggit.AnnotatedCommit.from_ref(this.repo, the_ref);
228                         
229                         var commits =   new Ggit.AnnotatedCommit[] { ac };
230                         
231                         this.repo.merge(commits, mo, co);
232                         
233                         var cfg = this.repo.get_config().snapshot();
234                         
235                     var sig = new Ggit.Signature.now(
236                                         cfg.get_string("user.name"),
237                                         cfg.get_string("user.email")
238                         );
239                         var new_head = this.repo.get_head();
240                         var oid = new_head.get_target();
241
242                         var ix = this.repo.get_index();
243  
244                         ix.write();
245                         var treeoid = ix.write_tree();
246
247                         var new_tree = this.repo.lookup(treeoid,typeof (Ggit.Tree))  as   Ggit.Tree;
248                         
249                         var parent = new_head.lookup() as Ggit.Commit;
250                         Ggit.Commit[] parents =  new Ggit.Commit[] { parent };
251                         
252                         this.repo.create_commit("refs/heads/" + this.head.get_name(), sig, sig, null, "Test Merge", new_tree, parents);
253          
254                 }
255                 
256                 
257                 /*
258                 public bool doMergeClose(string commit_message)
259                 {
260                         this.loadLocalBranches(true);
261                         var oldbranch = this.head.get_name();
262             // going to asume this is merge trees..
263                            string [] cmd = { "merge",   "--squash",  oldbranch };
264                            this.git( cmd );
265                            cmd = { "commit",   "-a" , "-m",  commit_message };
266                            this.git( cmd );
267                            this.push();
268                            this.loadBranches(); // updates lastrev..
269                
270                        var notification = new Notify.Notification(
271                                "Merged branch %s to %s".printf(oldbranch, master),
272                                "",
273                                 "dialog-information"
274                                
275                        );
276
277                        notification.set_timeout(5);
278                        notification.show();   
279                
280                 
281                 }
282                 */
283                 
284                 
285                 public bool is_auto_branch ()
286                 {
287                         if (this.name == "gitlog") {
288                                 return false;
289                         }
290                         // check remote...
291                         if (this.is_managed()) {
292                                 return true;
293                         }
294                         return false;
295                         
296          
297                 }
298                 
299                 public async void loadRemoteHeads(bool force = false)
300                 {
301                     SourceFunc callback = loadRemoteHeads.callback;
302
303                         if (!force && this.remote_heads != null) {
304                                 return;
305                         }
306                         var r = this.repo.lookup_remote("origin");
307                         r.connect(Ggit.Direction.FETCH, this.callbacks, null, null);
308                         this.remote_heads = r.list();
309                         
310                         foreach(var br in this.remote_heads) {
311                                 if (!br.get_name().has_prefix("refs/heads/")) {
312                                         continue;
313                                 }
314                                 
315                                 GLib.debug("Remote: name=%s  oid=%s local_oid=%s is_local=%s",
316                                         br.get_name().substring(11),
317                                         br.get_oid().to_string(),
318                                         br.get_local_oid().to_string(),
319                                         br.is_local() ? "Y" : "n"
320                                         );
321                                         }
322                         
323                 }
324                  
325                 
326                 Ggit.Branch? getBranch(string remote_name, string remote_branch_name)
327                 {
328                          //GLib.debug("bn=%s",remote_branch_name);
329                          if (remote_branch_name.has_prefix("refs/remotes/")) {
330                                  return null;
331                          }
332
333                          var target = remote_branch_name.replace("refs/heads/", remote_name+"/") .replace("refs/remotes/", "");
334                         if (target == "HEAD") {
335                                 target = remote_name +"/master";
336                         }
337                          
338                         foreach(var br in this.branches) {
339                         //      GLib.debug("test:%s=%s", br.get_upstream().get_shorthand() , target);
340                                 if ( br.get_upstream().get_shorthand() == target) {
341                                         return br;
342                                 }
343                                 
344                         }
345                         //GLib.debug("missing %s", remote_branch_name);                 
346                         return null;
347                 
348                 }
349                  
350                 
351                 public void fetchAll()
352                 {
353                         this.loadLocalBranches();
354                         this.loadRemoteHeads();
355                         
356                         // remotes probably will not work with http auth..
357                         //var ar = this.repo.list_remotes();
358                         //foreach(var n in ar) {
359                         var n = "origin"; 
360                         
361                                 GLib.debug("got remote '%s'", n);
362                                 var r = this.repo.lookup_remote(n);
363                                 GLib.debug("connecting '%s'", r.get_url());
364                                  
365                                 try {
366                                         string[] h = { "a = 1" };
367                                         r.connect(Ggit.Direction.FETCH, this.callbacks, null, null);
368                                         
369                                 } catch (Error e) {
370                                         GLib.debug("Got Error Message: %s", e.message);
371                                         return;
372                                 }
373                                 string[] far = {};
374
375                                 foreach(var rh in this.remote_heads) {
376                                         if (rh.get_name().has_prefix("refs/remotes/")) {
377                                                    continue;
378                                          }
379                                 
380                                         var br = this.getBranch(n, rh.get_name());
381                                  
382                                         /*GLib.debug("got heads: name=%s   rev=%s  localrev=%s",
383                                                 rh.get_name(), 
384                                                 rh.get_oid().to_string(),
385                                                 br == null ? "?": this.repo.revparse(br.get_name() ).get_id().to_string()
386                                         );
387                                         */
388                                         //var loc_oid = this.repo.revparse(br.get_name() ).get_id();
389                                         
390                                         var loc_oid = br.get_target();
391                                         
392                                         size_t ahead, behind;
393                                         this.repo.get_ahead_behind(
394                                                 loc_oid,
395                                                 rh.get_oid(),
396                                                 out ahead,
397                                                 out behind
398                                         );
399                                         
400                                         if (rh.get_oid().to_string() == this.repo.revparse(br.get_name() ).get_id().to_string()) {
401                                                 continue;
402                                         }
403                                         if (ahead > 0) {
404                                                 continue;
405                                         }
406                                         far += ("+refs/heads/" + br.get_name()) + ":refs/remotes/" + n + "/" + rh.get_name().replace("refs/heads/","");
407                                 } 
408                                 
409                                 if (far.length < 1) {
410                                         GLib.debug("no fetch required.. it's uptodate");
411                                         r.disconnect();
412                                         return;
413                                 }
414                                 
415                                 GLib.debug("getting remote specs '%s', %d", n, far.length);
416                                 
417 /*
418                                 var far = r.get_fetch_specs();
419                                 */
420                                 foreach(var rs in far) {
421                                         GLib.debug("got remote spec: %s", rs);
422                                         
423                                 }
424
425                                 var options = new Ggit.FetchOptions();
426                                 options.set_remote_callbacks(this.callbacks);
427                                 //yield Async.thread(() => {
428         
429                                         r.download(far, options);
430                                 //});
431                                 r.disconnect();
432                                 
433                                 //r.download(
434                          
435                 
436                 }
437                 
438                 
439                 
440                 public void pushAll()
441                 {
442                         
443                         this.loadLocalBranches();
444                         this.loadRemoteHeads();
445                         // remotes probably will not work with http auth..
446                         //var ar = this.repo.list_remotes();
447                         var n = "origin";
448                         
449                                 GLib.debug("got remote '%s'", n);
450                                 var r = this.repo.lookup_remote(n);
451                                 GLib.debug("connecting '%s'", r.get_url());
452                                  
453                                 r.connect(Ggit.Direction.PUSH, this.callbacks, null, null);
454                                 
455                                 //GLib.debug("getting specs '%s'", n);
456                                 /* 
457                                 
458                                 this.repo.add_remote_push(
459                                         "origin",
460                                         "+%s:%s".printf(head.get_shorthand(),head.get_name())
461                                 );
462  */
463  
464                                 string[] far = {};
465                                 var heads = r.list();
466                                 foreach(var rh in heads) {
467                                         if (rh.get_name().has_prefix("refs/remotes/")) {
468                                                    continue;
469                                          }
470                                 
471                                         var br = this.getBranch(n, rh.get_name());
472                                         /*
473                                         GLib.debug("got heads: name=%s   rev=%s  localrev=%s",
474                                                 rh.get_name(), 
475                                                 rh.get_oid().to_string(),
476                                                 br == null ? "?": this.repo.revparse(br.get_name() ).get_id().to_string()
477                                         );*/
478                                         var loc_oid = this.repo.revparse(br.get_name() ).get_id();
479                                         size_t ahead, behind;
480                                         this.repo.get_ahead_behind(
481                                                 loc_oid,
482                                                 rh.get_oid(),
483                                                 out ahead,
484                                                 out behind
485                                         );
486                                         
487                                         if (rh.get_oid().to_string() == this.repo.revparse(br.get_name() ).get_id().to_string()) {
488                                                 continue;
489                                         }
490                                         if (behind > 0) {
491                                                 continue;
492                                         }
493                                         far += ("+refs/heads/" + br.get_name()) + ":"+ rh.get_name();
494                                 }  
495                                 
496                                 if (far.length < 1) {
497                                         GLib.debug("no push required.. it's uptodate");
498                                         r.disconnect();
499                                         return;
500                                 }
501  
502                                 /*var head = this.repo.get_head();
503                                 string[] far = {};
504                                 far += "+%s:%s".printf(head.get_name(),head.get_name());
505                                 */
506                                 foreach(var rs in far) {
507                                         GLib.debug("got remote spec: %s", rs);
508                                         
509                                 }
510                                         
511                                 var popts = new Ggit.PushOptions();
512                                  popts.callbacks = this.callbacks;
513                                 GLib.debug("Push?");
514                                 r.upload(far,popts);
515                                 GLib.debug("Push done?");
516                                 r.disconnect();
517                                 
518                                 
519                                 //r.download(
520                          
521                 
522                 }
523                 
524                  
525
526         }
527         
528         private class Callbacks : Ggit.RemoteCallbacks
529         {
530                 //private Remote d_remote;
531                 private Ggit.RemoteCallbacks? d_proxy = null;
532
533                 public delegate void TransferProgress(Ggit.TransferProgress stats);
534                 //private TransferProgress? d_transfer_progress;
535
536                 public Callbacks( Repo repo)  //, Ggit.RemoteCallbacks? proxy) //,Remote remote, owned TransferProgress? transfer_progress)
537                 {
538                         //d_remote = remote;
539                         //d_proxy = proxy;
540                         //d_transfer_progress = (owned)transfer_progress;
541                 }
542
543                 protected override void progress(string message)
544                 {
545                         GLib.debug("progress: %s", message);
546                         if (d_proxy != null)
547                         {
548                                 d_proxy.progress(message);
549                         }
550                 }
551
552                 protected override void transfer_progress(Ggit.TransferProgress stats)
553                 {
554                         GLib.debug("transfer_progress");
555                         /*
556                         if (d_transfer_progress != null)
557                         {
558                                 d_transfer_progress(stats);
559                         }
560
561                         if (d_proxy != null)
562                         {
563                                 d_proxy.transfer_progress(stats);
564                         }
565                         */
566                 }
567
568                 protected override void update_tips(string refname, Ggit.OId a, Ggit.OId b)
569                 {
570                         GLib.debug("update_tips");
571                         //d_remote.tip_updated(refname, a, b);
572
573                         if (d_proxy != null)
574                         {
575                                 d_proxy.update_tips(refname, a, b);
576                         }
577                 }
578
579                 protected override void completion(Ggit.RemoteCompletionType type)
580                 {
581                         GLib.debug("completion");
582                         if (d_proxy != null)
583                         {
584                                 d_proxy.completion(type);
585                         }
586                 }
587
588                 protected override Ggit.Cred? credentials(string url, string? username_from_url, Ggit.Credtype allowed_types) throws Error
589                 {
590  
591                         GLib.debug("get credentials %s  UN=%s", url, username_from_url);
592                         var uri = new Soup.URI(url);
593
594                         if (uri != null) {
595                                 var ret = this.netrc(uri.get_host());
596                                 if (ret != null) {
597                                         return ret;
598                                 }
599                                 
600                                 //return new Ggit.CredPlaintext(username_from_url, "test");
601                         }
602                         return null;
603                         /*var provider = d_remote.credentials_provider;
604
605                         if (provider != null)
606                         {
607                                 ret = provider.credentials(url, username_from_url, allowed_types);
608                         }
609
610                         if (ret == null && d_proxy != null)
611                         {
612                                 ret = d_proxy.credentials(url, username_from_url, allowed_types);
613                         }
614                         
615                         return ret;
616                         */
617                 }
618                 public  Ggit.Cred netrc(string domain) 
619                 {
620                         string str;
621                         GLib.FileUtils.get_contents(GLib.Environment.get_home_dir() + "/.netrc", out str);
622                         var lines = str.split("\n");
623                         for(var i=0; i< lines.length; i++) {
624                                 // assumes one line per entry.. if not we are buggered...
625                                 //GLib.debug("got %s" , lines[i]);
626                         
627                                 var bits =  Regex.split_simple ("[ \t]+", lines[i].strip());
628                                 if (bits.length < 6 || bits[0] != "machine" || bits[1] != domain) {
629                                         continue;
630                                 }
631                                 GLib.debug("found password?");
632                                 // we are gussing.... 
633                                 return new Ggit.CredPlaintext(bits[3], bits[5]);
634
635                         }
636                         return null;
637
638
639                 
640                 
641                 }
642                 
643         }
644         
645         
646
647 }