2016-12-30 18:12:28 +00:00
|
|
|
import Logger from './logger';
|
2017-01-25 11:38:19 +00:00
|
|
|
import { execSync } from 'child_process';
|
2016-12-30 18:12:28 +00:00
|
|
|
|
2017-01-02 19:39:44 +00:00
|
|
|
export default class {
|
2017-05-24 11:50:17 +00:00
|
|
|
private logger: Logger;
|
2016-12-30 18:12:28 +00:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.logger = new Logger('Deps');
|
|
|
|
}
|
|
|
|
|
2017-05-24 11:50:17 +00:00
|
|
|
public showAll(): void {
|
2017-01-25 11:22:45 +00:00
|
|
|
this.show('MongoDB', 'mongo --version', x => x.match(/^MongoDB shell version:? (.*)\r?\n/));
|
2016-12-30 18:24:07 +00:00
|
|
|
this.show('Redis', 'redis-server --version', x => x.match(/v=([0-9\.]*)/));
|
2016-12-31 08:05:55 +00:00
|
|
|
this.show('GraphicsMagick', 'gm -version', x => x.match(/^GraphicsMagick ([0-9\.]*) .*/));
|
2016-12-30 18:12:28 +00:00
|
|
|
}
|
|
|
|
|
2017-05-24 11:50:17 +00:00
|
|
|
public show(serviceName: string, command: string, transform: (x: string) => RegExpMatchArray): void {
|
2017-01-25 11:38:19 +00:00
|
|
|
try {
|
2017-01-26 03:12:37 +00:00
|
|
|
// ステータス0以外のときにexecSyncはstderrをコンソール上に出力してしまうので
|
|
|
|
// プロセスからのstderrをすべて無視するように stdio オプションをセット
|
2017-01-25 11:38:19 +00:00
|
|
|
const x = execSync(command, { stdio: ['pipe', 'pipe', 'ignore'] });
|
|
|
|
const ver = transform(x.toString());
|
2016-12-30 18:12:28 +00:00
|
|
|
if (ver != null) {
|
|
|
|
this.logger.info(`${serviceName} ${ver[1]} found`);
|
|
|
|
} else {
|
|
|
|
this.logger.warn(`${serviceName} not found`);
|
|
|
|
this.logger.warn(`Regexp used for version check of ${serviceName} is probably messed up`);
|
|
|
|
}
|
2017-01-25 11:38:19 +00:00
|
|
|
} catch (e) {
|
2016-12-30 18:12:28 +00:00
|
|
|
this.logger.warn(`${serviceName} not found`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|