mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 06:25:07 +00:00
134 lines
3.2 KiB
JavaScript
134 lines
3.2 KiB
JavaScript
'use strict';
|
|
|
|
var Steppy = require('twostep').Steppy,
|
|
_ = require('underscore'),
|
|
Distributor = require('./lib/distributor').Distributor,
|
|
getAvgProjectBuildDuration = (
|
|
require('./lib/project').getAvgProjectBuildDuration
|
|
),
|
|
db = require('./db'),
|
|
logger = require('./lib/logger')('distributor');
|
|
|
|
|
|
exports.init = function(app, callback) {
|
|
var distributor = new Distributor({
|
|
nodes: app.config.nodes,
|
|
projects: app.projects,
|
|
saveBuild: function(build, callback) {
|
|
Steppy(
|
|
function() {
|
|
if (_(build.project).has('avgBuildDuration')) {
|
|
this.pass(build.project.avgBuildDuration);
|
|
} else {
|
|
getAvgProjectBuildDuration(build.project.name, this.slot());
|
|
}
|
|
},
|
|
function(err, avgBuildDuration) {
|
|
build.project.avgBuildDuration = avgBuildDuration;
|
|
|
|
db.builds.put(build, this.slot());
|
|
},
|
|
function() {
|
|
this.pass(build);
|
|
},
|
|
callback
|
|
);
|
|
}
|
|
});
|
|
|
|
var buildDataResourcesHash = {};
|
|
|
|
// create resource for build data
|
|
var createBuildDataResource = function(buildId) {
|
|
if (buildId in buildDataResourcesHash) {
|
|
return;
|
|
}
|
|
var buildDataResource = app.dataio.resource('build' + buildId);
|
|
buildDataResource.on('connection', function(client) {
|
|
var callback = this.async();
|
|
Steppy(
|
|
function() {
|
|
db.logLines.find({
|
|
start: {buildId: buildId, numberStr: ''},
|
|
}, this.slot());
|
|
},
|
|
function(err, lines) {
|
|
client.emit('sync', 'data', {lines: lines});
|
|
this.pass(true);
|
|
},
|
|
function(err) {
|
|
if (err) {
|
|
logger.error(
|
|
'error during read log for "' + buildId + '":',
|
|
err.stack || err
|
|
);
|
|
}
|
|
callback();
|
|
}
|
|
);
|
|
});
|
|
buildDataResourcesHash[buildId] = buildDataResource;
|
|
};
|
|
|
|
exports.createBuildDataResource = createBuildDataResource;
|
|
|
|
distributor.on('buildUpdate', function(build, changes) {
|
|
var buildsResource = app.dataio.resource('builds');
|
|
|
|
if (build.status === 'queued') {
|
|
createBuildDataResource(build.id);
|
|
}
|
|
|
|
// notify about build's project change, coz building affects project
|
|
// related stat (last build date, avg build time, etc)
|
|
if (changes.completed) {
|
|
var projectsResource = app.dataio.resource('projects');
|
|
projectsResource.clientEmitSyncChange({name: build.project.name});
|
|
}
|
|
|
|
buildsResource.clientEmitSync('change', {
|
|
buildId: build.id, changes: changes
|
|
});
|
|
});
|
|
|
|
var buildLogLineNumbersHash = {};
|
|
|
|
distributor.on('buildData', function(build, data) {
|
|
var lines = _(data.split('\n')).chain().map(function(line) {
|
|
return line.replace('\r', '');
|
|
}).compact().value(),
|
|
logLineNumber = buildLogLineNumbersHash[build.id] || 0;
|
|
|
|
lines = _(lines).map(function(line, index) {
|
|
return {
|
|
number: logLineNumber + index,
|
|
text: line
|
|
};
|
|
});
|
|
buildLogLineNumbersHash[build.id] = logLineNumber + lines.length;
|
|
|
|
app.dataio.resource('build' + build.id).clientEmitSync(
|
|
'data',
|
|
{lines: lines}
|
|
);
|
|
|
|
_(lines).each(function(line) {
|
|
line.buildId = build.id;
|
|
});
|
|
// write build logs to db
|
|
if (lines.length) {
|
|
db.logLines.put(lines, function(err) {
|
|
if (err) {
|
|
logger.error(
|
|
'Error during write log line "' + logLineNumber +
|
|
'" for build "' + build.id + '":',
|
|
err.stack || err
|
|
);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
callback(null, distributor);
|
|
};
|