OpenDroneMap-NodeODM/libs/odmRunner.js

125 wiersze
3.4 KiB
JavaScript
Czysty Zwykły widok Historia

2016-07-28 23:44:24 +00:00
/*
Node-OpenDroneMap Node.js App and REST API to access OpenDroneMap.
Copyright (C) 2016 Node-OpenDroneMap Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
2016-09-25 00:07:02 +00:00
let fs = require('fs');
let path = require('path');
let assert = require('assert');
let spawn = require('child_process').spawn;
2016-07-29 00:31:30 +00:00
let config = require('../config.js');
let logger = require('./logger');
2016-09-25 00:07:02 +00:00
module.exports = {
run: function(options, done, outputReceived){
assert(options["project-path"] !== undefined, "project-path must be defined");
let command = [path.join(config.odm_path, "run.py")];
for (var name in options){
let value = options[name];
// Skip false booleans
if (value === false) continue;
command.push("--" + name);
// We don't specify "--time true" (just "--time")
if (typeof value !== 'boolean'){
command.push(value);
}
}
logger.info(`About to run: python ${command.join(" ")}`);
2016-09-25 00:07:02 +00:00
if (config.test){
logger.info("Test mode is on, command will not execute");
let outputTestFile = path.join("..", "tests", "odm_output.txt");
fs.readFile(path.resolve(__dirname, outputTestFile), 'utf8', (err, text) => {
if (!err){
let lines = text.split("\n");
lines.forEach(line => outputReceived(line));
done(null, 0, null);
}else{
logger.warn(`Error: ${err.message}`);
done(err);
}
});
2016-09-25 00:07:02 +00:00
return; // Skip rest
}
// Launch
let childProcess = spawn("python", command, {cwd: config.odm_path});
childProcess
2016-07-28 21:46:28 +00:00
.on('exit', (code, signal) => done(null, code, signal))
.on('error', done);
2016-07-28 21:46:28 +00:00
childProcess.stdout.on('data', chunk => outputReceived(chunk.toString()));
childProcess.stderr.on('data', chunk => outputReceived(chunk.toString()));
return childProcess;
2016-07-25 20:10:34 +00:00
},
getJsonOptions: function(done){
2016-09-25 00:07:02 +00:00
// In test mode, we don't call ODM,
// instead we return a mock
if (config.test){
let optionsTestFile = path.join("..", "tests", "odm_options.json");
2016-09-25 00:07:02 +00:00
fs.readFile(path.resolve(__dirname, optionsTestFile), 'utf8', (err, json) => {
if (!err){
try{
let options = JSON.parse(json);
done(null, options);
}catch(e){
logger.warn(`Invalid test options ${optionsTestFile}: ${err.message}`);
2016-09-25 00:07:02 +00:00
done(e);
}
}else{
logger.warn(`Error: ${err.message}`);
2016-09-25 00:07:02 +00:00
done(err);
}
});
return; // Skip rest
}
2016-07-25 20:10:34 +00:00
// Launch
let childProcess = spawn("python", [path.join(__dirname, "..", "helpers", "odmOptionsToJson.py"),
2016-07-28 23:44:24 +00:00
"--project-path", config.odm_path]);
2016-07-25 20:10:34 +00:00
let output = [];
childProcess
.on('exit', (code, signal) => {
try{
let json = JSON.parse(output.join(""));
done(null, json);
}catch(err){
2016-07-28 23:44:24 +00:00
done(err);
2016-07-25 20:10:34 +00:00
}
})
.on('error', done);
2016-07-28 21:46:28 +00:00
let processOutput = chunk => output.push(chunk.toString());
2016-07-25 20:10:34 +00:00
childProcess.stdout.on('data', processOutput);
childProcess.stderr.on('data', processOutput);
}
};