Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/wa.picotech.app/public_html/node_modules/@wasm-audio-decoders/common/src/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import NodeWorker from "@eshaz/web-worker";
import WASMAudioDecoderCommon from "./WASMAudioDecoderCommon.js";
const getWorker = () => globalThis.Worker || NodeWorker;
export default class WASMAudioDecoderWorker extends getWorker() {
constructor(options, name, Decoder, EmscriptenWASM) {
if (!WASMAudioDecoderCommon.modules) new WASMAudioDecoderCommon();
let source = WASMAudioDecoderCommon.modules.get(Decoder);
if (!source) {
let type = "text/javascript",
isNode,
webworkerSourceCode =
"'use strict';" +
// dependencies need to be manually resolved when stringifying this function
`(${((_Decoder, _WASMAudioDecoderCommon, _EmscriptenWASM) => {
// We're in a Web Worker
// setup Promise that will be resolved once the WebAssembly Module is received
let decoder,
moduleResolve,
modulePromise = new Promise((resolve) => {
moduleResolve = resolve;
});
self.onmessage = ({ data: { id, command, data } }) => {
let messagePromise = modulePromise,
messagePayload = { id },
transferList;
if (command === "init") {
Object.defineProperties(_Decoder, {
WASMAudioDecoderCommon: { value: _WASMAudioDecoderCommon },
EmscriptenWASM: { value: _EmscriptenWASM },
module: { value: data.module },
isWebWorker: { value: true },
});
decoder = new _Decoder(data.options);
moduleResolve();
} else if (command === "free") {
decoder.free();
} else if (command === "ready") {
messagePromise = messagePromise.then(() => decoder.ready);
} else if (command === "reset") {
messagePromise = messagePromise.then(() => decoder.reset());
} else {
// "decode":
// "decodeFrame":
// "decodeFrames":
Object.assign(
messagePayload,
decoder[command](
// detach buffers
Array.isArray(data)
? data.map((data) => new Uint8Array(data))
: new Uint8Array(data)
)
);
// The "transferList" parameter transfers ownership of channel data to main thread,
// which avoids copying memory.
transferList = messagePayload.channelData
? messagePayload.channelData.map((channel) => channel.buffer)
: [];
}
messagePromise.then(() =>
self.postMessage(messagePayload, transferList)
);
};
}).toString()})(${Decoder}, ${WASMAudioDecoderCommon}, ${EmscriptenWASM})`;
try {
isNode = typeof process.versions.node !== "undefined";
} catch {}
source = isNode
? `data:${type};base64,${Buffer.from(webworkerSourceCode).toString(
"base64"
)}`
: URL.createObjectURL(new Blob([webworkerSourceCode], { type }));
WASMAudioDecoderCommon.modules.set(Decoder, source);
}
super(source, { name });
this._id = Number.MIN_SAFE_INTEGER;
this._enqueuedOperations = new Map();
this.onmessage = ({ data }) => {
const { id, ...rest } = data;
this._enqueuedOperations.get(id)(rest);
this._enqueuedOperations.delete(id);
};
new EmscriptenWASM(WASMAudioDecoderCommon).getModule().then((module) => {
this.postToDecoder("init", { module, options });
});
}
async postToDecoder(command, data) {
return new Promise((resolve) => {
this.postMessage({
command,
id: this._id,
data,
});
this._enqueuedOperations.set(this._id++, resolve);
});
}
get ready() {
return this.postToDecoder("ready");
}
async free() {
await this.postToDecoder("free").finally(() => {
this.terminate();
});
}
async reset() {
await this.postToDecoder("reset");
}
}
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]-- |