-
Notifications
You must be signed in to change notification settings - Fork 0
/
$Process.mbm
89 lines (79 loc) · 2.54 KB
/
$Process.mbm
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* Process module for JsMobileBasic.
* Help: https://vk.com/page-123026568_53604956
* Supports:
* JsMB-Interpreter, NW.JS [+]
* Node child_process [+]
* JsOS [-]
* Browser pseudo-fs [-]
*/
'use strict';
/** Модуль для работы с процессами
* Поддерживает:
* JsMB-Interpreter
* NW.JS
* Node.JS
* @module $Process
* @author PROPHESSOR
* @namespace $Process
*/
{
const $Process = {
/** Выполнить команду
* @param {string} target - Команда
* @returns {this}
*/
exec(target) {
this.$Proc.execSync(target);
return this;
},
/** Выполнить команду и вернуть результат
* @param {string} target - Команда
* @returns {string}
*/
execReturn(target) {
return this.$Proc.execSync(target);
},
/** Выполнить файл
* @param {string} file - Файл
* @param {array} [keys=[]] - Массив с ключами
* @returns {this}
*/
execFile(file, keys = []) {
try {
this.$Proc.execFileSync(file, keys);
return this;
} catch (e) {
this.debug('Ошибка при работе с процессом: ' + e);
return false;
}
},
/** Выполнить файл и вернуть результат
* @param {string} file - Файл
* @param {array} [keys=[]] - Массив с ключами
* @returns {this}
*/
execFileReturn(file, keys = []) {
try {
return this.$Proc.execFileSync(file, keys);
} catch (e) {
this.debug('Ошибка при работе с процессом: ' + e);
return false;
}
}
};
if (typeof require === 'function') { // JsOS or Node
$Process.$Proc = require('child_process');
} else if (typeof localStorage !== "undefined") { // eslint-disable-line
// Browser
// TODO: Add browser support
throw new Error('The browser doesn\'t support processes!');
} else {
throw new Error('Your system doesn\'t support processes');
}
for (const i in $Process) {
if (typeof $Process[i] === 'function') $Process[i] = $Process[i].bind(JsMB);
}
Object.assign(JsMB, $Process);
Object.assign(window, $Process);
}