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