-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitBroker.js
480 lines (396 loc) · 11.7 KB
/
GitBroker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
"use strict";
var NodeGit= require("nodegit");
var timer = require("./Timer.js");
var exec = require('child_process').exec;
var fs = require('fs');
var Promise = require('es6-promise').Promise;
/*
*
* Object:
* [{ //commit
* time: ,
* files:[
* {
* name:
* fileContents:
* }]
* }]
*/
var Commit = function(){
this.time = 0;
this.sha = "";
this.msg = "";
this.files = [];
};
var File = function(){
this.name = "";
this.fileContents = "";
};
var getCommitsAfterTime = function(repoPath,timeStamp){
return new Promise(function(resolve, reject){
var commitList = [];
console.log("Fetching relevant commit after: ",timeStamp);
NodeGit.Repository.open(repoPath).then(function(repo) {
repo.head().then(function(headRef){
var revwalk = repo.createRevWalk();
revwalk.push(headRef.target());
revwalk.getCommitsUntil(function(commit){
return commit.timeMs()>timeStamp;
}).then(function(commits){
//Revwalk has a bug where the last commit is always returned
if(commits.length === 1 && commits[0].timeMs()<=timeStamp){
commits = [];
}
console.log("Found relevant commits: ",commits.length);
var promises = [];
var commitList = [];
commits.forEach(function(commit){
promises.push(generateCommitObject(commit)
.then(function(commit){
commitList.push(commit);
},function(error){
reject(error);
}));
});
Promise.all(promises).then(function(){
resolve(commitList);
}).catch(function(error){
reject(error);
});
},function(error){reject(error);})
},function(error){
reject(error)
})
},function(error){reject(error)});
});
};
var getCommitListFromRepo = function(repoPath){
console.log("Get commit list")
return new Promise(function(resolve, reject){
var commitList = [];
console.log("In promise")
NodeGit.Repository.open(repoPath).then(function(repo) {
return repo.getMasterCommit();
},function(error){reject(error);})
.then(function(firstCommitOnMaster) {
// Create a new history event emitter.
var history = firstCommitOnMaster.history();
history.on("end",function(_commitObjs){
resolve(commitList);
});
history.on("error",function(error){
reject(error);
});
history.on("commit", function(commit) {
commitList.push({"sha": commit.sha(),"time": commit.timeMs()});
});
// Start emitting events.
history.start();
},function(error){reject(error)});
});
};
var getCommitsFromRepo = function(repoPath,_requestedCommits){
return new Promise(function(resolve, reject){
var requestedCommits = _requestedCommits ||[];
var watch = timer.create("getCommits");
watch.start();
getFileListFromGitRepo(repoPath).then(function(files){
getFileCommits(repoPath, files,requestedCommits).then(function(commits){
watch.stop();
console.log(watch.average(), "ms <- Generated commits for ", repoPath, commits.length);
resolve(commits);
}, function(error){reject(error); });
}, function(error){reject(error); });
});
};
// ls-files is not available through nodegit, so it must be fetched manually
var getFileListFromGitRepo = function(dir){
return new Promise(function(resolve,reject){
exec("git ls-files",{cwd:dir},function(error,stdout,stderr){
if(error !== null || stderr !== ""){
reject(error+" \nstderr: "+stderr);
return;
}
var files = stdout.split("\n");
//Remove empty element
files = files.filter(function(el) {return el.length !== 0;});
resolve(files);
});
});
};
//eventEmitter.on('end', function(commits) {
//var promises = commits.map(function(commit){
//return commit.getTree();
//});
//Promise.all(promises).then(function(trees){
//var prevTree = null;
//trees.forEach(function(tree,index){
//NodeGit.Diff.treeToTree(repo,prevTree,tree,options).then(function(result){
//if(result.numDeltas()>0){
//var commit = commits[index+1];
//commit.getEntry(filePath).then(function(entry){
//entry.getBlob().then(function(blob){
//var length = String(blob).split("\n").length;
//console.dir(length);
//console.log(commits[index+1].sha());
//console.log(index);
//})
//})
//}
//});
//prevTree = tree;
//});
//})
/*
* Returns commitObjs with fileContents for
* all commits that changed a given file
*/
var getFile = function(repoPath, filePath){
return new Promise(function(resolve, reject){
var repo;
NodeGit.Repository.open(repoPath)
// Open the master branch.
.then(function(_repo) {
repo = _repo;
return repo.getMasterCommit();
})
// Display information about commits on master.
.then(function(firstCommitOnMaster) {
var options = {
pathspec: [filePath]
};
var eventEmitter = firstCommitOnMaster.history();
eventEmitter.on('end', function(commits) {
var commitTreePromises = commits.map(function(commit){
return commit.getTree();
});
Promise.all(commitTreePromises).then(function(trees){
var commitPromises = trees.map(function(tree,index){
return new Promise(function(resolve, reject){
var prevTree = trees[index-1] || null;
NodeGit.Diff.treeToTree(repo,prevTree,tree,options).then(function(result){
if(result.numDeltas()>0){
var commit = commits[index-1]; //previous commit is the one which is changed
if(commit === undefined){
resolve(false);
return;
}
generateCommitObject(commit).then(function(commitObj){
resolve(commitObj);
},function(error){
console.error(error);
resolve(false);
});
}else{
resolve(false);
}
},function(error){
console.error(error);
resolve(false);
});
});
});
return commitPromises;
}).then(function(commitPromises){
Promise.all(commitPromises).then(function(commitObjs){
commitObjs = commitObjs.filter(function(obj){
var valid = true;
if(obj === false){return false;}
if(obj.files.length<1){return false;}
//Filter all other files that are included in the commit
obj.files = obj.files.filter(function(fileObj){
return fileObj.name === filePath;
});
if(obj.files.length<1){return false;}
return valid;
});
resolve(commitObjs);
},function(error){
reject(error);
});
});
});
eventEmitter.start();
}).catch(function(error){
reject(error);
});
});
};
var getFileCommits = function(repoPath,files,_requestedCommits){
return new Promise(function(resolve,reject){
var requestedCommits = _requestedCommits || [];
var commits = [];
var filesInRepo = files;
// Open the repository directory.
NodeGit.Repository.open(repoPath)
// Open the master branch.
.then(function(repo) {
return repo.getMasterCommit();
})
// Display information about commits on master.
.then(function(firstCommitOnMaster) {
// Create a new history event emitter.
var history = firstCommitOnMaster.history();
history.on("end",function(_commitObjs){
var promises = [];
_commitObjs.forEach(function(commit){
if(requestedCommits.length>0
&& requestedCommits.indexOf(commit.sha()) === -1){
return;
}
promises.push(generateCommitObject(commit,filesInRepo)
.then(function(commit){
commits.push(commit);
},function(error){reject(error);}));
})
Promise.all(promises).then(function(){
resolve(commits);
}).catch(function(error){
reject(error);
})
});
history.on("error",function(error){
reject(error);
});
history.on("commit", function(commit) {
/*
if(requestedCommits.length>0
&& requestedCommits.indexOf(commit.sha()) === -1){
return;
}
generateCommitObject(commit,filesInRepo).then(function(_commit){
commits.push(_commit);
},function(error){
console.log("Could not parse commit: "+error);
});
*/
});
// Start emitting events.
history.start();
});
});
};
var generateCommitObject= function(_commit){
return new Promise(function(resolve, reject){
var promises = [];
var commit = new Commit();
commit.time = _commit.timeMs();
commit.sha = _commit.sha();
commit.msg = _commit.message();
commit.files = [];
_commit.getDiff().then(function(diffList){
var pathList = [];
diffList.forEach(function(diff){
for(var i=0;i<diff.numDeltas();i++){
var diffDelta = diff.getDelta(i);
var path = diffDelta.newFile().path();
pathList.push(path);
}
});
//Get file contents from commit
pathList.forEach(function(filename){
var promise = new Promise(function(resolve,reject){
_commit.getEntry(filename).then(function(entry){
entry.getBlob().then(function(blob){
var file = new File();
file.name = filename;
file.fileContents = String(blob);
commit.files.push(file);
resolve();
},function(error){reject(error)});
},function(error){
//if the file is not found, we just skip it for the current commit
console.log("File not found: ",error);
resolve();});
},function(error){reject(error);})
promises.push(promise);
});
Promise.all(promises).then(function(){
resolve(commit);
},function(error){
reject(error);
});
});
});
};
var generateCommitObjectTree = function(_commit, filesInRepo){
return new Promise(function(resolve, reject){
var promises = [];
var commit = new Commit();
commit.time = _commit.date();
commit.sha = _commit.sha();
commit.msg = _commit.message();
commit.files = [];
var trees = [];
_commit.getTree().then(function(tree){
var eventEmitter = tree.walk(true); //Walk blobs only
eventEmitter.on("entry",function(tree){
trees.push(tree);
});
eventEmitter.on("end", function(){
//Looks like a bug in NodeGit,
//the tree array given to the End function is inconsistent
//with each entry given by on entry. -
// Therefore we dont rely on it, and create our own
trees.forEach(function(tree){
var promise = new Promise(function(resolve,reject){
tree.getBlob().then(function(blob){
var file = new File();
file.name = tree.path();
file.fileContents = blob.toString();
commit.files.push(file);
resolve();
},function(error){reject(error)});
},function(error){reject(error);});
promises.push(promise);
});
Promise.all(promises).then(function(){
resolve(commit);
},function(error){
reject(error);
});
});
eventEmitter.start();
});
});
};
var generateCommitObjectOld = function(_commit, filesInRepo){
return new Promise(function(resolve, reject){
var promises = [];
var commit = new Commit();
commit.time = _commit.date();
commit.sha = _commit.sha();
commit.msg = _commit.message();
commit.files = [];
//Get file contents from commit
filesInRepo.map(function(filename){
var promise = new Promise(function(resolve,reject){
_commit.getEntry(filename).then(function(entry){
entry.getBlob().then(function(blob){
var file = new File();
file.name = filename;
file.fileContents = String(blob);
commit.files.push(file);
resolve();
},function(error){reject(error)});
},function(error){
//if the file is not found, we just skip it for the current commit
console.log(error);
resolve();});
},function(error){reject(error);})
promises.push(promise);
});
Promise.all(promises).then(function(){
resolve(commit);
},function(error){
reject(error);
}
);
});
};
module.exports = {
getCommitsFromRepo: getCommitsFromRepo,
getCommitsAfterTime: getCommitsAfterTime,
getFile: getFile,
getCommitListFromRepo: getCommitListFromRepo
};