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