README.txt
[gitlive] / GitLogParser.js
index cf22de2..f6a658c 100644 (file)
@@ -18,6 +18,9 @@ GitLogParser = {
         
         
         lines = [];
+        
+        // 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));
@@ -26,6 +29,9 @@ GitLogParser = {
                 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;
+                    
+                    
                 }
             
             }
@@ -39,6 +45,11 @@ GitLogParser = {
         for (var i = 0; i < lines.length; i++) {
             var line = lines[i];
             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[hour][project]) == 'undefined') ? 
@@ -148,14 +159,20 @@ 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}
 for (var h in res) {
     for (var p in res[h]) {
         if (p == 'IDLE') {
+            var idletime = Math.floor(res[h][p].total/60000) ;
             print(h + ' ' + Math.floor(res[h][p].total/60000) +'m IDLE' );
+            if (idletime > 5) {
+                totals.idle += 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 );
@@ -166,7 +183,9 @@ for (var h in res) {
     }
     
 }
-//print(JSON.stringify(res,null,4));
+print("\nIDLE : " +(totals.idle/60).toFixed(2) +"h" );
+print("Worked: " + (totals.work/60).toFixed(2) +"h\n" );
 
 // open file..