README.txt
[gitlive] / GitLogParser.js
index 45529ee..6cbcbb0 100644 (file)
@@ -9,25 +9,55 @@ GitLogParser = {
     {
         this.date  = date;        
         var home  = GLib.get_home_dir();
-        
-        var lines = File.read(  home + '/.gitlog' + date.format('/Y/M/d') + 'txt').split("\n");
+        print( "READING FILE");
+        var flines = File.read(  home + '/.gitlog' + date.format('/Y/m/d') + '.log').split("\n");
+        print("loaded");
         // first just convert them..
+        // we had an old bug that did not put line breaks in there..
+        // however 00:00:00: is pretty distinct, so let'st try and split on it..
         
-        for (var i = 0; i < lines.length; i++) {
-            lines[i] = this.parseLine(lines[i]);
-            if (i > 0) {
-                lines[i-1].span = lines[i].start - lines[i-1].start; // should be seconds..?
+        
+        
+        lines = [];
+        
+        // read the lines, and fill in the 'spans'
+        
+        for (var i = 0; i < flines.length; i++) {
+            print("sl");
+            var xl = flines[i].split(/([0-9]{2}:[0-9]{2}:[0-9]{2})/);
+            print("as");
+            //print(JSON.stringify(xl));
+            for (var ii=1; ii< xl.length; ii+=2) {
+                var p = lines.length;
+                lines.push( this.parseLine(xl[ii] + ' ' + xl[ii+1])); 
+                if (p > 0) {
+                    lines[p-1].span = lines[p].start - lines[p-1].start; // should be seconds..?
+                    lines[p-1].spanMin = lines[p-1].span/60000;
+                    
+                    
+                }
+            
             }
+             
+            
         };
+        //print(JSON.stringify(lines,null,4));
+        
         // summarize data...
         var hours = {};
         for (var i = 0; i < lines.length; i++) {
             var line = lines[i];
-            var hour = hours[line].start.format('H');
+            var hour = line.start.format('H');
+            
+            if (line.project == 'IDLE' && line.spanMin >= 5 ) {
+                line.project = 'LONGIDLE';
+            }
+            
+            var project = line.project;
             hours[hour] = (typeof(hours[hour]) == 'undefined') ? {} : hours[hour];
-            hours[hour][project] = (typeof(hours[project]) == 'undefined') ? 
+            hours[hour][project] = (typeof(hours[hour][project]) == 'undefined') ? 
                     { total : 0, items : [] } 
-                    : hours[project];
+                    : hours[hour][project];
             hours[hour][project].total += line.span;
             hours[hour][project].items.push(line);
         }
@@ -36,23 +66,33 @@ GitLogParser = {
     },
     parseLine : function(l) 
     {
-        var ret = { cmd : false,  line : l };
-        var ar = l.split(/\S+/);
+        var ret = { cmd : false,  line : l, span : 0 };
+        var ar = l.split(/\s+/);
+        //print(JSON.stringify(ar));
+            
         var time = ar.shift();
+        //print("time: " + time);
+        
         ret.start = xDate.Date.parseDate(this.date.format('Y-m-d') + ' ' + time, 'Y-m-d H:i:s');
+        
 
-
-        while (ret.cmd !== false) {
+        while (ret.cmd === false) {
             var ta = ar.pop();
-            if (ta == 'false'  || ta[0] == '/') {
+            //print("TA:"+ta)
+            if (ta[0] !=  '-') { //hopfully withc catch stuff.
                 ret.cmd = ta;
                 break;
             }
             if (!ar.length) {
+                // just assume it's the last bit..
+                //print(line);
                 throw "invalid line: " + l;
             }
 
         }
+        //print(ret.cmd);
+        
+        
         ret.title = ar.join(' ');
         if (ret.title == 'IDLE') {
             ret.project = 'IDLE';
@@ -62,7 +102,10 @@ GitLogParser = {
         
 
         if (typeof(this[ret.cmd])=='undefined') {
-            throw "Unknown application: " + ret.line;
+             ret.project = 'Unknown';
+            return ret;
+            print( "Unknown application: " + ret.line);
+            throw { error : "TEST"};
         }
         if (typeof(this[ret.cmd])=='string') {
             ret.project = this[ret.cmd]  
@@ -75,7 +118,7 @@ GitLogParser = {
         return ret;
 
     },
-
     '/usr/bin/perl' : function(ret) {
         if (ret.title.match(/^PAC/)) {
             ret.project = 'Unknown';
@@ -99,18 +142,64 @@ GitLogParser = {
 
     },
     '/usr/lib/Komodo-Edit-7/lib/mozilla/komodo' : function(ret) {
-          var l = ret.title.match(/Project\s+(^\)+)/);
-          print(l);
-              
-         throw "Unknown match: " + ret.line;
+        var l = ret.title.match(/Project\s+(^\)+)/);
+        if (!l) {
+            ret.project="Unknown";
+            return;
+        }
+        throw "Unknown match: " + ret.line;
     },
     'guake' : 'Local Terminal',
+    'mono' : 'mono?'
+    
+
+}
+//print(Seed.argv[2]);Seed.quit();
+if (typeof(Seed.argv[2]) == 'undefined') {
+    print("pick a date");
+    Seed.quit();
+}
 
 
+var res = GitLogParser.parse(xDate.Date.parseDate(Seed.argv[2], 'Y-m-d'));
+var totals = { work : 0 , idle: 0, shortidle : 0}
+for (var h in res) {
+    for (var p in res[h]) {
+        if (p == 'LONGIDLE') {
+            var idletime = Math.floor(res[h][p].total/60000) ;
+            print(h + ' ' + Math.floor(res[h][p].total/60000) +'m LONGIDLE' );
+            totals.idle += idletime;
+            
+             
+            continue;
+        }
+        if (p == 'IDLE') {
+            var idletime = Math.floor(res[h][p].total/60000) ;
+            print(h + ' ' + Math.floor(res[h][p].total/60000) +'m SHORT IDLE' );
+            totals.shortidle += idletime;
+            
+             
+            continue;
+        }
+        
+        
+        print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p );  
+        totals.work += Math.floor(res[h][p].total/60000) ;
+        for (var k in res[h][p].items) {
+             
+            //print( '     ' + Math.floor(res[h][p].items[k].span/60000) +'m ' + res[h][p].items[k].line );
+                 
+        }
+        
+        
+    }
+    
 }
+print("\nLONGIDLE : " +(totals.idle/60).toFixed(2) +"h" );
+print("\nShort Idle : " +(totals.shortidle/60).toFixed(2) +"h" );
 
-var res = GitLogParser.parse(xDate.Date.parseDate('2012-07-31', 'Y-m-d'));
-print(JSON.stringify(res,null,4));
+print("Worked: " + (totals.work/60).toFixed(2) +"h\n" );
 
 // open file..