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                 var str = "%s\nMonitoring %d Directories"; 
164                 var notification = new Notify.Notification(
165                     "Git Live",
166                     str.vprintf(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 : %d 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             
369             repo.add(add_files);
370             repo.remove(remove_files_f);
371             this.paused = false;
372             
373             
374             try { 
375                 success += repo.commit(
376                     GitMonitorQueue.messageToString(messages),
377                     add_files  
378                 );
379                 success += repo.push();
380
381             } catch(Error e) {
382                 failure += e.message;
383                 
384             }   
385         }
386         
387         // finally merge all the commit messages.
388          
389         try {
390             // catch notification failures.. so we can carry on..
391             if (success.length) {
392
393                 
394                 var notification = new Notify.Notification(
395                     "Git Live Commited",
396                     string.joinv("\n",success),
397                      "dialog-information"
398                     
399                 );
400     
401                 notification.set_timeout(5);
402                 notification.show();   
403             }
404             
405             if (failure.length) {
406
407                 var notification = new Notify.Notification({
408                     summary: "Git Live ERROR!!",
409                     string.joinv("\n",failure),
410                     "dialog-information"
411                     
412                 });
413     
414                 notification.set_timeout(5); // show errros for longer
415                 notification.show();   
416             }
417         } catch(Error e) {
418             print(e.message);
419             
420         }
421         this.queueRunning = false;
422     }
423     
424
425
426     
427
428     //string[] just_created;
429  
430  
431
432
433
434    
435
436
437     public void onChanged(MonitorNamePathDir src) 
438     { 
439         return; // always ignore this..?
440         //this.parsePath(src);
441     }
442     
443
444  
445     /**
446      *  results in  git add  + git commit..
447      *
448      */
449     public void onChangesDoneHint(MonitorNamePathDir src)  
450     { 
451         
452         if (this.paused) {
453             return true;
454         }
455             
456
457         this.lastAdd = new DateTime.now(new TimeZone.local()); 
458         var cmd = new GitMonitorQueue(src);
459         if (cmd.shouldIgnore()) {
460             return;
461         }
462         
463        
464         var add_it = false;
465         /*
466         if (this.is_just_created(cmd.path)) {
467             
468         if (typeof(this.just_created[src.path]) !='undefined') {
469             delete this.just_created[src.path];
470             
471             this.queue.push( 
472                 [ src.gitpath,  'add', src.vpath ],
473                 [ src.gitpath,  'commit',    { message: src.vpath} ] 
474                 
475             );
476          
477             return;
478         }
479         */
480
481         this.queue.append_val(cmd);
482
483         var cmd = new GitMonitorQueue(src);
484         cmd.action = "commit";
485         cmd.message = src.vpath;
486         this.queue.append_val(cmd);
487  
488          
489     }
490     public void onDeleted(MonitorNamePathDir src) 
491    { 
492         if (this.paused) {
493             return true;
494         }
495         this.lastAdd = new DateTime.now(new TimeZone.local()); 
496         var cmd = new GitMonitorQueue(src);
497         if (cmd.shouldIgnore()) {
498             return;
499         }
500         // should check if monitor needs removing..
501         // it should also check if it was a directory.. - so we dont have to commit all..
502         cmd.action = "rm";
503         cmd.rm = src.vpath;
504         this.queue.append_val(cmd);
505
506         var cmd = new GitMonitorQueue(src);
507         cmd.action = "commit";
508         cmd.message = src.vpath;
509         cmd.commit_all = true;
510
511         this.queue.append_val(cmd);
512  
513     }
514     public void onCreated(MonitorNamePathDir src) {
515
516         if (this.paused) {
517             return true;
518         }
519         this.lastAdd = new DateTime.now(new TimeZone.local()); 
520         var cmd = new GitMonitorQueue(src);
521         if (cmd.shouldIgnore()) {
522             return;
523         }
524
525         if (!FileUtils.test(src.path, GLib.FileTest.IS_DIR)) {
526            // this.just_created[src.path] = true;
527             return; // we do not handle file create flags... - use done hint.
528         }
529         // directory has bee created
530         this.monitor(src.path);
531         this.top.append_val(src.path);
532         this.monitor(src.path );
533
534
535 // -- no point in adding a dir.. as git does not handle them...
536 //        this.queue.push( 
537   //          [ src.gitpath, 'add' , src.vpath,  { all: true } ],
538  //           [ src.gitpath, 'commit' , { all: true, message: src.vpath} ]
539   //          
540    //     );
541
542     }
543
544     public void onAttributeChanged(MonitorNamePathDir src) { 
545
546         if (this.paused) {
547             return true;
548         }
549         this.lastAdd = new DateTime.now(new TimeZone.local()); 
550         var cmd = new GitMonitorQueue(src);
551         if (cmd.shouldIgnore()) {
552             return;
553         }
554         cmd.action = "add";
555         this.queue.append_val(cmd);
556
557         var cmd = new GitMonitorQueue(src);
558         cmd.action = "commit";
559         cmd.message = "Attribute changed " + cmd.vpath;
560         this.queue.append_val(cmd);
561     }
562
563
564    public void onMoved(MonitorNamePathDir src,MonitorNamePathDir dest)  
565     { 
566         this.lastAdd = new DateTime.now(new TimeZone.local()); 
567         var cmd_s = new GitMonitorQueue(src);
568
569         var cmd_d = new GitMonitorQueue(src);
570    
571         
572         if (cmd_d.gitpath != cmd_s.gitpath) {
573             this.onDeleted(src);
574             this.onCreated(dest);
575             this.onChangedDoneHint(dest);
576             return;
577         }
578         // needs to handle move to/from unsupported types..
579         
580         if (this.shouldIgnore(src)) {
581             this.onCreated(dest);
582             this.onChangedDoneHint(dest);
583             return;
584
585         }
586         if (this.shouldIgnore(dest)) {
587             
588             this.onDeleted(src);
589  
590
591             return;
592         }
593         
594         cmd_s.action = "rm";
595         this.queue.append_val(cmd_s);
596
597
598
599
600         cmd_d.action = "add";
601         this.queue.append_val(cmd_d);
602
603
604         var cmd = new GitMonitorQueue(dest);
605         cmd.action = "commit";
606         cmd.message = "MOVED " + cmd_s.vpath + " to " + cmd_d.vpath;
607         this.queue.append_val(cmd);
608
609
610          
611     }
612        
613 }