GitLogParser.js
authorAlan Knowles <alan@roojs.com>
Fri, 1 Sep 2017 02:09:52 +0000 (10:09 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 1 Sep 2017 02:09:52 +0000 (10:09 +0800)
MOVED old_seed_version/GitLogParser.js to GitLogParser.js

GitLogParser.js [new file with mode: 0644]

diff --git a/GitLogParser.js b/GitLogParser.js
new file mode 100644 (file)
index 0000000..594a0a6
--- /dev/null
@@ -0,0 +1,362 @@
+
+var File = imports.File.File;
+xDate = imports.Date;
+
+
+
+
+
+GitLogParser = {
+    shours : false,
+    date : false,
+    parse : function(date)
+    {
+        var filename = date;
+        if (typeof(date) == 'object') {
+            this.date  = date;        
+            var home  = GLib.get_home_dir();
+            //print( "READING FILE");
+            filename = home + '/.gitlog' + date.format('/Y/m/d') + '.log';
+        
+        
+        }
+        
+        var flines = File.read(  filename ).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..
+        
+        
+        
+        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));
+            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("parsed");
+        //print(JSON.stringify(lines,null,4));
+        
+        // summarize data...
+        var hours = {};
+        var shours = {};
+        
+        // shours should be:
+        // hour : [ ]
+        
+         
+        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';
+            }
+            if (line.project == 'IDLE' || line.project == 'LONGIDLE') {
+                line.desc = line.project;
+            }
+            
+            var project = line.project;
+            hours[hour] = (typeof(hours[hour]) == 'undefined') ? {} : hours[hour];
+            hours[hour][project] = (typeof(hours[hour][project]) == 'undefined') ? 
+                    { total : 0, items : [] } 
+                    : hours[hour][project];
+            hours[hour][project].total += line.span;
+            hours[hour][project].items.push(line);
+            
+            hours[-1] = (typeof(hours[-1]) == 'undefined') ? {} : hours[-1];
+            hours[-1][project] = (typeof(hours[-1][project]) == 'undefined') ? 
+                    { total : 0, items : {} } 
+                    : hours[-1][project];
+            
+            hours[-1][project].total += line.span;
+            hours[-1][project].items[line.desc] = (typeof(hours[-1][project].items[line.desc]) == 'undefined' ?
+                0 : hours[-1][project].items[line.desc]) + line.span;
+            
+            shours[hour] = (typeof(shours[hour]) == 'undefined') ? {} : shours[hour];
+            shours[hour][line.desc] = (typeof(shours[hour][line.desc] ) == 'undefined') ? 0 : shours[hour][line.desc] ;
+            shours[hour][line.desc] += line.span;
+             
+            
+            
+        }
+         this.shours = shours;
+        return hours;
+
+    },
+    parseLine : function(l) 
+    {
+        var ret = { cmd : false,  line : l, span : 0 };
+        var ar = l.split(/\s+/);
+        //print(JSON.stringify(ar));
+        
+            
+        var time = ar.shift();
+        
+        ret.desc = ar.join(' ');
+        
+        //print("time: " + time);
+        
+        //ret.start = xDate.Date.parseDate(this.date.format('Y-m-d') + ' ' + time, 'Y-m-d H:i:s');
+        ret.start = xDate.Date.parseDate(
+                            (this.date ? this.date.format('Y-m-d')  :'2013-01-01') +
+                            ' ' + time, 'Y-m-d H:i:s');
+
+        while (ret.cmd === false) {
+            var ta = ar.pop();
+            //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';
+            return ret;        
+        }
+        ret.project = 'Unknown';
+        
+        for(var proj in this.regexes) {
+            for(var r in this.regexes[proj]) {
+                if (ret.line.match(this.regexes[proj][r])) {
+                    //print("Match " + proj + " on " + r + ret.line + )
+                    ret.project = proj;
+                    break;
+                }
+            }
+            if (ret.project != 'Unknown') {
+                break;
+            }
+        }
+        return ret;
+        /*
+
+        if (typeof(this[ret.cmd])=='undefined') {
+             ret.project = 'Unknown';
+            return ret;
+            print( "Unknown application: " + ret.line);
+            throw { error : "TEST"};
+        }
+        
+        //print(ret.cmd);
+        //print(ret.title);
+        if (typeof(this[ret.cmd])=='string') {
+            ret.project = this[ret.cmd]  
+        } else {
+
+            this[ret.cmd](ret);
+        }
+
+
+        return ret;
+        */
+
+    },
+    
+    regexes : {
+        'HPA' : [ /web.hpasite/, /Roo Application Builder - Site/, /HP Intranet/, /Hpasite/ ],
+        'MediaOut' : [ /app\.WorkerBee/, /web\.MediaOut/, /workerbee/,
+                        /media-outreach/ , /Press Release Image Portal/, /Media Outreach Feed/ , /PressRelease/,
+                        /Clipping Portal/, /Media OutReach/,
+                        /Auto Searching/ , // These are the excel files they send over..
+                        /sitemap\.xml/,
+                        /Builder - Clipping/
+                        ],
+        'Habito' : [ /Interspire/ ],
+        'Hebe' :[ /web.hhyc_membership_system/ ,/Builder - Hebe/, /Hebe Haven Membership Managment/],
+        
+        'RIS' : [ /Project web.Ris/ , /RIS HK/ , /Hydra/, /hydrajobs/ ],
+        // for who thoug...
+        'Mailfort' : [ /web.FlexySpam/ ],
+        'Emily' : [ /greengarden/ ,/Inventory \| Warehouse/, /Emily/ ],
+        'GPUK' : [/gp-wordpress/, /Greenpeace UK/], 
+        
+        'COBA'  : [/Veridate/, /web\.coba/, /COBA/ ,/Pipeline - DS view/ ],
+        'Regulation Asia' : [/Regulation Asia/, /comocracy/],
+        'Unknown Project' : [ /PAC/ , /Guake/ , /WhatsApp/ ,/Mozilla Thunderbird/],
+        'Admin Work' : [ /roojs.com\/admin/, /RooJSolutions Management Portal/ ]
+            
+         
+    },
+    
+    match_project : function(line) {
+        for(var proj in this.regexes) {
+            for(var r in this.regexes[proj]) {
+                if (line.match(this.regexes[proj][r])) {
+                    //print("Match " + proj + " on " + r + ret.line + )
+                    return  proj;
+
+                }
+            }
+            
+        }
+        return "Unknown";
+    },
+    
+    
+    '/usr/bin/perl' : function(ret) {
+        if (ret.title.match(/^PAC/)) {
+            ret.project = 'Unknown';
+            return  'Unknown';
+        }
+        return 'Unknown';
+        throw "Unknown match: " + ret.line;
+    },
+    '/usr/lib/icedove/icedove-bin' : 'Checking Mail',
+    '/usr/lib/chromium/chromium' : function (ret) {
+
+          switch(true) {
+
+                case (ret.title.match(/Media Clipping Portal/)):
+                    ret.project = 'Media Outreach';
+                    return;
+                
+                default:
+                    ret.project = 'Browsing';
+                    return;
+          }
+
+    },
+    '/usr/lib/Komodo-Edit-7/lib/mozilla/komodo' : function(ret) {
+        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( Seed.argv[2][0] == '/' ? Seed.argv[2] : xDate.Date.parseDate(Seed.argv[2], 'Y-m-d'));
+var totals = { work : 0 , idle: 0, shortidle : 0};
+var unknown = [];
+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) ;
+       
+        if (h == -1) {
+            
+            print( "\n" + p + ':' + Math.floor(res[h][p].total/60000) + 'm');
+            
+            if (p != 'Unknown') {
+        
+                for (var k in res[h][p].items) {
+                     
+                    print( '     ' +   Math.floor(res[h][p].items[k]/60000) +'m ' + k );
+                         
+                }
+            } else {
+                
+                for (var k in res[h][p].items) {
+                    unknown.push({ desc : k , tot : (res[h][p].items[k]/60000).toFixed(2)*1 }) ;
+                    
+                         
+                }
+            }
+        }
+        
+    }
+    
+}
+
+
+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" );
+var totals = {};
+
+for (var h in GitLogParser.shours) {
+    var hsum = [];
+    var htot = 0;
+    for (var desc in GitLogParser.shours[h]) {
+        htot += (GitLogParser.shours[h][desc]/60000).toFixed(2)*1;
+        hsum.push({ desc : desc, tot : (GitLogParser.shours[h][desc]/60000).toFixed(2)*1 })
+        totals[desc] = (typeof(totals[desc]) == 'undefined' ? 0 : totals[desc]) + ((GitLogParser.shours[h][desc]/60000).toFixed(2)*1);
+    }
+    hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 });
+    print("\n\n" + h+': Total (' + htot +')');
+    hsum.forEach(function(r) {
+        var pr = r.desc.match(/IDLE/) ? '' : (GitLogParser.match_project(r.desc) == "Unknown" ? '??? - ' : '');
+        
+        print ("  " + r.tot + "   : " + pr +   r.desc);
+    });
+}
+  
+unknown.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 });
+print("\n\nUnclassified");
+unknown.forEach(function(r) {
+    print ("  " + (r.tot.toFixed(2)*1) + "   : " + r.desc);
+});
+
+//print(JSON.stringify(GitLogParser.shours,null,4));
+
+
+
+// open file..
+
+// read lines
+
+// summarize each hour
+
+//convert line into 'Project / filename'
+
+