@utoo/web 1.2.0-rc.12 → 1.2.0-rc.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -24,7 +24,7 @@ declare class InternalEndpoint implements ProjectEndpoint {
24
24
  rmdir(path: string, options?: {
25
25
  recursive?: boolean;
26
26
  }): Promise<void>;
27
- gzip(files: PackFile[]): Promise<Uint8Array<ArrayBuffer>>;
27
+ gzip(files: PackFile[]): Promise<Uint8Array<ArrayBufferLike>>;
28
28
  sigMd5(content: Uint8Array): Promise<string>;
29
29
  }
30
30
  declare const internalEndpoint: InternalEndpoint;
@@ -1,4 +1,3 @@
1
- import * as comlink from "comlink";
2
1
  import initWasm, { initLogFilter, Project as ProjectInternal, } from "../utoo";
3
2
  import { runLoaderWorkerPool } from "../webpackLoaders/loaderWorkerPool";
4
3
  class InternalEndpoint {
@@ -47,9 +46,7 @@ class InternalEndpoint {
47
46
  ret = await ProjectInternal.readToString(path);
48
47
  }
49
48
  else {
50
- ret = await ProjectInternal.read(path);
51
- const copied = ret.slice(0);
52
- return comlink.transfer(copied, [copied.buffer]);
49
+ return await ProjectInternal.read(path);
53
50
  }
54
51
  return ret;
55
52
  }
@@ -121,9 +118,7 @@ class InternalEndpoint {
121
118
  }
122
119
  async gzip(files) {
123
120
  await this.wasmInit;
124
- const ret = await ProjectInternal.gzip(files);
125
- const copied = ret.slice(0);
126
- return comlink.transfer(copied, [copied.buffer]);
121
+ return await ProjectInternal.gzip(files);
127
122
  }
