mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 10:35:08 +00:00
125 lines
2.8 KiB
JavaScript
125 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
var Steppy = require('twostep').Steppy,
|
|
path = require('path'),
|
|
_ = require('underscore'),
|
|
EventEmitter = require('events').EventEmitter,
|
|
inherits = require('util').inherits;
|
|
|
|
function Executor(params) {
|
|
this.project = params.project;
|
|
this.cwd = path.join(this.project.dir, 'workspace');
|
|
}
|
|
|
|
exports.Executor = Executor;
|
|
|
|
inherits(Executor, EventEmitter);
|
|
|
|
Executor.prototype.throttledEmit = _(function() {
|
|
this.emit.apply(this, arguments);
|
|
}).throttle(500);
|
|
|
|
Executor.prototype._getSources = function(params, callback) {
|
|
};
|
|
|
|
Executor.prototype._runStep = function(params, callback) {
|
|
|
|
};
|
|
|
|
// Does current project scm has new changes to build
|
|
Executor.prototype.hasScmChanges = function(callback) {
|
|
|
|
};
|
|
|
|
Executor.prototype.run = function(params, callback) {
|
|
var self = this,
|
|
project = _({}).extend(self.project, params),
|
|
getSourcesTiming = {name: 'get sources'},
|
|
stepTimings = [],
|
|
getSourcesStart = Date.now();
|
|
|
|
Steppy(
|
|
function() {
|
|
self.throttledEmit('currentStep', getSourcesTiming.name);
|
|
self._getSources(project.scm, this.slot());
|
|
},
|
|
function(err, scmData) {
|
|
getSourcesTiming.duration = Date.now() - getSourcesStart;
|
|
stepTimings.push(getSourcesTiming);
|
|
|
|
self.emit('scmData', scmData);
|
|
|
|
var funcs = project.steps.map(function(step, index) {
|
|
return function() {
|
|
var start = Date.now(),
|
|
stepCallback = this.slot();
|
|
|
|
self.throttledEmit('currentStep', step.name);
|
|
|
|
var timing = {name: step.name};
|
|
self._runStep(step, function(err) {
|
|
timing.duration = Date.now() - start;
|
|
stepTimings.push(timing);
|
|
self.emit('stepTimingsChange', stepTimings);
|
|
stepCallback(err);
|
|
});
|
|
};
|
|
});
|
|
|
|
funcs.push(this.slot());
|
|
Steppy.apply(this, funcs);
|
|
},
|
|
callback
|
|
);
|
|
};
|
|
|
|
// Returns target rev and filtered changes according to `catchRev`
|
|
Executor.prototype._getTarget = function(rev, changes) {
|
|
var result = {rev: rev, changes: changes},
|
|
catchRev = this.project.catchRev;
|
|
|
|
if (catchRev) {
|
|
// reverse before search
|
|
changes = changes.reverse();
|
|
|
|
var index;
|
|
|
|
var comment = catchRev.comment;
|
|
if (comment) {
|
|
index = _(changes).findIndex(function(change) {
|
|
if (_(comment).isRegExp()) {
|
|
return comment.test(change.comment);
|
|
} else {
|
|
return comment === change.comment;
|
|
}
|
|
});
|
|
}
|
|
|
|
var tag = catchRev.tag;
|
|
if (tag) {
|
|
index = _(changes).findIndex(function(change) {
|
|
if (change.tags) {
|
|
if (_(tag).isRegExp()) {
|
|
return _(change.tags).find(function(changeTag) {
|
|
return tag.test(changeTag);
|
|
});
|
|
} else {
|
|
return _(change.tags).contains(tag);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
if (index !== -1) {
|
|
result.rev = changes[index].id;
|
|
result.changes = changes.slice(0, index + 1);
|
|
result.changes.reverse();
|
|
}
|
|
|
|
// reverse back before return
|
|
changes = changes.reverse();
|
|
}
|
|
|
|
return result;
|
|
};
|