mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-11 02:58:49 +00:00
feat(web/wasm): start work on wasm2js, found bugs in the code, stopping to go to bed
Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { u } from "../../lib/xeact";
|
||||
import { simd } from "wasm-feature-detect";
|
||||
// import { compile } from '@haribala/wasm2js';
|
||||
|
||||
type ProgressCallback = (nonce: number) => void;
|
||||
type ProgressCallback = (nonce: number | string) => void;
|
||||
|
||||
interface ProcessOptions {
|
||||
basePrefix: string;
|
||||
@@ -12,6 +13,102 @@ interface ProcessOptions {
|
||||
const getHardwareConcurrency = () =>
|
||||
navigator.hardwareConcurrency !== undefined ? navigator.hardwareConcurrency : 1;
|
||||
|
||||
// // https://stackoverflow.com/questions/47879864/how-can-i-check-if-a-browser-supports-webassembly
|
||||
// const isWASMSupported = (() => {
|
||||
// try {
|
||||
// if (typeof WebAssembly === "object"
|
||||
// && typeof WebAssembly.instantiate === "function") {
|
||||
// const module = new WebAssembly.Module(Uint8Array.of(0x0, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00));
|
||||
// if (module instanceof WebAssembly.Module)
|
||||
// return new WebAssembly.Instance(module) instanceof WebAssembly.Instance;
|
||||
// }
|
||||
// } catch (e) {
|
||||
// return false;
|
||||
// }
|
||||
// return false;
|
||||
// })();
|
||||
|
||||
// const fetchWASMBinary = async (url: string): Promise<Uint8Array> => {
|
||||
// const res = await fetch(url);
|
||||
// if (!res.ok) throw new Error('failed to fetch the wasm binary');
|
||||
// const wasmBytes = new Uint8Array(await res.arrayBuffer());
|
||||
// return wasmBytes;
|
||||
// };
|
||||
|
||||
// const runPureJS = (
|
||||
// options: ProcessOptions,
|
||||
// data: string,
|
||||
// difficulty: number = 5,
|
||||
// signal: AbortSignal | null = null,
|
||||
// progressCallback?: ProgressCallback,
|
||||
// threads: number = Math.trunc(Math.max(getHardwareConcurrency() / 2, 1)),
|
||||
// ): Promise<string> => {
|
||||
// const { basePrefix, version, algorithm } = options;
|
||||
|
||||
// return new Promise(async (resolve, reject) => {
|
||||
// const module = await fetchWASMBinary(u(`${basePrefix}/.within.website/x/cmd/anubis/static/wasm/baseline/${algorithm}.wasm?cacheBuster=${version}`));
|
||||
// const jsCode = compile(module, true);
|
||||
// progressCallback != undefined && progressCallback("Using pure JS mode, this will be slow");
|
||||
|
||||
// console.log(jsCode);
|
||||
|
||||
// const webWorkerURL = `${options.basePrefix}/.within.website/x/cmd/anubis/static/js/worker/wasm.mjs?cacheBuster=${version}`;
|
||||
|
||||
// const workers: Worker[] = [];
|
||||
// let settled = false;
|
||||
|
||||
// const onAbort = () => {
|
||||
// console.log("PoW aborted");
|
||||
// cleanup();
|
||||
// reject(new DOMException("Aborted", "AbortError"));
|
||||
// };
|
||||
|
||||
// const cleanup = () => {
|
||||
// if (settled) {
|
||||
// return;
|
||||
// }
|
||||
// settled = true;
|
||||
// workers.forEach((w) => w.terminate());
|
||||
// if (signal != null) {
|
||||
// signal.removeEventListener("abort", onAbort);
|
||||
// }
|
||||
// };
|
||||
|
||||
// if (signal != null) {
|
||||
// if (signal.aborted) {
|
||||
// return onAbort();
|
||||
// }
|
||||
// signal.addEventListener("abort", onAbort, { once: true });
|
||||
// }
|
||||
|
||||
// for (let i = 0; i < threads; i++) {
|
||||
// let worker = new Worker(webWorkerURL);
|
||||
|
||||
// worker.onmessage = (event) => {
|
||||
// if (typeof event.data === "number") {
|
||||
// progressCallback?.(event.data);
|
||||
// } else {
|
||||
// cleanup();
|
||||
// resolve(event.data);
|
||||
// }
|
||||
// }
|
||||
|
||||
// worker.onerror = (event) => {
|
||||
// cleanup();
|
||||
// reject(event);
|
||||
// }
|
||||
|
||||
// worker.postMessage({
|
||||
// data,
|
||||
// difficulty,
|
||||
// nonce: i,
|
||||
// threads,
|
||||
// jsCode,
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
|
||||
export default function process(
|
||||
options: ProcessOptions,
|
||||
data: string,
|
||||
@@ -20,9 +117,19 @@ export default function process(
|
||||
progressCallback?: ProgressCallback,
|
||||
threads: number = Math.trunc(Math.max(getHardwareConcurrency() / 2, 1)),
|
||||
): Promise<string> {
|
||||
console.debug(options);
|
||||
const { basePrefix, version, algorithm } = options;
|
||||
|
||||
// if (!isWASMSupported) {
|
||||
// return runPureJS(
|
||||
// options,
|
||||
// data,
|
||||
// difficulty,
|
||||
// signal,
|
||||
// progressCallback,
|
||||
// threads,
|
||||
// )
|
||||
// }
|
||||
|
||||
return new Promise(async (resolve, reject) => {
|
||||
let wasmFeatures = "baseline";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user