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                         ThreadFunc<bool> run = () => {
304                                 
305                                 if (!force && this.remote_heads != null) {
306                                         return true;;
307                                 }
308                                 var r = this.repo.lookup_remote("origin");
309                                 r.connect(Ggit.Direction.FETCH, this.callbacks, null, null);
310                                 this.remote_heads = r.list();
311                                 
312                                 foreach(var br in this.remote_heads) {
313                                         if (!br.get_name().has_prefix("refs/heads/")) {
314                                                 continue;
315                                         }
316                                         
317                                         GLib.debug("Remote: name=%s  oid=%s local_oid=%s is_local=%s",
318                                                 br.get_name().substring(11),
319                                                 br.get_oid().to_string(),
320                                                 br.get_local_oid().to_string(),
321                                                 br.is_local() ? "Y" : "n"
322                                                 );
323                                 }
324                                 Idle.add((owned) callback);
325                                 return true;;
326                         };
327                         new Thread<bool>("thread-example", run);
328                         yield;
329                         
330
331                 }
332                  
333                 
334                 Ggit.Branch? getBranch(string remote_name, string remote_branch_name)
335                 {
336                          //GLib.debug("bn=%s",remote_branch_name);
337                          if (remote_branch_name.has_prefix("refs/remotes/")) {
338                                  return null;
339                          }
340
341                          var target = remote_branch_name.replace("refs/heads/", remote_name+"/") .replace("refs/remotes/", "");
342                         if (target == "HEAD") {
343                                 target = remote_name +"/master";
344                         }
345                          
346                         foreach(var br in this.branches) {
347                         //      GLib.debug("test:%s=%s", br.get_upstream().get_shorthand() , target);
348                                 if ( br.get_upstream().get_shorthand() == target) {
349                                         return br;
350                                 }
351                                 
352                         }
353                         //GLib.debug("missing %s", remote_branch_name);                 
354                         return null;
355                 
356                 }
357                  
358                 
359                 public void fetchAll()
360                 {
361                         this.loadLocalBranches();
362                         this.loadRemoteHeads();
363                         
364                         // remotes probably will not work with http auth..
365                         //var ar = this.repo.list_remotes();
366                         //foreach(var n in ar) {
367                         var n = "origin"; 
368                         
369                                 GLib.debug("got remote '%s'", n);
370                                 var r = this.repo.lookup_remote(n);
371                                 GLib.debug("connecting '%s'", r.get_url());
372                                  
373                                 try {
374                                         string[] h = { "a = 1" };
375                                         r.connect(Ggit.Direction.FETCH, this.callbacks, null, null);
376                                         
377                                 } catch (Error e) {
378                                         GLib.debug("Got Error Message: %s", e.message);
379                                         return;
380                                 }
381                                 string[] far = {};
382
383                                 foreach(var rh in this.remote_heads) {
384                                         if (rh.get_name().has_prefix("refs/remotes/")) {
385                                                    continue;
386                                          }
387                                 
388                                         var br = this.getBranch(n, rh.get_name());
389                                  
390                                         /*GLib.debug("got heads: name=%s   rev=%s  localrev=%s",
391                                                 rh.get_name(), 
392                                                 rh.get_oid().to_string(),
393                                                 br == null ? "?": this.repo.revparse(br.get_name() ).get_id().to_string()
394                                         );
395                                         */
396                                         //var loc_oid = this.repo.revparse(br.get_name() ).get_id();
397                                         
398                                         var loc_oid = br.get_target();
399                                         
400                                         size_t ahead, behind;
401                                         this.repo.get_ahead_behind(
402                                                 loc_oid,
403                                                 rh.get_oid(),
404                                                 out ahead,
405                                                 out behind
406                                         );
407                                         
408                                         if (rh.get_oid().to_string() == this.repo.revparse(br.get_name() ).get_id().to_string()) {
409                                                 continue;
410                                         }
411                                         if (ahead > 0) {
412                                                 continue;
413                                         }
414                                         far += ("+refs/heads/" + br.get_name()) + ":refs/remotes/" + n + "/" + rh.get_name().replace("refs/heads/","");
415                                 } 
416                                 
417                                 if (far.length < 1) {
418                                         GLib.debug("no fetch required.. it's uptodate");
419                                         r.disconnect();
420                                         return;
421                                 }
422                                 
423                                 GLib.debug("getting remote specs '%s', %d", n, far.length);
424                                 
425 /*
426                                 var far = r.get_fetch_specs();
427                                 */
428                                 foreach(var rs in far) {
429                                         GLib.debug("got remote spec: %s", rs);
430                                         
431                                 }
432
433                                 var options = new Ggit.FetchOptions();
434                                 options.set_remote_callbacks(this.callbacks);
435                                 //yield Async.thread(() => {
436         
437                                         r.download(far, options);
438                                 //});
439                                 r.disconnect();
440                                 
441                                 //r.download(
442                          
443                 
444                 }
445                 
446                 
447                 
448                 public void pushAll()
449                 {
450                         
451                         this.loadLocalBranches();
452                         this.loadRemoteHeads();
453                         // remotes probably will not work with http auth..
454                         //var ar = this.repo.list_remotes();
455                         var n = "origin";
456                         
457                                 GLib.debug("got remote '%s'", n);
458                                 var r = this.repo.lookup_remote(n);
459                                 GLib.debug("connecting '%s'", r.get_url());
460                                  
461                                 r.connect(Ggit.Direction.PUSH, this.callbacks, null, null);
462                                 
463                                 //GLib.debug("getting specs '%s'", n);
464                                 /* 
465                                 
466                                 this.repo.add_remote_push(
467                                         "origin",
468                                         "+%s:%s".printf(head.get_shorthand(),head.get_name())
469                                 );
470  */
471  
472                                 string[] far = {};
473                                 var heads = r.list();
474                                 foreach(var rh in heads) {
475                                         if (rh.get_name().has_prefix("refs/remotes/")) {
476                                                    continue;
477                                          }
478                                 
479                                         var br = this.getBranch(n, rh.get_name());
480                                         /*
481                                         GLib.debug("got heads: name=%s   rev=%s  localrev=%s",
482                                                 rh.get_name(), 
483                                                 rh.get_oid().to_string(),
484                                                 br == null ? "?": this.repo.revparse(br.get_name() ).get_id().to_string()
485                                         );*/
486                                         var loc_oid = this.repo.revparse(br.get_name() ).get_id();
487                                         size_t ahead, behind;
488                                         this.repo.get_ahead_behind(
489                                                 loc_oid,
490                                                 rh.get_oid(),
491                                                 out ahead,
492                                                 out behind
493                                         );
494                                         
495                                         if (rh.get_oid().to_string() == this.repo.revparse(br.get_name() ).get_id().to_string()) {
496                                                 continue;
497                                         }
498                                         if (behind > 0) {
499                                                 continue;
500                                         }
501                                         far += ("+refs/heads/" + br.get_name()) + ":"+ rh.get_name();
502                                 }  
503                                 
504                                 if (far.length < 1) {
505                                         GLib.debug("no push required.. it's uptodate");
506                                         r.disconnect();
507                                         return;
508                                 }
509  
510                                 /*var head = this.repo.get_head();
511                                 string[] far = {};
512                                 far += "+%s:%s".printf(head.get_name(),head.get_name());
513                                 */
514                                 foreach(var rs in far) {
515                                         GLib.debug("got remote spec: %s", rs);
516                                         
517                                 }
518                                         
519                                 var popts = new Ggit.PushOptions();
520                                  popts.callbacks = this.callbacks;
521                                 GLib.debug("Push?");
522                                 r.upload(far,popts);
523                                 GLib.debug("Push done?");
524                                 r.disconnect();
525                                 
526                                 
527                                 //r.download(
528                          
529                 
530                 }
531                 
532                  
533
534         }
535         
536         private class Callbacks : Ggit.RemoteCallbacks
537         {
538                 //private Remote d_remote;
539                 private Ggit.RemoteCallbacks? d_proxy = null;
540
541                 public delegate void TransferProgress(Ggit.TransferProgress stats);
542                 //private TransferProgress? d_transfer_progress;
543
544                 public Callbacks( Repo repo)  //, Ggit.RemoteCallbacks? proxy) //,Remote remote, owned TransferProgress? transfer_progress)
545                 {
546                         //d_remote = remote;
547                         //d_proxy = proxy;
548                         //d_transfer_progress = (owned)transfer_progress;
549                 }
550
551                 protected override void progress(string message)
552                 {
553                         GLib.debug("progress: %s", message);
554                         if (d_proxy != null)
555                         {
556                                 d_proxy.progress(message);
557                         }
558                 }
559
560                 protected override void transfer_progress(Ggit.TransferProgress stats)
561                 {
562                         GLib.debug("transfer_progress");
563                         /*
564                         if (d_transfer_progress != null)
565                         {
566                                 d_transfer_progress(stats);
567                         }
568
569                         if (d_proxy != null)
570                         {
571                                 d_proxy.transfer_progress(stats);
572                         }
573                         */
574                 }
575
576                 protected override void update_tips(string refname, Ggit.OId a, Ggit.OId b)
577                 {
578                         GLib.debug("update_tips");
579                         //d_remote.tip_updated(refname, a, b);
580
581                         if (d_proxy != null)
582                         {
583                                 d_proxy.update_tips(refname, a, b);
584                         }
585                 }
586
587                 protected override void completion(Ggit.RemoteCompletionType type)
588                 {
589                         GLib.debug("completion");
590                         if (d_proxy != null)
591                         {
592                                 d_proxy.completion(type);
593                         }
594                 }
595
596                 protected override Ggit.Cred? credentials(string url, string? username_from_url, Ggit.Credtype allowed_types) throws Error
597                 {
598  
599                         GLib.debug("get credentials %s  UN=%s", url, username_from_url);
600                         var uri = new Soup.URI(url);
601
602                         if (uri != null) {
603                                 var ret = this.netrc(uri.get_host());
604                                 if (ret != null) {
605                                         return ret;
606                                 }
607                                 
608                                 //return new Ggit.CredPlaintext(username_from_url, "test");
609                         }
610                         return null;
611                         /*var provider = d_remote.credentials_provider;
612
613                         if (provider != null)
614                         {
615                                 ret = provider.credentials(url, username_from_url, allowed_types);
616                         }
617
618                         if (ret == null && d_proxy != null)
619                         {
620                                 ret = d_proxy.credentials(url, username_from_url, allowed_types);
621                         }
622                         
623                         return ret;
624                         */
625                 }
626                 public  Ggit.Cred netrc(string domain) 
627                 {
628                         string str;
629                         GLib.FileUtils.get_contents(GLib.Environment.get_home_dir() + "/.netrc", out str);
630                         var lines = str.split("\n");
631                         for(var i=0; i< lines.length; i++) {
632                                 // assumes one line per entry.. if not we are buggered...
633                                 //GLib.debug("got %s" , lines[i]);
634                         
635                                 var bits =  Regex.split_simple ("[ \t]+", lines[i].strip());
636                                 if (bits.length < 6 || bits[0] != "machine" || bits[1] != domain) {
637                                         continue;
638                                 }
639                                 GLib.debug("found password?");
640                                 // we are gussing.... 
641                                 return new Ggit.CredPlaintext(bits[3], bits[5]);
642
643                         }
644                         return null;
645
646
647                 
648                 
649                 }
650                 
651         }
652         
653         
654
655 }