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