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
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     
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                 print("Error: %s\n",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      * add:
142      * add files to track.
143      *
144      * @argument {Array} files the files to add.
145      */
146     public string add ( Array<GitMonitorQueue> files ) throws Error, SpawnError
147     {
148         // should really find out if these are untracked files each..
149         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
150         // not sure if that is how git works.. but just be certian.
151         var ret = "";
152         for (var i = 0; i < files.length;i++) {
153             var f = files.index(i).vname;
154             try {
155                 string[] cmd = { "add",    f  };
156                 this.git( cmd );
157             } catch (Error e) {
158                 ret += e.message  + "\n";
159             }        
160
161         }
162         return ret;
163     }
164         
165     public bool is_ignore(string fname) throws Error, SpawnError
166     {
167                 try {
168                         var ret = this.git( { "check-ignore" , fname } );
169                         return ret == fname;
170                 } catch (SpawnError e) {
171                         return false;
172                 }
173                 
174
175     } 
176     
177       /**
178      * remove:
179      * remove files to track.
180      *
181      * @argument {Array} files the files to add.
182      */
183     public string remove  ( Array<GitMonitorQueue> files ) throws Error, SpawnError
184     {
185         // this may fail if files do not exist..
186         // should really find out if these are untracked files each..
187         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
188         // not sure if that is how git works.. but just be certian.
189         var ret = "";
190
191         for (var i = 0; i < files.length;i++) {
192             var f = files.index(i).vname;
193             try {
194                 string[] cmd = { "rm",  "-f" ,  f  };
195                 this.git( cmd );
196             } catch (Error e) {
197                 ret += e.message  + "\n";
198             }        
199         }
200
201         return ret;
202
203     }
204     
205     /**
206      * commit:
207      * perform a commit.
208      *
209      * @argument {Object} cfg commit configuration
210      * 
211      * @property {String} name (optional)
212      * @property {String} email (optional)
213      * @property {String} changed (date) (optional)
214      * @property {String} reason (optional)
215      * @property {Array} files - the files that have changed. 
216      * 
217      */
218      
219     public string commit ( string message, Array<GitMonitorQueue> files  ) throws Error, SpawnError
220     {
221         
222
223         /*
224         var env = [];
225
226         if (typeof(cfg.name) != 'undefined') {
227             args.push( {
228                 'author' : cfg.name + ' <' + cfg.email + '>'
229             });
230             env.push(
231                 "GIT_COMMITTER_NAME" + cfg.name,
232                 "GIT_COMMITTER_EMAIL" + cfg.email
233             );
234         }
235
236         if (typeof(cfg.changed) != 'undefined') {
237             env.push("GIT_AUTHOR_DATE= " + cfg.changed )
238             
239         }
240         */
241         string[] args = { "commit", "-m" };
242         args +=  (message.length > 0  ? message : "Changed" );
243         for (var i = 0; i< files.length ; i++ ) {
244             args += files.index(i).vname; // full path?
245         }
246          
247         return this.git(args);
248     }
249     
250     /**
251      * pull:
252      * Fetch and merge remote repo changes into current branch..
253      *
254      * At present we just need this to update the current working branch..
255      * -- maybe later it will have a few options and do more stuff..
256      *
257      */
258     public string pull () throws Error, SpawnError
259     {
260         // should probably hand error conditions better... 
261         string[] cmd = { "pull" , "--no-edit" };
262         return this.git( cmd );
263
264         
265         
266     }
267     /**
268      * push:
269      * Send local changes to remote repo(s)
270      *
271      * At present we just need this to push the current branch.
272      * -- maybe later it will have a few options and do more stuff..
273      *
274      */
275     public string push () throws Error, SpawnError
276     {
277         // should 
278         return this.git({ "push", "origin", "HEAD" });
279         
280     }
281     
282     
283     
284      /**
285      * git:
286      * The meaty part.. run spawn.. with git..
287      *
288      *
289      */
290     
291     public string git(string[] args_in ) throws Error, SpawnError
292     {
293         // convert arguments.
294         
295         string[]  args = { "git" };
296         //args +=  "--git-dir";
297         //args +=  this.gitdir;
298         args +=  "--no-pager";
299  
300  
301         //if (this.gitdir != this.repopath) {
302         //    args +=   "--work-tree";
303          //   args += this.repopath; 
304         //}
305         for (var i = 0; i < args_in.length;i++) {
306             args += args_in[i];
307         }            
308
309         //this.lastCmd = args.join(" ");
310         //if(this.debug) {
311             stdout.printf( "CWD=%s\n",  this.git_working_dir ); 
312             print( "cmd: %s\n", string.joinv (" ", args)); 
313         //}
314
315         string[]   env = {};
316         string  home = "HOME=" + Environment.get_home_dir() ;
317         env +=  home ;
318         // do not need to set gitpath..
319         //if (File.exists(this.repo + '/.git/config')) {
320             //env.push("GITPATH=" + this.repo );
321         //}
322         
323
324         var cfg = new SpawnConfig(this.git_working_dir , args , env);
325         
326
327        // may throw error...
328         var sp = new Spawn(cfg);
329       
330
331         stdout.printf( "GOT: %s\n" , sp.output);
332         // parse output for some commands ?
333         return sp.output;
334     }
335
336 }