thebird 1.2.40 → 1.2.42
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/docs/terminal.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { WebContainer } from './vendor/webcontainer.js';
|
|
2
1
|
import { Terminal, FitAddon } from './vendor/xterm-bundle.js';
|
|
2
|
+
import { init, runWasix } from './vendor/wasmer-sdk.js';
|
|
3
3
|
|
|
4
4
|
const IDB_KEY = 'thebird_fs_v2';
|
|
5
5
|
|
|
@@ -30,12 +30,8 @@ async function idbSave(data) {
|
|
|
30
30
|
});
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
await Promise.all(keys.map(async p => {
|
|
36
|
-
try { snap[p] = await container.fs.readFile(p, 'utf-8'); } catch {}
|
|
37
|
-
}));
|
|
38
|
-
await idbSave(JSON.stringify(snap));
|
|
33
|
+
function absUrl(path) {
|
|
34
|
+
return new URL(path, location.href).toString();
|
|
39
35
|
}
|
|
40
36
|
|
|
41
37
|
async function boot() {
|
|
@@ -58,67 +54,51 @@ async function boot() {
|
|
|
58
54
|
files = await r.json();
|
|
59
55
|
}
|
|
60
56
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
if (!node[dir]) node[dir] = { directory: {} };
|
|
68
|
-
node = node[dir].directory;
|
|
69
|
-
}
|
|
70
|
-
node[name] = { file: { contents } };
|
|
71
|
-
}
|
|
57
|
+
window.__debug = window.__debug || {};
|
|
58
|
+
window.__debug.idbSnapshot = files;
|
|
59
|
+
window.__debug.idbPersist = () => idbSave(JSON.stringify(window.__debug.idbSnapshot));
|
|
60
|
+
window.__debug.term = term;
|
|
61
|
+
|
|
62
|
+
term.write('Initialising Wasmer...\r\n');
|
|
72
63
|
|
|
73
|
-
term.write('Booting WebContainer...\r\n');
|
|
74
|
-
let container;
|
|
75
64
|
try {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
const frame = document.getElementById('preview-frame');
|
|
85
|
-
if (frame) frame.src = url;
|
|
86
|
-
window.__debug.previewUrl = url;
|
|
87
|
-
const btn = document.getElementById('tab-preview');
|
|
88
|
-
if (btn) btn.textContent = 'Preview :' + port;
|
|
89
|
-
});
|
|
65
|
+
const [wasmResp] = await Promise.all([
|
|
66
|
+
fetch('./vendor/bash.wasm'),
|
|
67
|
+
init({
|
|
68
|
+
module: fetch('./vendor/wasmer_js_bg.wasm'),
|
|
69
|
+
workerUrl: absUrl('./vendor/wasmer-worker.js'),
|
|
70
|
+
sdkUrl: absUrl('./vendor/wasmer-sdk.js'),
|
|
71
|
+
}),
|
|
72
|
+
]);
|
|
90
73
|
|
|
91
|
-
|
|
92
|
-
const install = await container.spawn('npm', ['install']);
|
|
93
|
-
install.output.pipeTo(new WritableStream({ write: d => term.write(d) }));
|
|
94
|
-
const exitCode = await install.exit;
|
|
95
|
-
if (exitCode !== 0) throw new Error('npm install failed: ' + exitCode);
|
|
74
|
+
const bashModule = await WebAssembly.compileStreaming(wasmResp);
|
|
96
75
|
|
|
97
|
-
|
|
98
|
-
srv.output.pipeTo(new WritableStream({ write: d => term.write(d) }));
|
|
76
|
+
term.write('Starting shell...\r\n');
|
|
99
77
|
|
|
100
|
-
|
|
78
|
+
const instance = await runWasix(bashModule, {
|
|
79
|
+
program: 'bash',
|
|
80
|
+
args: ['-i'],
|
|
81
|
+
env: { TERM: 'xterm-256color', HOME: '/', PATH: '/usr/bin:/bin' },
|
|
82
|
+
stdin: new ReadableStream({
|
|
83
|
+
start(ctrl) { window.__debug.stdinCtrl = ctrl; }
|
|
84
|
+
}),
|
|
85
|
+
});
|
|
101
86
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
});
|
|
105
|
-
shell.output.pipeTo(new WritableStream({ write: d => term.write(d) }));
|
|
106
|
-
term.onResize(({ cols, rows }) => shell.resize({ cols, rows }));
|
|
107
|
-
const writer = shell.input.getWriter();
|
|
108
|
-
term.onData(data => writer.write(data));
|
|
87
|
+
instance.stdout.pipeTo(new WritableStream({ write: d => term.write(d) }));
|
|
88
|
+
instance.stderr.pipeTo(new WritableStream({ write: d => term.write(d) }));
|
|
109
89
|
|
|
110
|
-
|
|
90
|
+
term.onData(data => window.__debug.stdinCtrl?.enqueue(new TextEncoder().encode(data)));
|
|
91
|
+
term.onResize(({ cols, rows }) => instance.setTtySize?.({ cols, rows }));
|
|
111
92
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
window.__debug.validation = null;
|
|
93
|
+
window.__debug.wasmerInstance = instance;
|
|
94
|
+
window.__debug.validation = null;
|
|
95
|
+
|
|
96
|
+
instance.wait().then(exit => term.write(`\r\n[process exited: ${exit.code}]\r\n`));
|
|
97
|
+
|
|
98
|
+
} catch (e) {
|
|
99
|
+
term.write(`\x1b[31mError: ${e.message}\x1b[0m\r\n`);
|
|
100
|
+
console.error('[terminal] wasmer error:', e);
|
|
101
|
+
}
|
|
122
102
|
}
|
|
123
103
|
|
|
124
104
|
boot().catch(e => console.error('[terminal] boot error:', e));
|
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @wasmer/sdk
|
|
3
|
+
* Wasmer Javascript SDK. It allows interacting with Wasmer Packages in Node.js and the Browser.
|
|
4
|
+
*
|
|
5
|
+
* @version v0.8.0
|
|
6
|
+
* @author Wasmer Engineering Team <engineering@wasmer.io>
|
|
7
|
+
* @homepage https://github.com/wasmerio/wasmer-js
|
|
8
|
+
* @repository git+https://github.com/wasmerio/wasmer-js.git
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
let e,t=null;function n(){return null!==t&&t.buffer===e.memory.buffer||(t=new Uint8Array(e.memory.buffer)),t}let _="undefined"!=typeof TextDecoder?new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0}):{decode:()=>{throw Error("TextDecoder not available")}};"undefined"!=typeof TextDecoder&&_.decode();let r=0;function i(e,t){return function(e,t){return r+=t,r>=2146435072&&(_="undefined"!=typeof TextDecoder?new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0}):{decode:()=>{throw Error("TextDecoder not available")}},_.decode(),r=t),_.decode(n().slice(e,e+t))}(e>>>=0,t)}let o=0;const c="undefined"!=typeof TextEncoder?new TextEncoder("utf-8"):{encode:()=>{throw Error("TextEncoder not available")}};function a(e,t,_){if(void 0===_){const _=c.encode(e),r=t(_.length,1)>>>0;return n().subarray(r,r+_.length).set(_),o=_.length,r}let r=e.length,i=t(r,1)>>>0;const a=n();let b=0;for(;b<r;b++){const t=e.charCodeAt(b);if(t>127)break;a[i+b]=t}if(b!==r){0!==b&&(e=e.slice(b)),i=_(i,r,r=b+3*e.length,1)>>>0;const t=function(e,t){const n=c.encode(e);return t.set(n),{read:e.length,written:n.length}}(e,n().subarray(i+b,i+r));b+=t.written,i=_(i,r,b,1)>>>0}return o=b,i}let b=null;function s(){return null!==b&&b.buffer===e.memory.buffer||(b=new DataView(e.memory.buffer)),b}function g(e){return null==e}function w(t){const n=e.__externref_table_alloc();return e.__wbindgen_export_5.set(n,t),n}function u(t,n){try{return t.apply(this,n)}catch(t){const n=w(t);e.__wbindgen_exn_store(n)}}function f(e,t){return e>>>=0,n().subarray(e/1,e/1+t)}const d="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>{e.__wbindgen_export_6.get(t.dtor)(t.a,t.b)}));function l(t,n,_,r){const i={a:t,b:n,cnt:1,dtor:_},o=(...t)=>{i.cnt++;const n=i.a;i.a=0;try{return r(n,i.b,...t)}finally{0==--i.cnt?(e.__wbindgen_export_6.get(i.dtor)(n,i.b),d.unregister(i)):i.a=n}};return o.original=i,d.register(o,i,i),o}function p(t,n,_,r){const i={a:t,b:n,cnt:1,dtor:_},o=(...t)=>{i.cnt++;try{return r(i.a,i.b,...t)}finally{0==--i.cnt&&(e.__wbindgen_export_6.get(i.dtor)(i.a,i.b),i.a=0,d.unregister(i))}};return o.original=i,d.register(o,i,i),o}function y(e){const t=typeof e;if("number"==t||"boolean"==t||null==e)return`${e}`;if("string"==t)return`"${e}"`;if("symbol"==t){const t=e.description;return null==t?"Symbol":`Symbol(${t})`}if("function"==t){const t=e.name;return"string"==typeof t&&t.length>0?`Function(${t})`:"Function"}if(Array.isArray(e)){const t=e.length;let n="[";t>0&&(n+=y(e[0]));for(let _=1;_<t;_++)n+=", "+y(e[_]);return n+="]",n}const n=/\[object ([^\]]+)\]/.exec(toString.call(e));let _;if(!(n&&n.length>1))return toString.call(e);if(_=n[1],"Object"==_)try{return"Object("+JSON.stringify(e)+")"}catch(e){return"Object"}return e instanceof Error?`${e.name}: ${e.message}\n${e.stack}`:_}function m(t){const n=e.__wbindgen_export_5.get(t);return e.__externref_table_dealloc(t),n}function h(e,t){if(!(e instanceof t))throw new Error(`expected instance of ${t.name}`)}function R(t,n){return e.runWasix(t,n)}function k(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o,r=e.wat2wasm(n,_);if(r[2])throw m(r[1]);return m(r[0])}function A(){e.on_start()}function v(t){e.setSDKUrl(t)}function F(t){e.setWorkerUrl(t)}function z(t){var n=g(t)?0:a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;const r=e.initializeLogger(n,_);if(r[1])throw m(r[0])}function I(t,n,_){e.closure542_externref_shim(t,n,_)}function x(t,n,_){return e.closure752_externref_shim(t,n,_)}function O(t,n){return e.closure751_externref_shim(t,n)}function W(t,n,_){const r=e.closure1343_externref_shim_multivalue_shim(t,n,_);if(r[2])throw m(r[1]);return m(r[0])}function S(t,n,_){const r=e.closure1346_externref_shim_multivalue_shim(t,n,_);if(r[1])throw m(r[0])}const j=["blob","arraybuffer"],M=["omit","same-origin","include"],T=["same-origin","no-cors","cors","navigate"],U=["classic","module"],E="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_atom_free(t>>>0,1)));class L{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,E.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_atom_free(t,0)}}const D="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_command_free(t>>>0,1)));class B{static __wrap(e){e>>>=0;const t=Object.create(B.prototype);return t.__wbg_ptr=e,D.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,D.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_command_free(t,0)}get name(){return e.__wbg_get_command_name(this.__wbg_ptr)}set name(t){e.__wbg_set_command_name(this.__wbg_ptr,t)}run(t){return e.command_run(this.__wbg_ptr,g(t)?0:w(t))}binary(){return e.command_binary(this.__wbg_ptr)}}const C="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_deployedapp_free(t>>>0,1)));class q{static __wrap(e){e>>>=0;const t=Object.create(q.prototype);return t.__wbg_ptr=e,C.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,C.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_deployedapp_free(t,0)}get id(){let t,n;try{const _=e.__wbg_get_deployedapp_id(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set id(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_id(this.__wbg_ptr,n,_)}get created_at(){let t,n;try{const _=e.__wbg_get_deployedapp_created_at(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set created_at(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_created_at(this.__wbg_ptr,n,_)}get version(){let t,n;try{const _=e.__wbg_get_deployedapp_version(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set version(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_version(this.__wbg_ptr,n,_)}get description(){const t=e.__wbg_get_deployedapp_description(this.__wbg_ptr);let n;return 0!==t[0]&&(n=i(t[0],t[1]).slice(),e.canonical_abi_free(t[0],1*t[1],1)),n}set description(t){var n=g(t)?0:a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_description(this.__wbg_ptr,n,_)}get yaml_config(){let t,n;try{const _=e.__wbg_get_deployedapp_yaml_config(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set yaml_config(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_yaml_config(this.__wbg_ptr,n,_)}get user_yaml_config(){let t,n;try{const _=e.__wbg_get_deployedapp_user_yaml_config(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set user_yaml_config(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_user_yaml_config(this.__wbg_ptr,n,_)}get config(){let t,n;try{const _=e.__wbg_get_deployedapp_config(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set config(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_config(this.__wbg_ptr,n,_)}get json_config(){let t,n;try{const _=e.__wbg_get_deployedapp_json_config(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set json_config(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_json_config(this.__wbg_ptr,n,_)}get url(){let t,n;try{const _=e.__wbg_get_deployedapp_url(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set url(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_url(this.__wbg_ptr,n,_)}get app_id(){const t=e.__wbg_get_deployedapp_app_id(this.__wbg_ptr);let n;return 0!==t[0]&&(n=i(t[0],t[1]).slice(),e.canonical_abi_free(t[0],1*t[1],1)),n}set app_id(t){var n=g(t)?0:a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_app_id(this.__wbg_ptr,n,_)}}const P="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_directory_free(t>>>0,1)));class G{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,P.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_directory_free(t,0)}__getClassname(){let t,n;try{const _=e.directory___getClassname(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}constructor(t){const n=e.directory_new(g(t)?0:w(t));if(n[2])throw m(n[1]);return this.__wbg_ptr=n[0]>>>0,P.register(this,this.__wbg_ptr,this),this}readDir(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_readDir(this.__wbg_ptr,n,_)}writeFile(t,n){const _=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;return e.directory_writeFile(this.__wbg_ptr,_,r,n)}readFile(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_readFile(this.__wbg_ptr,n,_)}readTextFile(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_readTextFile(this.__wbg_ptr,n,_)}createDir(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_createDir(this.__wbg_ptr,n,_)}removeDir(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_removeDir(this.__wbg_ptr,n,_)}removeFile(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;return e.directory_removeFile(this.__wbg_ptr,n,_)}}const $="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_instance_free(t>>>0,1)));class N{static __wrap(e){e>>>=0;const t=Object.create(N.prototype);return t.__wbg_ptr=e,$.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,$.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_instance_free(t,0)}get stdin(){return e.__wbg_get_instance_stdin(this.__wbg_ptr)}get stdout(){return e.__wbg_get_instance_stdout(this.__wbg_ptr)}get stderr(){return e.__wbg_get_instance_stderr(this.__wbg_ptr)}wait(){const t=this.__destroy_into_raw();return e.instance_wait(t)}}const K="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_intounderlyingbytesource_free(t>>>0,1)));class V{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,K.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_intounderlyingbytesource_free(t,0)}get type(){let t,n;try{const _=e.intounderlyingbytesource_type(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}get autoAllocateChunkSize(){return e.intounderlyingbytesource_autoAllocateChunkSize(this.__wbg_ptr)>>>0}start(t){e.intounderlyingbytesource_start(this.__wbg_ptr,t)}pull(t){return e.intounderlyingbytesource_pull(this.__wbg_ptr,t)}cancel(){const t=this.__destroy_into_raw();e.intounderlyingbytesource_cancel(t)}}const H="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_intounderlyingsink_free(t>>>0,1)));class J{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,H.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_intounderlyingsink_free(t,0)}write(t){return e.intounderlyingsink_write(this.__wbg_ptr,t)}close(){const t=this.__destroy_into_raw();return e.intounderlyingsink_close(t)}abort(t){const n=this.__destroy_into_raw();return e.intounderlyingsink_abort(n,t)}}const Y="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_intounderlyingsource_free(t>>>0,1)));class Q{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,Y.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_intounderlyingsource_free(t,0)}pull(t){return e.intounderlyingsource_pull(this.__wbg_ptr,t)}cancel(){const t=this.__destroy_into_raw();e.intounderlyingsource_cancel(t)}}const X="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_publishpackageoutput_free(t>>>0,1)));class Z{static __wrap(e){e>>>=0;const t=Object.create(Z.prototype);return t.__wbg_ptr=e,X.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,X.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_publishpackageoutput_free(t,0)}get manifest(){return e.__wbg_get_publishpackageoutput_manifest(this.__wbg_ptr)}set manifest(t){e.__wbg_set_publishpackageoutput_manifest(this.__wbg_ptr,t)}get hash(){let t,n;try{const _=e.__wbg_get_publishpackageoutput_hash(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set hash(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_id(this.__wbg_ptr,n,_)}}const ee="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_readablestreamsource_free(t>>>0,1)));class te{static __wrap(e){e>>>=0;const t=Object.create(te.prototype);return t.__wbg_ptr=e,ee.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,ee.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_readablestreamsource_free(t,0)}pull(t){return e.readablestreamsource_pull(this.__wbg_ptr,t)}cancel(){e.readablestreamsource_cancel(this.__wbg_ptr)}get type(){return e.readablestreamsource_type(this.__wbg_ptr)}}const ne="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_runtime_free(t>>>0,1)));class _e{static __wrap(e){e>>>=0;const t=Object.create(_e.prototype);return t.__wbg_ptr=e,ne.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,ne.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_runtime_free(t,0)}__getClassname(){let t,n;try{const _=e.runtime___getClassname(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}constructor(t){const n=e.runtime_js_new(g(t)?0:w(t));if(n[2])throw m(n[1]);return this.__wbg_ptr=n[0]>>>0,ne.register(this,this.__wbg_ptr,this),this}static global(t){const n=e.runtime_global(g(t)?16777215:t?1:0);if(n[2])throw m(n[1]);return 0===n[0]?void 0:_e.__wrap(n[0])}}const re="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_threadpoolworker_free(t>>>0,1)));class ie{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,re.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_threadpoolworker_free(t,0)}constructor(t){const n=e.threadpoolworker_new(t);return this.__wbg_ptr=n>>>0,re.register(this,this.__wbg_ptr,this),this}handle(t){return e.threadpoolworker_handle(this.__wbg_ptr,t)}}const oe="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_trap_free(t>>>0,1)));class ce{static __wrap(e){e>>>=0;const t=Object.create(ce.prototype);return t.__wbg_ptr=e,oe.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,oe.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_trap_free(t,0)}static __wbg_wasmer_trap(){e.trap___wbg_wasmer_trap()}}const ae="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_user_free(t>>>0,1)));class be{static __wrap(e){e>>>=0;const t=Object.create(be.prototype);return t.__wbg_ptr=e,ae.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,ae.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_user_free(t,0)}get id(){let t,n;try{const _=e.__wbg_get_user_id(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set id(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_id(this.__wbg_ptr,n,_)}get username(){let t,n;try{const _=e.__wbg_get_user_username(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set username(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_deployedapp_created_at(this.__wbg_ptr,n,_)}}const se="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_userpackagedefinition_free(t>>>0,1)));class ge{static __wrap(e){e>>>=0;const t=Object.create(ge.prototype);return t.__wbg_ptr=e,se.register(t,t.__wbg_ptr,t),t}static __unwrap(e){return e instanceof ge?e.__destroy_into_raw():0}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,se.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_userpackagedefinition_free(t,0)}__getClassname(){let t,n;try{const _=e.userpackagedefinition___getClassname(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}get hash(){let t,n;try{const _=e.__wbg_get_userpackagedefinition_hash(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}set hash(t){const n=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),_=o;e.__wbg_set_userpackagedefinition_hash(this.__wbg_ptr,n,_)}}const we="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_volume_free(t>>>0,1)));class ue{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,we.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_volume_free(t,0)}}const fe="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_wasmer_free(t>>>0,1)));class de{static __wrap(e){e>>>=0;const t=Object.create(de.prototype);return t.__wbg_ptr=e,fe.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,fe.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_wasmer_free(t,0)}static createPackage(t){return e.wasmer_createPackage(t)}static publishPackage(t){h(t,de);return e.wasmer_publishPackage(t.__wbg_ptr)}static whoami(){return e.wasmer_whoami()}__getClassname(){let t,n;try{const _=e.wasmer___getClassname(this.__wbg_ptr);return t=_[0],n=_[1],i(_[0],_[1])}finally{e.canonical_abi_free(t,n,1)}}get entrypoint(){const t=e.__wbg_get_wasmer_entrypoint(this.__wbg_ptr);return 0===t?void 0:B.__wrap(t)}set entrypoint(t){let n=0;g(t)||(h(t,B),n=t.__destroy_into_raw()),e.__wbg_set_wasmer_entrypoint(this.__wbg_ptr,n)}get commands(){return e.__wbg_get_wasmer_commands(this.__wbg_ptr)}set commands(t){e.__wbg_set_wasmer_commands(this.__wbg_ptr,t)}get pkg(){const t=e.__wbg_get_wasmer_pkg(this.__wbg_ptr);return 0===t?void 0:ge.__wrap(t)}set pkg(t){let n=0;g(t)||(h(t,ge),n=t.__destroy_into_raw()),e.__wbg_set_wasmer_pkg(this.__wbg_ptr,n)}static fromRegistry(t,n){const _=a(t,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;return e.wasmer_fromRegistry(_,r,g(n)?0:w(n))}static fromFile(t,n){return e.wasmer_fromFile(t,g(n)?0:w(n))}static fromWasm(t,n){const _=e.wasmer_fromWasm(t,g(n)?0:w(n));if(_[2])throw m(_[1]);return de.__wrap(_[0])}static deployApp(t){return e.wasmer_deployApp(t)}static deleteApp(t){return e.wasmer_deleteApp(t)}}const le="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_wasmerpackage_free(t>>>0,1)));class pe{__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,le.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_wasmerpackage_free(t,0)}get manifest(){return e.__wbg_get_wasmerpackage_manifest(this.__wbg_ptr)}set manifest(t){e.__wbg_set_wasmerpackage_manifest(this.__wbg_ptr,t)}get data(){const t=e.__wbg_get_wasmerpackage_data(this.__wbg_ptr);var n=f(t[0],t[1]).slice();return e.canonical_abi_free(t[0],1*t[1],1),n}set data(t){const _=function(e,t){const _=t(1*e.length,1)>>>0;return n().set(e,_/1),o=e.length,_}(t,e.__wbindgen_malloc),r=o;e.__wbg_set_deployedapp_id(this.__wbg_ptr,_,r)}}const ye="undefined"==typeof FinalizationRegistry?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry((t=>e.__wbg_writablestreamsink_free(t>>>0,1)));class me{static __wrap(e){e>>>=0;const t=Object.create(me.prototype);return t.__wbg_ptr=e,ye.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,ye.unregister(this),e}free(){const t=this.__destroy_into_raw();e.__wbg_writablestreamsink_free(t,0)}close(){return e.writablestreamsink_close(this.__wbg_ptr)}abort(t){e.writablestreamsink_abort(this.__wbg_ptr,t)}write(t){return e.writablestreamsink_write(this.__wbg_ptr,t)}}const he=new Set(["basic","cors","default"]);function Re(){const t={wbg:{}};return t.wbg.__wbg_BigInt_6e3a01c3311ee796=function(e){return BigInt(e)},t.wbg.__wbg_Error_0497d5bdba9362e5=function(e,t){return Error(i(e,t))},t.wbg.__wbg_String_8f0eb39a4a4c2f66=function(t,n){const _=a(String(n),e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbg_abort_18ba44d46e13d7fe=function(e){e.abort()},t.wbg.__wbg_apiKey_136c64a1dd577ea4=function(t,n){const _=n.apiKey;var r=g(_)?0:a(_,e.__wbindgen_malloc,e.__wbindgen_realloc),i=o;s().setInt32(t+4,i,!0),s().setInt32(t+0,r,!0)},t.wbg.__wbg_append_0342728346e47425=function(){return u((function(e,t,n,_,r){e.append(i(t,n),i(_,r))}),arguments)},t.wbg.__wbg_apply_8745fdcf855d21f5=function(){return u((function(e,t,n){return e.apply(t,n)}),arguments)},t.wbg.__wbg_apply_d49e9c0472b015cc=function(){return u((function(e,t,n){return Reflect.apply(e,t,n)}),arguments)},t.wbg.__wbg_args_ce3906bca5fd2b6f=function(e){const t=e.args;return g(t)?0:w(t)},t.wbg.__wbg_arrayBuffer_d58b858456021d7f=function(){return u((function(e){return e.arrayBuffer()}),arguments)},t.wbg.__wbg_assert_83d6354717cc805b=function(e,t){console.assert(0!==e,t)},t.wbg.__wbg_async_89f8ca583cefeb81=function(e){return e.async},t.wbg.__wbg_bind_1e748fe02d440d48=function(e,t,n){return e.bind(t,n)},t.wbg.__wbg_bind_d075481af636a524=function(e,t,n,_){return e.bind(t,n,_)},t.wbg.__wbg_buffer_a1a27a0dfa70165d=function(e){return e.buffer},t.wbg.__wbg_buffer_e495ba54cee589cc=function(e){return e.buffer},t.wbg.__wbg_byobRequest_56aa768ee4dfed17=function(e){const t=e.byobRequest;return g(t)?0:w(t)},t.wbg.__wbg_byteLength_937f8a52f9697148=function(e){return e.byteLength},t.wbg.__wbg_byteLength_bf6d30ef92bae19b=function(e){return e.byteLength},t.wbg.__wbg_byteOffset_4d94b7170e641898=function(e){return e.byteOffset},t.wbg.__wbg_call_f2db6205e5c51dc8=function(){return u((function(e,t,n){return e.call(t,n)}),arguments)},t.wbg.__wbg_call_fbe8be8bf6436ce5=function(){return u((function(e,t){return e.call(t)}),arguments)},t.wbg.__wbg_close_290fb040af98d3ac=function(){return u((function(e){e.close()}),arguments)},t.wbg.__wbg_close_b2641ef0870e518c=function(){return u((function(e){e.close()}),arguments)},t.wbg.__wbg_close_f203332f9561bf29=function(e){return e.close()},t.wbg.__wbg_colno_1fbc9165b6cd1b26=function(e){return e.colno},t.wbg.__wbg_command_new=function(e){return B.__wrap(e)},t.wbg.__wbg_constructor_1a4f07ad72d5cac3=function(e){return e.constructor},t.wbg.__wbg_createObjectURL_1acd82bf8749f5a9=function(){return u((function(t,n){const _=a(URL.createObjectURL(n),e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)}),arguments)},t.wbg.__wbg_crypto_ed58b8e10a292839=function(e){return e.crypto},t.wbg.__wbg_customSections_3a8a19674e217d36=function(e,t,n){return WebAssembly.Module.customSections(e,i(t,n))},t.wbg.__wbg_cwd_13b069cde8a90c68=function(t,n){const _=n.cwd;var r=g(_)?0:a(_,e.__wbindgen_malloc,e.__wbindgen_realloc),i=o;s().setInt32(t+4,i,!0),s().setInt32(t+0,r,!0)},t.wbg.__wbg_data_fffd43bf0ca75fff=function(e){return e.data},t.wbg.__wbg_defineProperty_6a428a581612fed4=function(e,t,n){return Object.defineProperty(e,t,n)},t.wbg.__wbg_deleteProperty_ec71c2c829351683=function(){return u((function(e,t){return Reflect.deleteProperty(e,t)}),arguments)},t.wbg.__wbg_deployedapp_new=function(e){return q.__wrap(e)},t.wbg.__wbg_desiredSize_dd7689d8aa7da7dd=function(e,t){const n=t.desiredSize;s().setFloat64(e+8,g(n)?0:n,!0),s().setInt32(e+0,!g(n),!0)},t.wbg.__wbg_done_4d01f352bade43b7=function(e){return e.done},t.wbg.__wbg_enqueue_a62faa171c4fd287=function(){return u((function(e,t){e.enqueue(t)}),arguments)},t.wbg.__wbg_entries_41651c850143b957=function(e){return Object.entries(e)},t.wbg.__wbg_env_6b7462d491e7d2ae=function(e){return e.env},t.wbg.__wbg_error_1950bd19b566135e=function(e,t){e.error(t)},t.wbg.__wbg_error_7534b8e9a36f1ab4=function(t,n){let _,r;try{_=t,r=n,console.error(i(t,n))}finally{e.canonical_abi_free(_,r,1)}},t.wbg.__wbg_exports_5cb55953fb23c405=function(e){return e.exports},t.wbg.__wbg_exports_93f662ec1dd2b1e2=function(e){return WebAssembly.Module.exports(e)},t.wbg.__wbg_fetch_03b6c973bb6da9b8=function(e){return fetch(e)},t.wbg.__wbg_fetch_6e679fcfa9759479=function(e,t){return e.fetch(t)},t.wbg.__wbg_fetch_a8e43a4e138dfc93=function(e,t){return e.fetch(t)},t.wbg.__wbg_filename_5c8881452d91f4fd=function(t,n){const _=a(n.filename,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbg_for_555902b1a859c603=function(e,t){return Symbol.for(i(e,t))},t.wbg.__wbg_from_12ff8e47307bd4c7=function(e){return Array.from(e)},t.wbg.__wbg_getPrototypeOf_a1794d62c12daab4=function(){return u((function(e){return Reflect.getPrototypeOf(e)}),arguments)},t.wbg.__wbg_getRandomValues_bcb4912f16000dc4=function(){return u((function(e,t){e.getRandomValues(t)}),arguments)},t.wbg.__wbg_getTime_2afe67905d873e92=function(e){return e.getTime()},t.wbg.__wbg_getTimezoneOffset_31f33c0868da345e=function(e){return e.getTimezoneOffset()},t.wbg.__wbg_get_92470be87867c2e5=function(){return u((function(e,t){return Reflect.get(e,t)}),arguments)},t.wbg.__wbg_get_a131a44bd1eb6979=function(e,t){return e[t>>>0]},t.wbg.__wbg_get_be8d302ec5bf8863=function(){return u((function(e,t){return e.get(t>>>0)}),arguments)},t.wbg.__wbg_getwithrefkey_1dc361bd10053bfe=function(e,t){return e[t]},t.wbg.__wbg_grow_0a942972adfcde67=function(){return u((function(e,t){return e.grow(t>>>0)}),arguments)},t.wbg.__wbg_grow_ae9c73e837b2d936=function(e,t){return e.grow(t>>>0)},t.wbg.__wbg_grow_d034989fce14cc8e=function(){return u((function(e,t){return e.grow(t>>>0)}),arguments)},t.wbg.__wbg_hardwareConcurrency_10d7194b406e56d2=function(e){return e.hardwareConcurrency},t.wbg.__wbg_hardwareConcurrency_fd778a5fdf975150=function(e){return e.hardwareConcurrency},t.wbg.__wbg_has_809e438ee9d787a7=function(){return u((function(e,t){return Reflect.has(e,t)}),arguments)},t.wbg.__wbg_headers_0f0cbdc6290b6780=function(e){return e.headers},t.wbg.__wbg_headers_67fbc7839fe933b3=function(e){return e.headers},t.wbg.__wbg_imports_1f5c972c2e57dfb5=function(e){return WebAssembly.Module.imports(e)},t.wbg.__wbg_instance_new=function(e){return N.__wrap(e)},t.wbg.__wbg_instanceof_ArrayBuffer_a8b6f580b363f2bc=function(e){let t;try{t=e instanceof ArrayBuffer}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Blob_2688511ca2a71508=function(e){let t;try{t=e instanceof Blob}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Date_ef7e3d6f544a9d16=function(e){let t;try{t=e instanceof Date}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Error_58a92d81483a4b16=function(e){let t;try{t=e instanceof Error}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Function_4de5a228b53c20c3=function(e){let t;try{t=e instanceof Function}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Global_d43eb3e1373e574d=function(e){let t;try{t=e instanceof WebAssembly.Global}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Map_80cc65041c96417a=function(e){let t;try{t=e instanceof Map}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Memory_613951003465ef5c=function(e){let t;try{t=e instanceof WebAssembly.Memory}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Module_ac6579472cc013d8=function(e){let t;try{t=e instanceof WebAssembly.Module}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Object_9a05796038b7a8f6=function(e){let t;try{t=e instanceof Object}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_RangeError_67b19cb7651a2151=function(e){let t;try{t=e instanceof RangeError}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Response_e80ce8b7a2b968d2=function(e){let t;try{t=e instanceof Response}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Table_a5fae5b77c0e21e8=function(e){let t;try{t=e instanceof WebAssembly.Table}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Tag_ff306496211677da=function(e){let t;try{t=e instanceof WebAssembly.Tag}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_TypeError_16d245a01d4dd626=function(e){let t;try{t=e instanceof TypeError}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Uint8Array_ca460677bc155827=function(e){let t;try{t=e instanceof Uint8Array}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_Window_68f3f67bad1729c1=function(e){let t;try{t=e instanceof Window}catch(e){t=!1}return t},t.wbg.__wbg_instanceof_WorkerGlobalScope_11f8a14c11024785=function(e){let t;try{t=e instanceof WorkerGlobalScope}catch(e){t=!1}return t},t.wbg.__wbg_isArray_2a07fd175d45c496=function(e){return Array.isArray(e)},t.wbg.__wbg_isArray_5f090bed72bd4f89=function(e){return Array.isArray(e)},t.wbg.__wbg_isSafeInteger_90d7c4674047d684=function(e){return Number.isSafeInteger(e)},t.wbg.__wbg_is_49ee71a294f7d2fe=function(e,t){return Object.is(e,t)},t.wbg.__wbg_iterator_4068add5b2aef7a6=function(){return Symbol.iterator},t.wbg.__wbg_keys_42062809bf87339e=function(e){return Object.keys(e)},t.wbg.__wbg_length_865e6e8de4a8c6cb=function(e){return e.length},t.wbg.__wbg_length_ab6d22b5ead75c72=function(e){return e.length},t.wbg.__wbg_length_f00ec12454a5d9fd=function(e){return e.length},t.wbg.__wbg_lineno_9fe2a23a82cebd53=function(e){return e.lineno},t.wbg.__wbg_locked_c5cc88823268db66=function(e){return e.locked},t.wbg.__wbg_log_ea240990d83e374e=function(e){console.log(e)},t.wbg.__wbg_message_4159c15dac08c5e9=function(e){return e.message},t.wbg.__wbg_message_44ef9b801b7d8bc3=function(t,n){const _=a(n.message,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbg_mount_dfb06836b0f9b20b=function(e){return e.mount},t.wbg.__wbg_msCrypto_0a36e2ec3a343d26=function(e){return e.msCrypto},t.wbg.__wbg_navigator_6db993f5ffeb46be=function(e){return e.navigator},t.wbg.__wbg_navigator_fc64ba1417939b25=function(e){return e.navigator},t.wbg.__wbg_networkGateway_79e326cb5c82e7fd=function(t,n){const _=n.networkGateway;var r=g(_)?0:a(_,e.__wbindgen_malloc,e.__wbindgen_realloc),i=o;s().setInt32(t+4,i,!0),s().setInt32(t+0,r,!0)},t.wbg.__wbg_new0_97314565408dea38=function(){return new Date},t.wbg.__wbg_new_07b483f72211fd66=function(){return new Object},t.wbg.__wbg_new_104a6fcd57ac32c0=function(){return u((function(){return new FileReader}),arguments)},t.wbg.__wbg_new_181343b7eb238d99=function(e){return new Int32Array(e)},t.wbg.__wbg_new_186abcfdff244e42=function(){return u((function(){return new AbortController}),arguments)},t.wbg.__wbg_new_2debb2b422bd07bd=function(){return u((function(e,t){return new WebAssembly.Global(e,t)}),arguments)},t.wbg.__wbg_new_39fae4e38868373c=function(){return u((function(e,t){return new Worker(i(e,t))}),arguments)},t.wbg.__wbg_new_476169e6d59f23ae=function(e,t){return new Error(i(e,t))},t.wbg.__wbg_new_4796e1cd2eb9ea6d=function(){return u((function(){return new Headers}),arguments)},t.wbg.__wbg_new_58353953ad2097cc=function(){return new Array},t.wbg.__wbg_new_5dd74caa1b362828=function(){return u((function(e){return new WebAssembly.Module(e)}),arguments)},t.wbg.__wbg_new_7449da607adc249f=function(){return u((function(e,t){return new WebAssembly.Instance(e,t)}),arguments)},t.wbg.__wbg_new_75fba833e24e4ae9=function(){return u((function(e){return new WebAssembly.Memory(e)}),arguments)},t.wbg.__wbg_new_8a6f238a6ece86ea=function(){return new Error},t.wbg.__wbg_new_a2957aa5684de228=function(e){return new Date(e)},t.wbg.__wbg_new_a4e7a0370d48e1b4=function(){return u((function(e){return new ReadableStreamDefaultReader(e)}),arguments)},t.wbg.__wbg_new_a979b4b45bd55c7f=function(){return new Map},t.wbg.__wbg_new_b60148568efca43b=function(e,t){return new TypeError(i(e,t))},t.wbg.__wbg_new_e30c39c06edaabf2=function(t,n){try{var _={a:t,b:n};const r=new Promise(((t,n)=>{const r=_.a;_.a=0;try{return function(t,n,_,r){e.closure191_externref_shim(t,n,_,r)}(r,_.b,t,n)}finally{_.a=r}}));return r}finally{_.a=_.b=0}},t.wbg.__wbg_new_e52b3efaaa774f96=function(e){return new Uint8Array(e)},t.wbg.__wbg_new_e769da3b652f0d9f=function(){return u((function(e){return new WebAssembly.Table(e)}),arguments)},t.wbg.__wbg_new_f42a001532528172=function(){return u((function(e,t){return new WebSocket(i(e,t))}),arguments)},t.wbg.__wbg_new_fd4b538754de98d6=function(){return u((function(e){return new WebAssembly.Tag(e)}),arguments)},t.wbg.__wbg_newfromslice_7c05ab1297cb2d88=function(e,t){return new Uint8Array(f(e,t))},t.wbg.__wbg_newnoargs_ff528e72d35de39a=function(e,t){return new Function(i(e,t))},t.wbg.__wbg_newwithargs_17a05078fc85d3aa=function(e,t,n,_){return new Function(i(e,t),i(n,_))},t.wbg.__wbg_newwithbyteoffsetandlength_3b01ecda099177e8=function(e,t,n){return new Uint8Array(e,t>>>0,n>>>0)},t.wbg.__wbg_newwithlength_08f872dc1e3ada2e=function(e){return new Uint8Array(e>>>0)},t.wbg.__wbg_newwithlength_6ee231411efd06b6=function(e){return new Array(e>>>0)},t.wbg.__wbg_newwithoptions_9931e161b714ebf9=function(){return u((function(e,t,n){return new Worker(i(e,t),n)}),arguments)},t.wbg.__wbg_newwithstrandinit_f8a9dbe009d6be37=function(){return u((function(e,t,n){return new Request(i(e,t),n)}),arguments)},t.wbg.__wbg_newwithu8arraysequenceandoptions_3b5b6ab7317ffd8f=function(){return u((function(e,t){return new Blob(e,t)}),arguments)},t.wbg.__wbg_newwithunderlyingsinkandstrategy_481c2b5a223a4560=function(){return u((function(e,t){return new WritableStream(e,t)}),arguments)},t.wbg.__wbg_newwithunderlyingsourceandstrategy_594ea2be3e0723ff=function(){return u((function(e,t){return new ReadableStream(e,t)}),arguments)},t.wbg.__wbg_next_8bb824d217961b5d=function(e){return e.next},t.wbg.__wbg_next_e2da48d8fff7439a=function(){return u((function(e){return e.next()}),arguments)},t.wbg.__wbg_node_02999533c4ea02e3=function(e){return e.node},t.wbg.__wbg_now_eb0821f3bd9f6529=function(){return Date.now()},t.wbg.__wbg_of_995ab9c48c3965f1=function(e,t,n){return Array.of(e,t,n)},t.wbg.__wbg_postMessage_54ce7f4b41ac732e=function(){return u((function(e,t){e.postMessage(t)}),arguments)},t.wbg.__wbg_postMessage_95ef4554c6b7ca0c=function(){return u((function(e,t){e.postMessage(t)}),arguments)},t.wbg.__wbg_process_5c1d670bc53614b8=function(e){return e.process},t.wbg.__wbg_program_0ccd177127e926dc=function(e){return e.program},t.wbg.__wbg_publishpackageoutput_new=function(e){return Z.__wrap(e)},t.wbg.__wbg_push_73fd7b5550ebf707=function(e,t){return e.push(t)},t.wbg.__wbg_queueMicrotask_46c1df247678729f=function(e){queueMicrotask(e)},t.wbg.__wbg_queueMicrotask_8acf3ccb75ed8d11=function(e){return e.queueMicrotask},t.wbg.__wbg_randomFillSync_ab2cfe79ebbf2740=function(){return u((function(e,t){e.randomFillSync(t)}),arguments)},t.wbg.__wbg_random_210bb7fbfa33591d=function(){return Math.random()},t.wbg.__wbg_readAsArrayBuffer_ec86f70be9ee80e9=function(){return u((function(e,t){e.readAsArrayBuffer(t)}),arguments)},t.wbg.__wbg_read_f4b89f69cc51efc7=function(e){return e.read()},t.wbg.__wbg_readablestreamsource_new=function(e){return te.__wrap(e)},t.wbg.__wbg_redirected_380499cd18bc27c0=function(e){return e.redirected},t.wbg.__wbg_registry_0193688f92324c7c=function(e){const t=e.registry;return g(t)?0:w(t)},t.wbg.__wbg_releaseLock_c589dd51c0812aca=function(e){e.releaseLock()},t.wbg.__wbg_require_79b1e9274cde3c87=function(){return u((function(){return module.require}),arguments)},t.wbg.__wbg_resolve_0dac8c580ffd4678=function(e){return Promise.resolve(e)},t.wbg.__wbg_respond_b227f1c3be2bb879=function(){return u((function(e,t){e.respond(t>>>0)}),arguments)},t.wbg.__wbg_result_142fc4d88cbccb26=function(){return u((function(e){return e.result}),arguments)},t.wbg.__wbg_runtime_3a007260b7cad09f=function(e){return e.runtime},t.wbg.__wbg_send_05456d2bf190b017=function(){return u((function(e,t){e.send(t)}),arguments)},t.wbg.__wbg_setTimeout_84a114fc6c4403f8=function(){return u((function(e,t,n){return e.setTimeout(t,n)}),arguments)},t.wbg.__wbg_setTimeout_906fea9a7279f446=function(){return u((function(e,t,n){return e.setTimeout(t,n)}),arguments)},t.wbg.__wbg_set_3f1d0b984ed272ed=function(e,t,n){e[t]=n},t.wbg.__wbg_set_7422acbe992d64ab=function(e,t,n){e[t>>>0]=n},t.wbg.__wbg_set_b042eef31c50834d=function(){return u((function(e,t,n,_,r){e.set(i(t,n),i(_,r))}),arguments)},t.wbg.__wbg_set_c43293f93a35998a=function(){return u((function(e,t,n){return Reflect.set(e,t,n)}),arguments)},t.wbg.__wbg_set_d6bdfd275fb8a4ce=function(e,t,n){return e.set(t,n)},t.wbg.__wbg_set_eeace154fc5ce736=function(){return u((function(e,t,n){e.set(t>>>0,n)}),arguments)},t.wbg.__wbg_set_fe4e79d1ed3b0e9b=function(e,t,n){e.set(t,n>>>0)},t.wbg.__wbg_setbinaryType_52787d6025601cc5=function(e,t){e.binaryType=j[t]},t.wbg.__wbg_setbody_971ec015fc13d6b4=function(e,t){e.body=t},t.wbg.__wbg_setcredentials_920d91fb5984c94a=function(e,t){e.credentials=M[t]},t.wbg.__wbg_setheaders_65a4eb4c0443ae61=function(e,t){e.headers=t},t.wbg.__wbg_sethighwatermark_3017ad772d071dcb=function(e,t){e.highWaterMark=t},t.wbg.__wbg_setmethod_8ce1be0b4d701b7c=function(e,t,n){e.method=i(t,n)},t.wbg.__wbg_setmode_bd35f026f55b6247=function(e,t){e.mode=T[t]},t.wbg.__wbg_setname_9b01ac306adf8bfd=function(e,t,n){e.name=i(t,n)},t.wbg.__wbg_setonclose_c6db38f935250174=function(e,t){e.onclose=t},t.wbg.__wbg_setonerror_890bfd1ff86e9c78=function(e,t){e.onerror=t},t.wbg.__wbg_setonloadend_a6c211075855db45=function(e,t){e.onloadend=t},t.wbg.__wbg_setonmessage_49ca623a77cfb3e6=function(e,t){e.onmessage=t},t.wbg.__wbg_setonmessage_f6cf46183c427754=function(e,t){e.onmessage=t},t.wbg.__wbg_setonopen_1475cbeb761c101f=function(e,t){e.onopen=t},t.wbg.__wbg_setsignal_8e72abfe7ee03c97=function(e,t){e.signal=t},t.wbg.__wbg_setsize_13f2192310db9b34=function(e,t){e.size=t},t.wbg.__wbg_settype_acc38e64fddb9e3f=function(e,t,n){e.type=i(t,n)},t.wbg.__wbg_settype_ca83ae32b7117898=function(e,t){e.type=U[t]},t.wbg.__wbg_setvalue_bd9df7c968e4b416=function(e,t){e.value=t},t.wbg.__wbg_signal_b96223519a041faa=function(e){return e.signal},t.wbg.__wbg_stack_0ed75d68575b0f3c=function(t,n){const _=a(n.stack,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbg_static_accessor_GLOBAL_487c52c58d65314d=function(){const e="undefined"==typeof global?null:global;return g(e)?0:w(e)},t.wbg.__wbg_static_accessor_GLOBAL_THIS_ee9704f328b6b291=function(){const e="undefined"==typeof globalThis?null:globalThis;return g(e)?0:w(e)},t.wbg.__wbg_static_accessor_SELF_78c9e3071b912620=function(){const e="undefined"==typeof self?null:self;return g(e)?0:w(e)},t.wbg.__wbg_static_accessor_WINDOW_a093d21393777366=function(){const e="undefined"==typeof window?null:window;return g(e)?0:w(e)},t.wbg.__wbg_status_a54682bbe52f9058=function(e){return e.status},t.wbg.__wbg_stdin_4d05ba90fc2c39de=function(e){const t=e.stdin;return g(t)?0:w(t)},t.wbg.__wbg_stringify_c242842b97f054cc=function(){return u((function(e){return JSON.stringify(e)}),arguments)},t.wbg.__wbg_subarray_dd4ade7d53bd8e26=function(e,t,n){return e.subarray(t>>>0,n>>>0)},t.wbg.__wbg_terminate_af36b01db24a1745=function(e){e.terminate()},t.wbg.__wbg_text_ec0e22f60e30dd2f=function(){return u((function(e){return e.text()}),arguments)},t.wbg.__wbg_then_82ab9fb4080f1707=function(e,t,n){return e.then(t,n)},t.wbg.__wbg_then_db882932c0c714c6=function(e,t){return e.then(t)},t.wbg.__wbg_toString_2a748bb7135f7e4d=function(t,n,_){const r=a(n.toString(_),e.__wbindgen_malloc,e.__wbindgen_realloc),i=o;s().setInt32(t+4,i,!0),s().setInt32(t+0,r,!0)},t.wbg.__wbg_toString_bc7a05a172b5cf14=function(e){return e.toString()},t.wbg.__wbg_trap_new=function(e){return ce.__wrap(e)},t.wbg.__wbg_url_e6ed869ea05b7a71=function(t,n){const _=a(n.url,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbg_userAgent_470abfd84e4eedcb=function(){return u((function(t,n){const _=a(n.userAgent,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)}),arguments)},t.wbg.__wbg_userAgent_a24a493cd80cbd00=function(){return u((function(t,n){const _=a(n.userAgent,e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)}),arguments)},t.wbg.__wbg_user_new=function(e){return be.__wrap(e)},t.wbg.__wbg_userpackagedefinition_unwrap=function(e){return ge.__unwrap(e)},t.wbg.__wbg_uses_7494620cc35a86ad=function(e){const t=e.uses;return g(t)?0:w(t)},t.wbg.__wbg_value_17b896954e14f896=function(e){return e.value},t.wbg.__wbg_value_c22dc41e42f5d813=function(e){return e.value},t.wbg.__wbg_value_f8fe3ce05407a213=function(e){return e.value},t.wbg.__wbg_versions_c71aa1626a93e0a1=function(e){return e.versions},t.wbg.__wbg_view_a9ad80dcbad7cf1c=function(e){const t=e.view;return g(t)?0:w(t)},t.wbg.__wbg_waitAsync_c3398694eaa5aeab=function(e,t,n){return Atomics.waitAsync(e,t>>>0,n)},t.wbg.__wbg_waitAsync_e36f18e2e26c3b7d=function(){return Atomics.waitAsync},t.wbg.__wbg_wasmer_new=function(e){return de.__wrap(e)},t.wbg.__wbg_writablestreamsink_new=function(e){return me.__wrap(e)},t.wbg.__wbindgen_array_new=function(){return[]},t.wbg.__wbindgen_array_push=function(e,t){e.push(t)},t.wbg.__wbindgen_as_number=function(e){return+e},t.wbg.__wbindgen_bigint_from_i64=function(e){return e},t.wbg.__wbindgen_bigint_from_u128=function(e,t){return BigInt.asUintN(64,e)<<BigInt(64)|BigInt.asUintN(64,t)},t.wbg.__wbindgen_bigint_from_u64=function(e){return BigInt.asUintN(64,e)},t.wbg.__wbindgen_bigint_get_as_i64=function(e,t){const n="bigint"==typeof t?t:void 0;s().setBigInt64(e+8,g(n)?BigInt(0):n,!0),s().setInt32(e+0,!g(n),!0)},t.wbg.__wbindgen_boolean_get=function(e){return"boolean"==typeof e?e?1:0:2},t.wbg.__wbindgen_cb_drop=function(e){const t=e.original;if(1==t.cnt--)return t.a=0,!0;return!1},t.wbg.__wbindgen_closure_wrapper13762=function(e,t,n){return l(e,t,1342,W)},t.wbg.__wbindgen_closure_wrapper13766=function(e,t,n){return l(e,t,1342,W)},t.wbg.__wbindgen_closure_wrapper13769=function(e,t,n){return l(e,t,1342,S)},t.wbg.__wbindgen_closure_wrapper7191=function(e,t,n){return l(e,t,541,I)},t.wbg.__wbindgen_closure_wrapper7199=function(e,t,n){return l(e,t,541,I)},t.wbg.__wbindgen_closure_wrapper8876=function(e,t,n){return p(e,t,750,x)},t.wbg.__wbindgen_closure_wrapper9091=function(e,t,n){return p(e,t,750,O)},t.wbg.__wbindgen_closure_wrapper9126=function(e,t,n){return l(e,t,750,I)},t.wbg.__wbindgen_closure_wrapper9506=function(e,t,n){return l(e,t,750,I)},t.wbg.__wbindgen_debug_string=function(t,n){const _=a(y(n),e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbindgen_function_table=function(){return e.__wbindgen_export_6},t.wbg.__wbindgen_in=function(e,t){return e in t},t.wbg.__wbindgen_init_externref_table=function(){const t=e.__wbindgen_export_5,n=t.grow(4);t.set(0,void 0),t.set(n+0,void 0),t.set(n+1,null),t.set(n+2,!0),t.set(n+3,!1)},t.wbg.__wbindgen_is_bigint=function(e){return"bigint"==typeof e},t.wbg.__wbindgen_is_falsy=function(e){return!e},t.wbg.__wbindgen_is_function=function(e){return"function"==typeof e},t.wbg.__wbindgen_is_null=function(e){return null===e},t.wbg.__wbindgen_is_object=function(e){return"object"==typeof e&&null!==e},t.wbg.__wbindgen_is_string=function(e){return"string"==typeof e},t.wbg.__wbindgen_is_undefined=function(e){return void 0===e},t.wbg.__wbindgen_jsval_eq=function(e,t){return e===t},t.wbg.__wbindgen_jsval_loose_eq=function(e,t){return e==t},t.wbg.__wbindgen_link_db87ac8434ca3f93=function(t){const n="onmessage = function (ev) {\n let [ia, index, value] = ev.data;\n ia = new Int32Array(ia.buffer);\n let result = Atomics.wait(ia, index, value);\n postMessage(result);\n };\n ",_=a(void 0===URL.createObjectURL?"data:application/javascript,"+encodeURIComponent(n):URL.createObjectURL(new Blob([n],{type:"text/javascript"})),e.__wbindgen_malloc,e.__wbindgen_realloc),r=o;s().setInt32(t+4,r,!0),s().setInt32(t+0,_,!0)},t.wbg.__wbindgen_lt=function(e,t){return e<t},t.wbg.__wbindgen_memory=function(){return e.memory},t.wbg.__wbindgen_module=function(){return Fe.__wbindgen_wasm_module},t.wbg.__wbindgen_neg=function(e){return-e},t.wbg.__wbindgen_number_get=function(e,t){const n="number"==typeof t?t:void 0;s().setFloat64(e+8,g(n)?0:n,!0),s().setInt32(e+0,!g(n),!0)},t.wbg.__wbindgen_number_new=function(e){return e},t.wbg.__wbindgen_rethrow=function(e){throw e},t.wbg.__wbindgen_shr=function(e,t){return e>>t},t.wbg.__wbindgen_string_get=function(t,n){const _="string"==typeof n?n:void 0;var r=g(_)?0:a(_,e.__wbindgen_malloc,e.__wbindgen_realloc),i=o;s().setInt32(t+4,i,!0),s().setInt32(t+0,r,!0)},t.wbg.__wbindgen_string_new=function(e,t){return i(e,t)},t.wbg.__wbindgen_throw=function(e,t){throw new Error(i(e,t))},t}function ke(e,t){e.wbg.memory=t||new WebAssembly.Memory({initial:34,maximum:16384,shared:!0})}function Ae(n,_,r){if(e=n.exports,Fe.__wbindgen_wasm_module=_,b=null,t=null,void 0!==r&&("number"!=typeof r||0===r||r%65536!=0))throw"invalid stack size";return e.__wbindgen_start(r),e}function ve(t,n){if(void 0!==e)return e;let _;void 0!==t&&(Object.getPrototypeOf(t)===Object.prototype?({module:t,memory:n,thread_stack_size:_}=t):console.warn("using deprecated parameters for `initSync()`; pass a single object instead"));const r=Re();ke(r,n),t instanceof WebAssembly.Module||(t=new WebAssembly.Module(t));return Ae(new WebAssembly.Instance(t,r),t,_)}async function Fe(t,n){if(void 0!==e)return e;let _;void 0!==t&&(Object.getPrototypeOf(t)===Object.prototype?({module_or_path:t,memory:n,thread_stack_size:_}=t):console.warn("using deprecated parameters for the initialization function; pass a single object instead")),void 0===t&&(t=new URL("wasmer_js_bg.wasm",import.meta.url));const r=Re();("string"==typeof t||"function"==typeof Request&&t instanceof Request||"function"==typeof URL&&t instanceof URL)&&(t=fetch(t)),ke(r,n);const{instance:i,module:o}=await async function(e,t){if("function"==typeof Response&&e instanceof Response){if("function"==typeof WebAssembly.instantiateStreaming)try{return await WebAssembly.instantiateStreaming(e,t)}catch(t){if(!e.ok||!he.has(e.type)||"application/wasm"===e.headers.get("Content-Type"))throw t;console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",t)}const n=await e.arrayBuffer();return await WebAssembly.instantiate(n,t)}{const n=await WebAssembly.instantiate(e,t);return n instanceof WebAssembly.Instance?{instance:n,module:e}:n}}(await t,r);return Ae(i,o,_)}const ze=async(e,t)=>{e?(e instanceof WebAssembly.Module||e instanceof URL||e instanceof WebAssembly.Module)&&(t?(console.info("Passing the module and memory as first arguments to the init function is deprecated, please use: `init({module: WASM_MODULE, memory: WASM_MEMORY})`"),e={module:e,memory:t}):(console.info("Passing the module as first argument to the init function is deprecated, please use: `init({module: WASM_MODULE})`"),e={module:e})):e={},Ie(e);let n=await Fe(e.module,e.memory);return e.log&&z(e.log),e.workerUrl&&F(e.workerUrl.toString()),e.sdkUrl?v(e.sdkUrl.toString()):v(new URL("index.mjs",import.meta.url).toString()),n},Ie=e=>{globalThis.__WASMER_REGISTRY__={registryUrl:e.registryUrl,token:e.token}};export{L as Atom,B as Command,q as DeployedApp,G as Directory,N as Instance,V as IntoUnderlyingByteSource,J as IntoUnderlyingSink,Q as IntoUnderlyingSource,Z as PublishPackageOutput,te as ReadableStreamSource,_e as Runtime,ie as ThreadPoolWorker,ce as Trap,be as User,ge as UserPackageDefinition,ue as Volume,de as Wasmer,pe as WasmerPackage,me as WritableStreamSink,ze as init,ve as initSync,z as initializeLogger,A as on_start,R as runWasix,Ie as setRegistry,v as setSDKUrl,F as setWorkerUrl,k as wat2wasm};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @wasmer/sdk
|
|
3
|
+
* Wasmer Javascript SDK. It allows interacting with Wasmer Packages in Node.js and the Browser.
|
|
4
|
+
*
|
|
5
|
+
* @version v0.8.0
|
|
6
|
+
* @author Wasmer Engineering Team <engineering@wasmer.io>
|
|
7
|
+
* @homepage https://github.com/wasmerio/wasmer-js
|
|
8
|
+
* @repository git+https://github.com/wasmerio/wasmer-js.git
|
|
9
|
+
* @license MIT
|
|
10
|
+
*/
|
|
11
|
+
Error.stackTraceLimit=50,globalThis.onerror=console.error;let a,e=[];globalThis.onmessage=async o=>{if("init"==o.data.type){const{memory:r,module:t,id:i,sdkUrl:l}=o.data,{init:s,ThreadPoolWorker:n}=await import(l);await s({module:t,sdkUrl:l,memory:r}),a=new n(i);for(const o of e.splice(0,e.length))await a.handle(o)}else await(async o=>{a?await a.handle(o):e.push(o)})(o.data)};
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var G="https://stackblitz.com";var m=class{_bus=new EventTarget;listen(t){function r(n){t(n.data)}return this._bus.addEventListener("message",r),()=>this._bus.removeEventListener("message",r)}fireEvent(t){this._bus.dispatchEvent(new MessageEvent("message",{data:t}))}};var ie=new Error;ie.stack="";var ae=new m;function $(e){return ae.listen(e)}var C={},b=null,y={get editorOrigin(){return b==null&&(b=new URL(globalThis.WEBCONTAINER_API_IFRAME_URL??G).origin),b},set editorOrigin(e){b=new URL(e).origin},setQueryParam(e,t){C[e]=t},get url(){let e=new URL(this.editorOrigin);e.pathname="/headless";for(let t in C)e.searchParams.set(t,C[t]);return e.searchParams.set("version","1.6.4"),e}};function B(){let e,t;function r(){t=new Promise(n=>e=n)}return r(),{get promise(){return t},resolve(n){return e(n)},reset:r}}var h={initialized:!1,bootCalled:!1,authComplete:B(),clientId:"",oauthScope:"",broadcastChannel:null,get editorOrigin(){return y.editorOrigin},tokens:null},et=new m,tt=new m;function J(e){if(!e)throw new Error("Oops! Tokens is not defined when it always should be.")}var p;(function(e){e.UncaughtException="PREVIEW_UNCAUGHT_EXCEPTION",e.UnhandledRejection="PREVIEW_UNHANDLED_REJECTION",e.ConsoleError="PREVIEW_CONSOLE_ERROR"})(p||(p={}));var ce=Object.defineProperty,le=(e,t)=>{for(var r in t)ce(e,r,{get:t[r],enumerable:!0})},d={};le(d,{createEndpoint:()=>Q,expose:()=>I,proxy:()=>re,proxyMarker:()=>T,releaseProxy:()=>Y,transfer:()=>te,transferHandlers:()=>O,windowEndpoint:()=>pe,wrap:()=>Z});var T=Symbol("Comlink.proxy"),Q=Symbol("Comlink.endpoint"),Y=Symbol("Comlink.releaseProxy"),v=Symbol("Comlink.thrown"),K=e=>typeof e=="object"&&e!==null||typeof e=="function",ue={canHandle:e=>K(e)&&e[T],serialize(e){let{port1:t,port2:r}=new MessageChannel;return I(e,t),[r,[r]]},deserialize(e){return e.start(),Z(e)}},fe={canHandle:e=>K(e)&&v in e,serialize({value:e}){let t;return e instanceof Error?t={isError:!0,value:{message:e.message,name:e.name,stack:e.stack}}:t={isError:!1,value:e},[t,[]]},deserialize(e){throw e.isError?Object.assign(new Error(e.value.message),e.value):e.value}},O=new Map([["proxy",ue],["throw",fe]]);function I(e,t=self){t.addEventListener("message",function r(n){if(!n||!n.data)return;let{id:o,type:s,path:i}=Object.assign({path:[]},n.data),a=(n.data.argumentList||[]).map(_),c;try{let l=i.slice(0,-1).reduce((u,w)=>u[w],e),f=i.reduce((u,w)=>u[w],e);switch(s){case 0:c=f;break;case 1:l[i.slice(-1)[0]]=_(n.data.value),c=!0;break;case 2:c=f.apply(l,a);break;case 3:{let u=new f(...a);c=re(u)}break;case 4:{let{port1:u,port2:w}=new MessageChannel;I(e,w),c=te(u,[u])}break;case 5:c=void 0;break}}catch(l){c={value:l,[v]:0}}Promise.resolve(c).catch(l=>({value:l,[v]:0})).then(l=>{let[f,u]=L(l);t.postMessage(Object.assign(Object.assign({},f),{id:o}),u),s===5&&(t.removeEventListener("message",r),X(t))})}),t.start&&t.start()}function de(e){return e.constructor.name==="MessagePort"}function X(e){de(e)&&e.close()}function Z(e,t){return A(e,[],t)}function k(e){if(e)throw new Error("Proxy has been released and is not useable")}function A(e,t=[],r=function(){}){let n=!1,o=new Proxy(r,{get(s,i){if(k(n),i===Y)return()=>E(e,{type:5,path:t.map(a=>a.toString())}).then(()=>{X(e),n=!0});if(i==="then"){if(t.length===0)return{then:()=>o};let a=E(e,{type:0,path:t.map(c=>c.toString())}).then(_);return a.then.bind(a)}return A(e,[...t,i])},set(s,i,a){k(n);let[c,l]=L(a);return E(e,{type:1,path:[...t,i].map(f=>f.toString()),value:c},l).then(_)},apply(s,i,a){k(n);let c=t[t.length-1];if(c===Q)return E(e,{type:4}).then(_);if(c==="bind")return A(e,t.slice(0,-1));let[l,f]=q(a);return E(e,{type:2,path:t.map(u=>u.toString()),argumentList:l},f).then(_)},construct(s,i){k(n);let[a,c]=q(i);return E(e,{type:3,path:t.map(l=>l.toString()),argumentList:a},c).then(_)}});return o}function he(e){return Array.prototype.concat.apply([],e)}function q(e){let t=e.map(L);return[t.map(r=>r[0]),he(t.map(r=>r[1]))]}var ee=new WeakMap;function te(e,t){return ee.set(e,t),e}function re(e){return Object.assign(e,{[T]:!0})}function pe(e,t=self,r="*"){return{postMessage:(n,o)=>e.postMessage(n,r,o),addEventListener:t.addEventListener.bind(t),removeEventListener:t.removeEventListener.bind(t)}}function L(e){for(let[t,r]of O)if(r.canHandle(e)){let[n,o]=r.serialize(e);return[{type:3,name:t,value:n},o]}return[{type:0,value:e},ee.get(e)||[]]}function _(e){switch(e.type){case 3:return O.get(e.name).deserialize(e.value);case 0:return e.value}}function E(e,t,r){return new Promise(n=>{let o=we();e.addEventListener("message",function s(i){!i.data||!i.data.id||i.data.id!==o||(e.removeEventListener("message",s),n(i.data))}),e.start&&e.start(),e.postMessage(Object.assign({id:o},t),r)})}function we(){return new Array(4).fill(0).map(()=>Math.floor(Math.random()*Number.MAX_SAFE_INTEGER).toString(16)).join("-")}var me=[p.ConsoleError,p.UncaughtException,p.UnhandledRejection];function M(e){return!(e==null||typeof e!="object"||!("type"in e)||!me.includes(e.type))}function g(e){let t=Object.create(null);return e?Object.assign(t,e):t}function N(e){let t={d:{}};for(let r of Object.keys(e)){let n=e[r];if("file"in n){if("symlink"in n.file){t.d[r]={f:{l:n.file.symlink}};continue}let s=n.file.contents,i=typeof s=="string"?s:ge(s),a=typeof s=="string"?{}:{b:!0};t.d[r]={f:{c:i,...a}};continue}let o=N(n.directory);t.d[r]=o}return t}function U(e){let t=g();if("f"in e)throw new Error("It is not possible to export a single file in the JSON format.");if("d"in e)for(let r of Object.keys(e.d)){let n=e.d[r];"d"in n?t[r]=g({directory:U(n)}):"f"in n&&("c"in n.f?t[r]=g({file:g({contents:n.f.b?_e(n.f.c):n.f.c})}):"l"in n.f&&(t[r]=g({file:g({symlink:n.f.l})})))}return t}function _e(e){let t=new Uint8Array(e.length);for(let r=0;r<e.length;r++)t[r]=e[r].charCodeAt(0);return t}function ge(e){let t="";for(let r=0;r<e.length;r++)t+=String.fromCharCode(e[r]);return t}var S=null,R=null,D={},ne=new TextDecoder,ye=new TextEncoder,x=class e{_instance;_runtimeInfo;fs;static _instance=null;static _teardownPromise=null;_tornDown=!1;_unsubscribeFromTokenChangedListener=()=>{};constructor(t,r,n,o){this._instance=t,this._runtimeInfo=o,this.fs=new V(r),h.initialized&&(this._unsubscribeFromTokenChangedListener=$(s=>{this._instance.setCredentials({accessToken:s,editorOrigin:h.editorOrigin})}),(async()=>{await h.authComplete.promise,!this._tornDown&&(J(h.tokens),await this._instance.setCredentials({accessToken:h.tokens.access,editorOrigin:h.editorOrigin}))})().catch(s=>{console.error(s)}))}async spawn(t,r,n){let o=[];Array.isArray(r)?o=r:n=r;let s,i=new ReadableStream;if(n?.output!==!1){let W=xe();s=W.push,i=W.stream}let a,c,l,f,u=P(F(s)),w=P(F(a)),oe=P(F(l)),se=await this._instance.run({command:t,args:o,cwd:n?.cwd,env:n?.env,terminal:n?.terminal},w,oe,u);return new H(se,i,c,f)}async export(t,r){let n={format:r?.format??"json",includes:r?.includes,excludes:r?.excludes,external:!0},o=await this._instance.serialize(t,n);if(n.format==="json"){let s=JSON.parse(ne.decode(o));return U(s)}return o}on(t,r){if(t==="preview-message"){let s=r;r=(i=>{M(i)&&s(i)})}let{listener:n,subscribe:o}=Ce(r);return o(this._instance.on(t,d.proxy(n)))}mount(t,r){let n=t instanceof Uint8Array?t:t instanceof ArrayBuffer?new Uint8Array(t):ye.encode(JSON.stringify(N(t)));return this._instance.loadFiles(d.transfer(n,[n.buffer]),{mountPoints:r?.mountPoint})}setPreviewScript(t,r){return this._instance.setPreviewScript(t,r)}get path(){return this._runtimeInfo.path}get workdir(){return this._runtimeInfo.cwd}teardown(){if(this._tornDown)throw new Error("WebContainer already torn down");this._tornDown=!0,this._unsubscribeFromTokenChangedListener();let t=async()=>{try{await this.fs._teardown(),await this._instance.teardown()}finally{this._instance[d.releaseProxy](),e._instance===this&&(e._instance=null)}};e._teardownPromise=t()}static async boot(t={}){await this._teardownPromise,e._teardownPromise=null;let{workdirName:r}=t;if(window.crossOriginIsolated&&t.coep==="none"&&console.warn(`A Cross-Origin-Embedder-Policy header is required in cross origin isolated environments.
|
|
2
|
-
Set the 'coep' option to 'require-corp'.`),r?.includes("/")||r===".."||r===".")throw new Error("workdirName should be a valid folder name");for(h.bootCalled=!0;S;)await S;if(e._instance)throw new Error("Only a single WebContainer instance can be booted");let n=ke(t);S=n.catch(()=>{});try{let o=await n;return e._instance=o,o}finally{S=null}}};var Ee=1,be=2,j=class{name;_type;constructor(t,r){this.name=t,this._type=r}isFile(){return this._type===Ee}isDirectory(){return this._type===be}},z=class{_apiClient;_path;_options;_listener;_wrappedListener;_watcher;_closed=!1;constructor(t,r,n,o){this._apiClient=t,this._path=r,this._options=n,this._listener=o,this._apiClient._watchers.add(this),this._wrappedListener=(s,i)=>{this._listener&&!this._closed&&this._listener(s,i)},this._apiClient._fs.watch(this._path,this._options,P(this._wrappedListener)).then(s=>{if(this._watcher=s,this._closed)return this._teardown()}).catch(console.error)}async close(){this._closed||(this._closed=!0,this._apiClient._watchers.delete(this),await this._teardown())}async _teardown(){await this._watcher?.close().finally(()=>{this._watcher?.[d.releaseProxy]()})}},H=class{output;input;exit;_process;stdout;stderr;constructor(t,r,n,o){this.output=r,this._process=t,this.input=new WritableStream({write:s=>{this._getProcess()?.write(s).catch(()=>{})}}),this.exit=this._onExit(),this.stdout=n,this.stderr=o}kill(){this._process?.kill()}resize(t){this._getProcess()?.resize(t)}async _onExit(){try{return await this._process.onExit}finally{this._process?.[d.releaseProxy](),this._process=null}}_getProcess(){return this._process==null&&console.warn("This process already exited"),this._process}},V=class{_fs;_watchers=new Set([]);constructor(t){this._fs=t}rm(...t){return this._fs.rm(...t)}async readFile(t,r){return await this._fs.readFile(t,r)}async rename(t,r){return await this._fs.rename(t,r)}async writeFile(t,r,n){if(r instanceof Uint8Array){let o=r.buffer.slice(r.byteOffset,r.byteOffset+r.byteLength);r=d.transfer(new Uint8Array(o),[o])}await this._fs.writeFile(t,r,n)}async readdir(t,r){let n=await this._fs.readdir(t,r);return Re(n)||Pe(n)?n:n.map(s=>new j(s.name,s["Symbol(type)"]))}async mkdir(t,r){return await this._fs.mkdir(t,r)}watch(t,r,n){return typeof r=="function"&&(n=r,r=null),new z(this,t,r,n)}async _teardown(){this._fs[d.releaseProxy](),await Promise.all([...this._watchers].map(t=>t.close()))}};async function ke(e){let{serverPromise:t}=Se(e),n=await(await t).build({host:window.location.host,version:"1.6.4",workdirName:e.workdirName,forwardPreviewErrors:e.forwardPreviewErrors}),[o,s,i]=await Promise.all([n.fs(),n.previewScript(),n.runtimeInfo()]);return new x(n,o,s,i)}function F(e){if(e!=null)return t=>{t instanceof Uint8Array?e(ne.decode(t)):t==null&&e(null)}}function P(e){if(e!=null)return d.proxy(e)}function Se(e){if(R!=null)return e.coep!==D.coep&&(console.warn(`Attempting to boot WebContainer with 'coep: ${e.coep}'`),console.warn(`First boot had 'coep: ${D.coep}', new settings will not take effect!`)),{serverPromise:R};e.coep&&y.setQueryParam("coep",e.coep),e.experimentalNode&&y.setQueryParam("experimental_node","1");let t=document.createElement("iframe");t.style.display="none",t.setAttribute("allow","cross-origin-isolated");let r=y.url;t.src=r.toString();let{origin:n}=r;return D={...e},R=new Promise(o=>{let s=i=>{if(i.origin!==n)return;let{data:a}=i;if(a.type==="init"){o(d.wrap(i.ports[0]));return}if(a.type==="warning"){console[a.level].call(console,a.message);return}};window.addEventListener("message",s)}),document.body.insertBefore(t,null),{serverPromise:R}}function Re(e){return typeof e[0]=="string"}function Pe(e){return e[0]instanceof Uint8Array}function xe(){let e=null;return{stream:new ReadableStream({start(n){e=n}}),push:n=>{n!=null?e?.enqueue(n):(e?.close(),e=null)}}}function Ce(e){let t=!1,r=()=>{};return{subscribe(o){return o.then(s=>{r=s,t&&r()}),()=>{t=!0,r()}},listener:((...o)=>{t||e(...o)})}}export{x as WebContainer};
|