GitRepo.vala
[gitlive] / GitRepo.vala
1
2 /**
3  * @class Scm.Git.Repo
4  *
5  * @extends Scm.Repo
6  * 
7  *
8  *
9  */
10 static GitRepo  _GitRepo; 
11  
12 public class GitRepo : Object
13 {
14      
15     public Array<GitMonitorQueue> cmds;
16
17     public string name;
18     public string gitdir;
19     public string git_working_dir;
20     public bool debug = false;
21     
22     public Gee.HashMap<string,bool> ignore_files;
23     public GitBranch currentBranch;
24
25         public RooTicket? activeTicket;
26
27         public static GitRepo singleton()
28     {
29         if (_GitRepo == null) {
30             _GitRepo = new GitRepo.single();
31             _GitRepo.cache = new Gee.HashMap<string,GitRepo>();
32         }
33         return _GitRepo;
34     }
35
36     /**
37     * index of.. matching gitpath..
38     */
39     public static int indexOf( Array<GitRepo> repos, string gitpath) {
40         // make a fake object to compare against..
41         var test_repo = GitRepo.get(gitpath);
42         
43         for(var i =0; i < repos.length; i++) {
44             if (repos.index(i).gitdir == test_repo.gitdir) {
45                 return i;
46             }
47         }
48         return -1;
49     
50     }
51     
52     public  Gee.HashMap<string,GitRepo> cache;
53     
54     
55     
56     public static   Array<GitRepo> list()
57     {
58
59         //if (GitRepo.list_cache !=  null) {
60         //    unowned  Array<GitRepo>    ret = GitRepo.list_cache;
61          //   return ret;
62         //}
63         var cache = GitRepo.singleton().cache;
64         var list_cache = new Array<GitRepo>();
65         
66         var dir = Environment.get_home_dir() + "/gitlive";
67         
68         var f = File.new_for_path(dir);
69         FileEnumerator file_enum;
70         try {
71             file_enum = f.enumerate_children(
72                 FileAttribute.STANDARD_DISPLAY_NAME + ","+ 
73                 FileAttribute.STANDARD_TYPE,
74                 FileQueryInfoFlags.NONE,
75                 null);
76         } catch (Error e) {
77             
78             return list_cache;
79             
80         }
81         
82         FileInfo next_file; 
83         
84         while (true) {
85             
86             try {
87                 next_file = file_enum.next_file(null);
88                 if (next_file == null) {
89                     break;
90                 }
91                 
92             } catch (Error e) {
93                 GLib.debug("Error: %s",e.message);
94                 break;
95             }
96          
97             //print("got a file " + next_file.sudo () + '?=' + Gio.FileType.DIRECTORY);
98             
99             if (next_file.get_file_type() !=  FileType.DIRECTORY) {
100                 next_file = null;
101                 continue;
102             }
103             
104             if (next_file.get_file_type() ==  FileType.SYMBOLIC_LINK) {
105                 next_file = null;
106                 continue;
107             }
108             
109             if (next_file.get_display_name()[0] == '.') {
110                 next_file = null;
111                 continue;
112             }
113             var sp = dir+"/"+next_file.get_display_name();
114            
115             var gitdir = dir + "/" + next_file.get_display_name() + "/.git";
116             
117             if (!FileUtils.test(gitdir, FileTest.IS_DIR)) {
118                 continue;
119             }
120             
121                 var rep =  GitRepo.get(  sp );
122                 list_cache.append_val(rep);             
123             
124         }
125     
126         return list_cache;
127         
128          
129           
130         }
131         
132         public static GitRepo get(string path) 
133         {
134                 var cache = GitRepo.singleton().cache;
135                 if (cache.has_key(path)) {
136                         return cache.get(path);
137                 }
138                 return new GitRepo(path);
139         }
140         
141     private GitRepo.single() {
142                 // used to create the signleton
143         }
144     /**
145      * constructor:
146      * 
147      * @param {Object} cfg - Configuration
148      *     (basically repopath is currently only critical one.)
149      *
150      */
151      
152     private GitRepo(string path) {
153         // cal parent?
154         this.name =   File.new_for_path(path).get_basename();
155         this.ignore_files = new Gee.HashMap<string,bool>();
156         
157         this.git_working_dir = path;
158         this.gitdir = path + "/.git";
159         if (!FileUtils.test(this.gitdir , FileTest.IS_DIR)) {
160             this.gitdir = path; // naked...
161         }
162         this.cmds = new  Array<GitMonitorQueue> ();
163         
164                 var cache = GitRepo.singleton().cache;
165         //Repo.superclass.constructor.call(this,cfg);
166                 if ( !cache.has_key(path) ) {
167                         cache.set( path, this);
168         }
169         this.loadBranches();
170     } 
171     
172     public bool is_wip_branch()
173     {
174     
175     }
176     
177     public bool is_autocommit ()
178     {
179         return !FileUtils.test(this.gitdir + "/.gitlive-disable-autocommit" , FileTest.EXISTS);
180     }
181     public bool is_autopush ()
182     {
183         return !FileUtils.test(this.gitdir + "/.gitlive-disable-autopush" , FileTest.EXISTS);
184     }
185     
186     Gee.HashMap<string,GitBranch> branches;
187     
188     public void loadBranches()
189     {
190         this.branches = new Gee.HashMap<string,GitBranch>();
191         
192         string[] cmd = { "branch",   "--no-color", "--verbose", "--no-abbrev" , "-a"  };
193         var res = this.git( cmd );
194         var lines = res.split("\n");
195         for (var i = 0; i < lines.length ; i++) {
196                 var br = new GitBranch(this);
197                 if (!br.parseBranchListItem(lines[i])) {
198                         continue;
199                 }
200                 GLib.debug("add branch %s", br.realName());
201                  
202                 branches.set(br.realName(), br);
203                 if (br.active) {
204                         this.currentBranch = br;
205                 }
206         }
207     
208     }
209      
210     
211     
212     
213     public string branchesToString()
214     {
215         var ret = "";
216                 foreach( var br in this.branches.values) {
217                         if (br.name == "") {
218                                 continue; 
219                         }
220                         ret += ret.length > 0 ? ","  : "";
221                         ret += br.name;
222                 
223                 }
224                 return ret;
225         
226     }
227     RooTicket? ticket = null;
228     
229     public void setActiveTicket(RooTicket ticket, string branchname)
230     {
231         this.createBranchNamed(branchname);
232         FileUtils.set_contents(this.gitdir + "/.gitlive-active-ticket" , ticket.id);
233         this.activeTicket = ticket;
234     }
235     
236     public void createBranchNamed(string branchname)
237     {
238          string[] cmd = { "checkout", "-b" , branchname  };
239          this.git(cmd);
240          this.loadBranches(); // update branch list...
241     }
242     
243     
244     /**
245      * add:
246      * add files to track.
247      *
248      * @argument {Array} files the files to add.
249      */
250     public string add ( Array<GitMonitorQueue> files ) throws Error, SpawnError
251     {
252         // should really find out if these are untracked files each..
253         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
254         // not sure if that is how git works.. but just be certian.
255         var ret = "";
256         for (var i = 0; i < files.length;i++) {
257             var f = files.index(i).vname;
258             try {
259                 string[] cmd = { "add",    f  };
260                 this.git( cmd );
261             } catch (Error e) {
262                 ret += e.message  + "\n";
263             }        
264
265         }
266         return ret;
267     }
268         
269     public bool is_ignore(string fname) throws Error, SpawnError
270     {
271                 if (fname == ".gitignore") {
272                         this.ignore_files.clear();
273                 }
274                 
275                 if (this.ignore_files.has_key(fname)) {
276                         return this.ignore_files.get(fname);
277                 }
278                 
279                 try {
280                         var ret = this.git( { "check-ignore" , fname } );
281                         this.ignore_files.set(fname, ret.length >  0);
282                         return ret.length > 0;
283                 } catch (SpawnError e) {
284                         this.ignore_files.set(fname, false);
285                         return false;
286                 }
287                  
288     } 
289     
290     
291       /**
292      * remove:
293      * remove files to track.
294      *
295      * @argument {Array} files the files to add.
296      */
297     public string remove  ( Array<GitMonitorQueue> files ) throws Error, SpawnError
298     {
299         // this may fail if files do not exist..
300         // should really find out if these are untracked files each..
301         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
302         // not sure if that is how git works.. but just be certian.
303         var ret = "";
304
305         for (var i = 0; i < files.length;i++) {
306             var f = files.index(i).vname;
307             try {
308                 string[] cmd = { "rm",  "-f" ,  f  };
309                 this.git( cmd );
310             } catch (Error e) {
311                 ret += e.message  + "\n";
312             }        
313         }
314
315         return ret;
316
317     }
318     
319     
320     /**
321      * commit:
322      * perform a commit.
323      *
324      * @argument {Object} cfg commit configuration
325      * 
326      * @property {String} name (optional)
327      * @property {String} email (optional)
328      * @property {String} changed (date) (optional)
329      * @property {String} reason (optional)
330      * @property {Array} files - the files that have changed. 
331      * 
332      */
333      
334     public string commit ( string message, Array<GitMonitorQueue> files  ) throws Error, SpawnError
335     {
336         
337
338         /*
339         var env = [];
340
341         if (typeof(cfg.name) != 'undefined') {
342             args.push( {
343                 'author' : cfg.name + ' <' + cfg.email + '>'
344             });
345             env.push(
346                 "GIT_COMMITTER_NAME" + cfg.name,
347                 "GIT_COMMITTER_EMAIL" + cfg.email
348             );
349         }
350
351         if (typeof(cfg.changed) != 'undefined') {
352             env.push("GIT_AUTHOR_DATE= " + cfg.changed )
353             
354         }
355         */
356         string[] args = { "commit", "-m" };
357         args +=  (message.length > 0  ? message : "Changed" );
358         for (var i = 0; i< files.length ; i++ ) {
359             args += files.index(i).vname; // full path?
360         }
361          
362         return this.git(args);
363     }
364     
365     /**
366      * pull:
367      * Fetch and merge remote repo changes into current branch..
368      *
369      * At present we just need this to update the current working branch..
370      * -- maybe later it will have a few options and do more stuff..
371      *
372      */
373     public string pull () throws Error, SpawnError
374     {
375         // should probably hand error conditions better... 
376         string[] cmd = { "pull" , "--no-edit" };
377         return this.git( cmd );
378
379         
380     }
381     
382     public delegate void GitAsyncCallback (GitRepo repo, int err, string str);
383     public void pull_async(GitAsyncCallback cb) 
384     {
385     
386         string[] cmd = { "pull" , "--no-edit" };
387          this.git_async( cmd , cb);
388          
389     
390     }
391     
392     /**
393      * push:
394      * Send local changes to remote repo(s)
395      *
396      * At present we just need this to push the current branch.
397      * -- maybe later it will have a few options and do more stuff..
398      *
399      */
400     public string push () throws Error, SpawnError
401     {
402         // should 
403         return this.git({ "push", "origin", "HEAD" });
404         
405     }
406     
407     
408     
409      /**
410      * git:
411      * The meaty part.. run spawn.. with git..
412      *
413      *
414      */
415     
416     public string git(string[] args_in ) throws Error, SpawnError
417     {
418         // convert arguments.
419         
420         string[]  args = { "git" };
421         //args +=  "--git-dir";
422         //args +=  this.gitdir;
423         args +=  "--no-pager";
424  
425  
426         //if (this.gitdir != this.repopath) {
427         //    args +=   "--work-tree";
428          //   args += this.repopath; 
429         //}
430         for (var i = 0; i < args_in.length;i++) {
431             args += args_in[i];
432         }            
433
434         //this.lastCmd = args.join(" ");
435         //if(this.debug) {
436             GLib.debug( "CWD=%s",  this.git_working_dir ); 
437             GLib.debug( "cmd: %s", string.joinv (" ", args)); 
438         //}
439
440         string[]   env = {};
441         string  home = "HOME=" + Environment.get_home_dir() ;
442         env +=  home ;
443         // do not need to set gitpath..
444         //if (File.exists(this.repo + '/.git/config')) {
445             //env.push("GITPATH=" + this.repo );
446         //}
447         
448
449         var cfg = new SpawnConfig(this.git_working_dir , args , env);
450         
451
452        // may throw error...
453         var sp = new Spawn(cfg);
454       
455
456         GLib.debug( "GOT: %s" , sp.output);
457         // parse output for some commands ?
458         return sp.output;
459     }
460         
461    unowned GitAsyncCallback git_async_on_callback;
462         public void  git_async( string[] args_in,   GitAsyncCallback cb ) throws Error, SpawnError
463     {
464         // convert arguments.
465        this.git_async_on_callback = cb;
466         string[]  args = { "git" };
467         //args +=  "--git-dir";
468         //args +=  this.gitdir;
469         args +=  "--no-pager";
470  
471  
472         //if (this.gitdir != this.repopath) {
473         //    args +=   "--work-tree";
474          //   args += this.repopath; 
475         //}
476         for (var i = 0; i < args_in.length;i++) {
477             args += args_in[i];
478         }            
479
480         //this.lastCmd = args.join(" ");
481         //if(this.debug) {
482             GLib.debug( "CWD=%s",  this.git_working_dir ); 
483             //print( "cmd: %s\n", string.joinv (" ", args)); 
484         //}
485
486         string[]   env = {};
487         string  home = "HOME=" + Environment.get_home_dir() ;
488         env +=  home ;
489         // do not need to set gitpath..
490         //if (File.exists(this.repo + '/.git/config')) {
491             //env.push("GITPATH=" + this.repo );
492         //}
493         
494
495         var cfg = new SpawnConfig(this.git_working_dir , args , env);
496         cfg.async = true;
497        
498
499        // may throw error...
500         var sp = new Spawn(cfg);
501                 //sp.ref();
502         //this.ref();
503         sp.run(this.git_async_on_complete); 
504          
505     }
506     
507     void git_async_on_complete(int err, string output)
508     {
509                 GLib.debug("GOT %d : %s", err, output);
510                 this.git_async_on_callback(this, err, output);
511 //              this.unref();   
512         //      sp.unref();             
513     
514     
515     }
516     
517 }