GitMonitor.vala
[gitlive] / GitMonitor.vala
index cd4f6ff..be5fb29 100644 (file)
@@ -1,4 +1,5 @@
 
 
 public class GitMonitorQueue : MonitorNamePathDir {
         // name = basename
@@ -6,26 +7,28 @@ public class GitMonitorQueue : MonitorNamePathDir {
         // dir = dir path
     
         public string gitpath;
-        public string vpath;  // relative path (within git)
+        public string vdir;  // relative path (within git)
         public string vname;  // relative filename (within git)
         public string message ; // for commit
         public bool commit_all;
-        
-
-
-
-
+         
         public GitMonitorQueue(MonitorNamePathDir f) {
 
             base(f.name, f.path, f.dir);
-
-
             this.message = "";
             this.commit_all = false;
-           
-            var vpath_ar = this.path.substring(GitMonitor.gitlive.length +1).split("/", 0);
+  
+            var vpath_ar = this.dir.substring(GitMonitor.gitlive.length +1).split("/", 0);
             
+            if (vpath_ar[0].length < 1) {
+
+                this.gitpath = "";
+                this.vdir = "";
+                this.vname = "";
+            }        
+
+
             this.gitpath = GitMonitor.gitlive + "/" + vpath_ar[0];
             
             string[]  vpath = {};
@@ -33,19 +36,27 @@ public class GitMonitorQueue : MonitorNamePathDir {
                 vpath += vpath_ar[i];
             }
 
-            this.vpath =  string.joinv("/", vpath);
+            this.vdir =  string.joinv("/", vpath);
+
+            this.vname =  this.vdir + (this.vdir.length > 0 ? "/" : "") + this.name;
+/*
+            stdout.printf(
+                    "NEW GitMonitorQueue\nname: %s\npath: %s\ndir: %s\n" + 
+                    "gitpath: %s\nvdir: %s\nvname: %s\n",
+                    this.name, this.path, this.dir,
+                    this.gitpath, this.vdir, this.vname
+            );
+*/
 
-            this.vname =  this.vpath + (this.vpath.length > 0 ? "/" : "") + this.name;
             //f.repo = new imports.Scm.Git.Repo({ repopath: f.gitpath })
         
         
         }
 
-        public bool shouldIgnore(GitMonitor gm)
+        public bool shouldIgnore()
         {
             
-            
-            
+             
             // vim.. what a seriously brain dead program..
             if (this.name == "4913") {
                 return true;
@@ -59,6 +70,10 @@ public class GitMonitorQueue : MonitorNamePathDir {
                 
                 return true;
             }
+            if (this.name[this.name.length -1] == '~') {
+                return true;
+            }
+
             //if (f.name.match(/~$/)) {
             //    return true;
             //}
@@ -66,7 +81,7 @@ public class GitMonitorQueue : MonitorNamePathDir {
             //    return true;
             //}
             // ignore anything in top level!!!!
-            if (this.vpath.length < 1) {
+            if (this.gitpath.length < 1) {
                 return true;
             }
             
@@ -106,13 +121,13 @@ public class GitMonitorQueue : MonitorNamePathDir {
 public class GitMonitor : Monitor
 {
 
+    public static GitMonitor gitmonitor;
     /**
      * @property {String} the "gitlive" directory, normally ~/gitlive
      *  dset by OWNER... - we should do this as a CTOR.
      *  
      */
-    public static string gitlive = "";
+    public static string gitlive;
     
     
     public Array<GitMonitorQueue> queue ;
@@ -120,8 +135,16 @@ public class GitMonitor : Monitor
     
     public DateTime lastAdd;
      
-     
-    public void pause() {
+    
+    public GitMonitor () {
+        this.queue = new Array<GitMonitorQueue>();
+        GitMonitor.gitmonitor = this;
+    }
+
+
+
+    public new void pause() {
         this.paused = true;
         // what does this do to the old one...
         this.queue = new Array<GitMonitorQueue> ();
@@ -129,7 +152,7 @@ public class GitMonitor : Monitor
 
     }
     
-    public void resume () {
+    public new void resume () {
         this.paused = false;
         this.queue = new Array<GitMonitorQueue> ();
         StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
@@ -141,76 +164,82 @@ public class GitMonitor : Monitor
      * and run the queue every 500 milliseconds..
      *
      */
-    public void start() {
-        StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_REFRESH );
+    public new void start() {
+        StatusIconA.statusicon.set_from_stock( Gtk.Stock.REFRESH );
         
          
-        this.lastAdd = new DateTime.now(); 
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         
-        Timeout.add_full(GLib.PRIORITY_LOW, 500, () => {
-
+        Timeout.add_full(Priority.LOW, 500, () => {
+            //stdout.printf("GitMonitor.start :: top.length = %u\n", this.top.length);
             // call this.monitor on each of 'top'
             for(int i = 0; i < this.top.length ; i++) {
+
                 this.monitor(this.top.index(i) );
             }
             StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PLAY );
              
            
             
-            try { 
-                var notification = new Notify.Notification({
+            try {
+
+              
+                var notification = new Notify.Notification(
                     "Git Live",
-                    GitMonitor.gitlive + "\nMonitoring " + _this.monitors.length + " Directories",
+                    "%s\nMonitoring %u Directories".printf(GitMonitor.gitlive, this.monitors.length), 
                      "dialog-information"
-                });
+                );
         
                 notification.set_timeout(5);
                 notification.show();
             } catch(Error e) {
-                print(e.toString());
+                print(e.message);
             }
+            return false; // do not keep doing this..
 
         });
         
-        Timeout.add_full(GLib.PRIORITY_LOW, 1000, () => {
+
+        Timeout.add_full(Priority.LOW, 1000, () => {
             //TIMEOUT", _this.queue.length , _this.queueRunning].join(', '));
-            if (!_this.queue.length || _this.queueRunning) {
+
+            //stdout.printf("QL %u: QR: %d\n", this.queue.length, this.queueRunning ? 1 : 0);
+            if (this.queue.length < 1  || this.queueRunning) {
                 return true;
             }
-
-            var last = this.lastAdd.difference(new DateTime.now());
-
-            
-            //print("LAST RUN?" + last);
             
-            if (last < 5 * Timespan.SECOND) { // wait 1/2 a seconnd before running.
-                return 1;
+            var last = -1 * this.lastAdd.difference(new DateTime.now(new TimeZone.local()));
+            // stdout.printf("LAST RUN: %s (expect %s) \n" ,
+            //         last.to_string(),   (5 * TimeSpan.SECOND).to_string() );
+            if (last < 5 * TimeSpan.SECOND) { // wait 5 seconds before running. ????
+                return true;
             }
             //_this.lastAdd = new Date();
             //return 1;
         
             this.runQueue();
-            return true;
-        },null,null);
-        
-      
+            return true; //
+        });
+         
     }
 
 
-    public void stop() {
+    public new void stop() {
         StatusIconA.statusicon.set_from_stock( Gtk.Stock.MEDIA_PAUSE );;
         base.stop();
     }
     
     
-    public void monitor (string path,  int depth = 0)
+    public new void monitor (string path,  int depth = 0)
     {
         
         //var depth = typeof(depth) == 'number'  ? depth *1 : 0;
         
          
         // if we are not at top level.. and there is a .git directory  (it's a submodule .. ignore) 
-        if (depth > 1 && GLib.file_test(path + "/.git" , GLib.FileTest.IS_DIR)) {
+        if (depth > 1 && FileUtils.test(path + "/.git" , FileTest.IS_DIR)) {
             return;
         }
         
@@ -246,11 +275,14 @@ public class GitMonitor : Monitor
         if (this.paused) {
             return;
         }
+        print("GitMonitor.runQueue\n");
+
         this.queueRunning = true;
 
         var cmds = new Array<GitMonitorQueue>();
+
         for(var i = 0; i < this.queue.length; i++) {
-            cmds.append_val(this.queue.item(i));
+            cmds.append_val(this.queue.index(i));
         }
 
         this.queue = new Array<GitMonitorQueue>();// empty queue!
@@ -258,8 +290,8 @@ public class GitMonitor : Monitor
         
         string[] success = {};
         string[] failure = {};
-        var repos = new Array<GitRepo>(); //??
-        var done = new Array<GitMonitorQueue>();
+       //var repos = new Array<GitRepo>(); //??
+        //var done = new Array<GitMonitorQueue>();
         
         // first build a array of repo's to work with
         var repo_list = new Array<GitRepo>();
@@ -267,34 +299,42 @@ public class GitMonitor : Monitor
         // pull and group.
         
         //print(JSON.stringify(cmds));
+        // make sure nothing get's added to the queue where we are doing this..
+
         this.paused = true;
+
+        print("GitMonitor.runQueue - creating repos\n");
         
         for(var i = 0; i < cmds.length; i++) {
            
+            var cmd = cmds.index(i);
         
             var gitpath = cmd.gitpath; 
-            var ix  = GitRepo.indexOf(this.repos,  cmd.gitpath);
+            stdout.printf("GitMonitor.runQueue - finding %s\n", cmd.gitpath);
+        
+            var ix  = GitRepo.indexOf(repo_list,  cmd.gitpath);
             if (ix < 0) {
                 repo_list.append_val(new GitRepo( gitpath ));
-                ix = GitRepo.indexOf(this.repos,  cmd.gitpath);
+                ix = GitRepo.indexOf(repo_list,  cmd.gitpath);
             }
-            
+            stdout.printf("GitMonitor.runQueue - adding to repolist %d\n", ix);
 
             //if (typeof(repo_list[gitpath]) == 'undefined') {
             //    repo_list[gitpath] = new imports.Scm.Git.Repo.Repo( { repopath : gitpath });
             //    repo_list[gitpath].cmds = [];
              //   repo_list[gitpath].pull();
             //}
-            repo_list.item(ix).cmds.append_val(cmd);
+            repo_list.index(ix).cmds.append_val(cmd);
 
         }
         this.paused = false;
         // build add, remove and commit message list..
+
+        print("GitMonitor.runQueue - creating actions\n");
         
         for(var i = 0;i < repo_list.length;i++) {
-    
-
-            var repo = repo_list.item(i);
+     
+            var repo = repo_list.index(i);
 
             var add_files = new Array<GitMonitorQueue>();
             var remove_files = new Array<GitMonitorQueue>();
@@ -302,7 +342,7 @@ public class GitMonitor : Monitor
             //print(JSON.stringify(repo.cmds,null,4));
             
             for(var ii = 0;ii < repo.cmds.length;ii++) {
-                var cmd = repo.cmds.item(ii);
+                var cmd = repo.cmds.index(ii);
     
                 
                 switch(cmd.action) {
@@ -311,18 +351,17 @@ public class GitMonitor : Monitor
                         if (GitMonitorQueue.indexOfAdd(add_files, cmd.vname) > -1) {
                            break;
                         }
-        
                         
                         add_files.append_val(cmd);
                         break;
                     
                     case "rm":
-                        if (GitMonitorQueue.indexOfAdd(add_files, cmd.rm) > -1 ) {
+                        if (GitMonitorQueue.indexOfAdd(add_files, cmd.vname) > -1 ) {
                            break;
                         }
                         
                         // if file exists, do not try and delete it.
-                        if (GLib.file_test(cmd.rm, GLib.FileTest.EXISTS)) {
+                        if (FileUtils.test(cmd.vname, FileTest.EXISTS)) {
                             break;
                         }
                         
@@ -333,38 +372,51 @@ public class GitMonitor : Monitor
                         if (GitMonitorQueue.indexOfMessage(messages, cmd.message) > -1 ) {
                            break;
                         }
-                         
                         messages.append_val(cmd);
                         
                         break;
                     default:
-                        print("Opps unmatched action");
+                        stdout.printf("Opps unmatched action %s\n", cmd.action);
                         break;
                 } 
             }
             
             //repo.debug = 1;
             // these can fail... at present... as we wildcard stuff.
-            stdout.printf("ADD : %d files"  , add_files.length);
+            stdout.printf("ADD : %u files\n"  , add_files.length);
             
             // make sure added files do not get removed..
 
             var remove_files_f = new Array<GitMonitorQueue>();
             for(var ii = 0;ii < remove_files.length;ii++) {
-                if (GitMonitorQueue.indexOfAdd(add_files,  remove_files.item(ii).rm) > -1 ) {
+                if (GitMonitorQueue.indexOfAdd(add_files,  remove_files.index(ii).vname) > -1 ) {
                      continue;
                 }
-                remove_files_f.append_val(remove_files.item(ii));
+                remove_files_f.append_val(remove_files.index(ii));
             };
-            stdout.printf("REMOVE : %d files"  , remove_files.length);
+            stdout.printf("REMOVE : %u files\n"  , remove_files_f.length);
              
             // make sure monitoring is paused so it does not recursively pick up
             // deletions
+            try {
+                repo.pull();
+            } catch(Error e) {
+                failure +=  e.message;
+            }
             
-            // -- DO STUFF..
             
-            repo.add(add_files);
-            repo.remove(remove_files_f);
+            // -- DO STUFF..            
+            try {
+                repo.add(add_files);
+            } catch(Error e) {
+                failure +=  e.message;
+            }  
+            try {
+                 repo.remove(remove_files_f);
+            } catch(Error e) {
+                failure +=  e.message;
+            }  
+
             this.paused = false;
             
             
@@ -385,7 +437,7 @@ public class GitMonitor : Monitor
          
         try {
             // catch notification failures.. so we can carry on..
-            if (success.length) {
+            if (success.length > 0) {
 
                 
                 var notification = new Notify.Notification(
@@ -399,14 +451,14 @@ public class GitMonitor : Monitor
                 notification.show();   
             }
             
-            if (failure.length) {
+            if (failure.length > 0) {
 
-                var notification = new Notify.Notification({
-                    summary: "Git Live ERROR!!",
+                var notification = new Notify.Notification(
+                      "Git Live ERROR!!",
                     string.joinv("\n",failure),
                     "dialog-information"
                     
-                });
+                );
     
                 notification.set_timeout(5); // show errros for longer
                 notification.show();   
@@ -431,8 +483,9 @@ public class GitMonitor : Monitor
    
 
 
-    public void onChanged(MonitorNamePathDir src) 
+    public override  void onChanged(MonitorNamePathDir src) 
     { 
+        print("GitMonitor.onChanged\n");        
         return; // always ignore this..?
         //this.parsePath(src);
     }
@@ -443,22 +496,22 @@ public class GitMonitor : Monitor
      *  results in  git add  + git commit..
      *
      */
-    public void onChangesDoneHint(MonitorNamePathDir src)  
+    public override void onChangesDoneHint(MonitorNamePathDir src)  
     { 
-        
+        print("GitMonitor.onChangedHint\n");        
         if (this.paused) {
-            return true;
+            return;
         }
             
 
-        this.lastAdd = new DateTime.now(); 
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         var cmd = new GitMonitorQueue(src);
         if (cmd.shouldIgnore()) {
             return;
         }
         
        
-        var add_it = false;
+        //var add_it = false;
         /*
         if (this.is_just_created(cmd.path)) {
             
@@ -474,22 +527,23 @@ public class GitMonitor : Monitor
             return;
         }
         */
-        //cmd.add = src.vpath;
+        cmd.action = "add";
         this.queue.append_val(cmd);
 
-        var cmd = new GitMonitorQueue(src);
+        cmd = new GitMonitorQueue(src);
         cmd.action = "commit";
-        cmd.message = src.vpath;
+        cmd.message = cmd.vname;
         this.queue.append_val(cmd);
  
          
     }
-    public void onDeleted(MonitorNamePathDir src) 
+    public override  void onDeleted(MonitorNamePathDir src) 
    { 
+        print("GitMonitor.onDeleted\n");        
         if (this.paused) {
-            return true;
+            return;
         }
-        this.lastAdd = new DateTime.now(); 
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         var cmd = new GitMonitorQueue(src);
         if (cmd.shouldIgnore()) {
             return;
@@ -497,36 +551,35 @@ public class GitMonitor : Monitor
         // should check if monitor needs removing..
         // it should also check if it was a directory.. - so we dont have to commit all..
         cmd.action = "rm";
-        cmd.rm = src.vpath;
         this.queue.append_val(cmd);
 
-        var cmd = new GitMonitorQueue(src);
+        cmd = new GitMonitorQueue(src);
         cmd.action = "commit";
-        cmd.message = src.vpath;
+        cmd.message = cmd.vname;
         cmd.commit_all = true;
 
         this.queue.append_val(cmd);
  
     }
-    public void onCreated(MonitorNamePathDir src) {
-
+    public override  void onCreated(MonitorNamePathDir src) {
+        print("GitMonitor.onCreated\n");        
         if (this.paused) {
-            return true;
+            return;
         }
-        this.lastAdd = new DateTime.now(); 
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         var cmd = new GitMonitorQueue(src);
         if (cmd.shouldIgnore()) {
             return;
         }
 
-        if (!GLib.file_test(src.path, GLib.FileTest.IS_DIR)) {
+        if (!FileUtils.test(src.path, GLib.FileTest.IS_DIR)) {
            // this.just_created[src.path] = true;
             return; // we do not handle file create flags... - use done hint.
         }
         // directory has bee created
         this.monitor(src.path);
-        this.top.append_val(src.path);
-        this.monitor(src.path );
+        //this.top.append_val(src.path);
+        //this.monitor(src.path );
 
 
 // -- no point in adding a dir.. as git does not handle them...
@@ -538,30 +591,32 @@ public class GitMonitor : Monitor
 
     }
 
-    public void onAttributeChanged(MonitorNamePathDir src) { 
-
+    public  override void onAttributeChanged(MonitorNamePathDir src) { 
+        print("GitMonitor.onAttributeChanged\n");        
         if (this.paused) {
-            return true;
+            return;
         }
-        this.lastAdd = new DateTime.now(); 
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         var cmd = new GitMonitorQueue(src);
         if (cmd.shouldIgnore()) {
             return;
         }
         cmd.action = "add";
-        cmd.add = src.vpath;
         this.queue.append_val(cmd);
 
-        var cmd = new GitMonitorQueue(src);
+        cmd = new GitMonitorQueue(src);
         cmd.action = "commit";
-        cmd.message = "Attribute changed " + cmd.vpath;
+        cmd.message = "Attribute changed " + cmd.vname;
         this.queue.append_val(cmd);
     }
-
-
-   public void onMoved(MonitorNamePathDir src,MonitorNamePathDir dest)  
+   public  override void onMoved(MonitorNamePathDir src,MonitorNamePathDir dest)  
     { 
-        this.lastAdd = new DateTime.now(); 
+        print("GitMonitor.onMoved\n");        
+        if (this.paused) {
+            return;
+        }
+        this.lastAdd = new DateTime.now(new TimeZone.local()); 
         var cmd_s = new GitMonitorQueue(src);
 
         var cmd_d = new GitMonitorQueue(src);
@@ -570,18 +625,18 @@ public class GitMonitor : Monitor
         if (cmd_d.gitpath != cmd_s.gitpath) {
             this.onDeleted(src);
             this.onCreated(dest);
-            this.onChangedDoneHint(dest);
+            this.onChangesDoneHint(dest);
             return;
         }
         // needs to handle move to/from unsupported types..
         
-        if (this.shouldIgnore(src)) {
+        if (cmd_s.shouldIgnore()) {
             this.onCreated(dest);
-            this.onChangedDoneHint(dest);
+            this.onChangesDoneHint(dest);
             return;
 
         }
-        if (this.shouldIgnore(dest)) {
+        if (cmd_d.shouldIgnore()) {
             
             this.onDeleted(src);
  
@@ -590,20 +645,18 @@ public class GitMonitor : Monitor
         }
         
         cmd_s.action = "rm";
-        cmd_s.rm = src.vpath;
         this.queue.append_val(cmd_s);
 
 
 
 
         cmd_d.action = "add";
-        cmd_d.add = src.vpath;
         this.queue.append_val(cmd_d);
 
 
         var cmd = new GitMonitorQueue(dest);
         cmd.action = "commit";
-        cmd.message = "MOVED " + cmd_s.vpath + " to " + cmd_d.vpath;
+        cmd.message = "MOVED " + cmd_s.vname + " to " + cmd_d.vname;
         this.queue.append_val(cmd);