mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
The tests still use it in places - particular localfilesystem tests, but those tests need to be redone with sinon stubbing in place and not rely on real fs operations.
162 lines
5.5 KiB
JavaScript
162 lines
5.5 KiB
JavaScript
/**
|
|
* Copyright 2013, 2015 IBM Corp.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
var when = require('when');
|
|
|
|
var redNodes = require("./nodes");
|
|
var storage = require("./storage");
|
|
var log = require("./log");
|
|
var i18n = require("./i18n");
|
|
var events = require("./events");
|
|
var settings = require("./settings");
|
|
var path = require('path');
|
|
var fs = require("fs");
|
|
|
|
var runtimeMetricInterval = null;
|
|
|
|
function init(userSettings) {
|
|
userSettings.version = getVersion();
|
|
log.init(userSettings);
|
|
settings.init(userSettings);
|
|
}
|
|
|
|
var version;
|
|
|
|
function getVersion() {
|
|
if (!version) {
|
|
version = require(path.join(__dirname,"..","..","package.json")).version;
|
|
/* istanbul ignore else */
|
|
try {
|
|
fs.statSync(path.join(__dirname,"..","..",".git"));
|
|
version += "-git";
|
|
} catch(err) {
|
|
// No git directory
|
|
}
|
|
}
|
|
return version;
|
|
}
|
|
|
|
function start() {
|
|
return i18n.init()
|
|
.then(function() { return storage.init(settings)})
|
|
.then(function() { return settings.load(storage)})
|
|
.then(function() {
|
|
|
|
if (log.metric()) {
|
|
runtimeMetricInterval = setInterval(function() {
|
|
reportMetrics();
|
|
}, settings.runtimeMetricInterval||15000);
|
|
}
|
|
console.log("\n\n"+log._("runtime.welcome")+"\n===================\n");
|
|
if (settings.version) {
|
|
log.info(log._("runtime.version",{component:"Node-RED",version:"v"+settings.version}));
|
|
}
|
|
log.info(log._("runtime.version",{component:"Node.js ",version:process.version}));
|
|
log.info(log._("server.loading"));
|
|
redNodes.init(settings,storage);
|
|
return redNodes.load().then(function() {
|
|
|
|
var i;
|
|
var nodeErrors = redNodes.getNodeList(function(n) { return n.err!=null;});
|
|
var nodeMissing = redNodes.getNodeList(function(n) { return n.module && n.enabled && !n.loaded && !n.err;});
|
|
if (nodeErrors.length > 0) {
|
|
log.warn("------------------------------------------");
|
|
if (settings.verbose) {
|
|
for (i=0;i<nodeErrors.length;i+=1) {
|
|
log.warn("["+nodeErrors[i].name+"] "+nodeErrors[i].err);
|
|
}
|
|
} else {
|
|
log.warn(log._("server.errors",{count:nodeErrors.length}));
|
|
log.warn(log._("server.errors-help"));
|
|
}
|
|
log.warn("------------------------------------------");
|
|
}
|
|
if (nodeMissing.length > 0) {
|
|
log.warn(log._("server.missing-modules"));
|
|
var missingModules = {};
|
|
for (i=0;i<nodeMissing.length;i++) {
|
|
var missing = nodeMissing[i];
|
|
missingModules[missing.module] = (missingModules[missing.module]||[]).concat(missing.types);
|
|
}
|
|
var promises = [];
|
|
for (i in missingModules) {
|
|
if (missingModules.hasOwnProperty(i)) {
|
|
log.warn(" - "+i+": "+missingModules[i].join(", "));
|
|
if (settings.autoInstallModules && i != "node-red") {
|
|
redNodes.installModule(i).otherwise(function(err) {
|
|
// Error already reported. Need the otherwise handler
|
|
// to stop the error propagating any further
|
|
});
|
|
}
|
|
}
|
|
}
|
|
if (!settings.autoInstallModules) {
|
|
log.info(log._("server.removing-modules"));
|
|
redNodes.cleanModuleList();
|
|
}
|
|
}
|
|
log.info(log._("runtime.paths.settings",{path:settings.settingsFile}));
|
|
redNodes.loadFlows().then(redNodes.startFlows);
|
|
}).otherwise(function(err) {
|
|
console.log(err);
|
|
});
|
|
});
|
|
}
|
|
|
|
function reportMetrics() {
|
|
var memUsage = process.memoryUsage();
|
|
|
|
log.log({
|
|
level: log.METRIC,
|
|
event: "runtime.memory.rss",
|
|
value: memUsage.rss
|
|
});
|
|
log.log({
|
|
level: log.METRIC,
|
|
event: "runtime.memory.heapTotal",
|
|
value: memUsage.heapTotal
|
|
});
|
|
log.log({
|
|
level: log.METRIC,
|
|
event: "runtime.memory.heapUsed",
|
|
value: memUsage.heapUsed
|
|
});
|
|
}
|
|
|
|
function stop() {
|
|
if (runtimeMetricInterval) {
|
|
clearInterval(runtimeMetricInterval);
|
|
runtimeMetricInterval = null;
|
|
}
|
|
return redNodes.stopFlows();
|
|
}
|
|
|
|
var runtime = module.exports = {
|
|
init: init,
|
|
start: start,
|
|
stop: stop,
|
|
|
|
version: getVersion,
|
|
|
|
log: log,
|
|
i18n: i18n,
|
|
settings: settings,
|
|
storage: storage,
|
|
events: events,
|
|
api: redNodes,
|
|
util: require("./util")
|
|
}
|