aboutsummaryrefslogtreecommitdiff
path: root/src/compileAndRun/process.js
blob: 67ff546499956c489e6662e18e13da644dad3c36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
let spawn = require("child_process");

class Process {

    constructor(command, args = []) {
        this.command = command;
        this.args = args;
        this.stdout = "";
        this.stderr = "";
        this.fl = false;
    }

    start() {
        this.proc = spawn.spawn(this.command, this.args);

        this.proc.on('error', (err) => {
            console.log(err);
        });

        this.proc.stdout.on('data', (_stdout) => {
            this.stdout += _stdout;
        });

        this.proc.stdout.on('end', () => {
        });

        this.proc.stderr.on('data', (_stderr) => {
            this.stderr += _stderr;
        });

        this.proc.stderr.on('end', () => {
        });

        this.proc.on('close', (code) => {
        });

    }

}

module.exports = Process;