sync
[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     /**
190      * add:
191      * add files to track.
192      *
193      * @argument {Array} files the files to add.
194      */
195     public string add ( Array<GitMonitorQueue> files ) throws Error, SpawnError
196     {
197         // should really find out if these are untracked files each..
198         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
199         // not sure if that is how git works.. but just be certian.
200         var ret = "";
201         for (var i = 0; i < files.length;i++) {
202             var f = files.index(i).vname;
203             try {
204                 string[] cmd = { "add",    f  };
205                 this.git( cmd );
206             } catch (Error e) {
207                 ret += e.message  + "\n";
208             }        
209
210         }
211         return ret;
212     }
213         
214     public bool is_ignore(string fname) throws Error, SpawnError
215     {
216                 if (fname == ".gitignore") {
217                         this.ignore_files.clear();
218                 }
219                 
220                 if (this.ignore_files.has_key(fname)) {
221                         return this.ignore_files.get(fname);
222                 }
223                 
224                 try {
225                         var ret = this.git( { "check-ignore" , fname } );
226                         this.ignore_files.set(fname, ret.length >  0);
227                         return ret.length > 0;
228                 } catch (SpawnError e) {
229                         this.ignore_files.set(fname, false);
230                         return false;
231                 }
232                  
233     } 
234     
235     
236       /**
237      * remove:
238      * remove files to track.
239      *
240      * @argument {Array} files the files to add.
241      */
242     public string remove  ( Array<GitMonitorQueue> files ) throws Error, SpawnError
243     {
244         // this may fail if files do not exist..
245         // should really find out if these are untracked files each..
246         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
247         // not sure if that is how git works.. but just be certian.
248         var ret = "";
249
250         for (var i = 0; i < files.length;i++) {
251             var f = files.index(i).vname;
252             try {
253                 string[] cmd = { "rm",  "-f" ,  f  };
254                 this.git( cmd );
255             } catch (Error e) {
256                 ret += e.message  + "\n";
257             }        
258         }
259
260         return ret;
261
262     }
263     
264     
265     /**
266      * commit:
267      * perform a commit.
268      *
269      * @argument {Object} cfg commit configuration
270      * 
271      * @property {String} name (optional)
272      * @property {String} email (optional)
273      * @property {String} changed (date) (optional)
274      * @property {String} reason (optional)
275      * @property {Array} files - the files that have changed. 
276      * 
277      */
278      
279     public string commit ( string message, Array<GitMonitorQueue> files  ) throws Error, SpawnError
280     {
281         
282
283         /*
284         var env = [];
285
286         if (typeof(cfg.name) != 'undefined') {
287             args.push( {
288                 'author' : cfg.name + ' <' + cfg.email + '>'
289             });
290             env.push(
291                 "GIT_COMMITTER_NAME" + cfg.name,
292                 "GIT_COMMITTER_EMAIL" + cfg.email
293             );
294         }
295
296         if (typeof(cfg.changed) != 'undefined') {
297             env.push("GIT_AUTHOR_DATE= " + cfg.changed )
298             
299         }
300         */
301         string[] args = { "commit", "-m" };
302         args +=  (message.length > 0  ? message : "Changed" );
303         for (var i = 0; i< files.length ; i++ ) {
304             args += files.index(i).vname; // full path?
305         }
306          
307         return this.git(args);
308     }
309     
310     /**
311      * pull:
312      * Fetch and merge remote repo changes into current branch..
313      *
314      * At present we just need this to update the current working branch..
315      * -- maybe later it will have a few options and do more stuff..
316      *
317      */
318     public string pull () throws Error, SpawnError
319     {
320         // should probably hand error conditions better... 
321         string[] cmd = { "pull" , "--no-edit" };
322         return this.git( cmd );
323
324         
325     }
326     
327     public delegate void GitAsyncCallback (GitRepo repo, int err, string str);
328     public void pull_async(GitAsyncCallback cb) 
329     {
330     
331         string[] cmd = { "pull" , "--no-edit" };
332          this.git_async( cmd , cb);
333          
334     
335     }
336     
337     /**
338      * push:
339      * Send local changes to remote repo(s)
340      *
341      * At present we just need this to push the current branch.
342      * -- maybe later it will have a few options and do more stuff..
343      *
344      */
345     public string push () throws Error, SpawnError
346     {
347         // should 
348         return this.git({ "push", "origin", "HEAD" });
349         
350     }
351     
352     
353     
354      /**
355      * git:
356      * The meaty part.. run spawn.. with git..
357      *
358      *
359      */
360     
361     public string git(string[] args_in ) throws Error, SpawnError
362     {
363         // convert arguments.
364         
365         string[]  args = { "git" };
366         //args +=  "--git-dir";
367         //args +=  this.gitdir;
368         args +=  "--no-pager";
369  
370  
371         //if (this.gitdir != this.repopath) {
372         //    args +=   "--work-tree";
373          //   args += this.repopath; 
374         //}
375         for (var i = 0; i < args_in.length;i++) {
376             args += args_in[i];
377         }            
378
379         //this.lastCmd = args.join(" ");
380         //if(this.debug) {
381             GLib.debug( "CWD=%s",  this.git_working_dir ); 
382             GLib.debug( "cmd: %s", string.joinv (" ", args)); 
383         //}
384
385         string[]   env = {};
386         string  home = "HOME=" + Environment.get_home_dir() ;
387         env +=  home ;
388         // do not need to set gitpath..
389         //if (File.exists(this.repo + '/.git/config')) {
390             //env.push("GITPATH=" + this.repo );
391         //}
392         
393
394         var cfg = new SpawnConfig(this.git_working_dir , args , env);
395         
396
397        // may throw error...
398         var sp = new Spawn(cfg);
399       
400
401         GLib.debug( "GOT: %s" , sp.output);
402         // parse output for some commands ?
403         return sp.output;
404     }
405         
406    unowned GitAsyncCallback git_async_on_callback;
407         public void  git_async( string[] args_in,   GitAsyncCallback cb ) throws Error, SpawnError
408     {
409         // convert arguments.
410        this.git_async_on_callback = cb;
411         string[]  args = { "git" };
412         //args +=  "--git-dir";
413         //args +=  this.gitdir;
414         args +=  "--no-pager";
415  
416  
417         //if (this.gitdir != this.repopath) {
418         //    args +=   "--work-tree";
419          //   args += this.repopath; 
420         //}
421         for (var i = 0; i < args_in.length;i++) {
422             args += args_in[i];
423         }            
424
425         //this.lastCmd = args.join(" ");
426         //if(this.debug) {
427             GLib.debug( "CWD=%s",  this.git_working_dir ); 
428             //print( "cmd: %s\n", string.joinv (" ", args)); 
429         //}
430
431         string[]   env = {};
432         string  home = "HOME=" + Environment.get_home_dir() ;
433         env +=  home ;
434         // do not need to set gitpath..
435         //if (File.exists(this.repo + '/.git/config')) {
436             //env.push("GITPATH=" + this.repo );
437         //}
438         
439
440         var cfg = new SpawnConfig(this.git_working_dir , args , env);
441         cfg.async = true;
442        
443
444        // may throw error...
445         var sp = new Spawn(cfg);
446                 //sp.ref();
447         //this.ref();
448         sp.run(this.git_async_on_complete); 
449          
450     }
451     
452     void git_async_on_complete(int err, string output)
453     {
454                 GLib.debug("GOT %d : %s", err, output);
455                 this.git_async_on_callback(this, err, output);
456 //              this.unref();   
457         //      sp.unref();             
458     
459     
460     }
461     
462 }