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