@utoo/web 1.2.0-rc.12 → 1.2.0-rc.13
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.
- package/esm/{c5b99289f2232978d30d.wasm → 228c553cfd657d45e49a.wasm} +0 -0
- package/esm/loaderWorker.js +1 -1
- package/esm/project/InternalProject.d.ts +1 -1
- package/esm/project/InternalProject.js +2 -7
- package/esm/project/Project.js +3 -4
- package/esm/utoo/index.js +31 -31
- package/esm/utoo/index_bg.wasm +0 -0
- package/package.json +1 -1
|
@@ -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<
|
|
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
|
-
|
|
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
|
-
|
|
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;
|
package/esm/project/Project.js
CHANGED
|
@@ -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,
|
|
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
|
-
|
|
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(
|
|
125
|
+
return await this.remote.sigMd5(content);
|
|
127
126
|
}
|
|
128
127
|
static fork(channel, eventSource) {
|
|
129
128
|
(eventSource || self).postMessage(Fork, {
|
package/esm/utoo/index.js
CHANGED
|
@@ -297,14 +297,11 @@ 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
|
|
301
|
-
wasm.__wbindgen_export_6(arg0, arg1
|
|
300
|
+
function __wbg_adapter_4(arg0, arg1) {
|
|
301
|
+
wasm.__wbindgen_export_6(arg0, arg1);
|
|
302
302
|
}
|
|
303
|
-
function
|
|
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));
|
|
303
|
+
function __wbg_adapter_7(arg0, arg1, arg2) {
|
|
304
|
+
wasm.__wbindgen_export_7(arg0, arg1, addHeapObject(arg2));
|
|
308
305
|
}
|
|
309
306
|
let stack_pointer = 128;
|
|
310
307
|
function addBorrowedObject(obj) {
|
|
@@ -313,14 +310,17 @@ function addBorrowedObject(obj) {
|
|
|
313
310
|
heap[--stack_pointer] = obj;
|
|
314
311
|
return stack_pointer;
|
|
315
312
|
}
|
|
316
|
-
function
|
|
313
|
+
function __wbg_adapter_12(arg0, arg1, arg2) {
|
|
317
314
|
try {
|
|
318
|
-
wasm.
|
|
315
|
+
wasm.__wbindgen_export_8(arg0, arg1, addBorrowedObject(arg2));
|
|
319
316
|
}
|
|
320
317
|
finally {
|
|
321
318
|
heap[stack_pointer++] = undefined;
|
|
322
319
|
}
|
|
323
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,14 @@ function __wbg_get_imports() {
|
|
|
1736
1736
|
return ret;
|
|
1737
1737
|
}, arguments);
|
|
1738
1738
|
};
|
|
1739
|
-
imports.wbg.
|
|
1740
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1741
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1739
|
+
imports.wbg.__wbindgen_cast_0336f6e3114862a9 = function (arg0, arg1) {
|
|
1740
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [], shim_idx: 1993, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1741
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_4);
|
|
1742
|
+
return addHeapObject(ret);
|
|
1743
|
+
};
|
|
1744
|
+
imports.wbg.__wbindgen_cast_1fa25394258c7b5c = function (arg0, arg1) {
|
|
1745
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 1992, function: Function { arguments: [], shim_idx: 1993, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1746
|
+
const ret = makeMutClosure(arg0, arg1, 1992, __wbg_adapter_4);
|
|
1742
1747
|
return addHeapObject(ret);
|
|
1743
1748
|
};
|
|
1744
1749
|
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function (arg0, arg1) {
|
|
@@ -1746,19 +1751,19 @@ function __wbg_get_imports() {
|
|
|
1746
1751
|
const ret = getStringFromWasm0(arg0, arg1);
|
|
1747
1752
|
return addHeapObject(ret);
|
|
1748
1753
|
};
|
|
1754
|
+
imports.wbg.__wbindgen_cast_267b46f6d4f9531c = function (arg0, arg1) {
|
|
1755
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [NamedExternref("MessageEvent")], shim_idx: 8678, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1756
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_7);
|
|
1757
|
+
return addHeapObject(ret);
|
|
1758
|
+
};
|
|
1749
1759
|
imports.wbg.__wbindgen_cast_4625c577ab2ec9ee = function (arg0) {
|
|
1750
1760
|
// Cast intrinsic for `U64 -> Externref`.
|
|
1751
1761
|
const ret = BigInt.asUintN(64, arg0);
|
|
1752
1762
|
return addHeapObject(ret);
|
|
1753
1763
|
};
|
|
1754
|
-
imports.wbg.
|
|
1755
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1756
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
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);
|
|
1764
|
+
imports.wbg.__wbindgen_cast_71a8823e0cdbb969 = function (arg0, arg1) {
|
|
1765
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8677, function: Function { arguments: [Externref], shim_idx: 8678, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1766
|
+
const ret = makeMutClosure(arg0, arg1, 8677, __wbg_adapter_7);
|
|
1762
1767
|
return addHeapObject(ret);
|
|
1763
1768
|
};
|
|
1764
1769
|
imports.wbg.__wbindgen_cast_76322aab70622876 = function (arg0, arg1) {
|
|
@@ -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.
|
|
1789
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1790
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1788
|
+
imports.wbg.__wbindgen_cast_b7dc63dcdfc8d728 = function (arg0, arg1) {
|
|
1789
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8682, function: Function { arguments: [Ref(NamedExternref("MessageEvent"))], shim_idx: 8683, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
1790
|
+
const ret = makeMutClosure(arg0, arg1, 8682, __wbg_adapter_12);
|
|
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.
|
|
1799
|
-
// Cast intrinsic for `Closure(Closure { dtor_idx:
|
|
1800
|
-
const ret =
|
|
1798
|
+
imports.wbg.__wbindgen_cast_ffa04fbd359d627f = function (arg0, arg1) {
|
|
1799
|
+
// Cast intrinsic for `Closure(Closure { dtor_idx: 8661, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 8662, ret: Unit, inner_ret: Some(Unit) }, mutable: false }) -> Externref`.
|
|
1800
|
+
const ret = makeClosure(arg0, arg1, 8661, __wbg_adapter_27);
|
|
1801
1801
|
return addHeapObject(ret);
|
|
1802
1802
|
};
|
|
1803
1803
|
imports.wbg.__wbindgen_link_dd5153a359f2e504 = function (arg0) {
|
package/esm/utoo/index_bg.wasm
CHANGED
|
Binary file
|