blob: 40bebd8041fb58b7e0af9cf21f88c24ba28856a5 (
plain)
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
|
"use strict";
const fs = require('fs');
const child_process = require('child_process');
const tmp = require('tmp');
const BytecodeParser = require("../src/lundump.js");
const lauxlib = require("../src/lauxlib.js");
const VM = require("../src/lvm.js");
const toByteCode = function (luaCode) {
var luaFile = tmp.fileSync(),
bclist;
fs.writeSync(luaFile.fd, luaCode);
child_process.execSync(`luac -o ${luaFile.name}.bc ${luaFile.name}`);
child_process.execSync(`luac -l ${luaFile.name} > ${luaFile.name}.bc.txt`);
bclist = fs.readFileSync(`${luaFile.name}.bc.txt`, 'utf8');
let b = fs.readFileSync(`${luaFile.name}.bc`);
let dv = new DataView(b.buffer.slice(b.byteOffset, b.byteOffset + b.byteLength));
return {
dataView: dv,
bclist: bclist
};
};
const getState = function(luaCode) {
var bc = toByteCode(luaCode),
dv = bc.dataView,
bcl = bc.bclist;
let L = lauxlib.luaL_newstate();
let p = new BytecodeParser(L, dv).luaU_undump();
return L;
};
module.exports.getState = getState;
module.exports.toByteCode = toByteCode;
|