piston/api/src/runtime.js

126 lines
3.1 KiB
JavaScript
Raw Normal View History

2021-02-20 23:39:03 +01:00
const logger = require('logplease').create('runtime');
const semver = require('semver');
const config = require('./config');
const globals = require('./globals');
const fss = require('fs');
const path = require('path');
2021-02-20 15:13:56 +01:00
2021-02-20 23:39:03 +01:00
const runtimes = [];
2021-02-20 15:13:56 +01:00
class Runtime {
2021-05-08 02:20:21 +02:00
constructor({ language, version, aliases, pkgdir, runtime }) {
this.language = language;
this.version = version;
this.aliases = aliases || [];
this.pkgdir = pkgdir;
this.runtime = runtime;
}
static load_package(package_dir) {
let info = JSON.parse(
fss.read_file_sync(path.join(package_dir, 'pkg-info.json'))
);
let { language, version, build_platform, aliases, provides } = info;
version = semver.parse(version);
if (build_platform !== globals.platform) {
logger.warn(
`Package ${language}-${version} was built for platform ${build_platform}, ` +
`but our platform is ${globals.platform}`
);
}
2021-05-08 02:20:21 +02:00
if (provides) {
// Multiple languages in 1 package
provides.forEach((lang) => {
runtimes.push(
new Runtime({
language: lang.language,
aliases: lang.aliases,
version,
pkgdir: package_dir,
runtime: language,
})
2021-02-20 23:39:03 +01:00
);
2021-05-08 02:20:21 +02:00
});
} else {
runtimes.push(
new Runtime({
language,
version,
aliases,
pkgdir: package_dir,
})
);
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
logger.debug(`Package ${language}-${version} was loaded`);
}
2021-02-20 15:13:56 +01:00
2021-05-08 02:20:21 +02:00
get compiled() {
if (this._compiled === undefined) {
this._compiled = fss.exists_sync(path.join(this.pkgdir, 'compile'));
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
return this._compiled;
}
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
get env_vars() {
if (!this._env_vars) {
const env_file = path.join(this.pkgdir, '.env');
const env_content = fss.read_file_sync(env_file).toString();
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
this._env_vars = {};
2021-03-13 06:01:04 +01:00
2021-05-08 02:20:21 +02:00
env_content
.trim()
.split('\n')
.map((line) => line.split('=', 2))
.forEach(([key, val]) => {
this._env_vars[key.trim()] = val.trim();
});
2021-02-20 15:13:56 +01:00
}
2021-05-08 02:20:21 +02:00
return this._env_vars;
}
2021-04-10 06:10:18 +02:00
2021-05-08 02:20:21 +02:00
toString() {
return `${this.language}-${this.version.raw}`;
}
unregister() {
const index = runtimes.indexOf(this);
runtimes.splice(index, 1); //Remove from runtimes list
}
2021-02-20 15:13:56 +01:00
}
2021-02-20 23:39:03 +01:00
module.exports = runtimes;
module.exports.Runtime = Runtime;
2021-05-08 02:20:21 +02:00
module.exports.get_runtimes_matching_language_version = function (lang, ver) {
return runtimes.filter(
(rt) =>
(rt.language == lang || rt.aliases.includes(lang)) &&
semver.satisfies(rt.version, ver)
);
2021-02-20 23:39:03 +01:00
};
2021-05-08 02:20:21 +02:00
module.exports.get_latest_runtime_matching_language_version = function (
lang,
ver
) {
return module.exports
.get_runtimes_matching_language_version(lang, ver)
.sort((a, b) => semver.rcompare(a.version, b.version))[0];
2021-02-20 23:39:03 +01:00
};
2021-05-08 02:20:21 +02:00
module.exports.get_runtime_by_name_and_version = function (runtime, ver) {
return runtimes.find(
(rt) =>
(rt.runtime == runtime ||
(rt.runtime === undefined && rt.language == runtime)) &&
semver.satisfies(rt.version, ver)
);
};
module.exports.load_package = Runtime.load_package;