From 9f93df58323e1dea5f3900d5d06b8506b8bc3278 Mon Sep 17 00:00:00 2001 From: Arik Sosman Date: Sat, 16 Jan 2021 02:04:19 -0800 Subject: [PATCH] make target argument optional for typescript inputs (undocumented) --- genbindings.py | 9 +++++++-- java_strings.py | 2 +- typescript_strings.py | 41 +++++++++++++++++++++++++---------------- 3 files changed, 33 insertions(+), 19 deletions(-) diff --git a/genbindings.py b/genbindings.py index b9189b06..f022c1b3 100755 --- a/genbindings.py +++ b/genbindings.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 import sys, re -if len(sys.argv) != 7: +if len(sys.argv) < 7: print("USAGE: /path/to/lightning.h /path/to/bindings/output /path/to/bindings/ /path/to/bindings/output.c debug lang") sys.exit(1) @@ -13,14 +13,19 @@ else: print("debug should be true or false and indicates whether to track allocations and ensure we don't leak") sys.exit(1) +target = None if sys.argv[6] == "java": from java_strings import Consts elif sys.argv[6] == "typescript": + import typescript_strings from typescript_strings import Consts + target = typescript_strings.Target.NODEJS + if len(sys.argv) == 8 and sys.argv[7] == 'browser': + target = typescript_strings.Target.BROWSER else: print("Only java or typescript can be set for lang") sys.exit(1) -consts = Consts(DEBUG) +consts = Consts(DEBUG, target=target) from bindingstypes import * diff --git a/java_strings.py b/java_strings.py index 66eae298..68216929 100644 --- a/java_strings.py +++ b/java_strings.py @@ -1,7 +1,7 @@ from bindingstypes import * class Consts: - def __init__(self, DEBUG): + def __init__(self, DEBUG: bool, **kwargs): self.c_type_map = dict( uint8_t = ['byte'], diff --git a/typescript_strings.py b/typescript_strings.py index 5c1a36d5..6a581503 100644 --- a/typescript_strings.py +++ b/typescript_strings.py @@ -1,13 +1,17 @@ from bindingstypes import ConvInfo - +from enum import Enum def first_to_lower(string: str) -> str: first = string[0] return first.lower() + string[1:] +class Target(Enum): + NODEJS = 1, + BROWSER = 2 + class Consts: - def __init__(self, DEBUG): + def __init__(self, DEBUG: bool, target: Target, **kwargs): self.c_type_map = dict( uint8_t = ['number', 'Uint8Array'], @@ -21,20 +25,7 @@ class Consts: default = 'const {var_name}_hu_conv: {human_type} = new {human_type}(null, {var_name});', ) - self.bindings_header = """ - -const path = require('path').join(__dirname, 'bindings.wasm'); -const bytes = require('fs').readFileSync(path); -let imports = {}; -// add all exports to dictionary and move down? -// use `module.exports`? -// imports['./bindings.js'] = require('./bindings.js'); - -const wasmModule = new WebAssembly.Module(bytes); -const wasmInstance = new WebAssembly.Instance(wasmModule, imports); -// module.exports = wasmInstance.exports; -const wasm = wasmInstance.exports; - + self.bindings_header = self.wasm_import_header(target) + """ export class VecOrSliceDef { public dataptr: number; public datalen: number; @@ -262,6 +253,24 @@ import * as bindings from '../bindings' // TODO: figure out location else: return None + + def wasm_import_header(self, target): + if target == Target.NODEJS: + return """ +const path = require('path').join(__dirname, 'bindings.wasm'); +const bytes = require('fs').readFileSync(path); +let imports = {}; +// add all exports to dictionary and move down? +// use `module.exports`? +// imports['./bindings.js'] = require('./bindings.js'); + +const wasmModule = new WebAssembly.Module(bytes); +const wasmInstance = new WebAssembly.Instance(wasmModule, imports); +// module.exports = wasmInstance.exports; +const wasm = wasmInstance.exports; + """ + return '' + def init_str(self, c_array_class_caches): return "" -- 2.30.2