README.txt
[gitlive] / GitLogParser.js
index 96bc48e..2360973 100644 (file)
@@ -9,8 +9,9 @@ GitLogParser = {
     {
         this.date  = date;        
         var home  = GLib.get_home_dir();
-        
+        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..
@@ -22,7 +23,9 @@ GitLogParser = {
         // read the lines, and fill in the 'spans'
         
         for (var i = 0; i < flines.length; i++) {
+            
             var xl = flines[i].split(/([0-9]{2}:[0-9]{2}:[0-9]{2})/);
+            
             //print(JSON.stringify(xl));
             for (var ii=1; ii< xl.length; ii+=2) {
                 var p = lines.length;
@@ -37,7 +40,8 @@ GitLogParser = {
             }
              
             
-        };
+        }
+        print("parsed");
         //print(JSON.stringify(lines,null,4));
         
         // summarize data...
@@ -65,7 +69,7 @@ GitLogParser = {
     {
         var ret = { cmd : false,  line : l, span : 0 };
         var ar = l.split(/\s+/);
-        //print(JSON.stringify(ar));
+        print(JSON.stringify(ar));
             
         var time = ar.shift();
         //print("time: " + time);
@@ -159,17 +163,27 @@ if (typeof(Seed.argv[2]) == 'undefined') {
 
 
 var res = GitLogParser.parse(xDate.Date.parseDate(Seed.argv[2], 'Y-m-d'));
-var totals = { work : 0 , idle: 0}
+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 IDLE' );
+            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) {
@@ -183,6 +197,8 @@ for (var h in res) {
     
 }
 print("\nLONGIDLE : " +(totals.idle/60).toFixed(2) +"h" );
+print("\nShort Idle : " +(totals.shortidle/60).toFixed(2) +"h" );
+
 print("Worked: " + (totals.work/60).toFixed(2) +"h\n" );