128
123
  async sigMd5(content) {
129
124
  await this.wasmInit;
@@ -86,7 +86,7 @@ export class Project {
86
86
  async writeFile(path, content, encoding) {
87
87
  await __classPrivateFieldGet(this, _Project_mount, "f");
88
88
  if (content instanceof Uint8Array) {
89
- return await this.remote.writeFile(path, comlink.transfer(content, [content.buffer]), encoding);
89
+ return await this.remote.writeFile(path, content, encoding);
90
90
  }
91
91
  return await this.remote.writeFile(path, content, encoding);
92
92
  }
@@ -118,12 +118,11 @@ export class Project {
118
118
  }
119
119
  async gzip(files) {
120
120
  await __classPrivateFieldGet(this, _Project_mount, "f");
121
- const buffers = files.map((f) => f.content.buffer);
122
- return await this.remote.gzip(comlink.transfer(files, buffers));
121
+ return await this.remote.gzip(files);
123
122
  }
124
123
  async sigMd5(content) {
125
124
  await __classPrivateFieldGet(this, _Project_mount, "f");
126
- return await this.remote.sigMd5(comlink.transfer(content, [content.buffer]));
125
+ return await this.remote.sigMd5(content);
127
126
  }
128
127
  static fork(channel, eventSource) {
129
128
  (eventSource || self).postMessage(Fork, {
@@ -13,15 +13,15 @@ export function init_pack(): void;
13
13
  * @param {string} filter
14
14
  */
15
15
  export function initLogFilter(filter: string): void;
16
+ /**
17
+ * @param {number} worker_id
18
+ */
19
+ export function workerCreated(worker_id: number): void;
16
20
  /**
17
21
  * @param {Function} creator
18
22
  * @param {Function} terminator
19
23
  */
20
24
  export function registerWorkerScheduler(creator: Function, terminator: Function): void;
21
- /**
22
- * @param {number} worker_id
23
- */
24
- export function workerCreated(worker_id: number): void;
25
25
  /**
26
26
  * Entry point for web workers
27
27
  * @param {number} ptr
package/esm/utoo/index.js CHANGED
@@ -208,15 +208,6 @@ function makeMutClosure(arg0, arg1, dtor, f) {
208
208
  CLOSURE_DTORS.register(real, state, state);
209
209
  return real;
210
210
  }
211
- function getArrayJsValueFromWasm0(ptr, len) {
212
- ptr = ptr >>> 0;
213
- const mem = getDataViewMemory0();
214
- const result = [];
215
- for (let i = ptr; i < ptr + 4 * len; i += 4) {
216
- result.push(takeObject(mem.getUint32(i, true)));
217
- }
218
- return result;
219
- }
220
211
  function makeClosure(arg0, arg1, dtor, f) {
221
212
  const state = { a: arg0, b: arg1, cnt: 1, dtor };
222
213
  const real = (...args) => {
@@ -239,6 +230,15 @@ function makeClosure(arg0, arg1, dtor, f) {
239
230
  CLOSURE_DTORS.register(real, state, state);
240
231
  return real;
241
232
  }
233
+ function getArrayJsValueFromWasm0(ptr, len) {
234
+ ptr = ptr >>> 0;
235
+ const mem = getDataViewMemory0();
236
+ const result = [];
237
+ for (let i = ptr; i < ptr + 4 * len; i += 4) {
238
+ result.push(takeObject(mem.getUint32(i, true)));
239
+ }
240
+ return result;
241
+ }
242
242
  function _assertClass(instance, klass) {
243
243
  if (!(instance instanceof klass)) {
244
244
  throw new Error(`expected instance of ${klass.name}`);
@@ -271,12 +271,11 @@ export function initLogFilter(filter) {
271
271
  const len0 = WASM_VECTOR_LEN;
272
272
  wasm.initLogFilter(ptr0, len0);
273
273
  }
274
- /**
275
- * @param {Function} creator
276
- * @param {Function} terminator
277
- */
278
- export function registerWorkerScheduler(creator, terminator) {
279
- wasm.registerWorkerScheduler(addHeapObject(creator), addHeapObject(terminator));
274
+ function passArray8ToWasm0(arg, malloc) {
275
+ const ptr = malloc(arg.length * 1, 1) >>> 0;
276
+ getUint8ArrayMemory0().set(arg, ptr / 1);
277
+ WASM_VECTOR_LEN = arg.length;
278
+ return ptr;
280
279
  }
281
280
  /**
282
281
  * @param {number} worker_id
@@ -284,11 +283,12 @@ export function registerWorkerScheduler(creator, terminator) {
284
283
  export function workerCreated(worker_id) {
285
284
  wasm.workerCreated(worker_id);
286
285
  }
287
- function passArray8ToWasm0(arg, malloc) {
288
- const ptr = malloc(arg.length * 1, 1) >>> 0;
289
- getUint8ArrayMemory0().set(arg, ptr / 1);
290
- WASM_VECTOR_LEN = arg.length;
291
- return ptr;
286
+ /**
287
+ * @param {Function} creator
288
+ * @param {Function} terminator
289
+ */
290
+ export function registerWorkerScheduler(creator, terminator) {
291
+ wasm.registerWorkerScheduler(addHeapObject(creator), addHeapObject(terminator));
292
292
  }
293
293
  /**
294
294
  * Entry point for web workers
@@ -297,15 +297,6 @@ function passArray8ToWasm0(arg, malloc) {
297
297
  export function wasm_thread_entry_point(ptr) {
298
298
  wasm.wasm_thread_entry_point(ptr);
299
299
  }
300
- function __wbg_adapter_6(arg0, arg1, arg2) {
301
- wasm.__wbindgen_export_6(arg0, arg1, addHeapObject(arg2));
302
- }
303
- function __wbg_adapter_11(arg0, arg1) {
304
- wasm.__wbindgen_export_7(arg0, arg1);
305
- }
306
- function __wbg_adapter_24(arg0, arg1, arg2) {
307
- wasm.__wbindgen_export_8(arg0, arg1, addHeapObject(arg2));
308
- }
309
300
  let stack_pointer = 128;
310
301
  function addBorrowedObject(obj) {
311
302
  if (stack_pointer == 1)
@@ -313,14 +304,23 @@ function addBorrowedObject(obj) {
313
304
  heap[--stack_pointer] = obj;
314
305
  return stack_pointer;
315
306
  }
316
- function __wbg_adapter_27(arg0, arg1, arg2) {
307
+ function __wbg_adapter_4(arg0, arg1, arg2) {
317
308
  try {
318
- wasm.__wbindgen_export_9(arg0, arg1, addBorrowedObject(arg2));
309
+ wasm.__wbindgen_export_6(arg0, arg1, addBorrowedObject(arg2));
319
310
  }
320
311
  finally {
321
312
  heap[stack_pointer++] = undefined;
322
313
  }
323
314
  }
315
+ function __wbg_adapter_9(arg0, arg1, arg2) {
316
+ wasm.__wbindgen_export_7(arg0, arg1, addHeapObject(arg2));
317
+ }
318
+ function __wbg_adapter_12(arg0, arg1) {
319
+ wasm.__wbindgen_export_8(arg0, arg1);
320
+ }
321
+ function __wbg_adapter_27(arg0, arg1, arg2) {
322
+ wasm.__wbindgen_export_9(arg0, arg1, addHeapObject(arg2));
323
+ }
324
324
  function __wbg_adapter_94(arg0, arg1, arg2, arg3) {
325
325
  wasm.__wbindgen_export_10(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
326
326
  }
@@ -1736,9 +1736,19 @@ function __wbg_get_imports() {
1736
1736
  return ret;
1737
1737
  }, arguments);
1738
1738
  };
1739
+ imports.wbg.__wbindgen_cast_07f92778ebb7194b = function (arg0, arg1) {
1740
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 8679, function: Function { arguments: [Externref], shim_idx: 8680, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1741
+ const ret = makeMutClosure(arg0, arg1, 8679, __wbg_adapter_9);
1742
+ return addHeapObject(ret);
1743
+ };
1744
+ imports.wbg.__wbindgen_cast_1a17115a89edae02 = function (arg0, arg1) {
1745
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 8663, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 8664, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
1746
+ const ret = makeClosure(arg0, arg1, 8663, __wbg_adapter_27);
1747
+ return addHeapObject(ret);
1748
+ };
1739
1749
  imports.wbg.__wbindgen_cast_1ce8880aad03523b = function (arg0, arg1) {
1740
1750
  // Cast intrinsic for `Closure(Closure { dtor_idx: 1994, function: Function { arguments: [], shim_idx: 1995, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1741
- const ret = makeMutClosure(arg0, arg1, 1994, __wbg_adapter_11);
1751
+ const ret = makeMutClosure(arg0, arg1, 1994, __wbg_adapter_12);
1742
1752
  return addHeapObject(ret);
1743
1753
  };
1744
1754
  imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function (arg0, arg1) {
@@ -1746,21 +1756,16 @@ function __wbg_get_imports() {
1746
1756
  const ret = getStringFromWasm0(arg0, arg1);
1747
1757
  return addHeapObject(ret);
1748
1758
  };
1759
+ imports.wbg.__wbindgen_cast_3c81c10f5ca88e38 = function (arg0, arg1) {
1760
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 8679, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 8680, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1761
+ const ret = makeMutClosure(arg0, arg1, 8679, __wbg_adapter_9);
1762
+ return addHeapObject(ret);
1763
+ };
1749
1764
  imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function (arg0) {
1750
1765
  // Cast intrinsic for `U64 -> Externref`.
1751
1766
  const ret = BigInt.asUintN(64, arg0);
1752
1767
  return addHeapObject(ret);
1753
1768
  };
1754
- imports.wbg.__wbindgen_cast_535e935a655d72df = function (arg0, arg1) {
1755
- // Cast intrinsic for `Closure(Closure { dtor_idx: 8680, function: Function { arguments: [Externref], shim_idx: 8681, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1756
- const ret = makeMutClosure(arg0, arg1, 8680, __wbg_adapter_6);
1757
- return addHeapObject(ret);
1758
- };
1759
- imports.wbg.__wbindgen_cast_70947068ae5ba5a2 = function (arg0, arg1) {
1760
- // Cast intrinsic for `Closure(Closure { dtor_idx: 8685, function: Function { arguments: [Ref(NamedExternref("MessageEvent"))], shim_idx: 8686, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1761
- const ret = makeMutClosure(arg0, arg1, 8685, __wbg_adapter_27);
1762
- return addHeapObject(ret);
1763
- };
1764
1769
  imports.wbg.__wbindgen_cast_76322aab70622876 = function (arg0, arg1) {
1765
1770
  var v0 = getArrayJsValueFromWasm0(arg0, arg1).slice();
1766
1771
  wasm.__wbindgen_export_4(arg0, arg1 * 4, 4);
@@ -1768,11 +1773,6 @@ function __wbg_get_imports() {
1768
1773
  const ret = v0;
1769
1774
  return addHeapObject(ret);
1770
1775
  };
1771
- imports.wbg.__wbindgen_cast_7772c37e4aae5280 = function (arg0, arg1) {
1772
- // Cast intrinsic for `Closure(Closure { dtor_idx: 8664, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 8665, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
1773
- const ret = makeClosure(arg0, arg1, 8664, __wbg_adapter_24);
1774
- return addHeapObject(ret);
1775
- };
1776
1776
  imports.wbg.__wbindgen_cast_77bc3e92745e9a35 = function (arg0, arg1) {
1777
1777
  var v0 = getArrayU8FromWasm0(arg0, arg1).slice();
1778
1778
  wasm.__wbindgen_export_4(arg0, arg1 * 1, 1);
@@ -1785,9 +1785,9 @@ function __wbg_get_imports() {
1785
1785
  const ret = arg0;
1786
1786
  return addHeapObject(ret);
1787
1787
  };
1788
- imports.wbg.__wbindgen_cast_bd7c9fba3dcd0558 = function (arg0, arg1) {
1789
- // Cast intrinsic for `Closure(Closure { dtor_idx: 8680, function: Function { arguments: [], shim_idx: 1995, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1790
- const ret = makeMutClosure(arg0, arg1, 8680, __wbg_adapter_11);
1788
+ imports.wbg.__wbindgen_cast_ac9494c52c8ec587 = function (arg0, arg1) {
1789
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 8684, function: Function { arguments: [Ref(NamedExternref("MessageEvent"))], shim_idx: 8685, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1790
+ const ret = makeMutClosure(arg0, arg1, 8684, __wbg_adapter_4);
1791
1791
  return addHeapObject(ret);
1792
1792
  };
1793
1793
  imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function (arg0) {
@@ -1795,9 +1795,9 @@ function __wbg_get_imports() {
1795
1795
  const ret = arg0;
1796
1796
  return addHeapObject(ret);
1797
1797
  };
1798
- imports.wbg.__wbindgen_cast_ded0188a991d8b3c = function (arg0, arg1) {
1799
- // Cast intrinsic for `Closure(Closure { dtor_idx: 8680, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 8681, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1800
- const ret = makeMutClosure(arg0, arg1, 8680, __wbg_adapter_6);
1798
+ imports.wbg.__wbindgen_cast_dcd82812a61fba21 = function (arg0, arg1) {
1799
+ // Cast intrinsic for `Closure(Closure { dtor_idx: 8679, function: Function { arguments: [], shim_idx: 1995, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
1800
+ const ret = makeMutClosure(arg0, arg1, 8679, __wbg_adapter_12);
1801
1801
  return addHeapObject(ret);
1802
1802
  };
1803
1803
  imports.wbg.__wbindgen_link_dd5153a359f2e504 = function (arg0) {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/web",
3
- "version": "1.2.0-rc.12",
3
+ "version": "1.2.0-rc.14",
4
4
  "module": "esm/index.js",
5
5
  "types": "esm/index.d.ts",
6
6
  "files": [