X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=GitRepo.vala;h=989a32b578ed769439db547bc0a07033032dbc0a;hb=48b3d2b4281bfa78ae11b4dfb5f91d5475aefd90;hp=6f9ffb4c5aa568126dce393a322e93515459e867;hpb=e943bcb992799f9f059322accb0f42fac008ad66;p=gitlive diff --git a/GitRepo.vala b/GitRepo.vala index 6f9ffb4c..989a32b5 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -18,6 +18,7 @@ public class GitRepo : Object public bool debug = false; public Gee.HashMap ignore_files; + public GitBranch currentBranch; /** * index of.. matching gitpath.. @@ -73,7 +74,7 @@ public class GitRepo : Object } } catch (Error e) { - print("Error: %s\n",e.message); + GLib.debug("Error: %s",e.message); break; } @@ -136,6 +137,55 @@ public class GitRepo : Object //Repo.superclass.constructor.call(this,cfg); } + + + public bool is_autocommit () + { + return !FileUtils.test(this.gitdir + "/.gitlive-disable-autocommit" , FileTest.EXISTS); + } + public bool is_autopush () + { + return !FileUtils.test(this.gitdir + "/.gitlive-disable-autopush" , FileTest.EXISTS); + } + + Gee.HashMap branches; + + public void loadBranches() + { + this.branches = new Gee.HashMap(); + + string[] cmd = { "branch", "--no-color", "--verbose", "--no-abbrev" , "-a" }; + var res = this.git( cmd ); + var lines = res.split("\n"); + for (var i = 0; i < lines.length ; i++) { + var br = new GitBranch(this); + if (!br.parseBranchListItem(lines[i])) { + continue; + } + GLib.debug("add branch %s", br.realName()); + + branches.set(br.realName(), br); + if (br.active) { + this.currentBranch = br; + } + } + + } + public string branchesToString() + { + var ret = ""; + foreach( var br in this.branches.values) { + if (br.name == "") { + continue; + } + ret += ret.length > 0 ? "," : ""; + ret += br.name; + + } + return ret; + + } + /** * add: * add files to track. @@ -274,9 +324,12 @@ public class GitRepo : Object } - public delegate void PullAsyncCallback (string str) - async public string pull_async(PullAsyncCallback cb) { + public delegate void GitAsyncCallback (GitRepo repo, int err, string str); + public void pull_async(GitAsyncCallback cb) + { + string[] cmd = { "pull" , "--no-edit" }; + this.git_async( cmd , cb); } @@ -325,8 +378,8 @@ public class GitRepo : Object //this.lastCmd = args.join(" "); //if(this.debug) { - stdout.printf( "CWD=%s\n", this.git_working_dir ); - print( "cmd: %s\n", string.joinv (" ", args)); + GLib.debug( "CWD=%s", this.git_working_dir ); + GLib.debug( "cmd: %s", string.joinv (" ", args)); //} string[] env = {}; @@ -345,16 +398,16 @@ public class GitRepo : Object var sp = new Spawn(cfg); - stdout.printf( "GOT: %s\n" , sp.output); + GLib.debug( "GOT: %s" , sp.output); // parse output for some commands ? return sp.output; } - - public string git_async(string[] args_in ) throws Error, SpawnError + unowned GitAsyncCallback git_async_on_callback; + public void git_async( string[] args_in, GitAsyncCallback cb ) throws Error, SpawnError { // convert arguments. - + this.git_async_on_callback = cb; string[] args = { "git" }; //args += "--git-dir"; //args += this.gitdir; @@ -371,8 +424,8 @@ public class GitRepo : Object //this.lastCmd = args.join(" "); //if(this.debug) { - stdout.printf( "CWD=%s\n", this.git_working_dir ); - print( "cmd: %s\n", string.joinv (" ", args)); + GLib.debug( "CWD=%s", this.git_working_dir ); + //print( "cmd: %s\n", string.joinv (" ", args)); //} string[] env = {}; @@ -385,14 +438,25 @@ public class GitRepo : Object var cfg = new SpawnConfig(this.git_working_dir , args , env); - + cfg.async = true; + // may throw error... var sp = new Spawn(cfg); - - - stdout.printf( "GOT: %s\n" , sp.output); - // parse output for some commands ? - return sp.output; + //sp.ref(); + //this.ref(); + sp.run(this.git_async_on_complete); + + } + + void git_async_on_complete(int err, string output) + { + GLib.debug("GOT %d : %s", err, output); + this.git_async_on_callback(this, err, output); +// this.unref(); + // sp.unref(); + + } + }