Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }выполнить команду в BAS_API из string, eval?
-
необходимо сделать обертку для BAS_API,
чтобы передавать id команды
и бас скачивал команду как текст с сервера и результат тоже отправлял.как выполнить команду бас из string?
например BAS_API(eval("log(\"1234\")"))смысл всего этого ускорить работу,
избежать передачи данных через win32 pipe. -
все работает
этот конечно "костыли",
но хз как иначето есть мы туда закидываем функцию которая будет обрабатывать команды по ид и вызывать через хттп сервер.
const util = require('util')
try {
const func =const test = 'function t1() {sleep(1000)!; _set_result("test")}'; eval(test); _call(t1, null)! log(_result())
await BAS_API(func)
} catch (error) {
console.log('error')
console.log(util.inspect(error))
throw error
} -
@DoctorKrolic said in выполнить команду в BAS_API из string, eval?:
@jason @UserTrue Сейчас уже доступно API БАС'а из C#, Node.js и python. Если это подойдёт
Я знаю, но там не апи бас доступно, а вызов функции из проекта. Наверное что-то тоже можно накостылить на нем, только вопрос как все это будет работать поток в 100..
-
проще всего сделать отдельный модуль,
будет функция типа
execCmd(thread: number, taskId: number): Promise<any>и будет скачивать content = get(http://localhost/<thread>/<id>)
потом
let error: any
let result: any
try {
eval(content)
} catch (error_) {
error = error_
}POST_RESULT(http://localhost/<thread>/<id>, {error, result})
то есть передаем только два числа и получаем результат