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