aboutsummaryrefslogtreecommitdiff
path: root/src/api/demo/lib/api.ts
blob: d06bfd35b34f9986b3f841452c2444efb8518a52 (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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import * as Schema from "../../schema";
import { ByteBuffer } from "peechy";
import path from "path";
import { Loader } from "../schema";
// import { transform as sucraseTransform } from "sucrase";

export interface WebAssemblyModule {
  init(): number;
  transform(a: number): number;
  bun_malloc(a: number): number;
  bun_free(a: number): number;
  scan(a: number): number;
}

const wasm_imports_sym: symbol | string =
  process.env.NODE_ENV === "development"
    ? "wasm_imports"
    : Symbol("wasm_imports");

const ptr_converter = new ArrayBuffer(16);
const ptr_float = new BigUint64Array(ptr_converter);
const slice = new Uint32Array(ptr_converter);

const Wasi = {
  clock_time_get(clk_id, tp) {
    return Date.now();
  },
  environ_sizes_get() {
    debugger;
    return 0;
  },
  environ_get(__environ, environ_buf) {
    debugger;
    return 0;
  },

  fd_close(fd) {
    debugger;
    return 0;
  },
  proc_exit() {},

  fd_seek(fd, offset_bigint, whence, newOffset) {
    debugger;
  },
  fd_write(fd, iov, iovcnt, pnum) {
    debugger;
  },
};

var scratch: Uint8Array;
var scratch2: Uint8Array;

export class Bun {
  static has_initialized = false;
  static wasm_source: WebAssembly.WebAssemblyInstantiatedSource = null;
  static get wasm_exports(): WebAssemblyModule {
    return Bun.wasm_source.instance.exports as any;
  }
  static get memory(): WebAssembly.Memory {
    return Bun.wasm_source.instance.exports.memory as any;
  }

  static memory_array: Uint8Array;

  static _decoder: TextDecoder;

  static _wasmPtrToSlice(offset: number | bigint) {
    ptr_float[0] = typeof offset === "number" ? BigInt(offset) : offset;
    return new Uint8Array(Bun.memory.buffer, slice[0], slice[1]);
  }

  static _wasmPtrLenToString(slice: number) {
    if (!Bun._decoder) {
      Bun._decoder = new TextDecoder("utf8");
    }

    const region = this._wasmPtrToSlice(slice);
    return Bun._decoder.decode(region);
  }

  // We don't want people to be calling these manually
  static [wasm_imports_sym] = {
    console_log(slice: number) {
      console.log(Bun._wasmPtrLenToString(slice));
    },
    console_error(slice: number) {
      console.error(Bun._wasmPtrLenToString(slice));
    },
    console_warn(slice: number) {
      console.warn(Bun._wasmPtrLenToString(slice));
    },
    console_info(slice: number) {
      console.info(Bun._wasmPtrLenToString(slice));
    },

    __indirect_function_table: new WebAssembly.Table({
      initial: 0,
      element: "anyfunc",
    }),
    __stack_pointer: new WebAssembly.Global({
      mutable: true,
      value: "i32",
    }),
    __multi3(one: number, two: number) {
      return Math.imul(one | 0, two | 0);
    },
    fmod(one: number, two: number) {
      return one % two;
    },
    memset(ptr: number, value: number, len: number) {
      Bun.memory_array.fill(value, ptr, ptr + len);
    },
    memcpy(ptr: number, value: number, len: number) {
      Bun.memory_array.copyWithin(ptr, value, value + len);
    },
    // These functions convert a to an unsigned long long, rounding toward zero. Negative values all become zero.
    __fixunsdfti(a: number) {
      return Math.floor(a);
    },
    // These functions return the remainder of the unsigned division of a and b.
    __umodti3(a: number, b: number) {
      return (a | 0) % (b | 0);
    },
    // These functions return the quotient of the unsigned division of a and b.
    __udivti3(a: number, b: number) {
      return (a | 0) / (b | 0);
    },
    // These functions return the result of shifting a left by b bits.
    __ashlti3(a: number, b: number) {
      return (a | 0) >> (b | 0);
    },
    /* Returns: convert a to a double, rounding toward even. */
    __floatuntidf(a: number) {
      const mod = a % 2;
      if (mod === 0) {
        return Math.ceil(a);
      } else if (mod === 1) {
        return Math.floor(a);
      }
    },
    emscripten_notify_memory_growth() {},
  };

  static async init(url) {
    // globalThis.sucraseTransform = sucraseTransform;
    scratch = new Uint8Array(8096);

    if (Bun.has_initialized) {
      return;
    }

    Bun.wasm_source = await globalThis.WebAssembly.instantiateStreaming(
      fetch(url),
      { env: Bun[wasm_imports_sym], wasi_snapshot_preview1: Wasi },
    );

    const res = Bun.wasm_exports.init();
    if (res < 0) {
      throw `[Bun] Failed to initialize WASM module: code ${res}`;
    } else {
      console.log("WASM loaded.");
    }

    Bun.has_initialized = true;
  }

  static transformSync(content: Uint8Array | string, file_name: string) {
    if (!Bun.has_initialized) {
      throw "Please run await Bun.init(wasm_url) before using this.";
    }

    // if (process.env.NODE_ENV === "development") {
    //   console.time("[Bun] Transform " + file_name);
    // }

    const bb = new ByteBuffer(scratch);
    bb.length = 0;
    bb.index = 0;
    var contents_buffer;
    if (typeof content === "string") {
      if (!scratch2) {
        scratch2 = new Uint8Array(content.length * 2);
      }

      let i = 0;
      for (; i < content.length; i++) {
        if (i > scratch2.length) {
          var scratch3 = new Uint8Array(scratch2.length * 2);
          scratch3.set(scratch2);
          scratch2 = scratch3;
        }
        scratch2[i] = content.charCodeAt(i);
      }
      contents_buffer = scratch2.subarray(0, i);
    } else {
      contents_buffer = content;
    }

    Schema.encodeTransform(
      {
        contents: contents_buffer,
        path: file_name,
        loader: {
          ".jsx": Loader.jsx,
          ".tsx": Loader.tsx,
          ".ts": Loader.ts,
          ".js": Loader.js,
          ".json": Loader.json,
        }[path.extname(file_name)],
      },
      bb,
    );
    const data = bb.toUint8Array();

    const input_ptr = Bun.wasm_exports.bun_malloc(data.length);
    var buffer = this._wasmPtrToSlice(input_ptr);
    buffer.set(data);

    const resp_ptr = Bun.wasm_exports.transform(input_ptr);
    var _bb = new ByteBuffer(this._wasmPtrToSlice(resp_ptr));
    const response = Schema.decodeTransformResponse(_bb);
    Bun.wasm_exports.bun_free(input_ptr);
    scratch = bb.data;
    return response;
  }

  static scan(
    content: Uint8Array | string,
    file_name: string,
    loader?: Loader,
  ) {
    if (!Bun.has_initialized) {
      throw "Please run await Bun.init(wasm_url) before using this.";
    }

    // if (process.env.NODE_ENV === "development") {
    //   console.time("[Bun] Transform " + file_name);
    // }
    scratch.fill(0);
    const bb = new ByteBuffer(scratch);
    bb.length = 0;
    bb.index = 0;
    var contents_buffer;
    if (typeof content === "string") {
      if (!scratch2) {
        scratch2 = new Uint8Array(content.length * 2);
      }
      const encode_into = new TextEncoder().encodeInto(content, scratch2);
      contents_buffer = scratch2.subarray(0, encode_into.written);
    } else {
      contents_buffer = content;
    }

    Schema.encodeScan(
      {
        contents: contents_buffer,
        path: file_name,
        loader:
          loader ||
          {
            ".jsx": Loader.jsx,
            ".tsx": Loader.tsx,
            ".ts": Loader.ts,
            ".js": Loader.js,
            ".json": Loader.json,
          }[path.extname(file_name)],
      },
      bb,
    );
    const data = bb.toUint8Array();

    const input_ptr = Bun.wasm_exports.bun_malloc(data.length);
    var buffer = this._wasmPtrToSlice(input_ptr);
    buffer.set(data);

    const resp_ptr = Bun.wasm_exports.scan(input_ptr);
    var _bb = new ByteBuffer(this._wasmPtrToSlice(resp_ptr));
    const response = Schema.decodeScanResult(_bb);
    Bun.wasm_exports.bun_free(input_ptr);
    scratch = bb.data;
    return response;
  }
}

globalThis.Bun = Bun;