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