GitMonitor.vala
[gitlive] / GitMonitor.vala
1
2  
3
4 public class GitMonitorQueue : MonitorNamePathDir {
5         // name = basename
6         // path = full path..
7         // dir = dir path
8     
9         public string gitpath;
10         public string vpath;  // relative path (within git)
11         public string vname;  // relative filename (within git)
12         public string message ; // for commit
13         public bool commit_all;
14         
15
16
17
18
19         public GitMonitorQueue(MonitorNamePathDir f) {
20
21             base(f.name, f.path, f.dir);
22
23
24             this.message = "";
25             this.commit_all = false;
26  
27            
28             var vpath_ar = this.path.substring(GitMonitor.gitlive.length +1).split("/", 0);
29             
30             this.gitpath = GitMonitor.gitlive + "/" + vpath_ar[0];
31             
32             string[]  vpath = {};
33             for (var i = 1; i< vpath_ar.length; i++) {
34                 vpath += vpath_ar[i];
35             }
36
37             this.vpath =  string.joinv("/", vpath);
38
39             this.vname =  this.vpath + (this.vpath.length > 0 ? "/" : "") + this.name;
40             //f.repo = new imports.Scm.Git.Repo({ repopath: f.gitpath })
41         
42         
43         }
44
45         public bool shouldIgnore(GitMonitor gm)
46         {
47             
48             
49             
50             // vim.. what a seriously brain dead program..
51             if (this.name == "4913") {
52                 return true;
53             }
54             
55             if (this.name[0] == '.') {
56                 // except!
57                 if (this.name == ".htaccess") {
58                     return false;
59                 }
60                 
61                 return true;
62             }
63             //if (f.name.match(/~$/)) {
64             //    return true;
65             //}
66             //if (f.name.match(/^nbproject/)) {
67             //    return true;
68             //}
69             // ignore anything in top level!!!!
70             if (this.vpath.length < 1) {
71                 return true;
72             }
73             
74             return false;
75         }
76         
77         /** -- statics --*/
78         
79         public static int indexOfAdd( Array<GitMonitorQueue> add_files, string add) {
80             for(var i =0; i < add_files.length; i++) {
81                 if (add_files.index(i).vname == add) {
82                     return i;
83                 }
84             }
85             return -1;
86         }
87         public static  int indexOfMessage(Array<GitMonitorQueue> messages, string message)  {
88             for(var i =0; i < messages.length; i++) {
89                 if (messages.index(i).message == message) {
90                     return i;
91                 }
92             }
93             return -1;
94         }
95         public static string messageToString(Array<GitMonitorQueue> messages ) {
96             string[] ret = {};
97             for(var i =0; i < messages.length; i++) {
98                 ret+= messages.index(i).message;
99             }
100             return string.joinv("\n",ret);
101         }
102
103 }
104
105
106
107 public class GitMonitor : Monitor
108 {
109
110  
111     /**
112      * @property {String} the "gitlive" directory, normally ~/gitlive
113      *  dset by OWNER... - we should do this as a CTOR.
114      *  
115      */
116     public static string gitlive = "";
117     
118     
119     public Array<GitMonitorQueue> queue ;
120     public bool queueRunning = false;
121     
122     public DateTime lastAdd;
123      
124      
125     public new void pause() {
126         this.paused = true;
127         // what does this do to the old one...
128         this.queue = new Array<GitMonitorQueue> ();
129         StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );
130
131     }
132     
133     public new void resume () {
134         this.paused = false;
135         this.queue = new Array<GitMonitorQueue> ();
136         StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
137         
138         
139     }
140     /**
141      * Start the monitoring
142      * and run the queue every 500 milliseconds..
143      *
144      */
145     public new void start() {
146         StatusIconA.statusicon.set_from_stock( Gtk.Stock.REFRESH );
147         
148          
149         this.lastAdd = new DateTime.now(new TimeZone.local()); 
150         
151         Timeout.add_full(Priority.LOW, 500, () => {
152
153             // call this.monitor on each of 'top'
154             for(int i = 0; i < this.top.length ; i++) {
155                 this.monitor(this.top.index(i) );
156             }
157             StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
158              
159            
160             
161             try {
162
163               
164                 var notification = new Notify.Notification(
165                     "Git Live",
166                     "%s\nMonitoring %d Directories".printf(GitMonitor.gitlive, this.monitors.length), 
167                      "dialog-information"
168                 );
169         
170                 notification.set_timeout(5);
171                 notification.show();
172             } catch(Error e) {
173                 print(e.message);
174             }
175
176         });
177         
178         Timeout.add_full(Priority.LOW, 1000, () => {
179             //TIMEOUT", _this.queue.length , _this.queueRunning].join(', '));
180             if (this.queue.length < 1  || this.queueRunning) {
181                 return true;
182             }
183
184             var last = this.lastAdd.difference(new DateTime.now(new TimeZone.local()));
185
186             
187             //print("LAST RUN?" + last);
188             
189             if (last < 5 * TimeSpan.SECOND) { // wait 5 seconds before running. ????
190                 return true;
191             }
192             //_this.lastAdd = new Date();
193             //return 1;
194         
195             this.runQueue();
196             return true;
197         },null,null);
198         
199       
200     }
201
202
203     public new void stop() {
204         StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );;
205         base.stop();
206     }
207     
208     
209     public new void monitor (string path,  int depth = 0)
210     {
211         
212         //var depth = typeof(depth) == 'number'  ? depth *1 : 0;
213         
214          
215         // if we are not at top level.. and there is a .git directory  (it's a submodule .. ignore) 
216         if (depth > 1 && FileUtils.test(path + "/.git" , FileTest.IS_DIR)) {
217             return;
218         }
219         
220         if (depth == 1) {
221             // FIXME - check if repo is flagged as not autocommit..
222             //var repo = imports.Scm.Repo.Repo.get(path);
223             //if (!repo || !repo.autocommit()) {
224             //    return;
225             //} 
226         }
227         
228         
229         // check if the repo is to be monitored.
230         //print("PATH : " + path);
231         
232         
233         base.monitor(path, depth);
234     }
235
236     
237
238     /**
239      * run the queue.
240      * - pulls the items off the queue 
241      *    (as commands run concurrently and new items may get added while it's running)
242      * - runs the queue items
243      * - pushes upstream.
244      * 
245      */
246     public void runQueue()
247     {
248         
249         if (this.paused) {
250             return;
251         }
252         this.queueRunning = true;
253
254         var cmds = new Array<GitMonitorQueue>();
255         for(var i = 0; i < this.queue.length; i++) {
256             cmds.append_val(this.queue.index(i));
257         }
258
259         this.queue = new Array<GitMonitorQueue>();// empty queue!
260
261         
262         string[] success = {};
263         string[] failure = {};
264         var repos = new Array<GitRepo>(); //??
265         var done = new Array<GitMonitorQueue>();
266         
267         // first build a array of repo's to work with
268         var repo_list = new Array<GitRepo>();
269         
270         // pull and group.
271         
272         //print(JSON.stringify(cmds));
273         this.paused = true;
274         
275         for(var i = 0; i < cmds.length; i++) {
276            
277         
278             var gitpath = cmd.gitpath; 
279             var ix  = GitRepo.indexOf(this.repos,  cmd.gitpath);
280             if (ix < 0) {
281                 repo_list.append_val(new GitRepo( gitpath ));
282                 ix = GitRepo.indexOf(this.repos,  cmd.gitpath);
283             }
284             
285
286             //if (typeof(repo_list[gitpath]) == 'undefined') {
287             //    repo_list[gitpath] = new imports.Scm.Git.Repo.Repo( { repopath : gitpath });
288             //    repo_list[gitpath].cmds = [];
289              //   repo_list[gitpath].pull();
290             //}
291             repo_list.index(ix).cmds.append_val(cmd);
292
293         }
294         this.paused = false;
295         // build add, remove and commit message list..
296         
297         for(var i = 0;i < repo_list.length;i++) {
298     
299
300             var repo = repo_list.index(i);
301
302             var add_files = new Array<GitMonitorQueue>();
303             var remove_files = new Array<GitMonitorQueue>();
304             var messages = new Array<GitMonitorQueue>();
305             //print(JSON.stringify(repo.cmds,null,4));
306             
307             for(var ii = 0;ii < repo.cmds.length;ii++) {
308                 var cmd = repo.cmds.index(ii);
309     
310                 
311                 switch(cmd.action) {
312                     case "add" :
313                         
314                         if (GitMonitorQueue.indexOfAdd(add_files, cmd.vname) > -1) {
315                            break;
316                         }
317         
318                         
319                         add_files.append_val(cmd);
320                         break;
321                     
322                     case "rm":
323                         if (GitMonitorQueue.indexOfAdd(add_files, cmd.rm) > -1 ) {
324                            break;
325                         }
326                         
327                         // if file exists, do not try and delete it.
328                         if (FileUtils.test(cmd.rm, FileTest.EXISTS)) {
329                             break;
330                         }
331                         
332                         remove_files.append_val(cmd);
333                         break;
334                     
335                     case "commit" :
336                         if (GitMonitorQueue.indexOfMessage(messages, cmd.message) > -1 ) {
337                            break;
338                         }
339                          
340                         messages.append_val(cmd);
341                         
342                         break;
343                     default:
344                         print("Opps unmatched action");
345                         break;
346                 } 
347             }
348             
349             //repo.debug = 1;
350             // these can fail... at present... as we wildcard stuff.
351             stdout.printf("ADD : %d files"  , add_files.length);
352             
353             // make sure added files do not get removed..
354
355             var remove_files_f = new Array<GitMonitorQueue>();
356             for(var ii = 0;ii < remove_files.length;ii++) {
357                 if (GitMonitorQueue.indexOfAdd(add_files,  remove_files.index(ii).rm) > -1 ) {
358                      continue;
359                 }
360                 remove_files_f.append_val(remove_files.index(ii));
361             };
362             stdout.printf("REMOVE : %u files"  , remove_files.length);
363              
364             // make sure monitoring is paused so it does not recursively pick up
365             // deletions
366             
367             // -- DO STUFF..
368             try {
369                 repo.add(add_files);
370             } catch(Error e) {
371                 failure +=  e.message;
372             }  
373             try {
374                  repo.remove(remove_files_f);
375             } catch(Error e) {
376                 failure +=  e.message;
377             }  
378
379             this.paused = false;
380             
381             
382             try { 
383                 success += repo.commit(
384                     GitMonitorQueue.messageToString(messages),
385                     add_files  
386                 );
387                 success += repo.push();
388
389             } catch(Error e) {
390                 failure += e.message;
391                 
392             }   
393         }
394         
395         // finally merge all the commit messages.
396          
397         try {
398             // catch notification failures.. so we can carry on..
399             if (success.length) {
400
401                 
402                 var notification = new Notify.Notification(
403                     "Git Live Commited",
404                     string.joinv("\n",success),
405                      "dialog-information"
406                     
407                 );
408     
409                 notification.set_timeout(5);
410                 notification.show();   
411             }
412             
413             if (failure.length) {
414
415                 var notification = new Notify.Notification({
416                     summary: "Git Live ERROR!!",
417                     string.joinv("\n",failure),
418                     "dialog-information"
419                     
420                 });
421     
422                 notification.set_timeout(5); // show errros for longer
423                 notification.show();   
424             }
425         } catch(Error e) {
426             print(e.message);
427             
428         }
429         this.queueRunning = false;
430     }
431     
432
433
434     
435
436     //string[] just_created;
437  
438  
439
440
441
442    
443
444
445     public void onChanged(MonitorNamePathDir src) 
446     { 
447         return; // always ignore this..?
448         //this.parsePath(src);
449     }
450     
451
452  
453     /**
454      *  results in  git add  + git commit..
455      *
456      */
457     public void onChangesDoneHint(MonitorNamePathDir src)  
458     { 
459         
460         if (this.paused) {
461             return true;
462         }
463             
464
465         this.lastAdd = new DateTime.now(new TimeZone.local()); 
466         var cmd = new GitMonitorQueue(src);
467         if (cmd.shouldIgnore()) {
468             return;
469         }
470         
471        
472         var add_it = false;
473         /*
474         if (this.is_just_created(cmd.path)) {
475             
476         if (typeof(this.just_created[src.path]) !='undefined') {
477             delete this.just_created[src.path];
478             
479             this.queue.push( 
480                 [ src.gitpath,  'add', src.vpath ],
481                 [ src.gitpath,  'commit',    { message: src.vpath} ] 
482                 
483             );
484          
485             return;
486         }
487         */
488
489         this.queue.append_val(cmd);
490
491         var cmd = new GitMonitorQueue(src);
492         cmd.action = "commit";
493         cmd.message = src.vpath;
494         this.queue.append_val(cmd);
495  
496          
497     }
498     public void onDeleted(MonitorNamePathDir src) 
499    { 
500         if (this.paused) {
501             return true;
502         }
503         this.lastAdd = new DateTime.now(new TimeZone.local()); 
504         var cmd = new GitMonitorQueue(src);
505         if (cmd.shouldIgnore()) {
506             return;
507         }
508         // should check if monitor needs removing..
509         // it should also check if it was a directory.. - so we dont have to commit all..
510         cmd.action = "rm";
511         cmd.rm = src.vpath;
512         this.queue.append_val(cmd);
513
514         var cmd = new GitMonitorQueue(src);
515         cmd.action = "commit";
516         cmd.message = src.vpath;
517         cmd.commit_all = true;
518
519         this.queue.append_val(cmd);
520  
521     }
522     public void onCreated(MonitorNamePathDir src) {
523
524         if (this.paused) {
525             return true;
526         }
527         this.lastAdd = new DateTime.now(new TimeZone.local()); 
528         var cmd = new GitMonitorQueue(src);
529         if (cmd.shouldIgnore()) {
530             return;
531         }
532
533         if (!FileUtils.test(src.path, GLib.FileTest.IS_DIR)) {
534            // this.just_created[src.path] = true;
535             return; // we do not handle file create flags... - use done hint.
536         }
537         // directory has bee created
538         this.monitor(src.path);
539         this.top.append_val(src.path);
540         this.monitor(src.path );
541
542
543 // -- no point in adding a dir.. as git does not handle them...
544 //        this.queue.push( 
545   //          [ src.gitpath, 'add' , src.vpath,  { all: true } ],
546  //           [ src.gitpath, 'commit' , { all: true, message: src.vpath} ]
547   //          
548    //     );
549
550     }
551
552     public void onAttributeChanged(MonitorNamePathDir src) { 
553
554         if (this.paused) {
555             return true;
556         }
557         this.lastAdd = new DateTime.now(new TimeZone.local()); 
558         var cmd = new GitMonitorQueue(src);
559         if (cmd.shouldIgnore()) {
560             return;
561         }
562         cmd.action = "add";
563         this.queue.append_val(cmd);
564
565         var cmd = new GitMonitorQueue(src);
566         cmd.action = "commit";
567         cmd.message = "Attribute changed " + cmd.vpath;
568         this.queue.append_val(cmd);
569     }
570
571
572    public void onMoved(MonitorNamePathDir src,MonitorNamePathDir dest)  
573     { 
574         this.lastAdd = new DateTime.now(new TimeZone.local()); 
575         var cmd_s = new GitMonitorQueue(src);
576
577         var cmd_d = new GitMonitorQueue(src);
578    
579         
580         if (cmd_d.gitpath != cmd_s.gitpath) {
581             this.onDeleted(src);
582             this.onCreated(dest);
583             this.onChangedDoneHint(dest);
584             return;
585         }
586         // needs to handle move to/from unsupported types..
587         
588         if (this.shouldIgnore(src)) {
589             this.onCreated(dest);
590             this.onChangedDoneHint(dest);
591             return;
592
593         }
594         if (this.shouldIgnore(dest)) {
595             
596             this.onDeleted(src);
597  
598
599             return;
600         }
601         
602         cmd_s.action = "rm";
603         this.queue.append_val(cmd_s);
604
605
606
607
608         cmd_d.action = "add";
609         this.queue.append_val(cmd_d);
610
611
612         var cmd = new GitMonitorQueue(dest);
613         cmd.action = "commit";
614         cmd.message = "MOVED " + cmd_s.vpath + " to " + cmd_d.vpath;
615         this.queue.append_val(cmd);
616
617
618          
619     }
620        
621 }