// ==UserScript== // @name E HENTAI VIEW ENHANCE // @name:zh-CN E绅士阅读强化 // @namespace https://github.com/MapoMagpie/eh-view-enhance // @version 4.4.6 // @author MapoMagpie // @description Manga Viewer + Downloader, Focus on experience and low load on the site. Support: e-hentai.org | exhentai.org | pixiv.net | 18comic.vip | nhentai.net | hitomi.la | rule34.xxx | danbooru.donmai.us // @description:zh-CN 漫画阅读 + 下载器,注重体验和对站点的负载控制。支持:e-hentai.org | exhentai.org | pixiv.net | 18comic.vip | nhentai.net | hitomi.la | rule34.xxx | danbooru.donmai.us // @license MIT // @icon https://exhentai.org/favicon.ico // @supportURL https://github.com/MapoMagpie/eh-view-enhance/issues // @downloadURL https://github.com/MapoMagpie/eh-view-enhance/raw/master/eh-view-enhance.user.js // @updateURL https://github.com/MapoMagpie/eh-view-enhance/raw/master/eh-view-enhance.meta.js // @match https://exhentai.org/* // @match https://e-hentai.org/* // @match http://exhentai55ld2wyap5juskbm67czulomrouspdacjamjeloj7ugjbsad.onion/* // @match https://nhentai.net/* // @match https://steamcommunity.com/id/*/screenshots* // @match https://hitomi.la/* // @match https://www.pixiv.net/* // @match https://yande.re/* // @match https://rokuhentai.com/* // @match https://18comic.org/* // @match https://18comic.vip/* // @match https://rule34.xxx/* // @match https://imhentai.xxx/* // @match https://danbooru.donmai.us/* // @require https://cdn.jsdelivr.net/npm/jszip@3.1.5/dist/jszip.min.js // @require https://cdn.jsdelivr.net/npm/file-saver@2.0.5/dist/FileSaver.min.js // @require https://cdn.jsdelivr.net/npm/hammerjs@2.0.8/hammer.min.js // @connect exhentai.org // @connect e-hentai.org // @connect hath.network // @connect exhentai55ld2wyap5juskbm67czulomrouspdacjamjeloj7ugjbsad.onion // @connect nhentai.net // @connect hitomi.la // @connect akamaihd.net // @connect i.pximg.net // @connect ehgt.org // @connect yande.re // @connect 18comic.org // @connect 18comic.vip // @connect rule34.xxx // @connect imhentai.xxx // @connect donmai.us // @grant GM_getValue // @grant GM_setValue // @grant GM_xmlhttpRequest // ==/UserScript== (function (fileSaver, JSZip, Hammer) { 'use strict'; var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null; // src/native/alias.ts var _GM_getValue = /* @__PURE__ */ (() => typeof GM_getValue != "undefined" ? GM_getValue : void 0)(); var _GM_setValue = /* @__PURE__ */ (() => typeof GM_setValue != "undefined" ? GM_setValue : void 0)(); var _GM_xmlhttpRequest = /* @__PURE__ */ (() => typeof GM_xmlhttpRequest != "undefined" ? GM_xmlhttpRequest : void 0)(); function defaultConf() { const screenWidth = window.screen.width; const colCount = screenWidth > 2500 ? 7 : screenWidth > 1900 ? 6 : 5; return { backgroundImage: `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAfElEQVR42mP8z/CfCgIwDEgwAIAL0Fq3MDD5iQcn0/BgDpDAn0/AvywA4kUEZ7gUkXBoAM5gUQUaJ6eClOyBjALcAAAAASUVORK5CYII=`, colCount, readMode: "singlePage", autoLoad: true, fetchOriginal: false, restartIdleLoader: 2e3, threads: 3, downloadThreads: 4, timeout: 10, version: VERSION, debug: true, first: true, reversePages: false, pageHelperAbTop: "unset", pageHelperAbLeft: "20px", pageHelperAbBottom: "20px", pageHelperAbRight: "unset", imgScale: 0, stickyMouse: "disable", autoPageInterval: 5e3, autoPlay: false, filenameTemplate: "{number}-{title}", preventScrollPageTime: 100, archiveVolumeSize: 1200, convertTo: "GIF", autoCollapsePanel: true, minifyPageHelper: "inBigMode", keyboards: { inBigImageMode: {}, inFullViewGrid: {}, inMain: {} }, excludeURLs: [], muted: false, volume: 50, disableCssAnimation: true, mcInSites: ["18comic"] // keepSmallThumbnail: true, }; } const VERSION = "4.4.0"; const CONFIG_KEY = "ehvh_cfg_"; function getStorageMethod() { if (typeof _GM_getValue === "function" && typeof _GM_setValue === "function") { return { setItem: (key, value) => _GM_setValue(key, value), getItem: (key) => _GM_getValue(key) }; } else if (typeof localStorage !== "undefined") { return { setItem: (key, value) => localStorage.setItem(key, value), getItem: (key) => localStorage.getItem(key) }; } else { throw new Error("No supported storage method found"); } } const storage = getStorageMethod(); function getConf() { let cfgStr = storage.getItem(CONFIG_KEY); if (cfgStr) { let cfg2 = JSON.parse(cfgStr); if (cfg2.version === VERSION) { return confHealthCheck(cfg2); } } let cfg = defaultConf(); saveConf(cfg); return cfg; } function confHealthCheck(cf) { let changed = false; const defa = defaultConf(); const keys = Object.keys(defa); keys.forEach((key) => { if (cf[key] === void 0) { cf[key] = defa[key]; changed = true; } }); ["pageHelperAbTop", "pageHelperAbLeft", "pageHelperAbBottom", "pageHelperAbRight"].forEach((key) => { if (cf[key] !== "unset") { let pos = parseInt(cf[key]); const screenLimit = key.endsWith("Right") || key.endsWith("Left") ? window.screen.width : window.screen.height; if (isNaN(pos) || pos < 5 || pos > screenLimit) { cf[key] = "5px"; changed = true; } } }); if (changed) { saveConf(cf); } return cf; } function saveConf(c) { storage.setItem(CONFIG_KEY, JSON.stringify(c)); } const ConfigNumberKeys = ["colCount", "threads", "downloadThreads", "timeout", "autoPageInterval", "preventScrollPageTime"]; const ConfigBooleanKeys = [ "fetchOriginal", "autoLoad", "reversePages", "autoPlay", "autoCollapsePanel", "disableCssAnimation" /*"keepSmallThumbnail" */ ]; const ConfigSelectKeys = ["readMode", "stickyMouse", "minifyPageHelper"]; const conf = getConf(); function evLog(level, msg, ...info) { if (level === "debug" && !conf.debug) return; if (level === "error") { console.warn((/* @__PURE__ */ new Date()).toLocaleString(), "EHVP:" + msg, ...info); } else { console.info((/* @__PURE__ */ new Date()).toLocaleString(), "EHVP:" + msg, ...info); } } class EventManager { events; constructor() { this.events = /* @__PURE__ */ new Map(); } emit(id, ...args) { if (!["imf-download-state-change"].includes(id)) { evLog("debug", "event bus emitted: ", id); } const cbs = this.events.get(id); if (cbs) { cbs.forEach((cb) => cb(...args)); } } subscribe(id, cb) { evLog("info", "event bus subscribed: ", id); const cbs = this.events.get(id); if (cbs) { cbs.push(cb); } else { this.events.set(id, [cb]); } } } const EBUS = new EventManager(); class Debouncer { tids; mode; lastExecTime; constructor(mode) { this.tids = {}; this.lastExecTime = Date.now(); this.mode = mode || "debounce"; } addEvent(id, event, timeout) { if (this.mode === "throttle") { const now = Date.now(); if (now - this.lastExecTime >= timeout) { this.lastExecTime = now; event(); } } else if (this.mode === "debounce") { window.clearTimeout(this.tids[id]); this.tids[id] = window.setTimeout(event, timeout); } } } const HOST_REGEX = /\/\/([^\/]*)\//; function xhrWapper(url, respType, cb, timeout) { return _GM_xmlhttpRequest({ method: "GET", url, timeout: timeout || 0, responseType: respType, nocache: false, revalidate: false, // fetch: false, headers: { "Host": HOST_REGEX.exec(url)?.[1] || window.location.host, // "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:106.0) Gecko/20100101 Firefox/106.0", "Accept": "image/avif,image/webp,*/*", // "Accept-Language": "en-US,en;q=0.5", // "Accept-Encoding": "gzip, deflate, br", // "Connection": "keep-alive", "Referer": window.location.href, // "Sec-Fetch-Dest": "image", // "Sec-Fetch-Mode": "no-cors", // "Sec-Fetch-Site": "cross-site", "Cache-Control": "public, max-age=2592000, immutable" }, ...cb }).abort; } function fetchImage(url) { return new Promise((resolve, reject) => { xhrWapper(url, "blob", { onload: (response) => resolve(response.response), onerror: (error) => reject(error) }, 10 * 1e3); }); } var FetchState = /* @__PURE__ */ ((FetchState2) => { FetchState2[FetchState2["FAILED"] = 0] = "FAILED"; FetchState2[FetchState2["URL"] = 1] = "URL"; FetchState2[FetchState2["DATA"] = 2] = "DATA"; FetchState2[FetchState2["DONE"] = 3] = "DONE"; return FetchState2; })(FetchState || {}); class IMGFetcher { node; originURL; stage = 1 /* URL */; tryTimes = 0; lock = false; /// 0: not rendered, 1: rendered tumbinal, 2: rendered big image rendered = 0; data; contentType; blobUrl; downloadState; downloadBar; timeoutId; matcher; chapterIndex; constructor(root, matcher, chapterIndex) { this.node = root; this.node.onclick = () => EBUS.emit("imf-on-click", this); this.downloadState = { total: 100, loaded: 0, readyState: 0 }; this.matcher = matcher; this.chapterIndex = chapterIndex; } create() { return this.node.create(); } // 刷新下载状态 setDownloadState(newState) { this.downloadState = { ...this.downloadState, ...newState }; this.node.progress(this.downloadState); EBUS.emit("imf-download-state-change"); } async start(index) { if (this.lock) return; this.lock = true; try { this.node.changeStyle("fetching"); await this.fetchImage(); this.node.changeStyle("fetched"); EBUS.emit("imf-on-finished", index, true, this); } catch (error) { this.node.changeStyle("failed"); evLog("error", `IMG-FETCHER ERROR:`, error); this.stage = 0 /* FAILED */; EBUS.emit("imf-on-finished", index, false, this); } finally { this.lock = false; } } retry() { if (this.stage !== 3 /* DONE */) { this.node.changeStyle(); this.stage = 1 /* URL */; } } async fetchImage() { this.tryTimes = 0; while (this.tryTimes < 3) { switch (this.stage) { case 0 /* FAILED */: case 1 /* URL */: let meta = await this.fetchOriginMeta(); if (meta !== null) { this.originURL = meta.url; if (meta.title) { this.node.title = meta.title; if (this.node.imgElement) { this.node.imgElement.title = meta.title; } } this.stage = 2 /* DATA */; } else { this.tryTimes++; } break; case 2 /* DATA */: const ret = await this.fetchImageData(); if (ret !== null) { [this.data, this.contentType] = ret; [this.data, this.contentType] = await this.matcher.processData(this.data, this.contentType, this.originURL); this.blobUrl = URL.createObjectURL(new Blob([this.data], { type: this.contentType })); this.node.onloaded(this.blobUrl, this.contentType); if (this.rendered === 2) { this.node.render(); } this.stage = 3 /* DONE */; } else { this.stage = 1 /* URL */; this.tryTimes++; } break; case 3 /* DONE */: return; } } throw new Error(`Fetch image failed, reach max try times, current stage: ${this.stage}`); } async fetchOriginMeta() { try { const meta = await this.matcher.fetchOriginMeta(this.node.href, this.tryTimes > 0, this.chapterIndex); if (!meta) { evLog("error", "Fetch URL failed, the URL is empty"); return null; } return meta; } catch (error) { evLog("error", `Fetch URL error:`, error); return null; } } async fetchImageData() { try { const data = await this.fetchBigImage(); if (data == null) { throw new Error(`Data is null, image url:${this.originURL}`); } return data.arrayBuffer().then((buffer) => [new Uint8Array(buffer), data.type]); } catch (error) { evLog("error", `Fetch image data error:`, error); return null; } } render() { switch (this.rendered) { case 0: case 1: this.node.render(); this.rendered = 2; if (this.stage === 3 /* DONE */) this.node.changeStyle("fetched"); break; } } unrender() { if (this.rendered === 1 || this.rendered === 0) return; this.rendered = 1; this.node.unrender(); } async fetchBigImage() { if (this.originURL?.startsWith("blob:")) { return await fetch(this.originURL).then((resp) => resp.blob()); } const imgFetcher = this; return new Promise(async (resolve, reject) => { const debouncer = new Debouncer(); let abort; const timeout = () => { debouncer.addEvent("XHR_TIMEOUT", () => { reject("timeout"); abort(); }, conf.timeout * 1e3); }; abort = xhrWapper(imgFetcher.originURL, "blob", { onload: function(response) { let data = response.response; if (data.type === "text/html") { console.error("warn: fetch big image data type is not blob: ", data); } try { imgFetcher.setDownloadState({ readyState: response.readyState }); } catch (error) { evLog("error", "warn: fetch big image data onload setDownloadState error:", error); } resolve(data); }, onerror: function(response) { reject(`error:${response.error}, response:${response.response}`); }, onprogress: function(response) { imgFetcher.setDownloadState({ total: response.total, loaded: response.loaded, readyState: response.readyState }); timeout(); }, onloadstart: function() { imgFetcher.setDownloadState(imgFetcher.downloadState); } }); timeout(); }); } } const lang = navigator.language; const i18nIndex = lang.startsWith("zh") ? 1 : 0; class I18nValue extends Array { constructor(...value) { super(...value); } get() { return this[i18nIndex]; } } const keyboardCustom = { inMain: { "open-full-view-grid": new I18nValue("Enter Read Mode", "进入阅读模式") }, inBigImageMode: { "step-image-prev": new I18nValue("Go Prev Image", "切换到上一张图片"), "step-image-next": new I18nValue("Go Next Image", "切换到下一张图片"), "exit-big-image-mode": new I18nValue("Exit Big Image Mode", "退出大图模式"), "step-to-first-image": new I18nValue("Go First Image", "跳转到第一张图片"), "step-to-last-image": new I18nValue("Go Last Image", "跳转到最后一张图片"), "scale-image-increase": new I18nValue("Increase Image Scale", "放大图片"), "scale-image-decrease": new I18nValue("Decrease Image Scale", "缩小图片"), "scroll-image-up": new I18nValue("Scroll Image Up (Please Keep Default Keys)", "向上滚动图片 (请保留默认按键)"), "scroll-image-down": new I18nValue("Scroll Image Down (Please Keep Default Keys)", "向下滚动图片 (请保留默认按键)") }, inFullViewGrid: { "open-big-image-mode": new I18nValue("Enter Big Image Mode", "进入大图阅读模式"), "pause-auto-load-temporarily": new I18nValue("Pause Auto Load Temporarily", "临时停止自动加载"), "exit-full-view-grid": new I18nValue("Exit Read Mode", "退出阅读模式"), "columns-increase": new I18nValue("Increase Columns ", "增加每行数量"), "columns-decrease": new I18nValue("Decrease Columns ", "减少每行数量"), "back-chapters-selection": new I18nValue("Back to Chapters Selection", "返回章节选择") } }; const i18n = { imageScale: new I18nValue("SCALE", "缩放"), download: new I18nValue("DL", "下载"), config: new I18nValue("CONF", "配置"), backChapters: new I18nValue("Chapters", "章节"), autoPagePlay: new I18nValue("PLAY", "播放"), autoPagePause: new I18nValue("PAUSE", "暂停"), autoPlay: new I18nValue("Auto Page", "自动翻页"), autoPlayTooltip: new I18nValue("Auto Page when entering the big image readmode.", "当阅读大图时,开启自动播放模式。"), preventScrollPageTime: new I18nValue("Flip Page Time", "滚动翻页时间"), preventScrollPageTimeTooltip: new I18nValue("In Read Mode:Single Page, when scrolling through the content, prevent immediate page flipping when reaching the bottom, improve the reading experience. Set to 0 to disable this feature, measured in milliseconds.", "在单页阅读模式下,滚动浏览时,阻止滚动到底部时立即翻页,提升阅读体验。设置为0时则为禁用此功能,单位为毫秒。"), collapse: new I18nValue("FOLD", "收起"), columns: new I18nValue("Columns", "每行数量"), readMode: new I18nValue("Read Mode", "阅读模式"), autoPageInterval: new I18nValue("Auto Page Interval", "自动翻页间隔"), autoPageIntervalTooltip: new I18nValue("Use the mouse wheel on Input box to adjust the interval time.", "在输入框上使用鼠标滚轮快速修改间隔时间"), readModeTooltip: new I18nValue("Switch to the next picture when scrolling, otherwise read continuously", "滚动时切换到下一张图片,否则连续阅读"), maxPreloadThreads: new I18nValue("PreloadThreads", "最大同时加载"), maxPreloadThreadsTooltip: new I18nValue("Max Preload Threads", "大图浏览时,每次滚动到下一张时,预加载的图片数量,大于1时体现为越看加载的图片越多,将提升浏览体验。"), maxDownloadThreads: new I18nValue("DownloadThreads", "最大同时下载"), maxDownloadThreadsTooltip: new I18nValue("Max Download Threads, suggest: <5", "下载模式下,同时加载的图片数量,建议小于等于5"), timeout: new I18nValue("Timeout(second)", "超时时间(秒)"), bestQuality: new I18nValue("Raw Image", "最佳质量"), autoLoad: new I18nValue("Auto Load", "自动加载"), autoLoadTooltip: new I18nValue("", "进入本脚本的浏览模式后,即使不浏览也会一张接一张的加载图片。直至所有图片加载完毕。"), bestQualityTooltip: new I18nValue("enable will download the original source, cost more traffic and quotas", "启用后,将加载未经过压缩的原档文件,下载打包后的体积也与画廊所标体积一致。
注意:这将消耗更多的流量与配额,请酌情启用。"), forceDownload: new I18nValue("Take Loaded", "强制下载已加载的"), downloadStart: new I18nValue("Start Download", "开始下载"), downloading: new I18nValue("Downloading...", "下载中..."), downloadFailed: new I18nValue("Failed(Retry)", "下载失败(重试)"), downloaded: new I18nValue("Downloaded", "下载完成"), packaging: new I18nValue("Packaging...", "打包中..."), reversePages: new I18nValue("Reverse Pages", "反向翻页"), reversePagesTooltip: new I18nValue("Clicking on the side navigation, if enable then reverse paging, which is a reading style similar to Japanese manga where pages are read from right to left.", "点击侧边导航时,是否反向翻页,反向翻页类似日本漫画那样的从右到左的阅读方式。"), autoCollapsePanel: new I18nValue("Auto Fold Control Panel", "自动收起控制面板"), autoCollapsePanelTooltip: new I18nValue("When the mouse is moved out of the control panel, the control panel will automatically fold. If disabled, the display of the control panel can only be toggled through the button on the control bar.", "当鼠标移出控制面板时,自动收起控制面板。禁用此选项后,只能通过控制栏上的按钮切换控制面板的显示。"), disableCssAnimation: new I18nValue("Disable Animation", "禁用动画"), disableCssAnimationTooltip: new I18nValue("Valid after refreshing the page", "刷新页面后生效"), keepSmallThumbnail: new I18nValue("Small Thumbnail", "小缩略图"), keepSmallThumbnailTooltip: new I18nValue("Keep the thumbnails in the grid as small as possible to improve page performance. Only display clearer images when the mouse hovers over them.", "使网格中缩略图保持为小尺寸,用于提升页面性能。只有在鼠标悬停时才显示更加清晰的图片。"), stickyMouse: new I18nValue("Sticky Mouse", "黏糊糊鼠标"), stickyMouseTooltip: new I18nValue("In non-continuous reading mode, scroll a single image automatically by moving the mouse.", "非连续阅读模式下,通过鼠标移动来自动滚动单张图片。"), minifyPageHelper: new I18nValue("Minify Control Bar", "最小化控制栏"), minifyPageHelperTooltip: new I18nValue("Minify Control Bar", "最小化控制栏"), dragToMove: new I18nValue("Drag to Move", "拖动移动"), originalCheck: new I18nValue("Enable RawImage Transient", "未启用最佳质量图片,点击此处临时开启最佳质量"), showHelp: new I18nValue("Help", "帮助"), showKeyboard: new I18nValue("Keyboard", "快捷键"), showExcludes: new I18nValue("Excludes", "站点排除"), letUsStar: new I18nValue("Let's Star", "点星"), help: new I18nValue(`

GUIDE:

  1. If you are browsing E-Hentai, please click Here to switch to Lager thumbnail mode for clearer thumbnails. (need login e-hentai)
  2. Click ⋖📖⋗ from left-bottom corner, entry reading.
  3. Just a monment, all thumbnail will exhibited in grid, click one of thumbnails into big image mode.
  4. You can use the mouse middle-click on a thumbnail to open the href of the image in new tab.
  5. Image quality:For e-hentai,you can enable control-bar > CONF > Image Raw, which will directly download the uploaded original uncompressed images, but it will consume more quotas. Generally, the compressed files provided by E-Hentai are already clear enough.
  6. Big image:click thumbnail image, into big image mode, use mouse wheel switch to next or prev
  7. Keyboard:
    Scale Imagemouse right + wheel or -/=
    Open Image(In thumbnails)Enter
    Exit Image(In big mode)Enter/Esc
    Open Specific Page(In thumbnails)Input number(no echo) + Enter
    Switch Page→/←
    Scroll Image↑/↓/Space
    Toggle Auto Loadp
  8. Download:You can click on the download button in the download panel to quickly load all the images. You can still continue browsing the images. Downloading and viewing large images are integrated, and you can click on Download Loaded in the download panel to save the images at any time.
  9. Feedback: Click Issue to provide feedback on issues, Give me a star if you like this script. Star
`, `

操作说明:

  1. 如果你正在浏览E绅士,请点击此处切换到Lager缩略图模式,以获取更清晰的缩略图。
  2. 点击左下角 ⋖📖⋗ 展开,进入阅读模式。
  3. 稍等片刻后,缩略图会全屏陈列在页面上,点击某一缩略图进入大图浏览模式。
  4. 你可以在某个缩略图上使用鼠标中键来打开该图片所在的页面。
  5. 图片质量:图片质量: 对于E绅士,你可以在控制栏>配置,启用原图模式,这将直接下载上传原档未压缩的图片,但会消耗更多的配额。一般来说E绅士默认提供的压缩档已经足够清晰。
  6. 大图展示:点击缩略图,可以展开大图,在大图上滚动切换上一张下一张图片
  7. 键盘操作:
    图片缩放鼠标右键+滚轮 或 -/=
    打开大图(缩略图模式下)回车
    退出大图(大图模式下)回车/Esc
    打开指定图片(缩略图模式下)直接输入数字(不回显) + 回车
    切换图片→/←
    滚动图片↑/↓
    开关自动加载p
  8. 下载功能:你可以在下载面板中点击下载,这将快速加载所有的图片,你依旧可以继续浏览图片。下载与大图浏览是一体的,你随时可以在下载面板点击下载已加载的保存图片。
  9. 问题反馈: 点击 Issue 反馈你的问题或建议,如果你喜欢这个脚本,给我一个star吧。 Star
`), keyboardCustom }; class Crc32 { crc = -1; table = this.makeTable(); makeTable() { let i; let j; let t; let table = []; for (i = 0; i < 256; i++) { t = i; for (j = 0; j < 8; j++) { t = t & 1 ? t >>> 1 ^ 3988292384 : t >>> 1; } table[i] = t; } return table; } append(data) { let crc = this.crc | 0; let table = this.table; for (let offset = 0, len = data.length | 0; offset < len; offset++) { crc = crc >>> 8 ^ table[(crc ^ data[offset]) & 255]; } this.crc = crc; } get() { return ~this.crc; } } class ZipObject { level; nameBuf; comment; header; offset; directory; file; crc; compressedLength; uncompressedLength; volumeNo; constructor(file, volumeNo) { this.level = 0; const encoder = new TextEncoder(); this.nameBuf = encoder.encode(file.name.trim()); this.comment = encoder.encode(""); this.header = new DataHelper(26); this.offset = 0; this.directory = false; this.file = file; this.crc = new Crc32(); this.compressedLength = 0; this.uncompressedLength = 0; this.volumeNo = volumeNo; } } class DataHelper { array; view; constructor(byteLength) { let uint8 = new Uint8Array(byteLength); this.array = uint8; this.view = new DataView(uint8.buffer); } } class Zip { // default 1.5GB volumeSize = 1610612736; accumulatedSize = 0; volumes = 1; currVolumeNo = -1; files = []; currIndex = -1; offset = 0; offsetInVolume = 0; curr; date; writer; close = false; constructor(settings) { if (settings?.volumeSize) { this.volumeSize = settings.volumeSize; } this.date = new Date(Date.now()); this.writer = async () => { }; } setWriter(writer) { this.writer = writer; } add(file) { const fileSize = file.size(); this.accumulatedSize += fileSize; if (this.accumulatedSize > this.volumeSize) { this.volumes++; this.accumulatedSize = fileSize; } this.files.push(new ZipObject(file, this.volumes - 1)); } async next() { this.currIndex++; this.curr = this.files[this.currIndex]; if (this.curr) { if (this.curr.volumeNo > this.currVolumeNo) { this.currIndex--; this.offsetInVolume = 0; return true; } this.curr.offset = this.offsetInVolume; await this.writeHeader(); await this.writeContent(); await this.writeFooter(); this.offset += this.offsetInVolume - this.curr.offset; } else if (!this.close) { this.close = true; await this.closeZip(); } else { return true; } return false; } async writeHeader() { if (!this.curr) return; const curr = this.curr; let data = new DataHelper(30 + curr.nameBuf.length); let header = curr.header; if (curr.level !== 0 && !curr.directory) { header.view.setUint16(4, 2048); } header.view.setUint32(0, 335546376); header.view.setUint16(6, (this.date.getHours() << 6 | this.date.getMinutes()) << 5 | this.date.getSeconds() / 2, true); header.view.setUint16(8, (this.date.getFullYear() - 1980 << 4 | this.date.getMonth() + 1) << 5 | this.date.getDate(), true); header.view.setUint16(22, curr.nameBuf.length, true); data.view.setUint32(0, 1347093252); data.array.set(header.array, 4); data.array.set(curr.nameBuf, 30); this.offsetInVolume += data.array.length; await this.writer(data.array); } async writeContent() { const curr = this.curr; const reader = (await curr.file.stream()).getReader(); const writer = this.writer; async function pump() { const chunk = await reader.read(); if (chunk.done) { return; } const data = chunk.value; curr.crc.append(data); curr.uncompressedLength += data.length; curr.compressedLength += data.length; writer(data); return await pump(); } await pump(); } async writeFooter() { if (!this.curr) return; const curr = this.curr; var footer = new DataHelper(16); footer.view.setUint32(0, 1347094280); if (curr.crc) { curr.header.view.setUint32(10, curr.crc.get(), true); curr.header.view.setUint32(14, curr.compressedLength, true); curr.header.view.setUint32(18, curr.uncompressedLength, true); footer.view.setUint32(4, curr.crc.get(), true); footer.view.setUint32(8, curr.compressedLength, true); footer.view.setUint32(12, curr.uncompressedLength, true); } await this.writer(footer.array); this.offsetInVolume += curr.compressedLength + 16; if (curr.compressedLength !== curr.file.size()) { evLog("error", "WRAN: read length:", curr.compressedLength, " origin size:", curr.file.size(), ", title: ", curr.file.name); } } async closeZip() { const fileCount = this.files.length; let centralDirLength = 0; let idx = 0; for (idx = 0; idx < fileCount; idx++) { const file = this.files[idx]; centralDirLength += 46 + file.nameBuf.length + file.comment.length; } const data = new DataHelper(centralDirLength + 22); let dataOffset = 0; for (idx = 0; idx < fileCount; idx++) { const file = this.files[idx]; data.view.setUint32(dataOffset, 1347092738); data.view.setUint16(dataOffset + 4, 5120); data.array.set(file.header.array, dataOffset + 6); data.view.setUint16(dataOffset + 32, file.comment.length, true); data.view.setUint16(dataOffset + 34, file.volumeNo, true); data.view.setUint32(dataOffset + 42, file.offset, true); data.array.set(file.nameBuf, dataOffset + 46); data.array.set(file.comment, dataOffset + 46 + file.nameBuf.length); dataOffset += 46 + file.nameBuf.length + file.comment.length; } data.view.setUint32(dataOffset, 1347093766); data.view.setUint16(dataOffset + 4, this.currVolumeNo, true); data.view.setUint16(dataOffset + 6, this.currVolumeNo, true); data.view.setUint16(dataOffset + 8, fileCount, true); data.view.setUint16(dataOffset + 10, fileCount, true); data.view.setUint32(dataOffset + 12, centralDirLength, true); data.view.setUint32(dataOffset + 16, this.offsetInVolume, true); await this.writer(data.array); } nextReadableStream() { this.currVolumeNo++; if (this.currVolumeNo >= this.volumes) { return; } const zip = this; return new ReadableStream({ start(controller) { zip.setWriter(async (chunk) => controller.enqueue(chunk)); }, async pull(controller) { await zip.next().then((done) => done && controller.close()); } }); } } class DownloaderCanvas { canvas; mousemoveState; ctx; queue; rectSize; rectGap; columns; padding; scrollTop; scrollSize; debouncer; onClick; constructor(canvas, HTML, queue) { this.queue = queue; if (!canvas) { throw new Error("canvas not found"); } this.canvas = canvas; this.canvas.addEventListener( "wheel", (event) => this.onwheel(event.deltaY) ); this.mousemoveState = { x: 0, y: 0 }; this.canvas.addEventListener("mousemove", (event) => { this.mousemoveState = { x: event.offsetX, y: event.offsetY }; this.drawDebouce(); }); this.canvas.addEventListener("click", (event) => { this.mousemoveState = { x: event.offsetX, y: event.offsetY }; const index = this.computeDrawList()?.find( (state) => state.selected )?.index; if (index !== void 0) { EBUS.emit("downloader-canvas-on-click", index); } }); this.ctx = this.canvas.getContext("2d"); this.rectSize = 12; this.rectGap = 6; this.columns = 15; this.padding = 7; this.scrollTop = 0; this.scrollSize = 10; this.debouncer = new Debouncer(); HTML.downloaderPanel.addEventListener("transitionend", () => this.resize(HTML.downloadDashboard)); EBUS.subscribe("imf-download-state-change", () => this.drawDebouce()); } resize(parent) { this.canvas.width = Math.floor(parent.offsetWidth); this.canvas.height = Math.floor(parent.offsetHeight); this.columns = Math.ceil((this.canvas.width - this.padding * 2 - this.rectGap) / (this.rectSize + this.rectGap)); this.draw(); } onwheel(deltaY) { const [_, h] = this.getWH(); const clientHeight = this.computeClientHeight(); if (clientHeight > h) { deltaY = deltaY >> 1; this.scrollTop += deltaY; if (this.scrollTop < 0) this.scrollTop = 0; if (this.scrollTop + h > clientHeight + 20) this.scrollTop = clientHeight - h + 20; this.draw(); } } drawDebouce() { this.debouncer.addEvent("DOWNLOADER-DRAW", () => this.draw(), 20); } computeDrawList() { const list = []; const [_, h] = this.getWH(); const startX = this.computeStartX(); const startY = -this.scrollTop + this.padding; for (let i = 0, row = -1; i < this.queue.length; i++) { const currCol = i % this.columns; if (currCol == 0) { row++; } const atX = startX + (this.rectSize + this.rectGap) * currCol; const atY = startY + (this.rectSize + this.rectGap) * row; if (atY + this.rectSize < 0) { continue; } if (atY > h) { break; } list.push({ index: i, x: atX, y: atY, selected: this.isSelected(atX, atY) }); } return list; } // this function should be called by drawDebouce draw() { const [w, h] = this.getWH(); this.ctx.clearRect(0, 0, w, h); const drawList = this.computeDrawList(); for (const node of drawList) { this.drawSmallRect( node.x, node.y, this.queue[node.index], node.index === this.queue.currIndex, node.selected ); } } computeClientHeight() { return Math.ceil(this.queue.length / this.columns) * (this.rectSize + this.rectGap) - this.rectGap; } scrollTo(index) { const clientHeight = this.computeClientHeight(); const [_, h] = this.getWH(); if (clientHeight <= h) { return; } const rowNo = Math.ceil((index + 1) / this.columns); const offsetY = (rowNo - 1) * (this.rectSize + this.rectGap); if (offsetY > h) { this.scrollTop = offsetY + this.rectSize - h; const maxScrollTop = clientHeight - h + 20; if (this.scrollTop + 20 <= maxScrollTop) { this.scrollTop += 20; } } } isSelected(atX, atY) { return this.mousemoveState.x - atX >= 0 && this.mousemoveState.x - atX <= this.rectSize && this.mousemoveState.y - atY >= 0 && this.mousemoveState.y - atY <= this.rectSize; } computeStartX() { const [w, _] = this.getWH(); const drawW = (this.rectSize + this.rectGap) * this.columns - this.rectGap; let startX = w - drawW >> 1; return startX; } drawSmallRect(x, y, imgFetcher, isCurr, isSelected) { switch (imgFetcher.stage) { case FetchState.FAILED: this.ctx.fillStyle = "rgba(250, 50, 20, 0.9)"; break; case FetchState.URL: this.ctx.fillStyle = "rgba(200, 200, 200, 0.1)"; break; case FetchState.DATA: const percent = imgFetcher.downloadState.loaded / imgFetcher.downloadState.total; this.ctx.fillStyle = `rgba(110, ${Math.ceil( percent * 200 )}, 120, ${Math.max(percent, 0.1)})`; break; case FetchState.DONE: this.ctx.fillStyle = "rgb(110, 200, 120)"; break; } this.ctx.fillRect(x, y, this.rectSize, this.rectSize); this.ctx.shadowColor = "#d53"; if (isSelected) { this.ctx.strokeStyle = "rgb(60, 20, 200)"; this.ctx.lineWidth = 2; } else if (isCurr) { this.ctx.strokeStyle = "rgb(255, 60, 20)"; this.ctx.lineWidth = 2; } else { this.ctx.strokeStyle = "rgb(90, 90, 90)"; this.ctx.lineWidth = 1; } this.ctx.strokeRect(x, y, this.rectSize, this.rectSize); } getWH() { return [this.canvas.width, this.canvas.height]; } } const FILENAME_INVALIDCHAR = /[\\/:*?"<>|\n]/g; class Downloader { meta; title; downloading; buttonForce; buttonStart; elementNotice; downloaderPanelBTN; queue; idleLoader; pageFetcher; done = false; selectedChapters = []; filenames = /* @__PURE__ */ new Set(); canvas; dashboardTab; chapterTab; elementDashboard; elementChapters; constructor(HTML, queue, idleLoader, pageFetcher, matcher) { this.queue = queue; this.idleLoader = idleLoader; this.pageFetcher = pageFetcher; this.meta = (ch) => matcher.galleryMeta(document, ch); this.title = () => matcher.title(document); this.downloading = false; this.buttonForce = HTML.downloadBTNForce; this.buttonStart = HTML.downloadBTNStart; this.elementNotice = HTML.downloadNotice; this.downloaderPanelBTN = HTML.downloaderPanelBTN; this.buttonForce.addEventListener("click", () => this.download(this.pageFetcher.chapters)); this.buttonStart.addEventListener("click", () => { if (this.downloading) { this.abort("downloadStart"); } else { this.start(); } }); this.queue.downloading = () => this.downloading; this.dashboardTab = HTML.downloadTabDashboard; this.chapterTab = HTML.downloadTabChapters; this.elementDashboard = HTML.downloadDashboard; this.elementChapters = HTML.downloadChapters; this.canvas = new DownloaderCanvas(HTML.downloaderCanvas, HTML, queue); EBUS.subscribe("ifq-on-finished-report", (_, queue2) => { if (queue2.isFinised()) { const sel = this.selectedChapters.find((sel2) => sel2.index === queue2.chapterIndex); if (sel) { sel.done = true; sel.resolve(true); } if (!this.downloading && !this.done && !this.downloaderPanelBTN.classList.contains("lightgreen")) { this.downloaderPanelBTN.classList.add("lightgreen"); if (!/✓/.test(this.downloaderPanelBTN.textContent)) { this.downloaderPanelBTN.textContent += "✓"; } } } }); this.initTabs(); } initTabs() { const tabs = [{ ele: this.dashboardTab, cb: () => { this.elementDashboard.hidden = false; this.elementChapters.hidden = true; this.canvas.resize(this.elementDashboard); } }, { ele: this.chapterTab, cb: () => { this.elementDashboard.hidden = true; this.elementChapters.hidden = false; } }]; tabs.forEach(({ ele, cb }, i) => { ele.addEventListener("click", () => { ele.classList.add("ehvp-p-tab-selected"); tabs.filter((_, j) => j != i).forEach((t) => t.ele.classList.remove("ehvp-p-tab-selected")); cb(); }); }); } needNumberTitle(queue) { let lastTitle = ""; for (const fetcher of queue) { if (fetcher.node.title < lastTitle) { return true; } lastTitle = fetcher.node.title; } return false; } checkDuplicateTitle(index, title) { let newTitle = title; if (this.filenames.has(newTitle)) { let splits = newTitle.split("."); const ext = splits.pop(); const prefix = splits.join("."); const num = parseInt(prefix.match(/_(\d+)$/)?.[1] || ""); if (isNaN(num)) { newTitle = `${prefix}_1.${ext}`; } else { newTitle = `${prefix.replace(/\d+$/, (num + 1).toString())}.${ext}`; } return this.checkDuplicateTitle(index, newTitle); } else { this.filenames.add(newTitle); return newTitle; } } createChapterSelectList() { const chapters = this.pageFetcher.chapters; const selectAll = chapters.length === 1; this.elementChapters.innerHTML = `
Select All Unselect All
${chapters.map((c, i) => `
`).join("")} `; [["#download-chapters-select-all", true], ["#download-chapters-unselect-all", false]].forEach( ([id, checked]) => this.elementChapters.querySelector(id)?.addEventListener( "click", () => chapters.forEach((c) => { const checkbox = this.elementChapters.querySelector("#ch-" + c.id); if (checkbox) checkbox.checked = checked; }) ) ); } // check > start > download check() { if (this.downloading) return; if (!conf.fetchOriginal) { if (this.elementNotice && !this.downloading) { this.elementNotice.innerHTML = `${i18n.originalCheck.get()}`; this.elementNotice.querySelector("a")?.addEventListener("click", () => this.fetchOriginalTemporarily()); } } setTimeout(() => this.canvas.resize(this.elementDashboard), 110); this.createChapterSelectList(); if (this.queue.length > 0) { this.dashboardTab.click(); } else if (this.pageFetcher.chapters.length > 1) { this.chapterTab.click(); } } fetchOriginalTemporarily() { conf.fetchOriginal = true; this.pageFetcher.chapters.forEach((ch) => { ch.done = false; ch.queue.forEach((imf) => imf.stage = FetchState.URL); }); this.start(); } checkSelectedChapters() { this.selectedChapters.length = 0; const idSet = /* @__PURE__ */ new Set(); this.elementChapters.querySelectorAll("input[type=checkbox][id^=ch-]:checked").forEach((checkbox) => idSet.add(Number(checkbox.value))); if (idSet.size === 0) { this.selectedChapters.push({ index: 0, done: false, ...promiseWithResolveAndReject() }); } else { this.pageFetcher.chapters.forEach((c, i) => idSet.has(c.id) && this.selectedChapters.push({ index: i, done: false, ...promiseWithResolveAndReject() })); } evLog("debug", "get selected chapters: ", this.selectedChapters); return this.selectedChapters; } async start() { if (this.downloading) return; this.flushUI("downloading"); this.downloading = true; this.idleLoader.autoLoad = true; this.checkSelectedChapters(); try { for (const sel of this.selectedChapters) { if (!this.downloading) return; await this.pageFetcher.changeChapter(sel.index, false); this.queue.forEach((imf) => { if (imf.stage === FetchState.FAILED) { imf.retry(); } }); if (this.queue.isFinised()) { sel.done = true; sel.resolve(true); } else { this.idleLoader.processingIndexList = this.queue.map((imgFetcher, index) => !imgFetcher.lock && imgFetcher.stage === FetchState.URL ? index : -1).filter((index) => index >= 0).splice(0, conf.downloadThreads); this.idleLoader.onFailed(() => sel.reject("download failed or canceled")); this.idleLoader.start(); } await sel.promise; } if (this.downloading) await this.download(this.selectedChapters.filter((sel) => sel.done).map((sel) => this.pageFetcher.chapters[sel.index])); } catch (error) { if ("abort" === error) return; this.abort("downloadFailed"); evLog("error", "download failed: ", error); } finally { this.downloading = false; } } flushUI(stage) { if (this.elementNotice) { this.elementNotice.innerHTML = `${i18n[stage].get()}`; } if (this.buttonStart) { this.buttonStart.style.color = stage === "downloadFailed" ? "red" : ""; this.buttonStart.textContent = i18n[stage].get(); } this.downloaderPanelBTN.style.color = stage === "downloadFailed" ? "red" : ""; } mapToFileLikes(chapter, singleChapter, separator) { if (!chapter || chapter.queue.length === 0) return []; let checkTitle; const needNumberTitle = this.needNumberTitle(chapter.queue); if (needNumberTitle) { const digits = chapter.queue.length.toString().length; checkTitle = (title, index) => `${index + 1}`.padStart(digits, "0") + "_" + title.replaceAll(FILENAME_INVALIDCHAR, "_"); } else { this.filenames.clear(); checkTitle = (title, index) => this.checkDuplicateTitle(index, title.replaceAll(FILENAME_INVALIDCHAR, "_")); } let directory = (() => { if (singleChapter) return ""; if (chapter.title instanceof Array) { return chapter.title.join("_").replaceAll(FILENAME_INVALIDCHAR, "_") + separator; } else { return chapter.title.replaceAll(FILENAME_INVALIDCHAR, "_") + separator; } })(); const ret = chapter.queue.filter((imf) => imf.stage === FetchState.DONE && imf.data).map((imf, index) => { return { stream: () => Promise.resolve(uint8ArrayToReadableStream(imf.data)), size: () => imf.data.byteLength, name: directory + checkTitle(imf.node.title, index) }; }); let meta = new TextEncoder().encode(JSON.stringify(this.meta(chapter), null, 2)); ret.push({ stream: () => Promise.resolve(new ReadableStream({ start(c) { c.enqueue(meta); c.close(); } })), size: () => meta.byteLength, name: directory + "meta.json" }); return ret; } async download(chapters) { try { let archiveName = this.title().replaceAll(FILENAME_INVALIDCHAR, "_"); let separator = navigator.userAgent.indexOf("Win") !== -1 ? "\\" : "/"; let singleChapter = chapters.length === 1; this.flushUI("packaging"); const files = []; for (const chapter of chapters) { const ret = this.mapToFileLikes(chapter, singleChapter, separator); files.push(...ret); } const zip = new Zip({ volumeSize: 1024 * 1024 * (conf.archiveVolumeSize || 1500) }); files.forEach((file) => zip.add(file)); let save = async () => { let readable; while (readable = zip.nextReadableStream()) { const blob = await new Response(readable).blob(); let ext = zip.currVolumeNo === zip.volumes - 1 ? "zip" : "z" + (zip.currVolumeNo + 1).toString().padStart(2, "0"); fileSaver.saveAs(blob, `${archiveName}.${ext}`); } }; await save(); this.done = true; } finally { this.abort(this.done ? "downloaded" : "downloadFailed"); } } abort(stage) { this.downloaderPanelBTN.textContent = i18n.download.get(); this.downloaderPanelBTN.classList.remove("lightgreen"); this.downloading = false; this.flushUI(stage); this.idleLoader.abort(); this.selectedChapters.forEach((sel) => sel.reject("abort")); } } function uint8ArrayToReadableStream(arr) { return new ReadableStream({ pull(controller) { controller.enqueue(arr); controller.close(); } }); } function promiseWithResolveAndReject() { let resolve; let reject; const promise = new Promise((res, rej) => { resolve = res; reject = rej; }); return { resolve, reject, promise }; } class IMGFetcherQueue extends Array { executableQueue; currIndex; finishedIndex = /* @__PURE__ */ new Set(); debouncer; downloading; dataSize = 0; chapterIndex = 0; clear() { this.length = 0; this.executableQueue = []; this.currIndex = 0; this.finishedIndex.clear(); } restore(chapterIndex, imfs) { this.clear(); this.chapterIndex = chapterIndex; imfs.forEach((imf, i) => imf.stage === FetchState.DONE && this.finishedIndex.add(i)); this.push(...imfs); } static newQueue() { const queue = new IMGFetcherQueue(); EBUS.subscribe("imf-on-finished", (index, success, imf) => queue.chapterIndex === imf.chapterIndex && queue.finishedReport(index, success, imf)); EBUS.subscribe("ifq-do", (index, imf, oriented) => { if (imf.chapterIndex !== queue.chapterIndex) return; queue.do(index, oriented); }); EBUS.subscribe("pf-change-chapter", () => queue.forEach((imf) => imf.unrender())); return queue; } constructor() { super(); this.executableQueue = []; this.currIndex = 0; this.debouncer = new Debouncer(); } isFinised() { return this.finishedIndex.size === this.length; } do(start, oriented) { oriented = oriented || "next"; this.currIndex = this.fixIndex(start); EBUS.emit("ifq-on-do", this.currIndex, this, this.downloading?.() || false); if (this.downloading?.()) return; if (!this.pushInExecutableQueue(oriented)) return; this.debouncer.addEvent("IFQ-EXECUTABLE", () => { this[this.currIndex].start(this.currIndex).then(() => this.executableQueue.forEach((imgFetcherIndex) => this[imgFetcherIndex].start(imgFetcherIndex))); }, 300); } //等待图片获取器执行成功后的上报,如果该图片获取器上报自身所在的索引和执行队列的currIndex一致,则改变大图 finishedReport(index, success, imf) { if (this.length === 0) return; if (!success || imf.stage !== FetchState.DONE) return; this.finishedIndex.add(index); if (this.dataSize < 1e9) { this.dataSize += imf.data?.byteLength || 0; } EBUS.emit("ifq-on-finished-report", index, this); } // stepImageEvent(chapterIndex: number, oriented: Oriented) { // let start = oriented === "next" ? this.currIndex + 1 : this.currIndex - 1; // if (chapterIndex === this.chapterIndex) { // this.do(start, oriented); // } // } //如果开始的索引小于0,则修正索引为0,如果开始的索引超过队列的长度,则修正索引为队列的最后一位 fixIndex(start) { return start < 0 ? 0 : start > this.length - 1 ? this.length - 1 : start; } /** * 将方向前|后 的未加载大图数据的图片获取器放入待加载队列中 * 从当前索引开始,向后或向前进行遍历, * 会跳过已经加载完毕的图片获取器, * 会添加正在获取大图数据或未获取大图数据的图片获取器到待加载队列中 * @param oriented 方向 前后 * @returns 是否添加成功 */ pushInExecutableQueue(oriented) { this.executableQueue = []; for (let count = 0, index = this.currIndex; this.pushExecQueueSlave(index, oriented, count); oriented === "next" ? ++index : --index) { if (this[index].stage === FetchState.DONE) continue; this.executableQueue.push(index); count++; } return this.executableQueue.length > 0; } // 如果索引已到达边界且添加数量在配置最大同时获取数量的范围内 pushExecQueueSlave(index, oriented, count) { return (oriented === "next" && index < this.length || oriented === "prev" && index > -1) && count < conf.threads; } findImgIndex(ele) { for (let index = 0; index < this.length; index++) { if (this[index].node.equal(ele)) { return index; } } return 0; } } class IdleLoader { queue; processingIndexList; restartId; maxWaitMS; minWaitMS; onFailedCallback; autoLoad = false; constructor(queue) { this.queue = queue; this.processingIndexList = [0]; this.restartId; this.maxWaitMS = 1e3; this.minWaitMS = 300; this.autoLoad = conf.autoLoad; EBUS.subscribe("ifq-on-do", (currIndex, _, downloading) => !downloading && this.abort(currIndex)); EBUS.subscribe("imf-on-finished", (index) => { if (!this.processingIndexList.includes(index)) return; this.wait().then(() => { this.checkProcessingIndex(); this.start(); }); }); EBUS.subscribe("pf-change-chapter", (index) => !this.queue.downloading?.() && this.abort(index > 0 ? 0 : void 0)); } onFailed(cb) { this.onFailedCallback = cb; } start() { if (!this.autoLoad) return; if (this.processingIndexList.length === 0) return; if (this.queue.length === 0) return; evLog("info", "Idle Loader start at:" + this.processingIndexList.toString()); for (const processingIndex of this.processingIndexList) { this.queue[processingIndex].start(processingIndex); } } checkProcessingIndex() { if (this.queue.length === 0) { return; } let foundFetcherIndex = /* @__PURE__ */ new Set(); let hasFailed = false; for (let i = 0; i < this.processingIndexList.length; i++) { let processingIndex = this.processingIndexList[i]; const imf = this.queue[processingIndex]; if (imf.stage === FetchState.FAILED) { hasFailed = true; } if (imf.lock || imf.stage === FetchState.URL) { continue; } for (let j = Math.min(processingIndex + 1, this.queue.length - 1), limit = this.queue.length; j < limit; j++) { const imf2 = this.queue[j]; if (!imf2.lock && imf2.stage === FetchState.URL && !foundFetcherIndex.has(j)) { foundFetcherIndex.add(j); this.processingIndexList[i] = j; break; } if (imf2.stage === FetchState.FAILED) { hasFailed = true; } if (j >= this.queue.length - 1) { limit = processingIndex; j = 0; } } if (foundFetcherIndex.size === 0) { this.processingIndexList.length = 0; if (hasFailed && this.onFailedCallback) { this.onFailedCallback(); this.onFailedCallback = void 0; } return; } } } async wait() { const { maxWaitMS, minWaitMS } = this; return new Promise(function(resolve) { const time = Math.floor(Math.random() * maxWaitMS + minWaitMS); window.setTimeout(() => resolve(true), time); }); } abort(newIndex) { this.processingIndexList = []; if (!this.autoLoad) return; window.clearTimeout(this.restartId); if (newIndex !== void 0) { this.restartId = window.setTimeout(() => { if (this.queue.downloading?.()) return; this.processingIndexList = [newIndex]; this.checkProcessingIndex(); this.start(); }, conf.restartIdleLoader); } } } const DEFAULT_THUMBNAIL = "data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw=="; const DEFAULT_NODE_TEMPLATE = document.createElement("div"); DEFAULT_NODE_TEMPLATE.classList.add("img-node"); DEFAULT_NODE_TEMPLATE.innerHTML = ` `; const OVERLAY_TIP = document.createElement("div"); OVERLAY_TIP.classList.add("overlay-tip"); OVERLAY_TIP.innerHTML = `GIF`; class ImageNode { root; src; href; title; onclick; imgElement; canvasElement; canvasCtx; canvasSized = false; delaySRC; blobUrl; mimeType; downloadBar; rendered = false; constructor(src, href, title, delaySRC) { this.src = src; this.href = href; this.title = title; this.delaySRC = delaySRC; } create() { this.root = DEFAULT_NODE_TEMPLATE.cloneNode(true); const anchor = this.root.firstElementChild; anchor.href = this.href; anchor.target = "_blank"; this.imgElement = anchor.firstElementChild; this.canvasElement = anchor.lastElementChild; this.imgElement.setAttribute("title", this.title); this.canvasElement.id = "canvas-" + this.title.replaceAll(/[^\w]/g, "_"); this.canvasCtx = this.canvasElement.getContext("2d"); if (this.onclick) { this.canvasElement.addEventListener("click", (event) => { event.preventDefault(); this.onclick(event); }); } this.imgElement.onload = () => { if (!this.imgElement?.src) return; if (!this.canvasSized) { this.canvasElement.width = this.root.offsetWidth; this.canvasElement.height = Math.floor(this.root.offsetWidth * this.imgElement.naturalHeight / this.imgElement.naturalWidth); this.canvasSized = this.imgElement.src !== DEFAULT_THUMBNAIL; } this.canvasCtx?.drawImage(this.imgElement, 0, 0, this.canvasElement.width, this.canvasElement.height); this.imgElement.src = ""; }; return this.root; } render() { if (!this.imgElement) return; this.rendered = true; let justThumbnail = !this.blobUrl; if (this.mimeType === "image/gif" || this.mimeType?.startsWith("video")) { const tip = OVERLAY_TIP.cloneNode(true); tip.firstChild.textContent = this.mimeType.split("/")[1].toUpperCase(); this.root?.appendChild(tip); justThumbnail = true; } if (justThumbnail) { const delaySRC = this.delaySRC; this.delaySRC = void 0; if (delaySRC) { delaySRC.then((src) => (this.src = src) && this.render()); } else { this.imgElement.src = this.src || this.blobUrl || DEFAULT_THUMBNAIL; } return; } this.imgElement.src = this.blobUrl || this.src || DEFAULT_THUMBNAIL; } unrender() { if (!this.rendered || !this.imgElement) return; this.imgElement.src = this.src; } onloaded(blobUrl, mimeType) { this.blobUrl = blobUrl; this.mimeType = mimeType; } progress(state) { if (!this.root) return; if (state.readyState === 4) { if (this.downloadBar && this.downloadBar.parentNode) { this.downloadBar.parentNode.removeChild(this.downloadBar); } return; } if (!this.downloadBar) { const downloadBar = document.createElement("div"); downloadBar.classList.add("download-bar"); downloadBar.innerHTML = `
`; this.downloadBar = downloadBar; this.root.firstElementChild.appendChild(this.downloadBar); } if (this.downloadBar) { this.downloadBar.firstElementChild.style.width = state.loaded / state.total * 100 + "%"; } } changeStyle(fetchStatus) { if (!this.root) return; switch (fetchStatus) { case "fetching": this.root.classList.add("img-fetching"); this.root.classList.remove("img-fetched"); this.root.classList.remove("img-fetch-failed"); break; case "fetched": this.root.classList.add("img-fetched"); this.root.classList.remove("img-fetching"); this.root.classList.remove("img-fetch-failed"); break; case "failed": this.root.classList.add("img-fetch-failed"); this.root.classList.remove("img-fetching"); break; default: this.root.classList.remove("img-fetched"); this.root.classList.remove("img-fetch-failed"); this.root.classList.remove("img-fetching"); } } equal(ele) { if (ele === this.root) { return true; } if (ele === this.root?.firstElementChild) { return true; } if (ele === this.canvasElement || ele === this.imgElement) { return true; } return false; } } class ChapterNode { chapter; index; constructor(chapter, index) { this.chapter = chapter; this.index = index; } create() { const element = DEFAULT_NODE_TEMPLATE.cloneNode(true); const anchor = element.firstElementChild; if (this.chapter.thumbimg) { const img = anchor.firstElementChild; img.src = this.chapter.thumbimg; img.title = this.chapter.title.toString(); } const description = document.createElement("div"); description.classList.add("ehvp-chapter-description"); if (Array.isArray(this.chapter.title)) { description.innerHTML = this.chapter.title.map((t) => `${t}`).join("
"); } else { description.innerHTML = `${this.chapter.title}`; } anchor.appendChild(description); anchor.onclick = (event) => { event.preventDefault(); this.chapter.onclick?.(this.index); }; return element; } render() { } } function q(selector, parent) { const element = (parent || document).querySelector(selector); if (!element) { throw new Error(`Can't find element: ${selector}`); } return element; } class PageFetcher { chapters = []; chapterIndex = 0; queue; matcher; done = false; beforeInit; afterInit; appendPageLock = false; abortb = false; chaptersSelectionElement; constructor(queue, matcher) { this.queue = queue; this.matcher = matcher; this.chaptersSelectionElement = q("#backChaptersSelection"); this.chaptersSelectionElement.addEventListener("click", () => this.backChaptersSelection()); const debouncer = new Debouncer(); EBUS.subscribe("ifq-on-finished-report", (index) => debouncer.addEvent("APPEND-NEXT-PAGES", () => this.appendPages(index, !this.queue.downloading?.()), 5)); EBUS.subscribe("pf-try-extend", () => debouncer.addEvent("APPEND-NEXT-PAGES", () => !this.queue.downloading?.() && this.appendNextPage(true), 5)); } appendToView(total, nodes, done) { EBUS.emit("pf-on-appended", total, nodes, done); } abort() { this.abortb = true; } async init() { this.chapters = await this.matcher.fetchChapters(); this.chapters.forEach((c) => { c.sourceIter = this.matcher.fetchPagesSource(c); c.onclick = (index) => { EBUS.emit("pf-change-chapter", index); if (this.chapters[index].queue) { this.appendToView(this.chapters[index].queue.length, this.chapters[index].queue, false); if (this.chapters.length > 1) { this.chaptersSelectionElement.hidden = false; } } if (!this.queue.downloading?.()) { this.beforeInit?.(); this.changeChapter(index, true).finally(() => this.afterInit?.()); } }; }); if (this.chapters.length === 1) { this.beforeInit?.(); this.changeChapter(0, true).finally(() => this.afterInit?.()); } if (this.chapters.length > 1) { this.appendToView(this.chapters.length, this.chapters.map((c, i) => new ChapterNode(c, i)), true); } } backChaptersSelection() { EBUS.emit("pf-change-chapter", -1); this.appendToView(this.chapters.length, this.chapters.map((c, i) => new ChapterNode(c, i)), true); this.chaptersSelectionElement.hidden = true; } /// start the chapter by index async changeChapter(index, appendToView) { this.chapterIndex = index; const chapter = this.chapters[this.chapterIndex]; this.queue.restore(index, chapter.queue); if (!chapter.sourceIter) { evLog("error", "chapter sourceIter is not set!"); return; } let first = await chapter.sourceIter.next(); if (!first.done) { await this.appendImages(first.value, appendToView); } this.appendPages(this.queue.length - 1, appendToView); } // append next page until the queue length is 60 more than finished async appendPages(appendedCount, appendToView) { while (true) { if (appendedCount + 60 < this.queue.length) break; if (!await this.appendNextPage(appendToView)) break; } } async appendNextPage(appendToView) { if (this.appendPageLock) return false; try { this.appendPageLock = true; if (this.done || this.abortb) return false; const chapter = this.chapters[this.chapterIndex]; const next = await chapter.sourceIter.next(); if (next.done) { chapter.done = true; this.appendToView(this.queue.length, [], true); return false; } else { await this.appendImages(next.value, appendToView); return true; } } finally { this.appendPageLock = false; } } async appendImages(page, appendToView) { try { const nodes = await this.obtainImageNodeList(page); if (this.abortb) return false; const IFs = nodes.map( (imgNode) => new IMGFetcher(imgNode, this.matcher, this.chapterIndex) ); this.queue.push(...IFs); this.chapters[this.chapterIndex].queue.push(...IFs); if (appendToView) { this.appendToView(this.queue.length, IFs); } return true; } catch (error) { evLog("error", `page fetcher append images error: `, error); return false; } } //从文档的字符串中创建缩略图元素列表 async obtainImageNodeList(page) { let tryTimes = 0; while (tryTimes < 3) { try { return await this.matcher.parseImgNodes(page, this.chapters[this.chapterIndex].id); } catch (error) { evLog("error", "warn: parse image nodes failed, retrying: ", error); tryTimes++; } } evLog("error", "warn: parse image nodes failed: reached max try times!"); return []; } //通过地址请求该页的文档 async fetchDocument(pageURL) { return await window.fetch(pageURL).then((response) => response.text()); } } class GalleryMeta { url; title; originTitle; downloader; tags; constructor(url, title) { this.url = url; this.title = title; this.tags = {}; this.downloader = "https://github.com/MapoMagpie/eh-view-enhance"; } } class BaseMatcher { async fetchChapters() { return [{ id: 1, title: "Default", source: window.location.href, queue: [] }]; } title(doc) { const meta = this.galleryMeta(doc); return meta.originTitle || meta.title || "unknown"; } galleryMeta(doc, _chapter) { return new GalleryMeta(window.location.href, doc.title || "unknown"); } workURLs() { return [this.workURL()]; } async processData(data, contentType, _url) { return [data, contentType]; } } function toMD5(s) { return md5(s); } function get_num(gid, page) { gid = window.atob(gid); page = window.atob(page); let n = toMD5(gid + page).slice(-1).charCodeAt(0); if (gid >= window.atob("MjY4ODUw") && gid <= window.atob("NDIxOTI1")) { n %= 10; } else if (gid >= window.atob("NDIxOTI2")) { n %= 8; } if (n < 10) { return 2 + 2 * n; } else { return 10; } } function drawImage(ctx, e, gid, page) { const width = e.width; const height = e.height; const s = get_num(window.btoa(gid), window.btoa(page)); const l = parseInt((height % s).toString()); const r = width; for (let m = 0; m < s; m++) { let c = Math.floor(height / s); let g = c * m; let w = height - c * (m + 1) - l; 0 == m ? c += l : g += l, ctx.drawImage(e, 0, w, r, c, 0, g, r, c); } } class Comic18Matcher extends BaseMatcher { meta; async fetchChapters() { const ret = []; const thumb = document.querySelector(".thumb-overlay > img"); const chapters = Array.from(document.querySelectorAll(".visible-lg .episode > ul > a")); if (chapters.length > 0) { chapters.forEach((ch, i) => { const title = Array.from(ch.querySelector("li")?.childNodes || []).map((n) => n.textContent?.trim()).filter(Boolean).map((n) => n); ret.push({ id: i, title, source: ch.href, queue: [], thumbimg: thumb?.src }); }); } else { const href = document.querySelector(".read-block > a")?.href; if (href === void 0) throw new Error("No page found"); ret.push({ id: 0, title: "Default", source: href, queue: [] }); } return ret; } async *fetchPagesSource(chapter) { yield chapter.source; } async parseImgNodes(source) { const list = []; const raw = await window.fetch(source).then((resp) => resp.text()); const document2 = new DOMParser().parseFromString(raw, "text/html"); const elements = Array.from(document2.querySelectorAll(".scramble-page:not(.thewayhome)")); for (const element of elements) { const title = element.id; const img = element.querySelector("img"); if (!img) { evLog("error", "warn: cannot find img element", element); continue; } const src = img.getAttribute("data-original"); if (!src) { evLog("error", "warn: cannot find data-original", element); continue; } list.push(new ImageNode("", src, title)); } return list; } async processData(data, contentType, url) { const reg = /(\d+)\/(\d+)\.(\w+)/; const matches = url.match(reg); const gid = matches[1]; let scrambleID = 220980; if (Number(gid) < scrambleID) return [data, contentType]; const page = matches[2]; const ext = matches[3]; if (ext === "gif") return [data, contentType]; const img = await createImageBitmap(new Blob([data], { type: contentType })); const canvas = document.createElement("canvas"); canvas.width = img.width; canvas.height = img.height; const ctx = canvas.getContext("2d"); drawImage(ctx, img, gid, page); return new Promise( (resolve) => canvas.toBlob( (blob) => blob?.arrayBuffer().then((buf) => resolve([new Uint8Array(buf), blob.type])).finally(() => canvas.remove()), contentType ) ); } workURL() { return /18comic.(vip|org)\/album\/\d+/; } galleryMeta(doc) { if (this.meta) return this.meta; const title = doc.querySelector(".panel-heading h1")?.textContent || "UNTITLE"; this.meta = new GalleryMeta(window.location.href, title); this.meta.originTitle = title; const tagTrList = doc.querySelectorAll("div.tag-block > span"); const tags = {}; tagTrList.forEach((tr) => { const cat = tr.getAttribute("data-type")?.trim(); if (cat) { const values = Array.from(tr.querySelectorAll("a")).map((a) => a.textContent).filter(Boolean); if (values.length > 0) { tags[cat] = values; } } }); this.meta.tags = tags; return this.meta; } // https://cdn-msp.18comic.org/media/photos/529221/00004.gif async fetchOriginMeta(url) { return { url }; } } class DanbooruMatcher extends BaseMatcher { tags = {}; count = 0; async *fetchPagesSource() { let doc = document; yield doc; let tryTimes = 0; while (true) { const url = this.nextPage(doc); if (!url) break; try { doc = await window.fetch(url).then((res) => res.text()).then((text) => new DOMParser().parseFromString(text, "text/html")); } catch (e) { tryTimes++; if (tryTimes > 3) throw new Error(`fetch next page failed, ${e}`); continue; } tryTimes = 0; yield doc; } } async fetchOriginMeta(href) { let url = null; const doc = await window.fetch(href).then((res) => res.text()).then((text) => new DOMParser().parseFromString(text, "text/html")); if (conf.fetchOriginal) { url = this.getOriginalURL(doc); } if (!url) { url = this.getNormalURL(doc); } if (!url) throw new Error("Cannot find origin image or video url"); let title; const ext = url.split(".").pop()?.match(/^\w+/)?.[0]; const id = this.extractIDFromHref(href); if (ext && id) { title = `${id}.${ext}`; } return { url, title }; } async parseImgNodes(source) { const list = []; const doc = source; this.queryList(doc).forEach((ele) => { const [imgNode, tags] = this.toImgNode(ele); if (!imgNode) return; this.count++; if (tags !== "") { this.tags[imgNode.title.split(".")[0]] = tags.trim().replaceAll(": ", ":").split(" ").map((v) => v.trim()).filter((v) => v !== ""); } list.push(imgNode); }); return list; } galleryMeta() { const url = new URL(window.location.href); const tags = url.searchParams.get("tags")?.trim(); const meta = new GalleryMeta(window.location.href, `${this.site()}_${tags}_${this.count}`); meta.tags = this.tags; return meta; } } class DanbooruDonmaiMatcher extends DanbooruMatcher { site() { return "danbooru"; } workURL() { return /danbooru.donmai.us\/(posts(?!\/)|$)/; } nextPage(doc) { return doc.querySelector(".paginator a.paginator-next")?.href || null; } queryList(doc) { return Array.from(doc.querySelectorAll(".posts-container > article:not(.blacklisted-active)")); } toImgNode(ele) { const anchor = ele.querySelector("a"); if (!anchor) { evLog("error", "warn: cannot find anchor element", anchor); return [null, ""]; } const img = anchor.querySelector("img"); if (!img) { evLog("error", "warn: cannot find img element", img); return [null, ""]; } const href = anchor.getAttribute("href"); if (!href) { evLog("error", "warn: cannot find href", anchor); return [null, ""]; } return [new ImageNode(img.src, href, `${ele.getAttribute("data-id") || ele.id}.jpg`), ele.getAttribute("data-tags") || ""]; } getOriginalURL(doc) { return doc.querySelector("#image-resize-notice > a")?.href || null; } getNormalURL(doc) { return doc.querySelector("#image")?.getAttribute("src") || null; } extractIDFromHref(href) { return href.match(/posts\/(\d+)/)?.[1]; } } class Rule34Matcher extends DanbooruMatcher { site() { return "rule34"; } workURL() { return /rule34.xxx\/index.php\?page=post&s=list/; } nextPage(doc) { return doc.querySelector(".pagination a[alt=next]")?.href || null; } queryList(doc) { return Array.from(doc.querySelectorAll(".image-list > .thumb:not(.blacklisted-image) > a")); } toImgNode(ele) { const img = ele.querySelector("img"); if (!img) { evLog("error", "warn: cannot find img element", img); return [null, ""]; } const href = ele.getAttribute("href"); if (!href) { evLog("error", "warn: cannot find href", ele); return [null, ""]; } return [new ImageNode(img.src, href, `${ele.id}.jpg`), img.getAttribute("alt") || ""]; } getOriginalURL(doc) { const raw = doc.querySelector("#note-container + script")?.textContent?.trim().replace("image = ", "").replace(";", "").replaceAll("'", '"'); try { if (raw) { const info = JSON.parse(raw); return `${info.domain}/${info.base_dir}/${info.dir}/${info.img}`; } } catch (error) { evLog("error", "get original url failed", error); } return null; } getNormalURL(doc) { return doc.querySelector("#image,#gelcomVideoPlayer > source")?.getAttribute("src") || null; } extractIDFromHref(href) { return href.match(/id=(\d+)/)?.[1]; } } const POST_INFO_REGEX = /Post\.register\((.*)\)/g; class YandereMatcher extends BaseMatcher { infos = {}; count = 0; workURL() { return /yande.re\/post(?!\/show\/.*)/; } async *fetchPagesSource() { let doc = document; yield doc; let tryTimes = 0; while (true) { const url = doc.querySelector("#paginator a.next_page")?.href; if (!url) break; try { doc = await window.fetch(url).then((res) => res.text()).then((text) => new DOMParser().parseFromString(text, "text/html")); } catch (e) { tryTimes++; if (tryTimes > 3) throw new Error(`fetch next page failed, ${e}`); continue; } tryTimes = 0; yield doc; } } async parseImgNodes(source) { const doc = source; const raw = doc.querySelector("body > form + script")?.textContent; if (!raw) throw new Error("cannot find post list from script"); const matches = raw.matchAll(POST_INFO_REGEX); const ret = []; for (const match of matches) { if (!match || match.length < 2) continue; try { const info = JSON.parse(match[1]); this.infos[info.id.toString()] = info; this.count++; ret.push(new ImageNode(info.preview_url, `${window.location.origin}/post/show/${info.id}`, `${info.id}.${info.file_ext}`)); } catch (error) { evLog("error", "parse post info failed", error); continue; } } return ret; } async fetchOriginMeta(href) { let id = href.split("/").pop(); if (!id) { throw new Error(`cannot find id from ${href}`); } let url; if (conf.fetchOriginal) { url = this.infos[id]?.file_url; } else { url = this.infos[id]?.sample_url; } if (!url) { throw new Error(`cannot find url for id ${id}`); } return { url }; } galleryMeta() { const url = new URL(window.location.href); const tags = url.searchParams.get("tags")?.trim(); const meta = new GalleryMeta(window.location.href, `yande_${tags}_${this.count}`); meta["infos"] = this.infos; return meta; } } function parseImagePositions(styles) { return styles.map((st) => { const [x, y] = st.backgroundPosition.split(" ").map((v) => Math.abs(parseInt(v))); return { x, y, width: parseInt(st.width), height: parseInt(st.height) }; }); } function splitSpriteImage(image, positions) { const canvas = document.createElement("canvas"); const ctx = canvas.getContext("2d"); const result = []; for (const pos of positions) { canvas.width = pos.width; canvas.height = pos.height; ctx.drawImage(image, pos.x, pos.y, pos.width, pos.height, 0, 0, pos.width, pos.height); result.push(canvas.toDataURL()); } canvas.remove(); return result; } async function splitImagesFromUrl(url, positions) { let data; for (let i = 0; i < 3; i++) { try { data = await fetchImage(url); break; } catch (err) { } } if (!data) throw new Error("load sprite image error"); url = URL.createObjectURL(data); const img = await new Promise((resolve, reject) => { let img2 = new Image(); img2.onload = () => resolve(img2); img2.onerror = () => reject(new Error("load sprite image error")); img2.src = url; }); URL.revokeObjectURL(url); return splitSpriteImage(img, positions); } const regulars = { /** 有压缩的大图地址 */ normal: /\/, /** 大图重载地址 */ nlValue: /\/, /** 是否开启自动多页查看器 */ isMPV: /https?:\/\/e[-x]hentai(55ld2wyap5juskbm67czulomrouspdacjamjeloj7ugjbsad)?\.(org|onion)\/mpv\/\w+\/\w+\/#page\w/, /** 多页查看器图片列表提取 */ mpvImageList: /\{"n":"(.*?)","k":"(\w+)","t":"(.*?)".*?\}/g, /** 精灵图地址提取 */ sprite: /url\((.*?)\)/ }; class EHMatcher extends BaseMatcher { // "http://exhentai55ld2wyap5juskbm67czulomrouspdacjamjeloj7ugjbsad.onion/*", workURL() { return /e[-x]hentai(.*)?.(org|onion)\/g\/\w+/; } galleryMeta(doc) { const titleList = doc.querySelectorAll("#gd2 h1"); let title; let originTitle; if (titleList && titleList.length > 0) { title = titleList[0].textContent || void 0; if (titleList.length > 1) { originTitle = titleList[1].textContent || void 0; } } const meta = new GalleryMeta(window.location.href, title || "UNTITLE"); meta.originTitle = originTitle; const tagTrList = doc.querySelectorAll("#taglist tr"); const tags = {}; tagTrList.forEach((tr) => { const tds = tr.childNodes; const cat = tds[0].textContent; if (cat) { const list = []; tds[1].childNodes.forEach((ele) => { if (ele.textContent) list.push(ele.textContent); }); tags[cat.replace(":", "")] = list; } }); meta.tags = tags; return meta; } async fetchOriginMeta(href, retry) { return { url: await this.fetchImgURL(href, retry) }; } async parseImgNodes(source) { const list = []; let doc = await (async () => { if (source instanceof Document) { return source; } else { const raw = await window.fetch(source).then((response) => response.text()); if (!raw) return null; const domParser = new DOMParser(); return domParser.parseFromString(raw, "text/html"); } })(); if (!doc) { throw new Error("warn: eh matcher failed to get document from source page!"); } let isSprite = true; let query = doc.querySelectorAll("#gdt .gdtm > div"); if (!query || query.length == 0) { isSprite = false; query = doc.querySelectorAll("#gdt .gdtl"); } if (!query || query.length == 0) { throw new Error("warn: failed query image nodes!"); } const nodes = Array.from(query); const n0 = nodes[0].firstElementChild; if (regulars.isMPV.test(n0.href)) { const mpvDoc = await window.fetch(n0.href).then((response) => response.text()); const matchs = mpvDoc.matchAll(regulars.mpvImageList); const gid = location.pathname.split("/")[2]; let i = 0; for (const match of matchs) { i++; const node = new ImageNode( match[3].replaceAll("\\", ""), `${location.origin}/s/${match[2]}/${gid}-${i}`, match[1].replace(/Page\s\d+[:_]\s*/, "") ); list.push(node); } return list; } let urls = []; let delayURLs = []; if (isSprite) { let spriteURLs = []; for (let i = 0; i < nodes.length; i++) { const nodeStyles = nodes[i].style; const url = nodeStyles.background.match(regulars.sprite)?.[1]?.replaceAll('"', ""); if (!url) break; if (spriteURLs.length === 0 || spriteURLs[spriteURLs.length - 1].url !== url) { spriteURLs.push({ url, range: [{ index: i, style: nodeStyles }] }); } else { spriteURLs[spriteURLs.length - 1].range.push({ index: i, style: nodeStyles }); } } spriteURLs.forEach(({ url, range }) => { const resolvers = []; const rejects = []; for (let i = 0; i < range.length; i++) { urls.push(""); delayURLs.push(new Promise((resolve, reject) => { resolvers.push(resolve); rejects.push(reject); })); } if (!url.startsWith("http")) { url = window.location.origin + url; } splitImagesFromUrl(url, parseImagePositions(range.map((n) => n.style))).then((ret) => { for (let k = 0; k < ret.length; k++) { resolvers[k](ret[k]); } }).catch((err) => { rejects.forEach((r) => r(err)); }); }); } else { if (urls.length == 0) { urls = nodes.map((n) => n.firstElementChild.firstElementChild.src); } } for (let i = 0; i < nodes.length; i++) { const node = new ImageNode( urls[i], nodes[i].querySelector("a").href, nodes[i].querySelector("img").getAttribute("title")?.replace(/Page\s\d+[:_]\s*/, "") || "untitle.jpg", delayURLs[i] ); list.push(node); } return list; } async *fetchPagesSource() { const doc = document; let fristImageHref = doc.querySelector("#gdt a")?.getAttribute("href"); if (fristImageHref && regulars.isMPV.test(fristImageHref)) { yield window.location.href; return; } let pages = Array.from(doc.querySelectorAll(".gtb td a")).filter((a) => a.getAttribute("href")).map((a) => a.getAttribute("href")); if (pages.length === 0) { throw new Error("未获取到分页元素!"); } let lastPage = 0; let url; for (const page of pages) { const u = new URL(page); const num = parseInt(u.searchParams.get("p") || "0"); if (num >= lastPage) { lastPage = num; url = u; } } if (!url) { throw new Error("未获取到分页元素!x2"); } url.searchParams.delete("p"); yield url.href; for (let p = 1; p < lastPage + 1; p++) { url.searchParams.set("p", p.toString()); yield url.href; } } async fetchImgURL(url, originChanged) { let text = ""; try { text = await window.fetch(url).then((resp) => resp.text()); } catch (error) { throw new Error(`Fetch source page error, expected [text]! ${error}`); } if (!text) throw new Error("[text] is empty"); if (conf.fetchOriginal) { const matchs = regulars.original.exec(text); if (matchs && matchs.length > 0) { return matchs[1].replace(/&/g, "&"); } } let src; if (originChanged) { const nlValue = regulars.nlValue.exec(text)?.[1]; if (nlValue) { const newUrl = url + ((url + "").indexOf("?") > -1 ? "&" : "?") + "nl=" + nlValue; evLog("info", `IMG-FETCHER retry url:${newUrl}`); src = await this.fetchImgURL(newUrl, false); } else { evLog("error", `Cannot matching the nlValue, content: ${text}`); } } if (!src) { src = regulars.normal.exec(text)?.[1]; } if (!src) throw new Error(`Cannot matching the image url, content: ${text}`); if (!src.startsWith("http")) { src = window.location.origin + src; } return src; } } class HitomiGG { base = "a"; ext = "webp"; b; m; constructor(b, m) { this.b = b; this.m = new Function("g", m); } real_full_path_from_hash(hash) { return hash.replace(/^.*(..)(.)$/, "$2/$1/" + hash); } s(h) { const m = /(..)(.)$/.exec(h); return parseInt(m[2] + m[1], 16).toString(10); } subdomain_from_url(url, base) { var retval = "b"; if (base) { retval = base; } var b = 16; var r = /\/[0-9a-f]{61}([0-9a-f]{2})([0-9a-f])/; var m = r.exec(url); if (!m) { return "a"; } let g = parseInt(m[2] + m[1], b); if (!isNaN(g)) { retval = String.fromCharCode(97 + this.m(g)) + retval; } return retval; } thumbURL(hash) { hash = hash.replace(/^.*(..)(.)$/, "$2/$1/" + hash); let url = "https://a.hitomi.la/webpsmalltn/" + hash + ".webp"; return url.replace(/\/\/..?\.hitomi\.la\//, "//" + this.subdomain_from_url(url, "tn") + ".hitomi.la/"); } originURL(hash) { let url = "https://a.hitomi.la/" + this.ext + "/" + this.b + this.s(hash) + "/" + hash + "." + this.ext; url = url.replace(/\/\/..?\.hitomi\.la\//, "//" + this.subdomain_from_url(url, this.base) + ".hitomi.la/"); return url; } } const GG_M_REGEX = /m:\sfunction\(g\)\s{(.*?return.*?;)/gms; const GG_B_REGEX = /b:\s'(\d*\/)'/; class HitomiMather extends BaseMatcher { gg; meta = {}; infoRecord = {}; workURL() { return /hitomi.la\/(?!reader)\w+\/.*\d+\.html/; } async fetchChapters() { const ggRaw = await window.fetch("https://ltn.hitomi.la/gg.js").then((resp) => resp.text()); this.gg = new HitomiGG(GG_B_REGEX.exec(ggRaw)[1], GG_M_REGEX.exec(ggRaw)[1]); const ret = []; ret.push({ id: 0, title: document.querySelector("#gallery-brand")?.textContent || "default", source: window.location.href, queue: [], thumbimg: document.querySelector(".content > .cover-column > .cover img")?.src }); if (conf.mcInSites?.indexOf("hitomi") === -1) { return ret; } document.querySelectorAll("#related-content > div").forEach((element, i) => { const a = element.querySelector("h1.lillie > a"); if (a) { ret.push({ id: i + 1, title: a.textContent || "default-" + (i + 1), source: a.href, queue: [], thumbimg: element.querySelector("img")?.src }); } }); return ret; } async *fetchPagesSource(chapter) { const url = chapter.source; const galleryID = url.match(/([0-9]+)(?:\.html)/)?.[1]; if (!galleryID) { throw new Error("cannot query hitomi gallery id"); } const infoRaw = await window.fetch(`https://ltn.hitomi.la/galleries/${galleryID}.js`).then((resp) => resp.text()).then((text) => text.replace("var galleryinfo = ", "")); if (!infoRaw) { throw new Error("cannot query hitomi gallery info"); } const info = JSON.parse(infoRaw); this.setGalleryMeta(info, galleryID, chapter); const doc = await window.fetch(url).then((resp) => resp.text()).then((text) => new DOMParser().parseFromString(text, "text/html")); yield doc; } async parseImgNodes(_page, chapterID) { if (!this.infoRecord[chapterID]) { throw new Error("warn: hitomi gallery info is null!"); } const files = this.infoRecord[chapterID].files; const list = []; for (let i = 0; i < files.length; i++) { const node = new ImageNode( this.gg.thumbURL(files[i].hash), files[i].hash, files[i].name ); list.push(node); } return list; } async fetchOriginMeta(hash, _) { const url = this.gg.originURL(hash); return { url }; } setGalleryMeta(info, galleryID, chapter) { this.infoRecord[chapter.id] = info; this.meta[chapter.id] = new GalleryMeta(chapter.source, info.title || "hitomi-" + galleryID); this.meta[chapter.id].originTitle = info.japanese_title || void 0; const excludes = ["scene_indexes", "files"]; for (const key in info) { if (excludes.indexOf(key) > -1) { continue; } this.meta[chapter.id].tags[key] = info[key]; } } galleryMeta(_, chapter) { return this.meta[chapter.id]; } title() { const entries = Object.entries(this.infoRecord); if (entries.length === 0) return "hitomi-unknown"; if (entries.length === 1) { return entries[0][1].japanese_title || entries[0][1].title || "hitomi-unknown"; } else { return "hitomi-multiple" + entries.map((entry) => entry[1].id).join("_"); } } } class IMHentaiMatcher extends BaseMatcher { data; async fetchOriginMeta(href, _) { const doc = await window.fetch(href).then((res) => res.text()).then((text) => new DOMParser().parseFromString(text, "text/html")); const imgNode = doc.querySelector("#gimg"); if (!imgNode) { throw new Error("cannot find image node from: " + href); } const src = imgNode.getAttribute("data-src"); if (!src) { throw new Error("cannot find image src from: #gimg"); } const ext = src.split(".").pop()?.match(/^\w+/)?.[0]; const num = href.match(/\/(\d+)\/?$/)?.[1]; let title; if (ext && num) { const digits = this.data.total.toString().length; title = num.toString().padStart(digits, "0") + "." + ext; } return { url: src, title }; } async parseImgNodes() { if (!this.data) { throw new Error("impossibility"); } const ret = []; const digits = this.data.total.toString().length; for (let i = 1; i <= this.data.total; i++) { const url = `https://m${this.data.server}.imhentai.xxx/${this.data.imgDir}/${this.data.gid}/${i}t.jpg`; const href = `https://imhentai.xxx/view/${this.data.uid}/${i}/`; const node = new ImageNode(url, href, `${i.toString().padStart(digits, "0")}.jpg`); ret.push(node); } return ret; } async *fetchPagesSource() { const server = q("#load_server").value; const uid = q("#gallery_id").value; const gid = q("#load_id").value; const imgDir = q("#load_dir").value; const total = q("#load_pages").value; this.data = { server, uid, gid, imgDir, total: Number(total) }; yield document; } galleryMeta(doc) { const title = doc.querySelector(".right_details > h1")?.textContent || void 0; const originTitle = doc.querySelector(".right_details > p.subtitle")?.textContent || void 0; const meta = new GalleryMeta(window.location.href, title || "UNTITLE"); meta.originTitle = originTitle; meta.tags = {}; const list = Array.from(doc.querySelectorAll(".galleries_info > li")); for (const li of list) { let cat = li.querySelector(".tags_text")?.textContent; if (!cat) continue; cat = cat.replace(":", "").trim(); if (!cat) continue; const tags = Array.from(li.querySelectorAll("a.tag")).map((a) => a.firstChild?.textContent?.trim()).filter((v) => Boolean(v)); meta.tags[cat] = tags; } return meta; } workURL() { return /imhentai.xxx\/gallery\/\d+\//; } } const NH_IMG_URL_REGEX = /]*?> { if (!title) { title = ele.textContent || void 0; } else { originTitle = ele.textContent || void 0; } }); const meta = new GalleryMeta(window.location.href, title || "UNTITLE"); meta.originTitle = originTitle; const tagTrList = doc.querySelectorAll(".tag-container"); const tags = {}; tagTrList.forEach((tr) => { const cat = tr.firstChild?.textContent?.trim().replace(":", ""); if (cat) { const list = []; tr.querySelectorAll(".tag .name").forEach((tag) => { const t = tag.textContent?.trim(); if (t) { list.push(t); } }); if (list.length > 0) { tags[cat] = list; } } }); meta.tags = tags; return meta; } async fetchOriginMeta(href) { let text = ""; try { text = await window.fetch(href).then((resp) => resp.text()); if (!text) throw new Error("[text] is empty"); } catch (error) { throw new Error(`Fetch source page error, expected [text]! ${error}`); } return { url: NH_IMG_URL_REGEX.exec(text)[1] }; } async parseImgNodes(source) { const list = []; const nodes = source.querySelectorAll(".thumb-container > .gallerythumb"); if (!nodes || nodes.length == 0) { throw new Error("warn: failed query image nodes!"); } let i = 0; for (const node of Array.from(nodes)) { i++; const imgNode = node.querySelector("img"); if (!imgNode) { throw new Error("Cannot find Image"); } const newNode = new ImageNode( imgNode.getAttribute("data-src"), location.origin + node.getAttribute("href"), imgNode.getAttribute("title") || `${i}.jpg` ); list.push(newNode); } return list; } async *fetchPagesSource() { yield document; } } const class_worker_raw = "/// \n/// \n/// \nconst MIME_TYPE_JAVASCRIPT = \"text/javascript\";\nconst MIME_TYPE_WASM = \"application/wasm\";\nconst CORE_VERSION = \"0.12.6\";\nconst CORE_URL = `https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;\nvar FFMessageType;\n(function(FFMessageType) {\n FFMessageType[\"LOAD\"] = \"LOAD\";\n FFMessageType[\"EXEC\"] = \"EXEC\";\n FFMessageType[\"WRITE_FILE\"] = \"WRITE_FILE\";\n FFMessageType[\"READ_FILE\"] = \"READ_FILE\";\n FFMessageType[\"DELETE_FILE\"] = \"DELETE_FILE\";\n FFMessageType[\"RENAME\"] = \"RENAME\";\n FFMessageType[\"CREATE_DIR\"] = \"CREATE_DIR\";\n FFMessageType[\"LIST_DIR\"] = \"LIST_DIR\";\n FFMessageType[\"DELETE_DIR\"] = \"DELETE_DIR\";\n FFMessageType[\"ERROR\"] = \"ERROR\";\n FFMessageType[\"DOWNLOAD\"] = \"DOWNLOAD\";\n FFMessageType[\"PROGRESS\"] = \"PROGRESS\";\n FFMessageType[\"LOG\"] = \"LOG\";\n FFMessageType[\"MOUNT\"] = \"MOUNT\";\n FFMessageType[\"UNMOUNT\"] = \"UNMOUNT\";\n})(FFMessageType || (FFMessageType = {}));\n\n\nconst ERROR_UNKNOWN_MESSAGE_TYPE = new Error(\"unknown message type\");\nconst ERROR_NOT_LOADED = new Error(\"ffmpeg is not loaded, call `await ffmpeg.load()` first\");\nconst ERROR_TERMINATED = new Error(\"called FFmpeg.terminate()\");\nconst ERROR_IMPORT_FAILURE = new Error(\"failed to import ffmpeg-core.js\");\n\nlet ffmpeg;\nconst load = async ({ coreURL: _coreURL, wasmURL: _wasmURL, workerURL: _workerURL, }) => {\n const first = !ffmpeg;\n try {\n if (!_coreURL)\n _coreURL = CORE_URL;\n // when web worker type is `classic`.\n importScripts(_coreURL);\n }\n catch {\n if (!_coreURL)\n _coreURL = CORE_URL.replace('/umd/', '/esm/');\n // when web worker type is `module`.\n self.createFFmpegCore = (await import(\n /* webpackIgnore: true */ /* @vite-ignore */ _coreURL)).default;\n if (!self.createFFmpegCore) {\n throw ERROR_IMPORT_FAILURE;\n }\n }\n const coreURL = _coreURL;\n const wasmURL = _wasmURL ? _wasmURL : _coreURL.replace(/.js$/g, \".wasm\");\n const workerURL = _workerURL\n ? _workerURL\n : _coreURL.replace(/.js$/g, \".worker.js\");\n ffmpeg = await self.createFFmpegCore({\n // Fix `Overload resolution failed.` when using multi-threaded ffmpeg-core.\n // Encoded wasmURL and workerURL in the URL as a hack to fix locateFile issue.\n mainScriptUrlOrBlob: `${coreURL}#${btoa(JSON.stringify({ wasmURL, workerURL }))}`,\n });\n ffmpeg.setLogger((data) => self.postMessage({ type: FFMessageType.LOG, data }));\n ffmpeg.setProgress((data) => self.postMessage({\n type: FFMessageType.PROGRESS,\n data,\n }));\n return first;\n};\nconst exec = ({ args, timeout = -1 }) => {\n ffmpeg.setTimeout(timeout);\n ffmpeg.exec(...args);\n const ret = ffmpeg.ret;\n ffmpeg.reset();\n return ret;\n};\nconst writeFile = ({ path, data }) => {\n ffmpeg.FS.writeFile(path, data);\n return true;\n};\nconst readFile = ({ path, encoding }) => ffmpeg.FS.readFile(path, { encoding });\n// TODO: check if deletion works.\nconst deleteFile = ({ path }) => {\n ffmpeg.FS.unlink(path);\n return true;\n};\nconst rename = ({ oldPath, newPath }) => {\n ffmpeg.FS.rename(oldPath, newPath);\n return true;\n};\n// TODO: check if creation works.\nconst createDir = ({ path }) => {\n ffmpeg.FS.mkdir(path);\n return true;\n};\nconst listDir = ({ path }) => {\n const names = ffmpeg.FS.readdir(path);\n const nodes = [];\n for (const name of names) {\n const stat = ffmpeg.FS.stat(`${path}/${name}`);\n const isDir = ffmpeg.FS.isDir(stat.mode);\n nodes.push({ name, isDir });\n }\n return nodes;\n};\n// TODO: check if deletion works.\nconst deleteDir = ({ path }) => {\n ffmpeg.FS.rmdir(path);\n return true;\n};\nconst mount = ({ fsType, options, mountPoint }) => {\n const str = fsType;\n const fs = ffmpeg.FS.filesystems[str];\n if (!fs)\n return false;\n ffmpeg.FS.mount(fs, options, mountPoint);\n return true;\n};\nconst unmount = ({ mountPoint }) => {\n ffmpeg.FS.unmount(mountPoint);\n return true;\n};\nself.onmessage = async ({ data: { id, type, data: _data }, }) => {\n const trans = [];\n let data;\n try {\n if (type !== FFMessageType.LOAD && !ffmpeg)\n throw ERROR_NOT_LOADED; // eslint-disable-line\n switch (type) {\n case FFMessageType.LOAD:\n data = await load(_data);\n break;\n case FFMessageType.EXEC:\n data = exec(_data);\n break;\n case FFMessageType.WRITE_FILE:\n data = writeFile(_data);\n break;\n case FFMessageType.READ_FILE:\n data = readFile(_data);\n break;\n case FFMessageType.DELETE_FILE:\n data = deleteFile(_data);\n break;\n case FFMessageType.RENAME:\n data = rename(_data);\n break;\n case FFMessageType.CREATE_DIR:\n data = createDir(_data);\n break;\n case FFMessageType.LIST_DIR:\n data = listDir(_data);\n break;\n case FFMessageType.DELETE_DIR:\n data = deleteDir(_data);\n break;\n case FFMessageType.MOUNT:\n data = mount(_data);\n break;\n case FFMessageType.UNMOUNT:\n data = unmount(_data);\n break;\n default:\n throw ERROR_UNKNOWN_MESSAGE_TYPE;\n }\n }\n catch (e) {\n self.postMessage({\n id,\n type: FFMessageType.ERROR,\n data: e.toString(),\n });\n return;\n }\n if (data instanceof Uint8Array) {\n trans.push(data.buffer);\n }\n self.postMessage({ id, type, data }, trans);\n};\n\n"; const core_raw = "\nvar createFFmpegCore = (() => {\n var _scriptDir = import.meta.url;\n \n return (\nasync function(createFFmpegCore = {}) {\n\nvar Module=typeof createFFmpegCore!=\"undefined\"?createFFmpegCore:{};var readyPromiseResolve,readyPromiseReject;Module[\"ready\"]=new Promise((resolve,reject)=>{readyPromiseResolve=resolve;readyPromiseReject=reject});const NULL=0;const SIZE_I32=Uint32Array.BYTES_PER_ELEMENT;const DEFAULT_ARGS=[\"./ffmpeg\",\"-nostdin\",\"-y\"];Module[\"NULL\"]=NULL;Module[\"SIZE_I32\"]=SIZE_I32;Module[\"DEFAULT_ARGS\"]=DEFAULT_ARGS;Module[\"ret\"]=-1;Module[\"timeout\"]=-1;Module[\"logger\"]=()=>{};Module[\"progress\"]=()=>{};function stringToPtr(str){const len=Module[\"lengthBytesUTF8\"](str)+1;const ptr=Module[\"_malloc\"](len);Module[\"stringToUTF8\"](str,ptr,len);return ptr}function stringsToPtr(strs){const len=strs.length;const ptr=Module[\"_malloc\"](len*SIZE_I32);for(let i=0;i{throw toThrow};var ENVIRONMENT_IS_WEB=typeof window==\"object\";var ENVIRONMENT_IS_WORKER=typeof importScripts==\"function\";var ENVIRONMENT_IS_NODE=typeof process==\"object\"&&typeof process.versions==\"object\"&&typeof process.versions.node==\"string\";var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;if(ENVIRONMENT_IS_NODE){const{createRequire:createRequire}=await import(\"module\");var require=createRequire(import.meta.url);var fs=require(\"fs\");var nodePath=require(\"path\");if(ENVIRONMENT_IS_WORKER){scriptDirectory=nodePath.dirname(scriptDirectory)+\"/\"}else{scriptDirectory=require(\"url\").fileURLToPath(new URL(\"./\",import.meta.url))}read_=(filename,binary)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);return fs.readFileSync(filename,binary?undefined:\"utf8\")};readBinary=filename=>{var ret=read_(filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}return ret};readAsync=(filename,onload,onerror,binary=true)=>{filename=isFileURI(filename)?new URL(filename):nodePath.normalize(filename);fs.readFile(filename,binary?undefined:\"utf8\",(err,data)=>{if(err)onerror(err);else onload(binary?data.buffer:data)})};if(!Module[\"thisProgram\"]&&process.argv.length>1){thisProgram=process.argv[1].replace(/\\\\/g,\"/\")}arguments_=process.argv.slice(2);quit_=(status,toThrow)=>{process.exitCode=status;throw toThrow};Module[\"inspect\"]=()=>\"[Emscripten Module object]\"}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!=\"undefined\"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.replace(/[?#].*/,\"\").lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}{read_=url=>{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=url=>{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=(url,onload,onerror)=>{var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=()=>{if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=title=>document.title=title}else{}var out=Module[\"print\"]||console.log.bind(console);var err=Module[\"printErr\"]||console.error.bind(console);Object.assign(Module,moduleOverrides);moduleOverrides=null;if(Module[\"arguments\"])arguments_=Module[\"arguments\"];if(Module[\"thisProgram\"])thisProgram=Module[\"thisProgram\"];if(Module[\"quit\"])quit_=Module[\"quit\"];var wasmBinary;if(Module[\"wasmBinary\"])wasmBinary=Module[\"wasmBinary\"];var noExitRuntime=Module[\"noExitRuntime\"]||true;if(typeof WebAssembly!=\"object\"){abort(\"no native wasm support detected\")}var wasmMemory;var ABORT=false;var EXITSTATUS;function assert(condition,text){if(!condition){abort(text)}}var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAP64,HEAPU64,HEAPF64;function updateMemoryViews(){var b=wasmMemory.buffer;Module[\"HEAP8\"]=HEAP8=new Int8Array(b);Module[\"HEAP16\"]=HEAP16=new Int16Array(b);Module[\"HEAP32\"]=HEAP32=new Int32Array(b);Module[\"HEAPU8\"]=HEAPU8=new Uint8Array(b);Module[\"HEAPU16\"]=HEAPU16=new Uint16Array(b);Module[\"HEAPU32\"]=HEAPU32=new Uint32Array(b);Module[\"HEAPF32\"]=HEAPF32=new Float32Array(b);Module[\"HEAPF64\"]=HEAPF64=new Float64Array(b);Module[\"HEAP64\"]=HEAP64=new BigInt64Array(b);Module[\"HEAPU64\"]=HEAPU64=new BigUint64Array(b)}var wasmTable;var __ATPRERUN__=[];var __ATINIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeKeepaliveCounter=0;function keepRuntimeAlive(){return noExitRuntime||runtimeKeepaliveCounter>0}function preRun(){if(Module[\"preRun\"]){if(typeof Module[\"preRun\"]==\"function\")Module[\"preRun\"]=[Module[\"preRun\"]];while(Module[\"preRun\"].length){addOnPreRun(Module[\"preRun\"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function initRuntime(){runtimeInitialized=true;if(!Module[\"noFSInit\"]&&!FS.init.initialized)FS.init();FS.ignorePermissions=false;TTY.init();SOCKFS.root=FS.mount(SOCKFS,{},null);callRuntimeCallbacks(__ATINIT__)}function postRun(){if(Module[\"postRun\"]){if(typeof Module[\"postRun\"]==\"function\")Module[\"postRun\"]=[Module[\"postRun\"]];while(Module[\"postRun\"].length){addOnPostRun(Module[\"postRun\"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}function addOnInit(cb){__ATINIT__.unshift(cb)}function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}}function removeRunDependency(id){runDependencies--;if(Module[\"monitorRunDependencies\"]){Module[\"monitorRunDependencies\"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}function abort(what){if(Module[\"onAbort\"]){Module[\"onAbort\"](what)}what=\"Aborted(\"+what+\")\";err(what);ABORT=true;EXITSTATUS=1;what+=\". Build with -sASSERTIONS for more info.\";var e=new WebAssembly.RuntimeError(what);readyPromiseReject(e);throw e}var dataURIPrefix=\"data:application/octet-stream;base64,\";function isDataURI(filename){return filename.startsWith(dataURIPrefix)}function isFileURI(filename){return filename.startsWith(\"file://\")}var wasmBinaryFile;if(Module[\"locateFile\"]){wasmBinaryFile=\"ffmpeg-core.wasm\";if(!isDataURI(wasmBinaryFile)){wasmBinaryFile=locateFile(wasmBinaryFile)}}else{wasmBinaryFile=new URL(\"ffmpeg-core.wasm\",import.meta.url).href}function getBinary(file){try{if(file==wasmBinaryFile&&wasmBinary){return new Uint8Array(wasmBinary)}if(readBinary){return readBinary(file)}throw\"both async and sync fetching of the wasm failed\"}catch(err){abort(err)}}function getBinaryPromise(binaryFile){if(!wasmBinary&&(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER)){if(typeof fetch==\"function\"&&!isFileURI(binaryFile)){return fetch(binaryFile,{credentials:\"same-origin\"}).then(response=>{if(!response[\"ok\"]){throw\"failed to load wasm binary file at '\"+binaryFile+\"'\"}return response[\"arrayBuffer\"]()}).catch(()=>getBinary(binaryFile))}else{if(readAsync){return new Promise((resolve,reject)=>{readAsync(binaryFile,response=>resolve(new Uint8Array(response)),reject)})}}}return Promise.resolve().then(()=>getBinary(binaryFile))}function instantiateArrayBuffer(binaryFile,imports,receiver){return getBinaryPromise(binaryFile).then(binary=>{return WebAssembly.instantiate(binary,imports)}).then(instance=>{return instance}).then(receiver,reason=>{err(\"failed to asynchronously prepare wasm: \"+reason);abort(reason)})}function instantiateAsync(binary,binaryFile,imports,callback){if(!binary&&typeof WebAssembly.instantiateStreaming==\"function\"&&!isDataURI(binaryFile)&&!isFileURI(binaryFile)&&!ENVIRONMENT_IS_NODE&&typeof fetch==\"function\"){return fetch(binaryFile,{credentials:\"same-origin\"}).then(response=>{var result=WebAssembly.instantiateStreaming(response,imports);return result.then(callback,function(reason){err(\"wasm streaming compile failed: \"+reason);err(\"falling back to ArrayBuffer instantiation\");return instantiateArrayBuffer(binaryFile,imports,callback)})})}else{return instantiateArrayBuffer(binaryFile,imports,callback)}}function createWasm(){var info={\"a\":wasmImports};function receiveInstance(instance,module){var exports=instance.exports;Module[\"asm\"]=exports;wasmMemory=Module[\"asm\"][\"ra\"];updateMemoryViews();wasmTable=Module[\"asm\"][\"ua\"];addOnInit(Module[\"asm\"][\"sa\"]);removeRunDependency(\"wasm-instantiate\");return exports}addRunDependency(\"wasm-instantiate\");function receiveInstantiationResult(result){receiveInstance(result[\"instance\"])}if(Module[\"instantiateWasm\"]){try{return Module[\"instantiateWasm\"](info,receiveInstance)}catch(e){err(\"Module.instantiateWasm callback failed with error: \"+e);readyPromiseReject(e)}}instantiateAsync(wasmBinary,wasmBinaryFile,info,receiveInstantiationResult).catch(readyPromiseReject);return{}}var ASM_CONSTS={6059608:$0=>{Module.ret=$0}};function send_progress(progress,time){Module.receiveProgress(progress,time)}function is_timeout(diff){if(Module.timeout===-1)return 0;else{return Module.timeout<=diff}}function ExitStatus(status){this.name=\"ExitStatus\";this.message=`Program terminated with exit(${status})`;this.status=status}function callRuntimeCallbacks(callbacks){while(callbacks.length>0){callbacks.shift()(Module)}}var wasmTableMirror=[];function getWasmTableEntry(funcPtr){var func=wasmTableMirror[funcPtr];if(!func){if(funcPtr>=wasmTableMirror.length)wasmTableMirror.length=funcPtr+1;wasmTableMirror[funcPtr]=func=wasmTable.get(funcPtr)}return func}function getValue(ptr,type=\"i8\"){if(type.endsWith(\"*\"))type=\"*\";switch(type){case\"i1\":return HEAP8[ptr>>0];case\"i8\":return HEAP8[ptr>>0];case\"i16\":return HEAP16[ptr>>1];case\"i32\":return HEAP32[ptr>>2];case\"i64\":return HEAP64[ptr>>3];case\"float\":return HEAPF32[ptr>>2];case\"double\":return HEAPF64[ptr>>3];case\"*\":return HEAPU32[ptr>>2];default:abort(`invalid type for getValue: ${type}`)}}function setValue(ptr,value,type=\"i8\"){if(type.endsWith(\"*\"))type=\"*\";switch(type){case\"i1\":HEAP8[ptr>>0]=value;break;case\"i8\":HEAP8[ptr>>0]=value;break;case\"i16\":HEAP16[ptr>>1]=value;break;case\"i32\":HEAP32[ptr>>2]=value;break;case\"i64\":HEAP64[ptr>>3]=BigInt(value);break;case\"float\":HEAPF32[ptr>>2]=value;break;case\"double\":HEAPF64[ptr>>3]=value;break;case\"*\":HEAPU32[ptr>>2]=value;break;default:abort(`invalid type for setValue: ${type}`)}}var UTF8Decoder=typeof TextDecoder!=\"undefined\"?new TextDecoder(\"utf8\"):undefined;function UTF8ArrayToString(heapOrArray,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var endPtr=idx;while(heapOrArray[endPtr]&&!(endPtr>=endIdx))++endPtr;if(endPtr-idx>16&&heapOrArray.buffer&&UTF8Decoder){return UTF8Decoder.decode(heapOrArray.subarray(idx,endPtr))}var str=\"\";while(idx>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function ___assert_fail(condition,filename,line,func){abort(`Assertion failed: ${UTF8ToString(condition)}, at: `+[filename?UTF8ToString(filename):\"unknown filename\",line,func?UTF8ToString(func):\"unknown function\"])}function ExceptionInfo(excPtr){this.excPtr=excPtr;this.ptr=excPtr-24;this.set_type=function(type){HEAPU32[this.ptr+4>>2]=type};this.get_type=function(){return HEAPU32[this.ptr+4>>2]};this.set_destructor=function(destructor){HEAPU32[this.ptr+8>>2]=destructor};this.get_destructor=function(){return HEAPU32[this.ptr+8>>2]};this.set_caught=function(caught){caught=caught?1:0;HEAP8[this.ptr+12>>0]=caught};this.get_caught=function(){return HEAP8[this.ptr+12>>0]!=0};this.set_rethrown=function(rethrown){rethrown=rethrown?1:0;HEAP8[this.ptr+13>>0]=rethrown};this.get_rethrown=function(){return HEAP8[this.ptr+13>>0]!=0};this.init=function(type,destructor){this.set_adjusted_ptr(0);this.set_type(type);this.set_destructor(destructor)};this.set_adjusted_ptr=function(adjustedPtr){HEAPU32[this.ptr+16>>2]=adjustedPtr};this.get_adjusted_ptr=function(){return HEAPU32[this.ptr+16>>2]};this.get_exception_ptr=function(){var isPointer=___cxa_is_pointer_type(this.get_type());if(isPointer){return HEAPU32[this.excPtr>>2]}var adjusted=this.get_adjusted_ptr();if(adjusted!==0)return adjusted;return this.excPtr}}var exceptionLast=0;var uncaughtExceptionCount=0;function ___cxa_throw(ptr,type,destructor){var info=new ExceptionInfo(ptr);info.init(type,destructor);exceptionLast=ptr;uncaughtExceptionCount++;throw exceptionLast}var dlopenMissingError=\"To use dlopen, you need enable dynamic linking, see https://emscripten.org/docs/compiling/Dynamic-Linking.html\";function ___dlsym(handle,symbol){abort(dlopenMissingError)}var PATH={isAbs:path=>path.charAt(0)===\"/\",splitPath:filename=>{var splitPathRe=/^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;return splitPathRe.exec(filename).slice(1)},normalizeArray:(parts,allowAboveRoot)=>{var up=0;for(var i=parts.length-1;i>=0;i--){var last=parts[i];if(last===\".\"){parts.splice(i,1)}else if(last===\"..\"){parts.splice(i,1);up++}else if(up){parts.splice(i,1);up--}}if(allowAboveRoot){for(;up;up--){parts.unshift(\"..\")}}return parts},normalize:path=>{var isAbsolute=PATH.isAbs(path),trailingSlash=path.substr(-1)===\"/\";path=PATH.normalizeArray(path.split(\"/\").filter(p=>!!p),!isAbsolute).join(\"/\");if(!path&&!isAbsolute){path=\".\"}if(path&&trailingSlash){path+=\"/\"}return(isAbsolute?\"/\":\"\")+path},dirname:path=>{var result=PATH.splitPath(path),root=result[0],dir=result[1];if(!root&&!dir){return\".\"}if(dir){dir=dir.substr(0,dir.length-1)}return root+dir},basename:path=>{if(path===\"/\")return\"/\";path=PATH.normalize(path);path=path.replace(/\\/$/,\"\");var lastSlash=path.lastIndexOf(\"/\");if(lastSlash===-1)return path;return path.substr(lastSlash+1)},join:function(){var paths=Array.prototype.slice.call(arguments);return PATH.normalize(paths.join(\"/\"))},join2:(l,r)=>{return PATH.normalize(l+\"/\"+r)}};function initRandomFill(){if(typeof crypto==\"object\"&&typeof crypto[\"getRandomValues\"]==\"function\"){return view=>crypto.getRandomValues(view)}else if(ENVIRONMENT_IS_NODE){try{var crypto_module=require(\"crypto\");var randomFillSync=crypto_module[\"randomFillSync\"];if(randomFillSync){return view=>crypto_module[\"randomFillSync\"](view)}var randomBytes=crypto_module[\"randomBytes\"];return view=>(view.set(randomBytes(view.byteLength)),view)}catch(e){}}abort(\"initRandomDevice\")}function randomFill(view){return(randomFill=initRandomFill())(view)}var PATH_FS={resolve:function(){var resolvedPath=\"\",resolvedAbsolute=false;for(var i=arguments.length-1;i>=-1&&!resolvedAbsolute;i--){var path=i>=0?arguments[i]:FS.cwd();if(typeof path!=\"string\"){throw new TypeError(\"Arguments to path.resolve must be strings\")}else if(!path){return\"\"}resolvedPath=path+\"/\"+resolvedPath;resolvedAbsolute=PATH.isAbs(path)}resolvedPath=PATH.normalizeArray(resolvedPath.split(\"/\").filter(p=>!!p),!resolvedAbsolute).join(\"/\");return(resolvedAbsolute?\"/\":\"\")+resolvedPath||\".\"},relative:(from,to)=>{from=PATH_FS.resolve(from).substr(1);to=PATH_FS.resolve(to).substr(1);function trim(arr){var start=0;for(;start=0;end--){if(arr[end]!==\"\")break}if(start>end)return[];return arr.slice(start,end-start+1)}var fromParts=trim(from.split(\"/\"));var toParts=trim(to.split(\"/\"));var length=Math.min(fromParts.length,toParts.length);var samePartsLength=length;for(var i=0;i=55296&&c<=57343){len+=4;++i}else{len+=3}}return len}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i=55296&&u<=57343){var u1=str.charCodeAt(++i);u=65536+((u&1023)<<10)|u1&1023}if(u<=127){if(outIdx>=endIdx)break;heap[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;heap[outIdx++]=192|u>>6;heap[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;heap[outIdx++]=224|u>>12;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}else{if(outIdx+3>=endIdx)break;heap[outIdx++]=240|u>>18;heap[outIdx++]=128|u>>12&63;heap[outIdx++]=128|u>>6&63;heap[outIdx++]=128|u&63}}heap[outIdx]=0;return outIdx-startIdx}function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}var TTY={ttys:[],init:function(){},shutdown:function(){},register:function(dev,ops){TTY.ttys[dev]={input:[],output:[],ops:ops};FS.registerDevice(dev,TTY.stream_ops)},stream_ops:{open:function(stream){var tty=TTY.ttys[stream.node.rdev];if(!tty){throw new FS.ErrnoError(43)}stream.tty=tty;stream.seekable=false},close:function(stream){stream.tty.ops.fsync(stream.tty)},fsync:function(stream){stream.tty.ops.fsync(stream.tty)},read:function(stream,buffer,offset,length,pos){if(!stream.tty||!stream.tty.ops.get_char){throw new FS.ErrnoError(60)}var bytesRead=0;for(var i=0;i0){result=buf.slice(0,bytesRead).toString(\"utf-8\")}else{result=null}}else if(typeof window!=\"undefined\"&&typeof window.prompt==\"function\"){result=window.prompt(\"Input: \");if(result!==null){result+=\"\\n\"}}else if(typeof readline==\"function\"){result=readline();if(result!==null){result+=\"\\n\"}}if(!result){return null}tty.input=intArrayFromString(result,true)}return tty.input.shift()},put_char:function(tty,val){if(val===null||val===10){out(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync:function(tty){if(tty.output&&tty.output.length>0){out(UTF8ArrayToString(tty.output,0));tty.output=[]}}},default_tty1_ops:{put_char:function(tty,val){if(val===null||val===10){err(UTF8ArrayToString(tty.output,0));tty.output=[]}else{if(val!=0)tty.output.push(val)}},fsync:function(tty){if(tty.output&&tty.output.length>0){err(UTF8ArrayToString(tty.output,0));tty.output=[]}}}};function zeroMemory(address,size){HEAPU8.fill(0,address,address+size);return address}function alignMemory(size,alignment){return Math.ceil(size/alignment)*alignment}function mmapAlloc(size){size=alignMemory(size,65536);var ptr=_emscripten_builtin_memalign(65536,size);if(!ptr)return 0;return zeroMemory(ptr,size)}var MEMFS={ops_table:null,mount:function(mount){return MEMFS.createNode(null,\"/\",16384|511,0)},createNode:function(parent,name,mode,dev){if(FS.isBlkdev(mode)||FS.isFIFO(mode)){throw new FS.ErrnoError(63)}if(!MEMFS.ops_table){MEMFS.ops_table={dir:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,lookup:MEMFS.node_ops.lookup,mknod:MEMFS.node_ops.mknod,rename:MEMFS.node_ops.rename,unlink:MEMFS.node_ops.unlink,rmdir:MEMFS.node_ops.rmdir,readdir:MEMFS.node_ops.readdir,symlink:MEMFS.node_ops.symlink},stream:{llseek:MEMFS.stream_ops.llseek}},file:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:{llseek:MEMFS.stream_ops.llseek,read:MEMFS.stream_ops.read,write:MEMFS.stream_ops.write,allocate:MEMFS.stream_ops.allocate,mmap:MEMFS.stream_ops.mmap,msync:MEMFS.stream_ops.msync}},link:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr,readlink:MEMFS.node_ops.readlink},stream:{}},chrdev:{node:{getattr:MEMFS.node_ops.getattr,setattr:MEMFS.node_ops.setattr},stream:FS.chrdev_stream_ops}}}var node=FS.createNode(parent,name,mode,dev);if(FS.isDir(node.mode)){node.node_ops=MEMFS.ops_table.dir.node;node.stream_ops=MEMFS.ops_table.dir.stream;node.contents={}}else if(FS.isFile(node.mode)){node.node_ops=MEMFS.ops_table.file.node;node.stream_ops=MEMFS.ops_table.file.stream;node.usedBytes=0;node.contents=null}else if(FS.isLink(node.mode)){node.node_ops=MEMFS.ops_table.link.node;node.stream_ops=MEMFS.ops_table.link.stream}else if(FS.isChrdev(node.mode)){node.node_ops=MEMFS.ops_table.chrdev.node;node.stream_ops=MEMFS.ops_table.chrdev.stream}node.timestamp=Date.now();if(parent){parent.contents[name]=node;parent.timestamp=node.timestamp}return node},getFileDataAsTypedArray:function(node){if(!node.contents)return new Uint8Array(0);if(node.contents.subarray)return node.contents.subarray(0,node.usedBytes);return new Uint8Array(node.contents)},expandFileStorage:function(node,newCapacity){var prevCapacity=node.contents?node.contents.length:0;if(prevCapacity>=newCapacity)return;var CAPACITY_DOUBLING_MAX=1024*1024;newCapacity=Math.max(newCapacity,prevCapacity*(prevCapacity>>0);if(prevCapacity!=0)newCapacity=Math.max(newCapacity,256);var oldContents=node.contents;node.contents=new Uint8Array(newCapacity);if(node.usedBytes>0)node.contents.set(oldContents.subarray(0,node.usedBytes),0)},resizeFileStorage:function(node,newSize){if(node.usedBytes==newSize)return;if(newSize==0){node.contents=null;node.usedBytes=0}else{var oldContents=node.contents;node.contents=new Uint8Array(newSize);if(oldContents){node.contents.set(oldContents.subarray(0,Math.min(newSize,node.usedBytes)))}node.usedBytes=newSize}},node_ops:{getattr:function(node){var attr={};attr.dev=FS.isChrdev(node.mode)?node.id:1;attr.ino=node.id;attr.mode=node.mode;attr.nlink=1;attr.uid=0;attr.gid=0;attr.rdev=node.rdev;if(FS.isDir(node.mode)){attr.size=4096}else if(FS.isFile(node.mode)){attr.size=node.usedBytes}else if(FS.isLink(node.mode)){attr.size=node.link.length}else{attr.size=0}attr.atime=new Date(node.timestamp);attr.mtime=new Date(node.timestamp);attr.ctime=new Date(node.timestamp);attr.blksize=4096;attr.blocks=Math.ceil(attr.size/attr.blksize);return attr},setattr:function(node,attr){if(attr.mode!==undefined){node.mode=attr.mode}if(attr.timestamp!==undefined){node.timestamp=attr.timestamp}if(attr.size!==undefined){MEMFS.resizeFileStorage(node,attr.size)}},lookup:function(parent,name){throw FS.genericErrors[44]},mknod:function(parent,name,mode,dev){return MEMFS.createNode(parent,name,mode,dev)},rename:function(old_node,new_dir,new_name){if(FS.isDir(old_node.mode)){var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(new_node){for(var i in new_node.contents){throw new FS.ErrnoError(55)}}}delete old_node.parent.contents[old_node.name];old_node.parent.timestamp=Date.now();old_node.name=new_name;new_dir.contents[new_name]=old_node;new_dir.timestamp=old_node.parent.timestamp;old_node.parent=new_dir},unlink:function(parent,name){delete parent.contents[name];parent.timestamp=Date.now()},rmdir:function(parent,name){var node=FS.lookupNode(parent,name);for(var i in node.contents){throw new FS.ErrnoError(55)}delete parent.contents[name];parent.timestamp=Date.now()},readdir:function(node){var entries=[\".\",\"..\"];for(var key in node.contents){if(!node.contents.hasOwnProperty(key)){continue}entries.push(key)}return entries},symlink:function(parent,newname,oldpath){var node=MEMFS.createNode(parent,newname,511|40960,0);node.link=oldpath;return node},readlink:function(node){if(!FS.isLink(node.mode)){throw new FS.ErrnoError(28)}return node.link}},stream_ops:{read:function(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=stream.node.usedBytes)return 0;var size=Math.min(stream.node.usedBytes-position,length);if(size>8&&contents.subarray){buffer.set(contents.subarray(position,position+size),offset)}else{for(var i=0;i0||position+length{assert(arrayBuffer,`Loading data file \"${url}\" failed (no arrayBuffer).`);onload(new Uint8Array(arrayBuffer));if(dep)removeRunDependency(dep)},event=>{if(onerror){onerror()}else{throw`Loading data file \"${url}\" failed.`}});if(dep)addRunDependency(dep)}var preloadPlugins=Module[\"preloadPlugins\"]||[];function FS_handledByPreloadPlugin(byteArray,fullname,finish,onerror){if(typeof Browser!=\"undefined\")Browser.init();var handled=false;preloadPlugins.forEach(function(plugin){if(handled)return;if(plugin[\"canHandle\"](fullname)){plugin[\"handle\"](byteArray,fullname,finish,onerror);handled=true}});return handled}function FS_createPreloadedFile(parent,name,url,canRead,canWrite,onload,onerror,dontCreateFile,canOwn,preFinish){var fullname=name?PATH_FS.resolve(PATH.join2(parent,name)):parent;var dep=getUniqueRunDependency(`cp ${fullname}`);function processData(byteArray){function finish(byteArray){if(preFinish)preFinish();if(!dontCreateFile){FS.createDataFile(parent,name,byteArray,canRead,canWrite,canOwn)}if(onload)onload();removeRunDependency(dep)}if(FS_handledByPreloadPlugin(byteArray,fullname,finish,()=>{if(onerror)onerror();removeRunDependency(dep)})){return}finish(byteArray)}addRunDependency(dep);if(typeof url==\"string\"){asyncLoad(url,byteArray=>processData(byteArray),onerror)}else{processData(url)}}function FS_modeStringToFlags(str){var flagModes={\"r\":0,\"r+\":2,\"w\":512|64|1,\"w+\":512|64|2,\"a\":1024|64|1,\"a+\":1024|64|2};var flags=flagModes[str];if(typeof flags==\"undefined\"){throw new Error(`Unknown file open mode: ${str}`)}return flags}function FS_getMode(canRead,canWrite){var mode=0;if(canRead)mode|=292|73;if(canWrite)mode|=146;return mode}var WORKERFS={DIR_MODE:16895,FILE_MODE:33279,reader:null,mount:function(mount){assert(ENVIRONMENT_IS_WORKER);if(!WORKERFS.reader)WORKERFS.reader=new FileReaderSync;var root=WORKERFS.createNode(null,\"/\",WORKERFS.DIR_MODE,0);var createdParents={};function ensureParent(path){var parts=path.split(\"/\");var parent=root;for(var i=0;i=stream.node.size)return 0;var chunk=stream.node.contents.slice(position,position+length);var ab=WORKERFS.reader.readAsArrayBuffer(chunk);buffer.set(new Uint8Array(ab),offset);return chunk.size},write:function(stream,buffer,offset,length,position){throw new FS.ErrnoError(29)},llseek:function(stream,offset,whence){var position=offset;if(whence===1){position+=stream.position}else if(whence===2){if(FS.isFile(stream.node.mode)){position+=stream.node.size}}if(position<0){throw new FS.ErrnoError(28)}return position}}};var FS={root:null,mounts:[],devices:{},streams:[],nextInode:1,nameTable:null,currentPath:\"/\",initialized:false,ignorePermissions:true,ErrnoError:null,genericErrors:{},filesystems:null,syncFSRequests:0,lookupPath:(path,opts={})=>{path=PATH_FS.resolve(path);if(!path)return{path:\"\",node:null};var defaults={follow_mount:true,recurse_count:0};opts=Object.assign(defaults,opts);if(opts.recurse_count>8){throw new FS.ErrnoError(32)}var parts=path.split(\"/\").filter(p=>!!p);var current=FS.root;var current_path=\"/\";for(var i=0;i40){throw new FS.ErrnoError(32)}}}}return{path:current_path,node:current}},getPath:node=>{var path;while(true){if(FS.isRoot(node)){var mount=node.mount.mountpoint;if(!path)return mount;return mount[mount.length-1]!==\"/\"?`${mount}/${path}`:mount+path}path=path?`${node.name}/${path}`:node.name;node=node.parent}},hashName:(parentid,name)=>{var hash=0;for(var i=0;i>>0)%FS.nameTable.length},hashAddNode:node=>{var hash=FS.hashName(node.parent.id,node.name);node.name_next=FS.nameTable[hash];FS.nameTable[hash]=node},hashRemoveNode:node=>{var hash=FS.hashName(node.parent.id,node.name);if(FS.nameTable[hash]===node){FS.nameTable[hash]=node.name_next}else{var current=FS.nameTable[hash];while(current){if(current.name_next===node){current.name_next=node.name_next;break}current=current.name_next}}},lookupNode:(parent,name)=>{var errCode=FS.mayLookup(parent);if(errCode){throw new FS.ErrnoError(errCode,parent)}var hash=FS.hashName(parent.id,name);for(var node=FS.nameTable[hash];node;node=node.name_next){var nodeName=node.name;if(node.parent.id===parent.id&&nodeName===name){return node}}return FS.lookup(parent,name)},createNode:(parent,name,mode,rdev)=>{var node=new FS.FSNode(parent,name,mode,rdev);FS.hashAddNode(node);return node},destroyNode:node=>{FS.hashRemoveNode(node)},isRoot:node=>{return node===node.parent},isMountpoint:node=>{return!!node.mounted},isFile:mode=>{return(mode&61440)===32768},isDir:mode=>{return(mode&61440)===16384},isLink:mode=>{return(mode&61440)===40960},isChrdev:mode=>{return(mode&61440)===8192},isBlkdev:mode=>{return(mode&61440)===24576},isFIFO:mode=>{return(mode&61440)===4096},isSocket:mode=>{return(mode&49152)===49152},flagsToPermissionString:flag=>{var perms=[\"r\",\"w\",\"rw\"][flag&3];if(flag&512){perms+=\"w\"}return perms},nodePermissions:(node,perms)=>{if(FS.ignorePermissions){return 0}if(perms.includes(\"r\")&&!(node.mode&292)){return 2}else if(perms.includes(\"w\")&&!(node.mode&146)){return 2}else if(perms.includes(\"x\")&&!(node.mode&73)){return 2}return 0},mayLookup:dir=>{var errCode=FS.nodePermissions(dir,\"x\");if(errCode)return errCode;if(!dir.node_ops.lookup)return 2;return 0},mayCreate:(dir,name)=>{try{var node=FS.lookupNode(dir,name);return 20}catch(e){}return FS.nodePermissions(dir,\"wx\")},mayDelete:(dir,name,isdir)=>{var node;try{node=FS.lookupNode(dir,name)}catch(e){return e.errno}var errCode=FS.nodePermissions(dir,\"wx\");if(errCode){return errCode}if(isdir){if(!FS.isDir(node.mode)){return 54}if(FS.isRoot(node)||FS.getPath(node)===FS.cwd()){return 10}}else{if(FS.isDir(node.mode)){return 31}}return 0},mayOpen:(node,flags)=>{if(!node){return 44}if(FS.isLink(node.mode)){return 32}else if(FS.isDir(node.mode)){if(FS.flagsToPermissionString(flags)!==\"r\"||flags&512){return 31}}return FS.nodePermissions(node,FS.flagsToPermissionString(flags))},MAX_OPEN_FDS:4096,nextfd:()=>{for(var fd=0;fd<=FS.MAX_OPEN_FDS;fd++){if(!FS.streams[fd]){return fd}}throw new FS.ErrnoError(33)},getStream:fd=>FS.streams[fd],createStream:(stream,fd=-1)=>{if(!FS.FSStream){FS.FSStream=function(){this.shared={}};FS.FSStream.prototype={};Object.defineProperties(FS.FSStream.prototype,{object:{get:function(){return this.node},set:function(val){this.node=val}},isRead:{get:function(){return(this.flags&2097155)!==1}},isWrite:{get:function(){return(this.flags&2097155)!==0}},isAppend:{get:function(){return this.flags&1024}},flags:{get:function(){return this.shared.flags},set:function(val){this.shared.flags=val}},position:{get:function(){return this.shared.position},set:function(val){this.shared.position=val}}})}stream=Object.assign(new FS.FSStream,stream);if(fd==-1){fd=FS.nextfd()}stream.fd=fd;FS.streams[fd]=stream;return stream},closeStream:fd=>{FS.streams[fd]=null},chrdev_stream_ops:{open:stream=>{var device=FS.getDevice(stream.node.rdev);stream.stream_ops=device.stream_ops;if(stream.stream_ops.open){stream.stream_ops.open(stream)}},llseek:()=>{throw new FS.ErrnoError(70)}},major:dev=>dev>>8,minor:dev=>dev&255,makedev:(ma,mi)=>ma<<8|mi,registerDevice:(dev,ops)=>{FS.devices[dev]={stream_ops:ops}},getDevice:dev=>FS.devices[dev],getMounts:mount=>{var mounts=[];var check=[mount];while(check.length){var m=check.pop();mounts.push(m);check.push.apply(check,m.mounts)}return mounts},syncfs:(populate,callback)=>{if(typeof populate==\"function\"){callback=populate;populate=false}FS.syncFSRequests++;if(FS.syncFSRequests>1){err(`warning: ${FS.syncFSRequests} FS.syncfs operations in flight at once, probably just doing extra work`)}var mounts=FS.getMounts(FS.root.mount);var completed=0;function doCallback(errCode){FS.syncFSRequests--;return callback(errCode)}function done(errCode){if(errCode){if(!done.errored){done.errored=true;return doCallback(errCode)}return}if(++completed>=mounts.length){doCallback(null)}}mounts.forEach(mount=>{if(!mount.type.syncfs){return done(null)}mount.type.syncfs(mount,populate,done)})},mount:(type,opts,mountpoint)=>{var root=mountpoint===\"/\";var pseudo=!mountpoint;var node;if(root&&FS.root){throw new FS.ErrnoError(10)}else if(!root&&!pseudo){var lookup=FS.lookupPath(mountpoint,{follow_mount:false});mountpoint=lookup.path;node=lookup.node;if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}if(!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}}var mount={type:type,opts:opts,mountpoint:mountpoint,mounts:[]};var mountRoot=type.mount(mount);mountRoot.mount=mount;mount.root=mountRoot;if(root){FS.root=mountRoot}else if(node){node.mounted=mount;if(node.mount){node.mount.mounts.push(mount)}}return mountRoot},unmount:mountpoint=>{var lookup=FS.lookupPath(mountpoint,{follow_mount:false});if(!FS.isMountpoint(lookup.node)){throw new FS.ErrnoError(28)}var node=lookup.node;var mount=node.mounted;var mounts=FS.getMounts(mount);Object.keys(FS.nameTable).forEach(hash=>{var current=FS.nameTable[hash];while(current){var next=current.name_next;if(mounts.includes(current.mount)){FS.destroyNode(current)}current=next}});node.mounted=null;var idx=node.mount.mounts.indexOf(mount);node.mount.mounts.splice(idx,1)},lookup:(parent,name)=>{return parent.node_ops.lookup(parent,name)},mknod:(path,mode,dev)=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);if(!name||name===\".\"||name===\"..\"){throw new FS.ErrnoError(28)}var errCode=FS.mayCreate(parent,name);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.mknod){throw new FS.ErrnoError(63)}return parent.node_ops.mknod(parent,name,mode,dev)},create:(path,mode)=>{mode=mode!==undefined?mode:438;mode&=4095;mode|=32768;return FS.mknod(path,mode,0)},mkdir:(path,mode)=>{mode=mode!==undefined?mode:511;mode&=511|512;mode|=16384;return FS.mknod(path,mode,0)},mkdirTree:(path,mode)=>{var dirs=path.split(\"/\");var d=\"\";for(var i=0;i{if(typeof dev==\"undefined\"){dev=mode;mode=438}mode|=8192;return FS.mknod(path,mode,dev)},symlink:(oldpath,newpath)=>{if(!PATH_FS.resolve(oldpath)){throw new FS.ErrnoError(44)}var lookup=FS.lookupPath(newpath,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var newname=PATH.basename(newpath);var errCode=FS.mayCreate(parent,newname);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.symlink){throw new FS.ErrnoError(63)}return parent.node_ops.symlink(parent,newname,oldpath)},rename:(old_path,new_path)=>{var old_dirname=PATH.dirname(old_path);var new_dirname=PATH.dirname(new_path);var old_name=PATH.basename(old_path);var new_name=PATH.basename(new_path);var lookup,old_dir,new_dir;lookup=FS.lookupPath(old_path,{parent:true});old_dir=lookup.node;lookup=FS.lookupPath(new_path,{parent:true});new_dir=lookup.node;if(!old_dir||!new_dir)throw new FS.ErrnoError(44);if(old_dir.mount!==new_dir.mount){throw new FS.ErrnoError(75)}var old_node=FS.lookupNode(old_dir,old_name);var relative=PATH_FS.relative(old_path,new_dirname);if(relative.charAt(0)!==\".\"){throw new FS.ErrnoError(28)}relative=PATH_FS.relative(new_path,old_dirname);if(relative.charAt(0)!==\".\"){throw new FS.ErrnoError(55)}var new_node;try{new_node=FS.lookupNode(new_dir,new_name)}catch(e){}if(old_node===new_node){return}var isdir=FS.isDir(old_node.mode);var errCode=FS.mayDelete(old_dir,old_name,isdir);if(errCode){throw new FS.ErrnoError(errCode)}errCode=new_node?FS.mayDelete(new_dir,new_name,isdir):FS.mayCreate(new_dir,new_name);if(errCode){throw new FS.ErrnoError(errCode)}if(!old_dir.node_ops.rename){throw new FS.ErrnoError(63)}if(FS.isMountpoint(old_node)||new_node&&FS.isMountpoint(new_node)){throw new FS.ErrnoError(10)}if(new_dir!==old_dir){errCode=FS.nodePermissions(old_dir,\"w\");if(errCode){throw new FS.ErrnoError(errCode)}}FS.hashRemoveNode(old_node);try{old_dir.node_ops.rename(old_node,new_dir,new_name)}catch(e){throw e}finally{FS.hashAddNode(old_node)}},rmdir:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,true);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.rmdir){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.rmdir(parent,name);FS.destroyNode(node)},readdir:path=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node.node_ops.readdir){throw new FS.ErrnoError(54)}return node.node_ops.readdir(node)},unlink:path=>{var lookup=FS.lookupPath(path,{parent:true});var parent=lookup.node;if(!parent){throw new FS.ErrnoError(44)}var name=PATH.basename(path);var node=FS.lookupNode(parent,name);var errCode=FS.mayDelete(parent,name,false);if(errCode){throw new FS.ErrnoError(errCode)}if(!parent.node_ops.unlink){throw new FS.ErrnoError(63)}if(FS.isMountpoint(node)){throw new FS.ErrnoError(10)}parent.node_ops.unlink(parent,name);FS.destroyNode(node)},readlink:path=>{var lookup=FS.lookupPath(path);var link=lookup.node;if(!link){throw new FS.ErrnoError(44)}if(!link.node_ops.readlink){throw new FS.ErrnoError(28)}return PATH_FS.resolve(FS.getPath(link.parent),link.node_ops.readlink(link))},stat:(path,dontFollow)=>{var lookup=FS.lookupPath(path,{follow:!dontFollow});var node=lookup.node;if(!node){throw new FS.ErrnoError(44)}if(!node.node_ops.getattr){throw new FS.ErrnoError(63)}return node.node_ops.getattr(node)},lstat:path=>{return FS.stat(path,true)},chmod:(path,mode,dontFollow)=>{var node;if(typeof path==\"string\"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{mode:mode&4095|node.mode&~4095,timestamp:Date.now()})},lchmod:(path,mode)=>{FS.chmod(path,mode,true)},fchmod:(fd,mode)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chmod(stream.node,mode)},chown:(path,uid,gid,dontFollow)=>{var node;if(typeof path==\"string\"){var lookup=FS.lookupPath(path,{follow:!dontFollow});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}node.node_ops.setattr(node,{timestamp:Date.now()})},lchown:(path,uid,gid)=>{FS.chown(path,uid,gid,true)},fchown:(fd,uid,gid)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}FS.chown(stream.node,uid,gid)},truncate:(path,len)=>{if(len<0){throw new FS.ErrnoError(28)}var node;if(typeof path==\"string\"){var lookup=FS.lookupPath(path,{follow:true});node=lookup.node}else{node=path}if(!node.node_ops.setattr){throw new FS.ErrnoError(63)}if(FS.isDir(node.mode)){throw new FS.ErrnoError(31)}if(!FS.isFile(node.mode)){throw new FS.ErrnoError(28)}var errCode=FS.nodePermissions(node,\"w\");if(errCode){throw new FS.ErrnoError(errCode)}node.node_ops.setattr(node,{size:len,timestamp:Date.now()})},ftruncate:(fd,len)=>{var stream=FS.getStream(fd);if(!stream){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(28)}FS.truncate(stream.node,len)},utime:(path,atime,mtime)=>{var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;node.node_ops.setattr(node,{timestamp:Math.max(atime,mtime)})},open:(path,flags,mode)=>{if(path===\"\"){throw new FS.ErrnoError(44)}flags=typeof flags==\"string\"?FS_modeStringToFlags(flags):flags;mode=typeof mode==\"undefined\"?438:mode;if(flags&64){mode=mode&4095|32768}else{mode=0}var node;if(typeof path==\"object\"){node=path}else{path=PATH.normalize(path);try{var lookup=FS.lookupPath(path,{follow:!(flags&131072)});node=lookup.node}catch(e){}}var created=false;if(flags&64){if(node){if(flags&128){throw new FS.ErrnoError(20)}}else{node=FS.mknod(path,mode,0);created=true}}if(!node){throw new FS.ErrnoError(44)}if(FS.isChrdev(node.mode)){flags&=~512}if(flags&65536&&!FS.isDir(node.mode)){throw new FS.ErrnoError(54)}if(!created){var errCode=FS.mayOpen(node,flags);if(errCode){throw new FS.ErrnoError(errCode)}}if(flags&512&&!created){FS.truncate(node,0)}flags&=~(128|512|131072);var stream=FS.createStream({node:node,path:FS.getPath(node),flags:flags,seekable:true,position:0,stream_ops:node.stream_ops,ungotten:[],error:false});if(stream.stream_ops.open){stream.stream_ops.open(stream)}if(Module[\"logReadFiles\"]&&!(flags&1)){if(!FS.readFiles)FS.readFiles={};if(!(path in FS.readFiles)){FS.readFiles[path]=1}}return stream},close:stream=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(stream.getdents)stream.getdents=null;try{if(stream.stream_ops.close){stream.stream_ops.close(stream)}}catch(e){throw e}finally{FS.closeStream(stream.fd)}stream.fd=null},isClosed:stream=>{return stream.fd===null},llseek:(stream,offset,whence)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(!stream.seekable||!stream.stream_ops.llseek){throw new FS.ErrnoError(70)}if(whence!=0&&whence!=1&&whence!=2){throw new FS.ErrnoError(28)}stream.position=stream.stream_ops.llseek(stream,offset,whence);stream.ungotten=[];return stream.position},read:(stream,buffer,offset,length,position)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.read){throw new FS.ErrnoError(28)}var seeking=typeof position!=\"undefined\";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesRead=stream.stream_ops.read(stream,buffer,offset,length,position);if(!seeking)stream.position+=bytesRead;return bytesRead},write:(stream,buffer,offset,length,position,canOwn)=>{if(length<0||position<0){throw new FS.ErrnoError(28)}if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(FS.isDir(stream.node.mode)){throw new FS.ErrnoError(31)}if(!stream.stream_ops.write){throw new FS.ErrnoError(28)}if(stream.seekable&&stream.flags&1024){FS.llseek(stream,0,2)}var seeking=typeof position!=\"undefined\";if(!seeking){position=stream.position}else if(!stream.seekable){throw new FS.ErrnoError(70)}var bytesWritten=stream.stream_ops.write(stream,buffer,offset,length,position,canOwn);if(!seeking)stream.position+=bytesWritten;return bytesWritten},allocate:(stream,offset,length)=>{if(FS.isClosed(stream)){throw new FS.ErrnoError(8)}if(offset<0||length<=0){throw new FS.ErrnoError(28)}if((stream.flags&2097155)===0){throw new FS.ErrnoError(8)}if(!FS.isFile(stream.node.mode)&&!FS.isDir(stream.node.mode)){throw new FS.ErrnoError(43)}if(!stream.stream_ops.allocate){throw new FS.ErrnoError(138)}stream.stream_ops.allocate(stream,offset,length)},mmap:(stream,length,position,prot,flags)=>{if((prot&2)!==0&&(flags&2)===0&&(stream.flags&2097155)!==2){throw new FS.ErrnoError(2)}if((stream.flags&2097155)===1){throw new FS.ErrnoError(2)}if(!stream.stream_ops.mmap){throw new FS.ErrnoError(43)}return stream.stream_ops.mmap(stream,length,position,prot,flags)},msync:(stream,buffer,offset,length,mmapFlags)=>{if(!stream.stream_ops.msync){return 0}return stream.stream_ops.msync(stream,buffer,offset,length,mmapFlags)},munmap:stream=>0,ioctl:(stream,cmd,arg)=>{if(!stream.stream_ops.ioctl){throw new FS.ErrnoError(59)}return stream.stream_ops.ioctl(stream,cmd,arg)},readFile:(path,opts={})=>{opts.flags=opts.flags||0;opts.encoding=opts.encoding||\"binary\";if(opts.encoding!==\"utf8\"&&opts.encoding!==\"binary\"){throw new Error(`Invalid encoding type \"${opts.encoding}\"`)}var ret;var stream=FS.open(path,opts.flags);var stat=FS.stat(path);var length=stat.size;var buf=new Uint8Array(length);FS.read(stream,buf,0,length,0);if(opts.encoding===\"utf8\"){ret=UTF8ArrayToString(buf,0)}else if(opts.encoding===\"binary\"){ret=buf}FS.close(stream);return ret},writeFile:(path,data,opts={})=>{opts.flags=opts.flags||577;var stream=FS.open(path,opts.flags,opts.mode);if(typeof data==\"string\"){var buf=new Uint8Array(lengthBytesUTF8(data)+1);var actualNumBytes=stringToUTF8Array(data,buf,0,buf.length);FS.write(stream,buf,0,actualNumBytes,undefined,opts.canOwn)}else if(ArrayBuffer.isView(data)){FS.write(stream,data,0,data.byteLength,undefined,opts.canOwn)}else{throw new Error(\"Unsupported data type\")}FS.close(stream)},cwd:()=>FS.currentPath,chdir:path=>{var lookup=FS.lookupPath(path,{follow:true});if(lookup.node===null){throw new FS.ErrnoError(44)}if(!FS.isDir(lookup.node.mode)){throw new FS.ErrnoError(54)}var errCode=FS.nodePermissions(lookup.node,\"x\");if(errCode){throw new FS.ErrnoError(errCode)}FS.currentPath=lookup.path},createDefaultDirectories:()=>{FS.mkdir(\"/tmp\");FS.mkdir(\"/home\");FS.mkdir(\"/home/web_user\")},createDefaultDevices:()=>{FS.mkdir(\"/dev\");FS.registerDevice(FS.makedev(1,3),{read:()=>0,write:(stream,buffer,offset,length,pos)=>length});FS.mkdev(\"/dev/null\",FS.makedev(1,3));TTY.register(FS.makedev(5,0),TTY.default_tty_ops);TTY.register(FS.makedev(6,0),TTY.default_tty1_ops);FS.mkdev(\"/dev/tty\",FS.makedev(5,0));FS.mkdev(\"/dev/tty1\",FS.makedev(6,0));var randomBuffer=new Uint8Array(1024),randomLeft=0;var randomByte=()=>{if(randomLeft===0){randomLeft=randomFill(randomBuffer).byteLength}return randomBuffer[--randomLeft]};FS.createDevice(\"/dev\",\"random\",randomByte);FS.createDevice(\"/dev\",\"urandom\",randomByte);FS.mkdir(\"/dev/shm\");FS.mkdir(\"/dev/shm/tmp\")},createSpecialDirectories:()=>{FS.mkdir(\"/proc\");var proc_self=FS.mkdir(\"/proc/self\");FS.mkdir(\"/proc/self/fd\");FS.mount({mount:()=>{var node=FS.createNode(proc_self,\"fd\",16384|511,73);node.node_ops={lookup:(parent,name)=>{var fd=+name;var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);var ret={parent:null,mount:{mountpoint:\"fake\"},node_ops:{readlink:()=>stream.path}};ret.parent=ret;return ret}};return node}},{},\"/proc/self/fd\")},createStandardStreams:()=>{if(Module[\"stdin\"]){FS.createDevice(\"/dev\",\"stdin\",Module[\"stdin\"])}else{FS.symlink(\"/dev/tty\",\"/dev/stdin\")}if(Module[\"stdout\"]){FS.createDevice(\"/dev\",\"stdout\",null,Module[\"stdout\"])}else{FS.symlink(\"/dev/tty\",\"/dev/stdout\")}if(Module[\"stderr\"]){FS.createDevice(\"/dev\",\"stderr\",null,Module[\"stderr\"])}else{FS.symlink(\"/dev/tty1\",\"/dev/stderr\")}var stdin=FS.open(\"/dev/stdin\",0);var stdout=FS.open(\"/dev/stdout\",1);var stderr=FS.open(\"/dev/stderr\",1)},ensureErrnoError:()=>{if(FS.ErrnoError)return;FS.ErrnoError=function ErrnoError(errno,node){this.name=\"ErrnoError\";this.node=node;this.setErrno=function(errno){this.errno=errno};this.setErrno(errno);this.message=\"FS error\"};FS.ErrnoError.prototype=new Error;FS.ErrnoError.prototype.constructor=FS.ErrnoError;[44].forEach(code=>{FS.genericErrors[code]=new FS.ErrnoError(code);FS.genericErrors[code].stack=\"\"})},staticInit:()=>{FS.ensureErrnoError();FS.nameTable=new Array(4096);FS.mount(MEMFS,{},\"/\");FS.createDefaultDirectories();FS.createDefaultDevices();FS.createSpecialDirectories();FS.filesystems={\"MEMFS\":MEMFS,\"WORKERFS\":WORKERFS}},init:(input,output,error)=>{FS.init.initialized=true;FS.ensureErrnoError();Module[\"stdin\"]=input||Module[\"stdin\"];Module[\"stdout\"]=output||Module[\"stdout\"];Module[\"stderr\"]=error||Module[\"stderr\"];FS.createStandardStreams()},quit:()=>{FS.init.initialized=false;for(var i=0;i{var ret=FS.analyzePath(path,dontResolveLastLink);if(!ret.exists){return null}return ret.object},analyzePath:(path,dontResolveLastLink)=>{try{var lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});path=lookup.path}catch(e){}var ret={isRoot:false,exists:false,error:0,name:null,path:null,object:null,parentExists:false,parentPath:null,parentObject:null};try{var lookup=FS.lookupPath(path,{parent:true});ret.parentExists=true;ret.parentPath=lookup.path;ret.parentObject=lookup.node;ret.name=PATH.basename(path);lookup=FS.lookupPath(path,{follow:!dontResolveLastLink});ret.exists=true;ret.path=lookup.path;ret.object=lookup.node;ret.name=lookup.node.name;ret.isRoot=lookup.path===\"/\"}catch(e){ret.error=e.errno}return ret},createPath:(parent,path,canRead,canWrite)=>{parent=typeof parent==\"string\"?parent:FS.getPath(parent);var parts=path.split(\"/\").reverse();while(parts.length){var part=parts.pop();if(!part)continue;var current=PATH.join2(parent,part);try{FS.mkdir(current)}catch(e){}parent=current}return current},createFile:(parent,name,properties,canRead,canWrite)=>{var path=PATH.join2(typeof parent==\"string\"?parent:FS.getPath(parent),name);var mode=FS_getMode(canRead,canWrite);return FS.create(path,mode)},createDataFile:(parent,name,data,canRead,canWrite,canOwn)=>{var path=name;if(parent){parent=typeof parent==\"string\"?parent:FS.getPath(parent);path=name?PATH.join2(parent,name):parent}var mode=FS_getMode(canRead,canWrite);var node=FS.create(path,mode);if(data){if(typeof data==\"string\"){var arr=new Array(data.length);for(var i=0,len=data.length;i{var path=PATH.join2(typeof parent==\"string\"?parent:FS.getPath(parent),name);var mode=FS_getMode(!!input,!!output);if(!FS.createDevice.major)FS.createDevice.major=64;var dev=FS.makedev(FS.createDevice.major++,0);FS.registerDevice(dev,{open:stream=>{stream.seekable=false},close:stream=>{if(output&&output.buffer&&output.buffer.length){output(10)}},read:(stream,buffer,offset,length,pos)=>{var bytesRead=0;for(var i=0;i{for(var i=0;i{if(obj.isDevice||obj.isFolder||obj.link||obj.contents)return true;if(typeof XMLHttpRequest!=\"undefined\"){throw new Error(\"Lazy loading should have been performed (contents set) in createLazyFile, but it was not. Lazy loading only works in web workers. Use --embed-file or --preload-file in emcc on the main thread.\")}else if(read_){try{obj.contents=intArrayFromString(read_(obj.url),true);obj.usedBytes=obj.contents.length}catch(e){throw new FS.ErrnoError(29)}}else{throw new Error(\"Cannot load without read() or XMLHttpRequest.\")}},createLazyFile:(parent,name,url,canRead,canWrite)=>{function LazyUint8Array(){this.lengthKnown=false;this.chunks=[]}LazyUint8Array.prototype.get=function LazyUint8Array_get(idx){if(idx>this.length-1||idx<0){return undefined}var chunkOffset=idx%this.chunkSize;var chunkNum=idx/this.chunkSize|0;return this.getter(chunkNum)[chunkOffset]};LazyUint8Array.prototype.setDataGetter=function LazyUint8Array_setDataGetter(getter){this.getter=getter};LazyUint8Array.prototype.cacheLength=function LazyUint8Array_cacheLength(){var xhr=new XMLHttpRequest;xhr.open(\"HEAD\",url,false);xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error(\"Couldn't load \"+url+\". Status: \"+xhr.status);var datalength=Number(xhr.getResponseHeader(\"Content-length\"));var header;var hasByteServing=(header=xhr.getResponseHeader(\"Accept-Ranges\"))&&header===\"bytes\";var usesGzip=(header=xhr.getResponseHeader(\"Content-Encoding\"))&&header===\"gzip\";var chunkSize=1024*1024;if(!hasByteServing)chunkSize=datalength;var doXHR=(from,to)=>{if(from>to)throw new Error(\"invalid range (\"+from+\", \"+to+\") or no bytes requested!\");if(to>datalength-1)throw new Error(\"only \"+datalength+\" bytes available! programmer error!\");var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);if(datalength!==chunkSize)xhr.setRequestHeader(\"Range\",\"bytes=\"+from+\"-\"+to);xhr.responseType=\"arraybuffer\";if(xhr.overrideMimeType){xhr.overrideMimeType(\"text/plain; charset=x-user-defined\")}xhr.send(null);if(!(xhr.status>=200&&xhr.status<300||xhr.status===304))throw new Error(\"Couldn't load \"+url+\". Status: \"+xhr.status);if(xhr.response!==undefined){return new Uint8Array(xhr.response||[])}return intArrayFromString(xhr.responseText||\"\",true)};var lazyArray=this;lazyArray.setDataGetter(chunkNum=>{var start=chunkNum*chunkSize;var end=(chunkNum+1)*chunkSize-1;end=Math.min(end,datalength-1);if(typeof lazyArray.chunks[chunkNum]==\"undefined\"){lazyArray.chunks[chunkNum]=doXHR(start,end)}if(typeof lazyArray.chunks[chunkNum]==\"undefined\")throw new Error(\"doXHR failed!\");return lazyArray.chunks[chunkNum]});if(usesGzip||!datalength){chunkSize=datalength=1;datalength=this.getter(0).length;chunkSize=datalength;out(\"LazyFiles on gzip forces download of the whole file when length is accessed\")}this._length=datalength;this._chunkSize=chunkSize;this.lengthKnown=true};if(typeof XMLHttpRequest!=\"undefined\"){if(!ENVIRONMENT_IS_WORKER)throw\"Cannot do synchronous binary XHRs outside webworkers in modern browsers. Use --embed-file or --preload-file in emcc\";var lazyArray=new LazyUint8Array;Object.defineProperties(lazyArray,{length:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._length}},chunkSize:{get:function(){if(!this.lengthKnown){this.cacheLength()}return this._chunkSize}}});var properties={isDevice:false,contents:lazyArray}}else{var properties={isDevice:false,url:url}}var node=FS.createFile(parent,name,properties,canRead,canWrite);if(properties.contents){node.contents=properties.contents}else if(properties.url){node.contents=null;node.url=properties.url}Object.defineProperties(node,{usedBytes:{get:function(){return this.contents.length}}});var stream_ops={};var keys=Object.keys(node.stream_ops);keys.forEach(key=>{var fn=node.stream_ops[key];stream_ops[key]=function forceLoadLazyFile(){FS.forceLoadFile(node);return fn.apply(null,arguments)}});function writeChunks(stream,buffer,offset,length,position){var contents=stream.node.contents;if(position>=contents.length)return 0;var size=Math.min(contents.length-position,length);if(contents.slice){for(var i=0;i{FS.forceLoadFile(node);return writeChunks(stream,buffer,offset,length,position)};stream_ops.mmap=(stream,length,position,prot,flags)=>{FS.forceLoadFile(node);var ptr=mmapAlloc(length);if(!ptr){throw new FS.ErrnoError(48)}writeChunks(stream,HEAP8,ptr,length,position);return{ptr:ptr,allocated:true}};node.stream_ops=stream_ops;return node}};var SYSCALLS={DEFAULT_POLLMASK:5,calculateAt:function(dirfd,path,allowEmpty){if(PATH.isAbs(path)){return path}var dir;if(dirfd===-100){dir=FS.cwd()}else{var dirstream=SYSCALLS.getStreamFromFD(dirfd);dir=dirstream.path}if(path.length==0){if(!allowEmpty){throw new FS.ErrnoError(44)}return dir}return PATH.join2(dir,path)},doStat:function(func,path,buf){try{var stat=func(path)}catch(e){if(e&&e.node&&PATH.normalize(path)!==PATH.normalize(FS.getPath(e.node))){return-54}throw e}HEAP32[buf>>2]=stat.dev;HEAP32[buf+8>>2]=stat.ino;HEAP32[buf+12>>2]=stat.mode;HEAPU32[buf+16>>2]=stat.nlink;HEAP32[buf+20>>2]=stat.uid;HEAP32[buf+24>>2]=stat.gid;HEAP32[buf+28>>2]=stat.rdev;HEAP64[buf+40>>3]=BigInt(stat.size);HEAP32[buf+48>>2]=4096;HEAP32[buf+52>>2]=stat.blocks;var atime=stat.atime.getTime();var mtime=stat.mtime.getTime();var ctime=stat.ctime.getTime();HEAP64[buf+56>>3]=BigInt(Math.floor(atime/1e3));HEAPU32[buf+64>>2]=atime%1e3*1e3;HEAP64[buf+72>>3]=BigInt(Math.floor(mtime/1e3));HEAPU32[buf+80>>2]=mtime%1e3*1e3;HEAP64[buf+88>>3]=BigInt(Math.floor(ctime/1e3));HEAPU32[buf+96>>2]=ctime%1e3*1e3;HEAP64[buf+104>>3]=BigInt(stat.ino);return 0},doMsync:function(addr,stream,len,flags,offset){if(!FS.isFile(stream.node.mode)){throw new FS.ErrnoError(43)}if(flags&2){return 0}var buffer=HEAPU8.slice(addr,addr+len);FS.msync(stream,buffer,offset,len,flags)},varargs:undefined,get:function(){SYSCALLS.varargs+=4;var ret=HEAP32[SYSCALLS.varargs-4>>2];return ret},getStr:function(ptr){var ret=UTF8ToString(ptr);return ret},getStreamFromFD:function(fd){var stream=FS.getStream(fd);if(!stream)throw new FS.ErrnoError(8);return stream}};function ___syscall__newselect(nfds,readfds,writefds,exceptfds,timeout){try{var total=0;var srcReadLow=readfds?HEAP32[readfds>>2]:0,srcReadHigh=readfds?HEAP32[readfds+4>>2]:0;var srcWriteLow=writefds?HEAP32[writefds>>2]:0,srcWriteHigh=writefds?HEAP32[writefds+4>>2]:0;var srcExceptLow=exceptfds?HEAP32[exceptfds>>2]:0,srcExceptHigh=exceptfds?HEAP32[exceptfds+4>>2]:0;var dstReadLow=0,dstReadHigh=0;var dstWriteLow=0,dstWriteHigh=0;var dstExceptLow=0,dstExceptHigh=0;var allLow=(readfds?HEAP32[readfds>>2]:0)|(writefds?HEAP32[writefds>>2]:0)|(exceptfds?HEAP32[exceptfds>>2]:0);var allHigh=(readfds?HEAP32[readfds+4>>2]:0)|(writefds?HEAP32[writefds+4>>2]:0)|(exceptfds?HEAP32[exceptfds+4>>2]:0);var check=function(fd,low,high,val){return fd<32?low&val:high&val};for(var fd=0;fd>2]=dstReadLow;HEAP32[readfds+4>>2]=dstReadHigh}if(writefds){HEAP32[writefds>>2]=dstWriteLow;HEAP32[writefds+4>>2]=dstWriteHigh}if(exceptfds){HEAP32[exceptfds>>2]=dstExceptLow;HEAP32[exceptfds+4>>2]=dstExceptHigh}return total}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}var SOCKFS={mount:function(mount){Module[\"websocket\"]=Module[\"websocket\"]&&\"object\"===typeof Module[\"websocket\"]?Module[\"websocket\"]:{};Module[\"websocket\"]._callbacks={};Module[\"websocket\"][\"on\"]=function(event,callback){if(\"function\"===typeof callback){this._callbacks[event]=callback}return this};Module[\"websocket\"].emit=function(event,param){if(\"function\"===typeof this._callbacks[event]){this._callbacks[event].call(this,param)}};return FS.createNode(null,\"/\",16384|511,0)},createSocket:function(family,type,protocol){type&=~526336;var streaming=type==1;if(streaming&&protocol&&protocol!=6){throw new FS.ErrnoError(66)}var sock={family:family,type:type,protocol:protocol,server:null,error:null,peers:{},pending:[],recv_queue:[],sock_ops:SOCKFS.websocket_sock_ops};var name=SOCKFS.nextname();var node=FS.createNode(SOCKFS.root,name,49152,0);node.sock=sock;var stream=FS.createStream({path:name,node:node,flags:2,seekable:false,stream_ops:SOCKFS.stream_ops});sock.stream=stream;return sock},getSocket:function(fd){var stream=FS.getStream(fd);if(!stream||!FS.isSocket(stream.node.mode)){return null}return stream.node.sock},stream_ops:{poll:function(stream){var sock=stream.node.sock;return sock.sock_ops.poll(sock)},ioctl:function(stream,request,varargs){var sock=stream.node.sock;return sock.sock_ops.ioctl(sock,request,varargs)},read:function(stream,buffer,offset,length,position){var sock=stream.node.sock;var msg=sock.sock_ops.recvmsg(sock,length);if(!msg){return 0}buffer.set(msg.buffer,offset);return msg.buffer.length},write:function(stream,buffer,offset,length,position){var sock=stream.node.sock;return sock.sock_ops.sendmsg(sock,buffer,offset,length)},close:function(stream){var sock=stream.node.sock;sock.sock_ops.close(sock)}},nextname:function(){if(!SOCKFS.nextname.current){SOCKFS.nextname.current=0}return\"socket[\"+SOCKFS.nextname.current+++\"]\"},websocket_sock_ops:{createPeer:function(sock,addr,port){var ws;if(typeof addr==\"object\"){ws=addr;addr=null;port=null}if(ws){if(ws._socket){addr=ws._socket.remoteAddress;port=ws._socket.remotePort}else{var result=/ws[s]?:\\/\\/([^:]+):(\\d+)/.exec(ws.url);if(!result){throw new Error(\"WebSocket URL must be in the format ws(s)://address:port\")}addr=result[1];port=parseInt(result[2],10)}}else{try{var runtimeConfig=Module[\"websocket\"]&&\"object\"===typeof Module[\"websocket\"];var url=\"ws:#\".replace(\"#\",\"//\");if(runtimeConfig){if(\"string\"===typeof Module[\"websocket\"][\"url\"]){url=Module[\"websocket\"][\"url\"]}}if(url===\"ws://\"||url===\"wss://\"){var parts=addr.split(\"/\");url=url+parts[0]+\":\"+port+\"/\"+parts.slice(1).join(\"/\")}var subProtocols=\"binary\";if(runtimeConfig){if(\"string\"===typeof Module[\"websocket\"][\"subprotocol\"]){subProtocols=Module[\"websocket\"][\"subprotocol\"]}}var opts=undefined;if(subProtocols!==\"null\"){subProtocols=subProtocols.replace(/^ +| +$/g,\"\").split(/ *, */);opts=subProtocols}if(runtimeConfig&&null===Module[\"websocket\"][\"subprotocol\"]){subProtocols=\"null\";opts=undefined}var WebSocketConstructor;if(ENVIRONMENT_IS_NODE){WebSocketConstructor=require(\"ws\")}else{WebSocketConstructor=WebSocket}ws=new WebSocketConstructor(url,opts);ws.binaryType=\"arraybuffer\"}catch(e){throw new FS.ErrnoError(23)}}var peer={addr:addr,port:port,socket:ws,dgram_send_queue:[]};SOCKFS.websocket_sock_ops.addPeer(sock,peer);SOCKFS.websocket_sock_ops.handlePeerEvents(sock,peer);if(sock.type===2&&typeof sock.sport!=\"undefined\"){peer.dgram_send_queue.push(new Uint8Array([255,255,255,255,\"p\".charCodeAt(0),\"o\".charCodeAt(0),\"r\".charCodeAt(0),\"t\".charCodeAt(0),(sock.sport&65280)>>8,sock.sport&255]))}return peer},getPeer:function(sock,addr,port){return sock.peers[addr+\":\"+port]},addPeer:function(sock,peer){sock.peers[peer.addr+\":\"+peer.port]=peer},removePeer:function(sock,peer){delete sock.peers[peer.addr+\":\"+peer.port]},handlePeerEvents:function(sock,peer){var first=true;var handleOpen=function(){Module[\"websocket\"].emit(\"open\",sock.stream.fd);try{var queued=peer.dgram_send_queue.shift();while(queued){peer.socket.send(queued);queued=peer.dgram_send_queue.shift()}}catch(e){peer.socket.close()}};function handleMessage(data){if(typeof data==\"string\"){var encoder=new TextEncoder;data=encoder.encode(data)}else{assert(data.byteLength!==undefined);if(data.byteLength==0){return}data=new Uint8Array(data)}var wasfirst=first;first=false;if(wasfirst&&data.length===10&&data[0]===255&&data[1]===255&&data[2]===255&&data[3]===255&&data[4]===\"p\".charCodeAt(0)&&data[5]===\"o\".charCodeAt(0)&&data[6]===\"r\".charCodeAt(0)&&data[7]===\"t\".charCodeAt(0)){var newport=data[8]<<8|data[9];SOCKFS.websocket_sock_ops.removePeer(sock,peer);peer.port=newport;SOCKFS.websocket_sock_ops.addPeer(sock,peer);return}sock.recv_queue.push({addr:peer.addr,port:peer.port,data:data});Module[\"websocket\"].emit(\"message\",sock.stream.fd)}if(ENVIRONMENT_IS_NODE){peer.socket.on(\"open\",handleOpen);peer.socket.on(\"message\",function(data,isBinary){if(!isBinary){return}handleMessage(new Uint8Array(data).buffer)});peer.socket.on(\"close\",function(){Module[\"websocket\"].emit(\"close\",sock.stream.fd)});peer.socket.on(\"error\",function(error){sock.error=14;Module[\"websocket\"].emit(\"error\",[sock.stream.fd,sock.error,\"ECONNREFUSED: Connection refused\"])})}else{peer.socket.onopen=handleOpen;peer.socket.onclose=function(){Module[\"websocket\"].emit(\"close\",sock.stream.fd)};peer.socket.onmessage=function peer_socket_onmessage(event){handleMessage(event.data)};peer.socket.onerror=function(error){sock.error=14;Module[\"websocket\"].emit(\"error\",[sock.stream.fd,sock.error,\"ECONNREFUSED: Connection refused\"])}}},poll:function(sock){if(sock.type===1&&sock.server){return sock.pending.length?64|1:0}var mask=0;var dest=sock.type===1?SOCKFS.websocket_sock_ops.getPeer(sock,sock.daddr,sock.dport):null;if(sock.recv_queue.length||!dest||dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=64|1}if(!dest||dest&&dest.socket.readyState===dest.socket.OPEN){mask|=4}if(dest&&dest.socket.readyState===dest.socket.CLOSING||dest&&dest.socket.readyState===dest.socket.CLOSED){mask|=16}return mask},ioctl:function(sock,request,arg){switch(request){case 21531:var bytes=0;if(sock.recv_queue.length){bytes=sock.recv_queue[0].data.length}HEAP32[arg>>2]=bytes;return 0;default:return 28}},close:function(sock){if(sock.server){try{sock.server.close()}catch(e){}sock.server=null}var peers=Object.keys(sock.peers);for(var i=0;i>2]=value;return value}function inetPton4(str){var b=str.split(\".\");for(var i=0;i<4;i++){var tmp=Number(b[i]);if(isNaN(tmp))return null;b[i]=tmp}return(b[0]|b[1]<<8|b[2]<<16|b[3]<<24)>>>0}function jstoi_q(str){return parseInt(str)}function inetPton6(str){var words;var w,offset,z;var valid6regx=/^((?=.*::)(?!.*::.+::)(::)?([\\dA-F]{1,4}:(:|\\b)|){5}|([\\dA-F]{1,4}:){6})((([\\dA-F]{1,4}((?!\\3)::|:\\b|$))|(?!\\2\\3)){2}|(((2[0-4]|1\\d|[1-9])?\\d|25[0-5])\\.?\\b){4})$/i;var parts=[];if(!valid6regx.test(str)){return null}if(str===\"::\"){return[0,0,0,0,0,0,0,0]}if(str.startsWith(\"::\")){str=str.replace(\"::\",\"Z:\")}else{str=str.replace(\"::\",\":Z:\")}if(str.indexOf(\".\")>0){str=str.replace(new RegExp(\"[.]\",\"g\"),\":\");words=str.split(\":\");words[words.length-4]=jstoi_q(words[words.length-4])+jstoi_q(words[words.length-3])*256;words[words.length-3]=jstoi_q(words[words.length-2])+jstoi_q(words[words.length-1])*256;words=words.slice(0,words.length-2)}else{words=str.split(\":\")}offset=0;z=0;for(w=0;w>2]=16}HEAP16[sa>>1]=family;HEAP32[sa+4>>2]=addr;HEAP16[sa+2>>1]=_htons(port);break;case 10:addr=inetPton6(addr);zeroMemory(sa,28);if(addrlen){HEAP32[addrlen>>2]=28}HEAP32[sa>>2]=family;HEAP32[sa+8>>2]=addr[0];HEAP32[sa+12>>2]=addr[1];HEAP32[sa+16>>2]=addr[2];HEAP32[sa+20>>2]=addr[3];HEAP16[sa+2>>1]=_htons(port);break;default:return 5}return 0}var DNS={address_map:{id:1,addrs:{},names:{}},lookup_name:function(name){var res=inetPton4(name);if(res!==null){return name}res=inetPton6(name);if(res!==null){return name}var addr;if(DNS.address_map.addrs[name]){addr=DNS.address_map.addrs[name]}else{var id=DNS.address_map.id++;assert(id<65535,\"exceeded max address mappings of 65535\");addr=\"172.29.\"+(id&255)+\".\"+(id&65280);DNS.address_map.names[addr]=name;DNS.address_map.addrs[name]=addr}return addr},lookup_addr:function(addr){if(DNS.address_map.names[addr]){return DNS.address_map.names[addr]}return null}};function ___syscall_accept4(fd,addr,addrlen,flags,d1,d2){try{var sock=getSocketFromFD(fd);var newsock=sock.sock_ops.accept(sock);if(addr){var errno=writeSockaddr(addr,newsock.family,DNS.lookup_name(newsock.daddr),newsock.dport,addrlen)}return newsock.stream.fd}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function inetNtop4(addr){return(addr&255)+\".\"+(addr>>8&255)+\".\"+(addr>>16&255)+\".\"+(addr>>24&255)}function inetNtop6(ints){var str=\"\";var word=0;var longest=0;var lastzero=0;var zstart=0;var len=0;var i=0;var parts=[ints[0]&65535,ints[0]>>16,ints[1]&65535,ints[1]>>16,ints[2]&65535,ints[2]>>16,ints[3]&65535,ints[3]>>16];var hasipv4=true;var v4part=\"\";for(i=0;i<5;i++){if(parts[i]!==0){hasipv4=false;break}}if(hasipv4){v4part=inetNtop4(parts[6]|parts[7]<<16);if(parts[5]===-1){str=\"::ffff:\";str+=v4part;return str}if(parts[5]===0){str=\"::\";if(v4part===\"0.0.0.0\")v4part=\"\";if(v4part===\"0.0.0.1\")v4part=\"1\";str+=v4part;return str}}for(word=0;word<8;word++){if(parts[word]===0){if(word-lastzero>1){len=0}lastzero=word;len++}if(len>longest){longest=len;zstart=word-longest+1}}for(word=0;word<8;word++){if(longest>1){if(parts[word]===0&&word>=zstart&&word>1];var port=_ntohs(HEAPU16[sa+2>>1]);var addr;switch(family){case 2:if(salen!==16){return{errno:28}}addr=HEAP32[sa+4>>2];addr=inetNtop4(addr);break;case 10:if(salen!==28){return{errno:28}}addr=[HEAP32[sa+8>>2],HEAP32[sa+12>>2],HEAP32[sa+16>>2],HEAP32[sa+20>>2]];addr=inetNtop6(addr);break;default:return{errno:5}}return{family:family,addr:addr,port:port}}function getSocketAddress(addrp,addrlen,allowNull){if(allowNull&&addrp===0)return null;var info=readSockaddr(addrp,addrlen);if(info.errno)throw new FS.ErrnoError(info.errno);info.addr=DNS.lookup_addr(info.addr)||info.addr;return info}function ___syscall_bind(fd,addr,addrlen,d1,d2,d3){try{var sock=getSocketFromFD(fd);var info=getSocketAddress(addr,addrlen);sock.sock_ops.bind(sock,info.addr,info.port);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_connect(fd,addr,addrlen,d1,d2,d3){try{var sock=getSocketFromFD(fd);var info=getSocketAddress(addr,addrlen);sock.sock_ops.connect(sock,info.addr,info.port);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_faccessat(dirfd,path,amode,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(amode&~7){return-28}var lookup=FS.lookupPath(path,{follow:true});var node=lookup.node;if(!node){return-44}var perms=\"\";if(amode&4)perms+=\"r\";if(amode&2)perms+=\"w\";if(amode&1)perms+=\"x\";if(perms&&FS.nodePermissions(node,perms)){return-2}return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_fcntl64(fd,cmd,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(cmd){case 0:{var arg=SYSCALLS.get();if(arg<0){return-28}var newStream;newStream=FS.createStream(stream,arg);return newStream.fd}case 1:case 2:return 0;case 3:return stream.flags;case 4:{var arg=SYSCALLS.get();stream.flags|=arg;return 0}case 5:{var arg=SYSCALLS.get();var offset=0;HEAP16[arg+offset>>1]=2;return 0}case 6:case 7:return 0;case 16:case 8:return-28;case 9:setErrNo(28);return-1;default:{return-28}}}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_fstat64(fd,buf){try{var stream=SYSCALLS.getStreamFromFD(fd);return SYSCALLS.doStat(FS.stat,stream.path,buf)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}function ___syscall_getdents64(fd,dirp,count){try{var stream=SYSCALLS.getStreamFromFD(fd);if(!stream.getdents){stream.getdents=FS.readdir(stream.path)}var struct_size=280;var pos=0;var off=FS.llseek(stream,0,1);var idx=Math.floor(off/struct_size);while(idx>3]=BigInt(id);HEAP64[dirp+pos+8>>3]=BigInt((idx+1)*struct_size);HEAP16[dirp+pos+16>>1]=280;HEAP8[dirp+pos+18>>0]=type;stringToUTF8(name,dirp+pos+19,256);pos+=struct_size;idx+=1}FS.llseek(stream,idx*struct_size,0);return pos}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_getpeername(fd,addr,addrlen,d1,d2,d3){try{var sock=getSocketFromFD(fd);if(!sock.daddr){return-53}var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(sock.daddr),sock.dport,addrlen);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_getsockname(fd,addr,addrlen,d1,d2,d3){try{var sock=getSocketFromFD(fd);var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(sock.saddr||\"0.0.0.0\"),sock.sport,addrlen);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_getsockopt(fd,level,optname,optval,optlen,d1){try{var sock=getSocketFromFD(fd);if(level===1){if(optname===4){HEAP32[optval>>2]=sock.error;HEAP32[optlen>>2]=4;sock.error=null;return 0}}return-50}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_ioctl(fd,op,varargs){SYSCALLS.varargs=varargs;try{var stream=SYSCALLS.getStreamFromFD(fd);switch(op){case 21509:case 21505:{if(!stream.tty)return-59;return 0}case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:{if(!stream.tty)return-59;return 0}case 21519:{if(!stream.tty)return-59;var argp=SYSCALLS.get();HEAP32[argp>>2]=0;return 0}case 21520:{if(!stream.tty)return-59;return-28}case 21531:{var argp=SYSCALLS.get();return FS.ioctl(stream,op,argp)}case 21523:{if(!stream.tty)return-59;return 0}case 21524:{if(!stream.tty)return-59;return 0}default:return-28}}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_listen(fd,backlog){try{var sock=getSocketFromFD(fd);sock.sock_ops.listen(sock,backlog);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_lstat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.lstat,path,buf)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_mkdirat(dirfd,path,mode){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);path=PATH.normalize(path);if(path[path.length-1]===\"/\")path=path.substr(0,path.length-1);FS.mkdir(path,mode,0);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_newfstatat(dirfd,path,buf,flags){try{path=SYSCALLS.getStr(path);var nofollow=flags&256;var allowEmpty=flags&4096;flags=flags&~6400;path=SYSCALLS.calculateAt(dirfd,path,allowEmpty);return SYSCALLS.doStat(nofollow?FS.lstat:FS.stat,path,buf)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_openat(dirfd,path,flags,varargs){SYSCALLS.varargs=varargs;try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);var mode=varargs?SYSCALLS.get():0;return FS.open(path,flags,mode).fd}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_poll(fds,nfds,timeout){try{var nonzero=0;for(var i=0;i>2];var events=HEAP16[pollfd+4>>1];var mask=32;var stream=FS.getStream(fd);if(stream){mask=SYSCALLS.DEFAULT_POLLMASK;if(stream.stream_ops.poll){mask=stream.stream_ops.poll(stream)}}mask&=events|8|16;if(mask)nonzero++;HEAP16[pollfd+6>>1]=mask}return nonzero}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_recvfrom(fd,buf,len,flags,addr,addrlen){try{var sock=getSocketFromFD(fd);var msg=sock.sock_ops.recvmsg(sock,len);if(!msg)return 0;if(addr){var errno=writeSockaddr(addr,sock.family,DNS.lookup_name(msg.addr),msg.port,addrlen)}HEAPU8.set(msg.buffer,buf);return msg.buffer.byteLength}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_renameat(olddirfd,oldpath,newdirfd,newpath){try{oldpath=SYSCALLS.getStr(oldpath);newpath=SYSCALLS.getStr(newpath);oldpath=SYSCALLS.calculateAt(olddirfd,oldpath);newpath=SYSCALLS.calculateAt(newdirfd,newpath);FS.rename(oldpath,newpath);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_rmdir(path){try{path=SYSCALLS.getStr(path);FS.rmdir(path);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_sendto(fd,message,length,flags,addr,addr_len){try{var sock=getSocketFromFD(fd);var dest=getSocketAddress(addr,addr_len,true);if(!dest){return FS.write(sock.stream,HEAP8,message,length)}return sock.sock_ops.sendmsg(sock,HEAP8,message,length,dest.addr,dest.port)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_socket(domain,type,protocol){try{var sock=SOCKFS.createSocket(domain,type,protocol);return sock.stream.fd}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_stat64(path,buf){try{path=SYSCALLS.getStr(path);return SYSCALLS.doStat(FS.stat,path,buf)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function ___syscall_unlinkat(dirfd,path,flags){try{path=SYSCALLS.getStr(path);path=SYSCALLS.calculateAt(dirfd,path);if(flags===0){FS.unlink(path)}else if(flags===512){FS.rmdir(path)}else{abort(\"Invalid flags passed to unlinkat\")}return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}var nowIsMonotonic=true;function __emscripten_get_now_is_monotonic(){return nowIsMonotonic}function __emscripten_throw_longjmp(){throw Infinity}function readI53FromI64(ptr){return HEAPU32[ptr>>2]+HEAP32[ptr+4>>2]*4294967296}function __gmtime_js(time,tmPtr){var date=new Date(readI53FromI64(time)*1e3);HEAP32[tmPtr>>2]=date.getUTCSeconds();HEAP32[tmPtr+4>>2]=date.getUTCMinutes();HEAP32[tmPtr+8>>2]=date.getUTCHours();HEAP32[tmPtr+12>>2]=date.getUTCDate();HEAP32[tmPtr+16>>2]=date.getUTCMonth();HEAP32[tmPtr+20>>2]=date.getUTCFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getUTCDay();var start=Date.UTC(date.getUTCFullYear(),0,1,0,0,0,0);var yday=(date.getTime()-start)/(1e3*60*60*24)|0;HEAP32[tmPtr+28>>2]=yday}function isLeapYear(year){return year%4===0&&(year%100!==0||year%400===0)}var MONTH_DAYS_LEAP_CUMULATIVE=[0,31,60,91,121,152,182,213,244,274,305,335];var MONTH_DAYS_REGULAR_CUMULATIVE=[0,31,59,90,120,151,181,212,243,273,304,334];function ydayFromDate(date){var leap=isLeapYear(date.getFullYear());var monthDaysCumulative=leap?MONTH_DAYS_LEAP_CUMULATIVE:MONTH_DAYS_REGULAR_CUMULATIVE;var yday=monthDaysCumulative[date.getMonth()]+date.getDate()-1;return yday}function __localtime_js(time,tmPtr){var date=new Date(readI53FromI64(time)*1e3);HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getFullYear()-1900;HEAP32[tmPtr+24>>2]=date.getDay();var yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr+36>>2]=-(date.getTimezoneOffset()*60);var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dst=(summerOffset!=winterOffset&&date.getTimezoneOffset()==Math.min(winterOffset,summerOffset))|0;HEAP32[tmPtr+32>>2]=dst}function __mktime_js(tmPtr){var date=new Date(HEAP32[tmPtr+20>>2]+1900,HEAP32[tmPtr+16>>2],HEAP32[tmPtr+12>>2],HEAP32[tmPtr+8>>2],HEAP32[tmPtr+4>>2],HEAP32[tmPtr>>2],0);var dst=HEAP32[tmPtr+32>>2];var guessedOffset=date.getTimezoneOffset();var start=new Date(date.getFullYear(),0,1);var summerOffset=new Date(date.getFullYear(),6,1).getTimezoneOffset();var winterOffset=start.getTimezoneOffset();var dstOffset=Math.min(winterOffset,summerOffset);if(dst<0){HEAP32[tmPtr+32>>2]=Number(summerOffset!=winterOffset&&dstOffset==guessedOffset)}else if(dst>0!=(dstOffset==guessedOffset)){var nonDstOffset=Math.max(winterOffset,summerOffset);var trueOffset=dst>0?dstOffset:nonDstOffset;date.setTime(date.getTime()+(trueOffset-guessedOffset)*6e4)}HEAP32[tmPtr+24>>2]=date.getDay();var yday=ydayFromDate(date)|0;HEAP32[tmPtr+28>>2]=yday;HEAP32[tmPtr>>2]=date.getSeconds();HEAP32[tmPtr+4>>2]=date.getMinutes();HEAP32[tmPtr+8>>2]=date.getHours();HEAP32[tmPtr+12>>2]=date.getDate();HEAP32[tmPtr+16>>2]=date.getMonth();HEAP32[tmPtr+20>>2]=date.getYear();return date.getTime()/1e3|0}function __mmap_js(len,prot,flags,fd,off,allocated,addr){try{var stream=SYSCALLS.getStreamFromFD(fd);var res=FS.mmap(stream,len,off,prot,flags);var ptr=res.ptr;HEAP32[allocated>>2]=res.allocated;HEAPU32[addr>>2]=ptr;return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function __munmap_js(addr,len,prot,flags,fd,offset){try{var stream=SYSCALLS.getStreamFromFD(fd);if(prot&2){SYSCALLS.doMsync(addr,stream,len,flags,offset)}FS.munmap(stream)}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return-e.errno}}function stringToNewUTF8(str){var size=lengthBytesUTF8(str)+1;var ret=_malloc(size);if(ret)stringToUTF8(str,ret,size);return ret}function __tzset_js(timezone,daylight,tzname){var currentYear=(new Date).getFullYear();var winter=new Date(currentYear,0,1);var summer=new Date(currentYear,6,1);var winterOffset=winter.getTimezoneOffset();var summerOffset=summer.getTimezoneOffset();var stdTimezoneOffset=Math.max(winterOffset,summerOffset);HEAPU32[timezone>>2]=stdTimezoneOffset*60;HEAP32[daylight>>2]=Number(winterOffset!=summerOffset);function extractZone(date){var match=date.toTimeString().match(/\\(([A-Za-z ]+)\\)$/);return match?match[1]:\"GMT\"}var winterName=extractZone(winter);var summerName=extractZone(summer);var winterNamePtr=stringToNewUTF8(winterName);var summerNamePtr=stringToNewUTF8(summerName);if(summerOffset>2]=winterNamePtr;HEAPU32[tzname+4>>2]=summerNamePtr}else{HEAPU32[tzname>>2]=summerNamePtr;HEAPU32[tzname+4>>2]=winterNamePtr}}function _abort(){abort(\"\")}Module[\"_abort\"]=_abort;function _dlopen(handle){abort(dlopenMissingError)}var readEmAsmArgsArray=[];function readEmAsmArgs(sigPtr,buf){readEmAsmArgsArray.length=0;var ch;buf>>=2;while(ch=HEAPU8[sigPtr++]){buf+=ch!=105&buf;readEmAsmArgsArray.push(ch==105?HEAP32[buf]:(ch==106?HEAP64:HEAPF64)[buf++>>1]);++buf}return readEmAsmArgsArray}function runEmAsmFunction(code,sigPtr,argbuf){var args=readEmAsmArgs(sigPtr,argbuf);return ASM_CONSTS[code].apply(null,args)}function _emscripten_asm_const_int(code,sigPtr,argbuf){return runEmAsmFunction(code,sigPtr,argbuf)}function _emscripten_date_now(){return Date.now()}function getHeapMax(){return 2147483648}function _emscripten_get_heap_max(){return getHeapMax()}var _emscripten_get_now;if(ENVIRONMENT_IS_NODE){global.performance=require(\"perf_hooks\").performance}_emscripten_get_now=()=>performance.now();function _emscripten_memcpy_big(dest,src,num){HEAPU8.copyWithin(dest,src,src+num)}function emscripten_realloc_buffer(size){var b=wasmMemory.buffer;try{wasmMemory.grow(size-b.byteLength+65535>>>16);updateMemoryViews();return 1}catch(e){}}function _emscripten_resize_heap(requestedSize){var oldSize=HEAPU8.length;requestedSize=requestedSize>>>0;var maxHeapSize=getHeapMax();if(requestedSize>maxHeapSize){return false}var alignUp=(x,multiple)=>x+(multiple-x%multiple)%multiple;for(var cutDown=1;cutDown<=4;cutDown*=2){var overGrownHeapSize=oldSize*(1+.2/cutDown);overGrownHeapSize=Math.min(overGrownHeapSize,requestedSize+100663296);var newSize=Math.min(maxHeapSize,alignUp(Math.max(requestedSize,overGrownHeapSize),65536));var replacement=emscripten_realloc_buffer(newSize);if(replacement){return true}}return false}var ENV={};function getExecutableName(){return thisProgram||\"./this.program\"}function getEnvStrings(){if(!getEnvStrings.strings){var lang=(typeof navigator==\"object\"&&navigator.languages&&navigator.languages[0]||\"C\").replace(\"-\",\"_\")+\".UTF-8\";var env={\"USER\":\"web_user\",\"LOGNAME\":\"web_user\",\"PATH\":\"/\",\"PWD\":\"/\",\"HOME\":\"/home/web_user\",\"LANG\":lang,\"_\":getExecutableName()};for(var x in ENV){if(ENV[x]===undefined)delete env[x];else env[x]=ENV[x]}var strings=[];for(var x in env){strings.push(`${x}=${env[x]}`)}getEnvStrings.strings=strings}return getEnvStrings.strings}function stringToAscii(str,buffer){for(var i=0;i>0]=str.charCodeAt(i)}HEAP8[buffer>>0]=0}function _environ_get(__environ,environ_buf){var bufSize=0;getEnvStrings().forEach(function(string,i){var ptr=environ_buf+bufSize;HEAPU32[__environ+i*4>>2]=ptr;stringToAscii(string,ptr);bufSize+=string.length+1});return 0}function _environ_sizes_get(penviron_count,penviron_buf_size){var strings=getEnvStrings();HEAPU32[penviron_count>>2]=strings.length;var bufSize=0;strings.forEach(function(string){bufSize+=string.length+1});HEAPU32[penviron_buf_size>>2]=bufSize;return 0}function _proc_exit(code){EXITSTATUS=code;if(!keepRuntimeAlive()){if(Module[\"onExit\"])Module[\"onExit\"](code);ABORT=true}quit_(code,new ExitStatus(code))}function exitJS(status,implicit){EXITSTATUS=status;_proc_exit(status)}var _exit=exitJS;function _fd_close(fd){try{var stream=SYSCALLS.getStreamFromFD(fd);FS.close(stream);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return e.errno}}function _fd_fdstat_get(fd,pbuf){try{var rightsBase=0;var rightsInheriting=0;var flags=0;{var stream=SYSCALLS.getStreamFromFD(fd);var type=stream.tty?2:FS.isDir(stream.mode)?3:FS.isLink(stream.mode)?7:4}HEAP8[pbuf>>0]=type;HEAP16[pbuf+2>>1]=flags;HEAP64[pbuf+8>>3]=BigInt(rightsBase);HEAP64[pbuf+16>>3]=BigInt(rightsInheriting);return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return e.errno}}function doReadv(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.read(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(curr>2]=num;return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return e.errno}}var MAX_INT53=9007199254740992;var MIN_INT53=-9007199254740992;function bigintToI53Checked(num){return numMAX_INT53?NaN:Number(num)}function _fd_seek(fd,offset,whence,newOffset){try{offset=bigintToI53Checked(offset);if(isNaN(offset))return 61;var stream=SYSCALLS.getStreamFromFD(fd);FS.llseek(stream,offset,whence);HEAP64[newOffset>>3]=BigInt(stream.position);if(stream.getdents&&offset===0&&whence===0)stream.getdents=null;return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return e.errno}}function doWritev(stream,iov,iovcnt,offset){var ret=0;for(var i=0;i>2];var len=HEAPU32[iov+4>>2];iov+=8;var curr=FS.write(stream,HEAP8,ptr,len,offset);if(curr<0)return-1;ret+=curr;if(typeof offset!==\"undefined\"){offset+=curr}}return ret}function _fd_write(fd,iov,iovcnt,pnum){try{var stream=SYSCALLS.getStreamFromFD(fd);var num=doWritev(stream,iov,iovcnt);HEAPU32[pnum>>2]=num;return 0}catch(e){if(typeof FS==\"undefined\"||!(e.name===\"ErrnoError\"))throw e;return e.errno}}function _getaddrinfo(node,service,hint,out){var addr=0;var port=0;var flags=0;var family=0;var type=0;var proto=0;var ai;function allocaddrinfo(family,type,proto,canon,addr,port){var sa,salen,ai;var errno;salen=family===10?28:16;addr=family===10?inetNtop6(addr):inetNtop4(addr);sa=_malloc(salen);errno=writeSockaddr(sa,family,addr,port);assert(!errno);ai=_malloc(32);HEAP32[ai+4>>2]=family;HEAP32[ai+8>>2]=type;HEAP32[ai+12>>2]=proto;HEAPU32[ai+24>>2]=canon;HEAPU32[ai+20>>2]=sa;if(family===10){HEAP32[ai+16>>2]=28}else{HEAP32[ai+16>>2]=16}HEAP32[ai+28>>2]=0;return ai}if(hint){flags=HEAP32[hint>>2];family=HEAP32[hint+4>>2];type=HEAP32[hint+8>>2];proto=HEAP32[hint+12>>2]}if(type&&!proto){proto=type===2?17:6}if(!type&&proto){type=proto===17?2:1}if(proto===0){proto=6}if(type===0){type=1}if(!node&&!service){return-2}if(flags&~(1|2|4|1024|8|16|32)){return-1}if(hint!==0&&HEAP32[hint>>2]&2&&!node){return-1}if(flags&32){return-2}if(type!==0&&type!==1&&type!==2){return-7}if(family!==0&&family!==2&&family!==10){return-6}if(service){service=UTF8ToString(service);port=parseInt(service,10);if(isNaN(port)){if(flags&1024){return-2}return-8}}if(!node){if(family===0){family=2}if((flags&1)===0){if(family===2){addr=_htonl(2130706433)}else{addr=[0,0,0,1]}}ai=allocaddrinfo(family,type,proto,null,addr,port);HEAPU32[out>>2]=ai;return 0}node=UTF8ToString(node);addr=inetPton4(node);if(addr!==null){if(family===0||family===2){family=2}else if(family===10&&flags&8){addr=[0,0,_htonl(65535),addr];family=10}else{return-2}}else{addr=inetPton6(node);if(addr!==null){if(family===0||family===10){family=10}else{return-2}}}if(addr!=null){ai=allocaddrinfo(family,type,proto,node,addr,port);HEAPU32[out>>2]=ai;return 0}if(flags&4){return-2}node=DNS.lookup_name(node);addr=inetPton4(node);if(family===0){family=2}else if(family===10){addr=[0,0,_htonl(65535),addr]}ai=allocaddrinfo(family,type,proto,null,addr,port);HEAPU32[out>>2]=ai;return 0}function _getnameinfo(sa,salen,node,nodelen,serv,servlen,flags){var info=readSockaddr(sa,salen);if(info.errno){return-6}var port=info.port;var addr=info.addr;var overflowed=false;if(node&&nodelen){var lookup;if(flags&1||!(lookup=DNS.lookup_addr(addr))){if(flags&8){return-2}}else{addr=lookup}var numBytesWrittenExclNull=stringToUTF8(addr,node,nodelen);if(numBytesWrittenExclNull+1>=nodelen){overflowed=true}}if(serv&&servlen){port=\"\"+port;var numBytesWrittenExclNull=stringToUTF8(port,serv,servlen);if(numBytesWrittenExclNull+1>=servlen){overflowed=true}}if(overflowed){return-12}return 0}function arraySum(array,index){var sum=0;for(var i=0;i<=index;sum+=array[i++]){}return sum}var MONTH_DAYS_LEAP=[31,29,31,30,31,30,31,31,30,31,30,31];var MONTH_DAYS_REGULAR=[31,28,31,30,31,30,31,31,30,31,30,31];function addDays(date,days){var newDate=new Date(date.getTime());while(days>0){var leap=isLeapYear(newDate.getFullYear());var currentMonth=newDate.getMonth();var daysInCurrentMonth=(leap?MONTH_DAYS_LEAP:MONTH_DAYS_REGULAR)[currentMonth];if(days>daysInCurrentMonth-newDate.getDate()){days-=daysInCurrentMonth-newDate.getDate()+1;newDate.setDate(1);if(currentMonth<11){newDate.setMonth(currentMonth+1)}else{newDate.setMonth(0);newDate.setFullYear(newDate.getFullYear()+1)}}else{newDate.setDate(newDate.getDate()+days);return newDate}}return newDate}function writeArrayToMemory(array,buffer){HEAP8.set(array,buffer)}function _strftime(s,maxsize,format,tm){var tm_zone=HEAP32[tm+40>>2];var date={tm_sec:HEAP32[tm>>2],tm_min:HEAP32[tm+4>>2],tm_hour:HEAP32[tm+8>>2],tm_mday:HEAP32[tm+12>>2],tm_mon:HEAP32[tm+16>>2],tm_year:HEAP32[tm+20>>2],tm_wday:HEAP32[tm+24>>2],tm_yday:HEAP32[tm+28>>2],tm_isdst:HEAP32[tm+32>>2],tm_gmtoff:HEAP32[tm+36>>2],tm_zone:tm_zone?UTF8ToString(tm_zone):\"\"};var pattern=UTF8ToString(format);var EXPANSION_RULES_1={\"%c\":\"%a %b %d %H:%M:%S %Y\",\"%D\":\"%m/%d/%y\",\"%F\":\"%Y-%m-%d\",\"%h\":\"%b\",\"%r\":\"%I:%M:%S %p\",\"%R\":\"%H:%M\",\"%T\":\"%H:%M:%S\",\"%x\":\"%m/%d/%y\",\"%X\":\"%H:%M:%S\",\"%Ec\":\"%c\",\"%EC\":\"%C\",\"%Ex\":\"%m/%d/%y\",\"%EX\":\"%H:%M:%S\",\"%Ey\":\"%y\",\"%EY\":\"%Y\",\"%Od\":\"%d\",\"%Oe\":\"%e\",\"%OH\":\"%H\",\"%OI\":\"%I\",\"%Om\":\"%m\",\"%OM\":\"%M\",\"%OS\":\"%S\",\"%Ou\":\"%u\",\"%OU\":\"%U\",\"%OV\":\"%V\",\"%Ow\":\"%w\",\"%OW\":\"%W\",\"%Oy\":\"%y\"};for(var rule in EXPANSION_RULES_1){pattern=pattern.replace(new RegExp(rule,\"g\"),EXPANSION_RULES_1[rule])}var WEEKDAYS=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"];var MONTHS=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"];function leadingSomething(value,digits,character){var str=typeof value==\"number\"?value.toString():value||\"\";while(str.length0?1:0}var compare;if((compare=sgn(date1.getFullYear()-date2.getFullYear()))===0){if((compare=sgn(date1.getMonth()-date2.getMonth()))===0){compare=sgn(date1.getDate()-date2.getDate())}}return compare}function getFirstWeekStartDate(janFourth){switch(janFourth.getDay()){case 0:return new Date(janFourth.getFullYear()-1,11,29);case 1:return janFourth;case 2:return new Date(janFourth.getFullYear(),0,3);case 3:return new Date(janFourth.getFullYear(),0,2);case 4:return new Date(janFourth.getFullYear(),0,1);case 5:return new Date(janFourth.getFullYear()-1,11,31);case 6:return new Date(janFourth.getFullYear()-1,11,30)}}function getWeekBasedYear(date){var thisDate=addDays(new Date(date.tm_year+1900,0,1),date.tm_yday);var janFourthThisYear=new Date(thisDate.getFullYear(),0,4);var janFourthNextYear=new Date(thisDate.getFullYear()+1,0,4);var firstWeekStartThisYear=getFirstWeekStartDate(janFourthThisYear);var firstWeekStartNextYear=getFirstWeekStartDate(janFourthNextYear);if(compareByDay(firstWeekStartThisYear,thisDate)<=0){if(compareByDay(firstWeekStartNextYear,thisDate)<=0){return thisDate.getFullYear()+1}return thisDate.getFullYear()}return thisDate.getFullYear()-1}var EXPANSION_RULES_2={\"%a\":function(date){return WEEKDAYS[date.tm_wday].substring(0,3)},\"%A\":function(date){return WEEKDAYS[date.tm_wday]},\"%b\":function(date){return MONTHS[date.tm_mon].substring(0,3)},\"%B\":function(date){return MONTHS[date.tm_mon]},\"%C\":function(date){var year=date.tm_year+1900;return leadingNulls(year/100|0,2)},\"%d\":function(date){return leadingNulls(date.tm_mday,2)},\"%e\":function(date){return leadingSomething(date.tm_mday,2,\" \")},\"%g\":function(date){return getWeekBasedYear(date).toString().substring(2)},\"%G\":function(date){return getWeekBasedYear(date)},\"%H\":function(date){return leadingNulls(date.tm_hour,2)},\"%I\":function(date){var twelveHour=date.tm_hour;if(twelveHour==0)twelveHour=12;else if(twelveHour>12)twelveHour-=12;return leadingNulls(twelveHour,2)},\"%j\":function(date){return leadingNulls(date.tm_mday+arraySum(isLeapYear(date.tm_year+1900)?MONTH_DAYS_LEAP:MONTH_DAYS_REGULAR,date.tm_mon-1),3)},\"%m\":function(date){return leadingNulls(date.tm_mon+1,2)},\"%M\":function(date){return leadingNulls(date.tm_min,2)},\"%n\":function(){return\"\\n\"},\"%p\":function(date){if(date.tm_hour>=0&&date.tm_hour<12){return\"AM\"}return\"PM\"},\"%S\":function(date){return leadingNulls(date.tm_sec,2)},\"%t\":function(){return\"\\t\"},\"%u\":function(date){return date.tm_wday||7},\"%U\":function(date){var days=date.tm_yday+7-date.tm_wday;return leadingNulls(Math.floor(days/7),2)},\"%V\":function(date){var val=Math.floor((date.tm_yday+7-(date.tm_wday+6)%7)/7);if((date.tm_wday+371-date.tm_yday-2)%7<=2){val++}if(!val){val=52;var dec31=(date.tm_wday+7-date.tm_yday-1)%7;if(dec31==4||dec31==5&&isLeapYear(date.tm_year%400-1)){val++}}else if(val==53){var jan1=(date.tm_wday+371-date.tm_yday)%7;if(jan1!=4&&(jan1!=3||!isLeapYear(date.tm_year)))val=1}return leadingNulls(val,2)},\"%w\":function(date){return date.tm_wday},\"%W\":function(date){var days=date.tm_yday+7-(date.tm_wday+6)%7;return leadingNulls(Math.floor(days/7),2)},\"%y\":function(date){return(date.tm_year+1900).toString().substring(2)},\"%Y\":function(date){return date.tm_year+1900},\"%z\":function(date){var off=date.tm_gmtoff;var ahead=off>=0;off=Math.abs(off)/60;off=off/60*100+off%60;return(ahead?\"+\":\"-\")+String(\"0000\"+off).slice(-4)},\"%Z\":function(date){return date.tm_zone},\"%%\":function(){return\"%\"}};pattern=pattern.replace(/%%/g,\"\\0\\0\");for(var rule in EXPANSION_RULES_2){if(pattern.includes(rule)){pattern=pattern.replace(new RegExp(rule,\"g\"),EXPANSION_RULES_2[rule](date))}}pattern=pattern.replace(/\\0\\0/g,\"%\");var bytes=intArrayFromString(pattern,false);if(bytes.length>maxsize){return 0}writeArrayToMemory(bytes,s);return bytes.length-1}var FSNode=function(parent,name,mode,rdev){if(!parent){parent=this}this.parent=parent;this.mount=parent.mount;this.mounted=null;this.id=FS.nextInode++;this.name=name;this.mode=mode;this.node_ops={};this.stream_ops={};this.rdev=rdev};var readMode=292|73;var writeMode=146;Object.defineProperties(FSNode.prototype,{read:{get:function(){return(this.mode&readMode)===readMode},set:function(val){val?this.mode|=readMode:this.mode&=~readMode}},write:{get:function(){return(this.mode&writeMode)===writeMode},set:function(val){val?this.mode|=writeMode:this.mode&=~writeMode}},isFolder:{get:function(){return FS.isDir(this.mode)}},isDevice:{get:function(){return FS.isChrdev(this.mode)}}});FS.FSNode=FSNode;FS.createPreloadedFile=FS_createPreloadedFile;FS.staticInit();var wasmImports={\"b\":___assert_fail,\"f\":___cxa_throw,\"ka\":___dlsym,\"R\":___syscall__newselect,\"L\":___syscall_accept4,\"K\":___syscall_bind,\"J\":___syscall_connect,\"la\":___syscall_faccessat,\"g\":___syscall_fcntl64,\"ha\":___syscall_fstat64,\"U\":___syscall_getdents64,\"I\":___syscall_getpeername,\"H\":___syscall_getsockname,\"G\":___syscall_getsockopt,\"y\":___syscall_ioctl,\"F\":___syscall_listen,\"ea\":___syscall_lstat64,\"$\":___syscall_mkdirat,\"fa\":___syscall_newfstatat,\"w\":___syscall_openat,\"V\":___syscall_poll,\"E\":___syscall_recvfrom,\"T\":___syscall_renameat,\"S\":___syscall_rmdir,\"D\":___syscall_sendto,\"v\":___syscall_socket,\"ga\":___syscall_stat64,\"O\":___syscall_unlinkat,\"ia\":__emscripten_get_now_is_monotonic,\"M\":__emscripten_throw_longjmp,\"Y\":__gmtime_js,\"Z\":__localtime_js,\"_\":__mktime_js,\"W\":__mmap_js,\"X\":__munmap_js,\"P\":__tzset_js,\"a\":_abort,\"t\":_dlopen,\"oa\":_emscripten_asm_const_int,\"l\":_emscripten_date_now,\"Q\":_emscripten_get_heap_max,\"p\":_emscripten_get_now,\"ja\":_emscripten_memcpy_big,\"N\":_emscripten_resize_heap,\"ca\":_environ_get,\"da\":_environ_sizes_get,\"o\":_exit,\"m\":_fd_close,\"ba\":_fd_fdstat_get,\"x\":_fd_read,\"aa\":_fd_seek,\"q\":_fd_write,\"k\":_getaddrinfo,\"i\":_getnameinfo,\"pa\":invoke_i,\"na\":invoke_ii,\"c\":invoke_iii,\"n\":invoke_iiii,\"s\":invoke_iiiii,\"z\":invoke_iiiiii,\"r\":invoke_iiiiiiiii,\"B\":invoke_iiiijj,\"qa\":invoke_iij,\"h\":invoke_vi,\"j\":invoke_vii,\"d\":invoke_viiii,\"ma\":invoke_viiiiii,\"A\":invoke_viiiiiiii,\"C\":is_timeout,\"u\":send_progress,\"e\":_strftime};var asm=createWasm();var ___wasm_call_ctors=function(){return(___wasm_call_ctors=Module[\"asm\"][\"sa\"]).apply(null,arguments)};var _malloc=Module[\"_malloc\"]=function(){return(_malloc=Module[\"_malloc\"]=Module[\"asm\"][\"ta\"]).apply(null,arguments)};var ___errno_location=function(){return(___errno_location=Module[\"asm\"][\"va\"]).apply(null,arguments)};var _ntohs=function(){return(_ntohs=Module[\"asm\"][\"wa\"]).apply(null,arguments)};var _htons=function(){return(_htons=Module[\"asm\"][\"xa\"]).apply(null,arguments)};var _ffmpeg=Module[\"_ffmpeg\"]=function(){return(_ffmpeg=Module[\"_ffmpeg\"]=Module[\"asm\"][\"ya\"]).apply(null,arguments)};var _htonl=function(){return(_htonl=Module[\"asm\"][\"za\"]).apply(null,arguments)};var _emscripten_builtin_memalign=function(){return(_emscripten_builtin_memalign=Module[\"asm\"][\"Aa\"]).apply(null,arguments)};var _setThrew=function(){return(_setThrew=Module[\"asm\"][\"Ba\"]).apply(null,arguments)};var stackSave=function(){return(stackSave=Module[\"asm\"][\"Ca\"]).apply(null,arguments)};var stackRestore=function(){return(stackRestore=Module[\"asm\"][\"Da\"]).apply(null,arguments)};var ___cxa_is_pointer_type=function(){return(___cxa_is_pointer_type=Module[\"asm\"][\"Ea\"]).apply(null,arguments)};var _ff_h264_cabac_tables=Module[\"_ff_h264_cabac_tables\"]=1537004;var ___start_em_js=Module[\"___start_em_js\"]=6059629;var ___stop_em_js=Module[\"___stop_em_js\"]=6059806;function invoke_iiiii(index,a1,a2,a3,a4){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_vii(index,a1,a2){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iii(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iiiijj(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iiiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_vi(index,a1){var sp=stackSave();try{getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_viiii(index,a1,a2,a3,a4){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iiii(index,a1,a2,a3){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iij(index,a1,a2){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_i(index){var sp=stackSave();try{return getWasmTableEntry(index)()}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_ii(index,a1){var sp=stackSave();try{return getWasmTableEntry(index)(a1)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_viiiiiiii(index,a1,a2,a3,a4,a5,a6,a7,a8){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6,a7,a8)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_iiiiii(index,a1,a2,a3,a4,a5){var sp=stackSave();try{return getWasmTableEntry(index)(a1,a2,a3,a4,a5)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}function invoke_viiiiii(index,a1,a2,a3,a4,a5,a6){var sp=stackSave();try{getWasmTableEntry(index)(a1,a2,a3,a4,a5,a6)}catch(e){stackRestore(sp);if(e!==e+0)throw e;_setThrew(1,0)}}Module[\"setValue\"]=setValue;Module[\"getValue\"]=getValue;Module[\"UTF8ToString\"]=UTF8ToString;Module[\"stringToUTF8\"]=stringToUTF8;Module[\"lengthBytesUTF8\"]=lengthBytesUTF8;Module[\"FS\"]=FS;var calledRun;dependenciesFulfilled=function runCaller(){if(!calledRun)run();if(!calledRun)dependenciesFulfilled=runCaller};function run(){if(runDependencies>0){return}preRun();if(runDependencies>0){return}function doRun(){if(calledRun)return;calledRun=true;Module[\"calledRun\"]=true;if(ABORT)return;initRuntime();readyPromiseResolve(Module);if(Module[\"onRuntimeInitialized\"])Module[\"onRuntimeInitialized\"]();postRun()}if(Module[\"setStatus\"]){Module[\"setStatus\"](\"Running...\");setTimeout(function(){setTimeout(function(){Module[\"setStatus\"](\"\")},1);doRun()},1)}else{doRun()}}if(Module[\"preInit\"]){if(typeof Module[\"preInit\"]==\"function\")Module[\"preInit\"]=[Module[\"preInit\"]];while(Module[\"preInit\"].length>0){Module[\"preInit\"].pop()()}}run();\n\n\n return createFFmpegCore.ready\n}\n\n);\n})();\nexport default createFFmpegCore;"; var FFMessageType; (function (FFMessageType) { FFMessageType["LOAD"] = "LOAD"; FFMessageType["EXEC"] = "EXEC"; FFMessageType["WRITE_FILE"] = "WRITE_FILE"; FFMessageType["READ_FILE"] = "READ_FILE"; FFMessageType["DELETE_FILE"] = "DELETE_FILE"; FFMessageType["RENAME"] = "RENAME"; FFMessageType["CREATE_DIR"] = "CREATE_DIR"; FFMessageType["LIST_DIR"] = "LIST_DIR"; FFMessageType["DELETE_DIR"] = "DELETE_DIR"; FFMessageType["ERROR"] = "ERROR"; FFMessageType["DOWNLOAD"] = "DOWNLOAD"; FFMessageType["PROGRESS"] = "PROGRESS"; FFMessageType["LOG"] = "LOG"; FFMessageType["MOUNT"] = "MOUNT"; FFMessageType["UNMOUNT"] = "UNMOUNT"; })(FFMessageType || (FFMessageType = {})); /** * Generate an unique message ID. */ const getMessageID = (() => { let messageID = 0; return () => messageID++; })(); const ERROR_NOT_LOADED = new Error("ffmpeg is not loaded, call `await ffmpeg.load()` first"); const ERROR_TERMINATED = new Error("called FFmpeg.terminate()"); /** * Provides APIs to interact with ffmpeg web worker. * * @example * ```ts * const ffmpeg = new FFmpeg(); * ``` */ class FFmpeg { #worker = null; /** * #resolves and #rejects tracks Promise resolves and rejects to * be called when we receive message from web worker. */ #resolves = {}; #rejects = {}; #logEventCallbacks = []; #progressEventCallbacks = []; loaded = false; /** * register worker message event handlers. */ #registerHandlers = () => { if (this.#worker) { this.#worker.onmessage = ({ data: { id, type, data }, }) => { switch (type) { case FFMessageType.LOAD: this.loaded = true; this.#resolves[id](data); break; case FFMessageType.MOUNT: case FFMessageType.UNMOUNT: case FFMessageType.EXEC: case FFMessageType.WRITE_FILE: case FFMessageType.READ_FILE: case FFMessageType.DELETE_FILE: case FFMessageType.RENAME: case FFMessageType.CREATE_DIR: case FFMessageType.LIST_DIR: case FFMessageType.DELETE_DIR: this.#resolves[id](data); break; case FFMessageType.LOG: this.#logEventCallbacks.forEach((f) => f(data)); break; case FFMessageType.PROGRESS: this.#progressEventCallbacks.forEach((f) => f(data)); break; case FFMessageType.ERROR: this.#rejects[id](data); break; } delete this.#resolves[id]; delete this.#rejects[id]; }; } }; /** * Generic function to send messages to web worker. */ #send = ({ type, data }, trans = [], signal) => { if (!this.#worker) { return Promise.reject(ERROR_NOT_LOADED); } return new Promise((resolve, reject) => { const id = getMessageID(); this.#worker && this.#worker.postMessage({ id, type, data }, trans); this.#resolves[id] = resolve; this.#rejects[id] = reject; signal?.addEventListener("abort", () => { reject(new DOMException(`Message # ${id} was aborted`, "AbortError")); }, { once: true }); }); }; on(event, callback) { if (event === "log") { this.#logEventCallbacks.push(callback); } else if (event === "progress") { this.#progressEventCallbacks.push(callback); } } off(event, callback) { if (event === "log") { this.#logEventCallbacks = this.#logEventCallbacks.filter((f) => f !== callback); } else if (event === "progress") { this.#progressEventCallbacks = this.#progressEventCallbacks.filter((f) => f !== callback); } } /** * Loads ffmpeg-core inside web worker. It is required to call this method first * as it initializes WebAssembly and other essential variables. * * @category FFmpeg * @returns `true` if ffmpeg core is loaded for the first time. */ load = ({ classWorkerURL, ...config } = {}, { signal } = {}) => { if (!this.#worker) { this.#worker = classWorkerURL ? new Worker(new URL(classWorkerURL, (_documentCurrentScript && _documentCurrentScript.src || new URL('__entry.js', document.baseURI).href)), { type: "module", }) : // We need to duplicated the code here to enable webpack // to bundle worekr.js here. new Worker(new URL('' + "/worker-CRu_gK8D.js", (_documentCurrentScript && _documentCurrentScript.src || new URL('__entry.js', document.baseURI).href)), { type: "module", }); this.#registerHandlers(); } return this.#send({ type: FFMessageType.LOAD, data: config, }, undefined, signal); }; /** * Execute ffmpeg command. * * @remarks * To avoid common I/O issues, ["-nostdin", "-y"] are prepended to the args * by default. * * @example * ```ts * const ffmpeg = new FFmpeg(); * await ffmpeg.load(); * await ffmpeg.writeFile("video.avi", ...); * // ffmpeg -i video.avi video.mp4 * await ffmpeg.exec(["-i", "video.avi", "video.mp4"]); * const data = ffmpeg.readFile("video.mp4"); * ``` * * @returns `0` if no error, `!= 0` if timeout (1) or error. * @category FFmpeg */ exec = ( /** ffmpeg command line args */ args, /** * milliseconds to wait before stopping the command execution. * * @defaultValue -1 */ timeout = -1, { signal } = {}) => this.#send({ type: FFMessageType.EXEC, data: { args, timeout }, }, undefined, signal); /** * Terminate all ongoing API calls and terminate web worker. * `FFmpeg.load()` must be called again before calling any other APIs. * * @category FFmpeg */ terminate = () => { const ids = Object.keys(this.#rejects); // rejects all incomplete Promises. for (const id of ids) { this.#rejects[id](ERROR_TERMINATED); delete this.#rejects[id]; delete this.#resolves[id]; } if (this.#worker) { this.#worker.terminate(); this.#worker = null; this.loaded = false; } }; /** * Write data to ffmpeg.wasm. * * @example * ```ts * const ffmpeg = new FFmpeg(); * await ffmpeg.load(); * await ffmpeg.writeFile("video.avi", await fetchFile("../video.avi")); * await ffmpeg.writeFile("text.txt", "hello world"); * ``` * * @category File System */ writeFile = (path, data, { signal } = {}) => { const trans = []; if (data instanceof Uint8Array) { trans.push(data.buffer); } return this.#send({ type: FFMessageType.WRITE_FILE, data: { path, data }, }, trans, signal); }; mount = (fsType, options, mountPoint) => { const trans = []; return this.#send({ type: FFMessageType.MOUNT, data: { fsType, options, mountPoint }, }, trans); }; unmount = (mountPoint) => { const trans = []; return this.#send({ type: FFMessageType.UNMOUNT, data: { mountPoint }, }, trans); }; /** * Read data from ffmpeg.wasm. * * @example * ```ts * const ffmpeg = new FFmpeg(); * await ffmpeg.load(); * const data = await ffmpeg.readFile("video.mp4"); * ``` * * @category File System */ readFile = (path, /** * File content encoding, supports two encodings: * - utf8: read file as text file, return data in string type. * - binary: read file as binary file, return data in Uint8Array type. * * @defaultValue binary */ encoding = "binary", { signal } = {}) => this.#send({ type: FFMessageType.READ_FILE, data: { path, encoding }, }, undefined, signal); /** * Delete a file. * * @category File System */ deleteFile = (path, { signal } = {}) => this.#send({ type: FFMessageType.DELETE_FILE, data: { path }, }, undefined, signal); /** * Rename a file or directory. * * @category File System */ rename = (oldPath, newPath, { signal } = {}) => this.#send({ type: FFMessageType.RENAME, data: { oldPath, newPath }, }, undefined, signal); /** * Create a directory. * * @category File System */ createDir = (path, { signal } = {}) => this.#send({ type: FFMessageType.CREATE_DIR, data: { path }, }, undefined, signal); /** * List directory contents. * * @category File System */ listDir = (path, { signal } = {}) => this.#send({ type: FFMessageType.LIST_DIR, data: { path }, }, undefined, signal); /** * Delete an empty directory. * * @category File System */ deleteDir = (path, { signal } = {}) => this.#send({ type: FFMessageType.DELETE_DIR, data: { path }, }, undefined, signal); } const ERROR_RESPONSE_BODY_READER = new Error("failed to get response body reader"); const ERROR_INCOMPLETED_DOWNLOAD = new Error("failed to complete download"); const HeaderContentLength = "Content-Length"; /** * Download content of a URL with progress. * * Progress only works when Content-Length is provided by the server. * */ const downloadWithProgress = async (url, cb) => { const resp = await fetch(url); let buf; try { // Set total to -1 to indicate that there is not Content-Type Header. const total = parseInt(resp.headers.get(HeaderContentLength) || "-1"); const reader = resp.body?.getReader(); if (!reader) throw ERROR_RESPONSE_BODY_READER; const chunks = []; let received = 0; for (;;) { const { done, value } = await reader.read(); const delta = value ? value.length : 0; if (done) { if (total != -1 && total !== received) throw ERROR_INCOMPLETED_DOWNLOAD; cb && cb({ url, total, received, delta, done }); break; } chunks.push(value); received += delta; cb && cb({ url, total, received, delta, done }); } const data = new Uint8Array(received); let position = 0; for (const chunk of chunks) { data.set(chunk, position); position += chunk.length; } buf = data.buffer; } catch (e) { console.log(`failed to send download progress event: `, e); // Fetch arrayBuffer directly when it is not possible to get progress. buf = await resp.arrayBuffer(); cb && cb({ url, total: buf.byteLength, received: buf.byteLength, delta: 0, done: true, }); } return buf; }; /** * toBlobURL fetches data from an URL and return a blob URL. * * Example: * * ```ts * await toBlobURL("http://localhost:3000/ffmpeg.js", "text/javascript"); * ``` */ const toBlobURL = async (url, mimeType, progress = false, cb) => { const buf = progress ? await downloadWithProgress(url, cb) : await (await fetch(url)).arrayBuffer(); const blob = new Blob([buf], { type: mimeType }); return URL.createObjectURL(blob); }; class FFmpegConvertor { coreURL; wasmURL; classWorkerURL; ffmpeg; size = 0; /// 140MB, don't know why, but it's the limit, if execced, ffmpeg throw index out of bounds error maxSize = 14e7; taskCount = 0; reloadLock = false; async init() { const en = new TextEncoder(); this.coreURL = URL.createObjectURL(new Blob([en.encode(core_raw)], { type: "text/javascript" })); this.classWorkerURL = URL.createObjectURL(new Blob([en.encode(class_worker_raw)], { type: "text/javascript" })); this.wasmURL = await toBlobURL("https://unpkg.com/@ffmpeg/core@0.12.6/dist/esm/ffmpeg-core.wasm", "application/wasm"); this.ffmpeg = new FFmpeg(); await this.load(); return this; } async load() { await this.ffmpeg.load( { coreURL: this.coreURL, wasmURL: this.wasmURL, classWorkerURL: this.classWorkerURL } ); } async check() { if (!this.coreURL || !this.wasmURL || !this.classWorkerURL || !this.ffmpeg) { throw new Error("FFmpegConvertor not init"); } if (this.size > this.maxSize) { const verLock = this.reloadLock; await this.waitForTaskZero(); if (!this.reloadLock) { this.reloadLock = true; try { evLog("info", "FFmpegConvertor: size limit exceeded, terminate ffmpeg, verLock: ", verLock); this.ffmpeg.terminate(); await this.load(); this.size = 0; this.taskCount = 0; } finally { this.reloadLock = false; } } else { await this.waitForReloadLock(); } } } async writeFiles(files, randomPrefix) { const ffmpeg = this.ffmpeg; await Promise.all( files.map(async (f) => { this.size += f.data.byteLength; await ffmpeg.writeFile(randomPrefix + f.name, f.data); }) ); } async readOutputFile(file) { const result = await this.ffmpeg.readFile(file); this.size += result.length; return result; } // TODO: find a way to reduce time cost; to mp4 30MB takes 50s; to gif 30MB takes 26s async convertTo(files, format, meta) { await this.check(); this.taskCount++; try { const ffmpeg = this.ffmpeg; const randomPrefix = Math.random().toString(36).substring(7); await this.writeFiles(files, randomPrefix); let metaStr; if (meta) { metaStr = meta.map((m) => `file '${randomPrefix}${m.file}' duration ${m.delay / 1e3}`).join("\n"); } else { metaStr = files.map((f) => `file '${randomPrefix}${f.name}' duration 0.04`).join("\n"); } await ffmpeg.writeFile(randomPrefix + "meta.txt", metaStr); let resultFile; let mimeType; switch (format) { case "GIF": resultFile = randomPrefix + "output.gif"; mimeType = "image/gif"; await ffmpeg.exec(["-f", "concat", "-safe", "0", "-i", randomPrefix + "meta.txt", "-vf", "split[a][b];[a]palettegen=stats_mode=diff[p];[b][p]paletteuse=dither=bayer:bayer_scale=2", resultFile]); break; case "MP4": resultFile = randomPrefix + "output.mp4"; mimeType = "video/mp4"; await ffmpeg.exec(["-f", "concat", "-safe", "0", "-i", randomPrefix + "meta.txt", "-c:v", "h264", "-pix_fmt", "yuv420p", resultFile]); break; } const result = await this.readOutputFile(resultFile); const deletePromise = files.map((f) => ffmpeg.deleteFile(randomPrefix + f.name)); if (meta) { deletePromise.push(ffmpeg.deleteFile(randomPrefix + "meta.txt")); } deletePromise.push(ffmpeg.deleteFile(resultFile)); await Promise.all(deletePromise); return new Blob([result], { type: mimeType }); } finally { this.taskCount--; } } async waitForTaskZero() { while (this.taskCount > 0) { await new Promise((r) => setTimeout(r, 100)); } await new Promise((r) => setTimeout(r, Math.random() * 100 + 10)); } async waitForReloadLock() { while (this.reloadLock) { await new Promise((r) => setTimeout(r, 100)); } await new Promise((r) => setTimeout(r, Math.random() * 100 + 10)); } } const PID_EXTRACT = /\/(\d+)_([a-z]+)\d*\.\w*$/; class Pixiv extends BaseMatcher { authorID; meta; pidList = []; pageCount = 0; works = {}; ugoiraMetas = {}; pageSize = {}; convertor; first; constructor() { super(); this.meta = new GalleryMeta(window.location.href, "UNTITLE"); } async processData(data, contentType, url) { const meta = this.ugoiraMetas[url]; if (!meta) return [data, contentType]; const zip = await new JSZip().loadAsync(data); const start = performance.now(); if (!this.convertor) this.convertor = await new FFmpegConvertor().init(); const initConvertorEnd = performance.now(); const files = await Promise.all( meta.body.frames.map(async (f) => { try { const img = await zip.file(f.file).async("uint8array"); return { name: f.file, data: img }; } catch (error) { evLog("error", "unpack ugoira file error: ", error); throw error; } }) ); const unpackUgoira = performance.now(); if (files.length !== meta.body.frames.length) { throw new Error("unpack ugoira file error: file count not equal to meta"); } const blob = await this.convertor.convertTo(files, conf.convertTo, meta.body.frames); const convertEnd = performance.now(); evLog("debug", `convert ugoira to ${conf.convertTo} init convertor cost: ${initConvertorEnd - start}ms unpack ugoira cost: ${unpackUgoira - initConvertorEnd}ms ffmpeg convert cost: ${convertEnd - unpackUgoira}ms total cost: ${(convertEnd - start) / 1e3}s size: ${blob.size / 1e3} KB, original size: ${data.byteLength / 1e3} KB before contentType: ${contentType}, after contentType: ${blob.type} `); return blob.arrayBuffer().then((buffer) => [new Uint8Array(buffer), blob.type]); } workURL() { return /pixiv.net\/(\w*\/)?(artworks|users)\/.*/; } galleryMeta() { this.meta.title = `PIXIV_${this.authorID}_w${this.pidList.length}_p${this.pageCount}` || "UNTITLE"; let tags = Object.values(this.works).map((w) => w.tags).flat(); this.meta.tags = { "author": [this.authorID || "UNTITLE"], "all": [...new Set(tags)], "pids": this.pidList, "works": Object.values(this.works) }; return this.meta; } async fetchOriginMeta(url) { const matches = url.match(PID_EXTRACT); if (!matches || matches.length < 2) { return { url }; } const pid = matches[1]; const p = matches[2]; if (this.works[pid]?.illustType !== 2 || p !== "ugoira") { return { url }; } const meta = await window.fetch(`https://www.pixiv.net/ajax/illust/${pid}/ugoira_meta?lang=en`).then((resp) => resp.json()); this.ugoiraMetas[meta.body.src] = meta; return { url: meta.body.src }; } async fetchTagsByPids(pids) { try { const raw = await window.fetch(`https://www.pixiv.net/ajax/user/${this.authorID}/profile/illusts?ids[]=${pids.join("&ids[]=")}&work_category=illustManga&is_first_page=0&lang=en`).then((resp) => resp.json()); const data = raw; if (!data.error) { const works = {}; Object.entries(data.body.works).forEach(([k, w]) => { works[k] = { id: w.id, title: w.title, alt: w.alt, illustType: w.illustType, description: w.description, tags: w.tags, pageCount: w.pageCount }; }); this.works = { ...this.works, ...works }; } else { evLog("error", "WARN: fetch tags by pids error: ", data.message); } } catch (error) { evLog("error", "ERROR: fetch tags by pids error: ", error); } } async parseImgNodes(source) { const list = []; const pidList = JSON.parse(source); this.fetchTagsByPids(pidList); const pageListData = await fetchUrls(pidList.map((p) => `https://www.pixiv.net/ajax/illust/${p}/pages?lang=en`), 5); for (let i = 0; i < pidList.length; i++) { const pid = pidList[i]; const data = JSON.parse(pageListData[i]); if (data.error) { throw new Error(`Fetch page list error: ${data.message}`); } this.pageCount += data.body.length; let digits = data.body.length.toString().length; let j = -1; for (const p of data.body) { this.pageSize[p.urls.original] = [p.width, p.height]; let title = p.urls.original.split("/").pop() || `${pid}_p${j.toString().padStart(digits)}.jpg`; const matches = p.urls.original.match(PID_EXTRACT); if (matches && matches.length > 2 && matches[2] && matches[2] === "ugoira") { title = title.replace(/\.\w+$/, ".gif"); } j++; const node = new ImageNode( p.urls.small, p.urls.original, title ); list.push(node); } } return list; } async *fetchPagesSource() { let u = document.querySelector("a[data-gtm-value][href*='/users/']")?.href || document.querySelector("a.user-details-icon[href*='/users/']")?.href || window.location.href; const author = /users\/(\d+)/.exec(u)?.[1]; if (!author) { throw new Error("Cannot find author id!"); } this.authorID = author; const res = await window.fetch(`https://www.pixiv.net/ajax/user/${author}/profile/all`).then((resp) => resp.json()); if (res.error) { throw new Error(`Fetch illust list error: ${res.message}`); } let pidList = [...Object.keys(res.body.illusts), ...Object.keys(res.body.manga)]; this.pidList = [...pidList]; pidList = pidList.sort((a, b) => parseInt(b) - parseInt(a)); this.first = window.location.href.match(/artworks\/(\d+)$/)?.[1]; if (this.first) { const index = pidList.indexOf(this.first); if (index > -1) { pidList.splice(index, 1); } pidList.unshift(this.first); } while (pidList.length > 0) { const pids = pidList.splice(0, 20); yield JSON.stringify(pids); } } } async function fetchUrls(urls, concurrency) { const results = new Array(urls.length); let i = 0; while (i < urls.length) { const batch = urls.slice(i, i + concurrency); const batchPromises = batch.map( (url, index) => window.fetch(url).then((resp) => { if (resp.ok) { return resp.text(); } throw new Error(`Failed to fetch ${url}: ${resp.status} ${resp.statusText}`); }).then((raw) => results[index + i] = raw) ); await Promise.all(batchPromises); i += concurrency; } return results; } class RokuHentaiMatcher extends BaseMatcher { sprites = []; fetchedThumbnail = []; galleryId = ""; imgCount = 0; workURL() { return /rokuhentai.com\/\w+$/; } galleryMeta(doc) { const title = doc.querySelector(".site-manga-info__title-text")?.textContent || "UNTITLE"; const meta = new GalleryMeta(window.location.href, title); meta.originTitle = title; const tagTrList = doc.querySelectorAll("div.mdc-chip .site-tag-count"); const tags = {}; tagTrList.forEach((tr) => { const splits = tr.getAttribute("data-tag")?.trim().split(":"); if (splits === void 0 || splits.length === 0) return; const cat = splits[0]; if (tags[cat] === void 0) tags[cat] = []; tags[cat].push(splits[1].replaceAll('"', "")); }); meta.tags = tags; return meta; } async fetchOriginMeta(url, _) { return { url }; } async parseImgNodes(source) { const range = source.split("-").map(Number); const list = []; const digits = this.imgCount.toString().length; for (let i = range[0]; i < range[1]; i++) { let thumbnail = `https://rokuhentai.com/_images/page-thumbnails/${this.galleryId}/${i}.jpg`; if (this.sprites[i]) { thumbnail = await this.fetchThumbnail(i); } const newNode = new ImageNode( thumbnail, `https://rokuhentai.com/_images/pages/${this.galleryId}/${i}.jpg`, i.toString().padStart(digits, "0") + ".jpg" ); list.push(newNode); } return list; } async *fetchPagesSource() { const doc = document; const imgCount = parseInt(doc.querySelector(".mdc-typography--caption")?.textContent || ""); if (isNaN(imgCount)) { throw new Error("error: failed query image count!"); } this.imgCount = imgCount; this.galleryId = window.location.href.split("/").pop(); const images = Array.from(doc.querySelectorAll(".mdc-layout-grid__cell .site-page-card__media")); for (const img of images) { this.fetchedThumbnail.push(void 0); const x = parseInt(img.getAttribute("data-offset-x") || ""); const y = parseInt(img.getAttribute("data-offset-y") || ""); const width = parseInt(img.getAttribute("data-width") || ""); const height = parseInt(img.getAttribute("data-height") || ""); if (isNaN(x) || isNaN(y) || isNaN(width) || isNaN(height)) { this.sprites.push(void 0); continue; } const src = img.getAttribute("data-src"); this.sprites.push({ src, pos: { x, y, width, height } }); } for (let i = 0; i < this.imgCount; i += 20) { yield `${i}-${Math.min(i + 20, this.imgCount)}`; } } async fetchThumbnail(index) { if (this.fetchedThumbnail[index]) { return this.fetchedThumbnail[index]; } else { const src = this.sprites[index].src; const positions = []; for (let i = index; i < this.imgCount; i++) { if (src === this.sprites[i]?.src) { positions.push(this.sprites[i].pos); } else { break; } } const urls = await splitImagesFromUrl(src, positions); for (let i = index; i < index + urls.length; i++) { this.fetchedThumbnail[i] = urls[i - index]; } return this.fetchedThumbnail[index]; } } } const STEAM_THUMB_IMG_URL_REGEX = /background-image:\surl\(.*?(h.*\/).*?\)/; class SteamMatcher extends BaseMatcher { workURL() { return /steamcommunity.com\/id\/[^/]+\/screenshots.*/; } async fetchOriginMeta(href) { let raw = ""; try { raw = await window.fetch(href).then((resp) => resp.text()); if (!raw) throw new Error("[text] is empty"); } catch (error) { throw new Error(`Fetch source page error, expected [text]! ${error}`); } const domParser = new DOMParser(); const doc = domParser.parseFromString(raw, "text/html"); let imgURL = doc.querySelector(".actualmediactn > a")?.getAttribute("href"); if (!imgURL) { throw new Error("Cannot Query Steam original Image URL"); } return { url: imgURL }; } async parseImgNodes(source) { const list = []; const doc = await window.fetch(source).then((resp) => resp.text()).then((raw) => new DOMParser().parseFromString(raw, "text/html")); if (!doc) { throw new Error("warn: steam matcher failed to get document from source page!"); } const nodes = doc.querySelectorAll(".profile_media_item"); if (!nodes || nodes.length == 0) { throw new Error("warn: failed query image nodes!"); } for (const node of Array.from(nodes)) { const src = STEAM_THUMB_IMG_URL_REGEX.exec(node.innerHTML)?.[1]; if (!src) { throw new Error(`Cannot Match Steam Image URL, Content: ${node.innerHTML}`); } const newNode = new ImageNode( src, node.getAttribute("href"), node.getAttribute("data-publishedfileid") + ".jpg" ); list.push(newNode); } return list; } async *fetchPagesSource() { let totalPages = -1; document.querySelectorAll(".pagingPageLink").forEach((ele) => { totalPages = Number(ele.textContent); }); let url = new URL(window.location.href); url.searchParams.set("view", "grid"); if (totalPages === -1) { const doc = await window.fetch(url.href).then((response) => response.text()).then((text) => new DOMParser().parseFromString(text, "text/html")).catch(() => null); if (!doc) { throw new Error("warn: steam matcher failed to get document from source page!"); } doc.querySelectorAll(".pagingPageLink").forEach((ele) => totalPages = Number(ele.textContent)); } if (totalPages > 0) { for (let p = 1; p <= totalPages; p++) { url.searchParams.set("p", p.toString()); yield url.href; } } else { yield url.href; } } parseGalleryMeta() { const url = new URL(window.location.href); let appid = url.searchParams.get("appid"); return new GalleryMeta(window.location.href, "steam-" + appid || "all"); } } const matchers = [ new EHMatcher(), new NHMatcher(), new HitomiMather(), new Pixiv(), new SteamMatcher(), new RokuHentaiMatcher(), new Comic18Matcher(), new DanbooruDonmaiMatcher(), new Rule34Matcher(), new YandereMatcher(), new IMHentaiMatcher() ]; function adaptMatcher(url) { const workURLs = matchers.flatMap((m) => m.workURLs()).map((r) => r.source); const newExcludeURLs = conf.excludeURLs.filter((source) => { return workURLs.indexOf(source) > -1; }); if (newExcludeURLs.length !== conf.excludeURLs.length) { conf.excludeURLs = newExcludeURLs; saveConf(conf); } if (conf.excludeURLs.length < matchers.length) { for (const regex of conf.excludeURLs) { if (new RegExp(regex).test(url)) { return null; } } } return matchers.find((m) => m.workURLs().find((r) => r.test(url))) || null; } function parseKey(event) { const keys = []; if (event.ctrlKey) keys.push("Ctrl"); if (event.shiftKey) keys.push("Shift"); if (event.altKey) keys.push("Alt"); let key = event.key; if (key === " ") key = "Space"; keys.push(key); return keys.join("+"); } function createExcludeURLPanel(root) { const workURLs = matchers.flatMap((m) => m.workURLs()).map((r) => r.source); const HTML_STR = `
Exclude URL|Site
    ${workURLs.map((r, index) => `
  • ${r}
  • `).join("")}
`; const fullPanel = document.createElement("div"); fullPanel.classList.add("ehvp-full-panel"); fullPanel.innerHTML = HTML_STR; fullPanel.addEventListener("click", (event) => { if (event.target.classList.contains("ehvp-full-panel")) { fullPanel.remove(); } }); root.appendChild(fullPanel); fullPanel.querySelector(".ehvp-custom-panel-close").addEventListener("click", () => fullPanel.remove()); const list = Array.from(fullPanel.querySelectorAll(".ehvp-custom-panel-list-item")); list.forEach((li) => { const index = parseInt(li.getAttribute("data-index")); li.addEventListener("click", () => { const i = conf.excludeURLs.indexOf(workURLs[index]); if (i === -1) { li.classList.add("ehvp-custom-panel-list-item-disable"); conf.excludeURLs.push(workURLs[index]); } else { li.classList.remove("ehvp-custom-panel-list-item-disable"); conf.excludeURLs.splice(i, 1); } saveConf(conf); }); }); } function createKeyboardCustomPanel(keyboardEvents, root) { function addKeyboardDescElement(btn, category, id, key) { const str = `${key}`; const tamplate = document.createElement("div"); tamplate.innerHTML = str; const element = tamplate.firstElementChild; btn.before(element); element.querySelector("button").addEventListener("click", (event) => { const keys = conf.keyboards[category][id]; if (keys && keys.length > 0) { const index = keys.indexOf(key); if (index !== -1) keys.splice(index, 1); if (keys.length === 0) { delete conf.keyboards[category][id]; } saveConf(conf); } event.target.parentElement.remove(); const values = Array.from(btn.parentElement.querySelectorAll(".ehvp-custom-panel-item-value")); if (values.length === 0) { const desc = keyboardEvents[category][id]; desc.defaultKeys.forEach((key2) => addKeyboardDescElement(btn, category, id, key2)); } }); tamplate.remove(); } const HTML_STR = `
Custom Keyboard
${Object.entries(keyboardEvents.inMain).map(([id]) => `
${i18n.keyboardCustom.inMain[id].get()}
`).join("")}
${Object.entries(keyboardEvents.inFullViewGrid).map(([id]) => `
${i18n.keyboardCustom.inFullViewGrid[id].get()}
`).join("")}
${Object.entries(keyboardEvents.inBigImageMode).map(([id]) => `
${i18n.keyboardCustom.inBigImageMode[id].get()}
`).join("")}
`; const fullPanel = document.createElement("div"); fullPanel.classList.add("ehvp-full-panel"); fullPanel.innerHTML = HTML_STR; fullPanel.addEventListener("click", (event) => { if (event.target.classList.contains("ehvp-full-panel")) { fullPanel.remove(); } }); root.appendChild(fullPanel); fullPanel.querySelector(".ehvp-custom-panel-close").addEventListener("click", () => fullPanel.remove()); const buttons = Array.from(fullPanel.querySelectorAll(".ehvp-custom-panel-item-add-btn")); buttons.forEach((btn) => { const category = btn.getAttribute("data-cate"); const id = btn.getAttribute("data-id"); let keys = conf.keyboards[category][id]; if (keys === void 0 || keys.length === 0) { keys = keyboardEvents[category][id].defaultKeys; } keys.forEach((key) => addKeyboardDescElement(btn, category, id, key)); const addKeyBoardDesc = (event) => { event.preventDefault(); if (event.key === "Alt" || event.key === "Shift" || event.key === "Control") return; const key = parseKey(event); if (conf.keyboards[category][id] !== void 0) { conf.keyboards[category][id].push(key); } else { conf.keyboards[category][id] = keys.concat(key); } saveConf(conf); addKeyboardDescElement(btn, category, id, key); btn.textContent = "+"; }; btn.addEventListener("click", () => { btn.textContent = "Press Key"; btn.addEventListener("keydown", addKeyBoardDesc); }); btn.addEventListener("mouseleave", () => { btn.textContent = "+"; btn.removeEventListener("keydown", addKeyBoardDesc); }); }); } function toggleAnimationStyle(disable) { removeAnimationStyleSheel(); if (disable) return; const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile/i.test(navigator.userAgent); const style = document.createElement("style"); style.id = "ehvp-style-animation"; const css = ` .ehvp-root { transition: height 0.3s linear; } .ehvp-root-collapse { transition: height 0.3s linear; } .big-img-frame { transition: width 0.3s cubic-bezier(0.06, 0.9, 0.33, 1.1); } .p-helper { transition: min-width 0.4s linear; } .p-helper .p-panel { transition: width 0.4s ease 0s, height 0.4s ease 0s; } .p-collapse { transition: height 0.4s; } .p-helper .b-main { transition: flex-grow 0.6s ease, max-width 0.4s ease; } .p-helper-extend .b-main { transition: flex-grow 0.6s ease, max-width 0.4s ease; } .big-img-frame-collapse { transition: width 0.2s cubic-bezier(1, -0.36, 1, 1); } .p-minify:not(:hover), .p-minify:not(:hover) .lightgreen { transition: color 0.5s ease-in-out, background-color 0.3s ease-in-out; } @media (min-width: ${isMobile ? "1440px" : "720px"}) { .p-helper.p-helper-extend { transition: min-width 0.4s ease, color 0.5s ease-in-out, background-color 0.3s ease-in-out; } } @media (max-width: ${isMobile ? "1440px" : "720px"}) { .p-helper.p-helper-extend { transition: min-width 0.4s ease; } } `; style.textContent = css; document.head.appendChild(style); } function removeAnimationStyleSheel() { const style = document.getElementById("ehvp-style-animation"); if (style) { document.head.removeChild(style); } } function loadStyleSheel() { const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile/i.test(navigator.userAgent); const style = document.createElement("style"); style.id = "ehvp-style"; const css = ` .ehvp-root { width: 100vw; height: 100vh; background-color: rgb(0, 0, 0); position: fixed; top: 0px; left: 0px; z-index: 2000; box-sizing: border-box; overflow: clip; } .ehvp-root-collapse { height: 0; } .full-view-grid { width: 100vw; height: 100vh; display: grid; align-content: start; grid-gap: 0.7rem; grid-template-columns: repeat(${conf.colCount}, 1fr); overflow: hidden scroll; padding: 0.3rem; box-sizing: border-box; } .ehvp-root * { font-family: initial; } .ehvp-root a { color: unset; } .ehvp-root input, .ehvp-root select { color: #f1f1f1; background-color: #34353b !important; color-scheme: dark; outline: none; border: 1px solid #000000; border-radius: 4px; margin: 0px; padding: 0px; text-align: center; position: unset !important; top: unset !important; vertical-align: middle; } .ehvp-root input:enabled:hover, .ehvp-root select:enabled:hover, .ehvp-root input:enabled:focus, .ehvp-root select:enabled:focus { background-color: #34355b !important; } .ehvp-root select option { background-color: #34355b !important; color: #f1f1f1; font-size: 1rem; } .p-label { cursor: pointer; } .full-view-grid .img-node { position: relative; } .full-view-grid .img-node canvas { position: relative; width: 100%; height: auto; border: 3px solid #fff; box-sizing: border-box; } .img-node:hover .ehvp-chapter-description { color: #ffe7f5; } .img-node > a { display: block; line-height: 0; position: relative; } .ehvp-chapter-description { display: block; position: absolute; bottom: 0; background-color: #708090e3; color: #ffe785; width: 100%; font-weight: 600; min-height: 3rem; font-size: 1.2rem; padding: 0.5rem; box-sizing: border-box; line-height: 1.3rem; } .img-fetched canvas { border: 3px solid #90ffae !important; } .img-fetch-failed canvas { border: 3px solid red !important; } .img-fetching canvas { border: 3px solid #00000000 !important; } .img-fetching a::after { content: ''; position: absolute; z-index: -1; top: 0%; left: 0%; width: 30%; height: 30%; background-color: #ff0000; animation: img-loading 1s linear infinite; } @keyframes img-loading { 25% { background-color: #ff00ff; top: 0%; left: 70%; } 50% { background-color: #00ffff; top: 70%; left: 70%; } 75% { background-color: #ffff00; top: 70%; left: 0%; } } .big-img-frame::-webkit-scrollbar { display: none; } .big-img-frame { position: fixed; width: 100%; height: 100%; top: 0; right: 0; overflow: auto; scrollbar-width: none; z-index: 2001; background-color: #000000d6; } .bifm-img { object-fit: contain; display: block; margin: 0 auto; } .p-helper { position: fixed; display: flex !important; justify-content: space-between; background-color: #4a4a4ae6; z-index: 2011 !important; box-sizing: border-box; font-weight: bold; color: #fff; min-width: 0px; } .p-helper .p-panel { z-index: 2012 !important; background-color: rgba(38, 20, 25, 0.8); box-sizing: border-box; position: absolute; color: rgb(200, 222, 200); box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2); overflow: hidden; padding: 3px; } @media (min-width: ${isMobile ? "1440px" : "720px"}) { .p-helper.p-helper-extend { min-width: 24rem; font-size: 1rem; line-height: 1.2rem; } .p-helper { top: ${conf.pageHelperAbTop}; left: ${conf.pageHelperAbLeft}; bottom: ${conf.pageHelperAbBottom}; right: ${conf.pageHelperAbRight}; font-size: 1rem; line-height: 1.2rem; } .p-helper .p-panel { width: 24rem; height: 32rem; ${conf.pageHelperAbBottom === "unset" ? "top: 100%" : "bottom: 100%"} } .p-helper .p-btn { height: 1.5rem; width: 1.5rem; border: 1px solid #000000; border-radius: 4px; line-height: initial; } .p-helper-extend .b-main { max-width: 24rem !important; } .ehvp-root input[type="checkbox"] { width: 1rem; height: unset !important; } .ehvp-root select { width: 7rem !important; } .ehvp-root input, .ehvp-root select { width: 2rem; height: 1.5rem; } .p-helper .p-config { line-height: 1.85rem; } #imgScaleResetBTN { width: 4rem; } .bifm-vid-ctl { bottom: 0.2rem; left: 30%; width: 40vw; } .b-extra { ${conf.pageHelperAbLeft !== "unset" ? "left" : "right"}: 100%; } } @media (max-width: ${isMobile ? "1440px" : "720px"}) { .p-helper.p-helper-extend { min-width: 100vw; font-size: 4.2cqw; line-height: 5cqw; } .p-helper { bottom: 0px; left: 0px; font-size: 8cqw; line-height: 8.1cqw; } .p-helper .p-panel { width: 100vw; height: 80vh; bottom: 5.7cqw; } .p-helper .p-btn { height: 6cqw; width: 6cqw; border: 0.4cqw solid #000000; border-radius: 1cqw; } .p-helper-extend .b-main { max-width: 100vw !important; } .ehvp-root input[type="checkbox"] { width: 4cqw; height: unset !important; } .ehvp-root select { width: 25cqw !important; } .ehvp-root input, .ehvp-root select { width: 9cqw; height: 6cqw; font-size: 3cqw; } .p-helper .p-config { line-height: 8.2cqw; } #imgScaleResetBTN { width: 14cqw; } .bifm-vid-ctl { bottom: 5.2cqw; left: 0; width: 100vw; } .b-extra { left: 0; bottom: 101%; } } .p-helper:hover { background-color: #3a3a3ae6; } .p-helper .clickable { text-decoration-line: underline; z-index: 2111; user-select: none; text-align: center; white-space: nowrap; } .clickable:hover { color: #90ea90 !important; } .p-helper .p-img-scale { display: flex; } .p-img-scale .scale-btn { width: 2rem; text-align: center; user-select: none; } .p-img-scale .scale-btn:hover { color: white; background-color: rgb(255, 200, 200); } .p-img-scale .scale-status { width: 40px; white-space: nowrap; overflow: hidden; text-align: center; } .p-img-scale .scale-progress { flex-grow: 1; display: flex; align-items: center; } .scale-progress .scale-progress-inner { height: 50%; background-color: #ffffffa0; } .p-collapse { height: 0px !important; padding: 0px !important; } .p-helper .b-main { max-width: 0px; overflow: hidden !important; display: flex; justify-content: space-between; white-space: nowrap !important; } .p-helper-extend .b-main { flex-grow: 1; } .p-helper .p-config { display: grid; grid-template-columns: repeat(6, 1fr); align-content: start; } .p-helper .p-config label { display: flex; justify-content: space-between; padding-right: 10px; margin-bottom: unset; } .p-helper .p-config input { cursor: ns-resize; } .p-helper .p-downloader { display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .p-downloader canvas { /* border: 1px solid greenyellow; */ } .p-downloader .download-notice { font-size: small; text-align: center; width: 100%; } .p-downloader .downloader-btn-group { align-items: center; text-align: right; width: 100%; } .p-helper .p-btn { color: rgb(255, 255, 255); cursor: pointer; font-weight: 900; background: rgb(81, 81, 81); vertical-align: middle; } .p-helper-fetching { border: none !important; box-sizing: border-box; } .p-helper-fetching::after { content: ''; position: absolute; z-index: -1; top: 0%; left: 0%; width: 2%; height: 100%; background-color: #ff0000; animation: img-loading-page 1s linear infinite; } @keyframes img-loading-page { 15% { background-color: #fff303; } 50% { background-color: #ff0000; left: 98%; } 85% { background-color: #fff303; } } @keyframes main-progress { from { width: 0%; } to { width: 100%; } } .big-img-frame-collapse { width: 0px !important; } .big-img-frame-collapse .img-land-left, .big-img-frame-collapse .img-land-right, .big-img-frame-collapse .img-land-top, .big-img-frame-collapse .img-land-bottom { display: none !important; } .download-bar { background-color: #333333c0; height: 0.3rem; width: 100%; bottom: -0.3rem; position: absolute; border-left: 3px solid #00000000; border-right: 3px solid #00000000; box-sizing: border-box; } .download-bar > div { background-color: #f0fff0; height: 100%; border: none; } .img-land-left, .img-land-right { width: 15%; height: 50%; position: fixed; z-index: 2004; top: 25%; } .img-land-top, .img-land-bottom { width: 50%; height: 10%; left: 25%; position: fixed; z-index: 2005; } .img-land-left { left: 0; cursor: url("https://exhentai.org/img/p.png"), auto; } .img-land-right { right: 0; cursor: url("https://exhentai.org/img/n.png"), auto; } .img-land-top { top: 0; cursor: url("https://exhentai.org/img/p.png"), auto; } .img-land-bottom { bottom: 0; cursor: url("https://exhentai.org/img/b.png"), auto; } .p-tooltip { border-bottom: 1px dotted black; } .p-tooltip .p-tooltiptext { visibility: hidden; width: 100%; top: 0px; right: 0px; background-color: black; color: #fff; text-align: center; padding: 5px 0; border-radius: 6px; position: absolute; z-index: 1; font-size: small; white-space: normal; } .p-tooltip:hover .p-tooltiptext { visibility: visible; } .page-loading { width: 100vw; height: 100vh; justify-content: center; align-items: center; background-color: #333333a6; } .page-loading-text { color: #ffffff; font-size: 6rem; } @keyframes rotate { 100% { transform: rotate(1turn); } } .border-ani { position: relative; z-index: 0; overflow: hidden; padding: 2rem; } .border-ani::before { content: ''; position: absolute; z-index: -2; left: -50%; top: -50%; width: 200%; height: 200%; background-color: #fff; animation: rotate 4s linear infinite; } .border-ani::after { content: ''; position: absolute; z-index: -1; left: 6px; top: 6px; width: calc(100% - 16px); height: calc(100% - 16px); background: #333; } .overlay-tip { position: absolute; top: 3px; right: 3px; z-index: 10; height: 1rem; border-radius: 10%; border: 1px solid #333; color: white; background-color: #959595d1; line-height: 1rem; font-size: 1rem; text-align: center; font-weight: bold; } .lightgreen { color: #90ea90; } .p-minify:not(:hover), .p-minify:not(:hover) .lightgreen { color: #00000000 !important; background-color: #00000000 !important; } .p-minify:not(:hover) .b-main .b-m-page { order: ${conf.pageHelperAbLeft !== "unset" ? -2 : 1}; } .p-minify:not(:hover) #p-curr-page, .p-minify:not(:hover) #p-total, .p-minify:not(:hover) #p-slash-1 { color: #fff !important; background-color: #333333aa !important; } .p-minify:not(:hover) #p-curr-page { color: #ffc005 !important; } .p-minify:not(:hover) #auto-page-btn { border: 1px solid #00000000 !important; } .ehvp-full-panel { position: fixed; width: 100vw; height: 100vh; background-color: #000000e8; z-index: 3000; display: flex; justify-content: center; align-items: center; flex-direction: column; top: 0; } .ehvp-custom-panel { min-width: 50rem; min-height: 50vh; background-color: rgba(38, 20, 25, 0.8); border: 1px solid #000000; overflow: auto; display: flex; flex-direction: column; text-align: start; color: rgb(200, 222, 200); } .ehvp-custom-panel-title { font-size: 2.1rem; font-weight: bold; display: flex; justify-content: space-between; padding-left: 1rem; } .ehvp-custom-panel-close { width: 2rem; text-align: center; } .ehvp-custom-panel-close:hover { background-color: #c3c0e0; } .ehvp-custom-panel-content { border: 1px solid #000000; border-radius: 4px; margin: 0.5rem; padding: 0.5rem; } .ehvp-custom-panel-item { margin: 0.2rem 0rem; } .ehvp-custom-panel-item-title { font-size: 1.4rem; } .ehvp-custom-panel-item-values { margin-top: 0.3rem; text-align: end; } .ehvp-custom-panel-item-value { font-size: 1.1rem; line-height: 1.2rem; font-weight: bold; color: black; background-color: #c5c5c5; border: 1px solid #000000; box-sizing: border-box; margin-left: 0.3rem; display: inline-flex; } .ehvp-custom-panel-item-value span { padding: 0rem 0.5rem; } .ehvp-custom-panel-item-value button { background-color: #fff; color: black; border: none; height: 1.2rem; } .ehvp-custom-panel-item-value button:hover { background-color: #ffff00; } .ehvp-custom-panel-item-add-btn { font-size: 1.1rem; line-height: 1.2rem; font-weight: bold; background-color: #7fef7b; color: black; margin-left: 0.3rem; border: none; } .ehvp-custom-panel-item-add-btn:hover { background-color: #ffff00; } .ehvp-custom-panel-list > li { line-height: 3rem; margin-left: 0.5rem; font-size: 1.4rem; } .ehvp-custom-panel-list-item-disable { text-decoration: line-through; color: red; } html { font-size: unset !important; } .bifm-vid-ctl { position: fixed; z-index: 2010; } .bifm-vid-ctl > div { line-height: 1.2rem; display: flex; align-items: center; } .bifm-vid-ctl > div > * { margin: 0 0.1rem; } .bifm-vid-ctl:not(:hover) .bifm-vid-ctl-btn, .bifm-vid-ctl:not(:hover) .bifm-vid-ctl-span, .bifm-vid-ctl:not(:hover) #bifm-vid-ctl-volume { opacity: 0; } .bifm-vid-ctl-btn { height: 1.5rem; width: 1.5rem; font-size: 1.2rem; padding: 0; margin: 0; border: none; background-color: #00000000; cursor: pointer; } #bifm-vid-ctl-volume { width: 7rem; height: 0.5rem; } .bifm-vid-ctl-pg { border: 1px solid #00000000; background-color: #3333337e; -webkit-appearance: none; } #bifm-vid-ctl-pg { width: 100%; height: 0.2rem; background-color: #333333ee; } .bifm-vid-ctl:hover #bifm-vid-ctl-pg { height: 0.7rem; } .bifm-vid-ctl-pg-inner { background-color: #ffffffa0; height: 100%; } .bifm-vid-ctl:hover #bifm-vid-ctl-pg .bifm-vid-ctl-pg-inner { background-color: #fff; } .bifm-vid-ctl-span { color: white; font-weight: bold; } .p-helper-extend #ehvp-gate-book { display: none !important; } .b-extra { position: absolute; background-color: #4a4a4ae6; height: 100%; display: none; } .b-extra .clickable { margin: 0rem 0.1rem; } .b-extra:hover { background-color: #3a3a3ae6; } .p-helper-extend:not(.p-minify) .b-extra { display: flex; } .download-middle { width: 100%; height: auto; flex-grow: 1; overflow: hidden; } .download-middle .ehvp-tabs + div { width: 100%; height: calc(100% - 2rem); } .ehvp-tabs { height: 2rem; width: 100%; line-height: 2rem; } .ehvp-p-tab { border: 1px dotted #ff0; font-size: 1rem; padding: 0 0.4rem; } .download-chapters, .download-dashboard { width: 100%; height: 100%; } .download-chapters { overflow: hidden auto; } .download-chapters label { white-space: nowrap; } .download-chapters label span { margin-left: 0.5rem; } .ehvp-p-tab-selected { color: rgb(120, 240, 80) !important; } `; style.textContent = css; document.head.appendChild(style); return style; } class KeyboardDesc { defaultKeys; cb; noPreventDefault = false; constructor(defaultKeys, cb, noPreventDefault) { this.defaultKeys = defaultKeys; this.cb = cb; this.noPreventDefault = noPreventDefault || false; } } function initEvents(HTML, BIFM, FVGM, IFQ, PF, IL, PH) { function modPageHelperPostion() { const style = HTML.pageHelper.style; conf.pageHelperAbTop = style.top; conf.pageHelperAbLeft = style.left; conf.pageHelperAbBottom = style.bottom; conf.pageHelperAbRight = style.right; saveConf(conf); } function modNumberConfigEvent(key, data) { const range = { colCount: [1, 12], threads: [1, 10], downloadThreads: [1, 10], timeout: [8, 40], autoPageInterval: [500, 9e4], preventScrollPageTime: [0, 9e4] }; let mod = key === "autoPageInterval" ? 100 : 1; mod = key === "preventScrollPageTime" ? 10 : mod; if (data === "add") { if (conf[key] < range[key][1]) { conf[key] += mod; } } else if (data === "minus") { if (conf[key] > range[key][0]) { conf[key] -= mod; } } const inputElement = q(`#${key}Input`); if (inputElement) { inputElement.value = conf[key].toString(); } if (key === "colCount") { const cssRules = Array.from(HTML.styleSheel.sheet?.cssRules || []); for (const cssRule of cssRules) { if (cssRule instanceof CSSStyleRule) { if (cssRule.selectorText === ".full-view-grid") { cssRule.style.gridTemplateColumns = `repeat(${conf[key]}, 1fr)`; break; } } } } saveConf(conf); } function modBooleanConfigEvent(key) { const inputElement = q(`#${key}Checkbox`); conf[key] = inputElement?.checked || false; saveConf(conf); if (key === "autoLoad") { IL.autoLoad = conf.autoLoad; if (IL.autoLoad) { IL.abort(IFQ.currIndex); } } if (key === "disableCssAnimation") toggleAnimationStyle(conf.disableCssAnimation); } function modSelectConfigEvent(key) { const inputElement = q(`#${key}Select`); const value = inputElement?.value; if (value) { conf[key] = value; saveConf(conf); } if (key === "readMode") { BIFM.resetScaleBigImages(); if (conf.readMode === "singlePage" && BIFM.currMediaNode) { const queue = BIFM.getChapter(BIFM.chapterIndex).queue; const index = parseInt(BIFM.currMediaNode.getAttribute("d-index") || "0"); BIFM.initElement(queue[index]); } } if (key === "minifyPageHelper") { switch (conf.minifyPageHelper) { case "inBigMode": PH.minify(true, BIFM.visible ? "bigImageFrame" : "fullViewGrid"); break; case "always": PH.minify(true, "fullViewGrid"); break; case "never": PH.minify(false, "fullViewGrid"); break; } } } const cancelIDContext = {}; function collapsePanelEvent(target, id) { if (id) { abortMouseleavePanelEvent(id); } const timeoutId = window.setTimeout(() => target.classList.add("p-collapse"), 100); if (id) { cancelIDContext[id] = timeoutId; } } function abortMouseleavePanelEvent(id) { (id ? [id] : [...Object.keys(cancelIDContext)]).forEach((k) => { window.clearTimeout(cancelIDContext[k]); delete cancelIDContext[k]; }); } let restoreMinify = false; function togglePanelEvent(id, collapse) { let element = q(`#${id}-panel`); if (!element) return; if (collapse === false) { element.classList.remove("p-collapse"); return; } if (collapse === true) { collapsePanelEvent(element, id); if (BIFM.visible) { BIFM.frame.focus(); } else { HTML.fullViewGrid.focus(); } return; } if (!element.classList.toggle("p-collapse")) { ["config", "downloader"].filter((k) => k !== id).forEach((k) => togglePanelEvent(k, true)); if (!conf.autoCollapsePanel) { PH.minify(false, "fullViewGrid"); restoreMinify = true; } } else { if (restoreMinify) { PH.minify(true, BIFM.visible ? "bigImageFrame" : "fullViewGrid"); restoreMinify = false; } } } let bodyOverflow = document.body.style.overflow; function showFullViewGrid() { PH.minify(true, "fullViewGrid"); HTML.root.classList.remove("ehvp-root-collapse"); HTML.fullViewGrid.focus(); document.body.style.overflow = "hidden"; } function hiddenFullViewGridEvent(event) { if (event.target === HTML.fullViewGrid || event.target.classList.contains("img-node")) { main(false); } } function hiddenFullViewGrid() { BIFM.hidden(); PH.minify(false, "fullViewGrid"); HTML.root.classList.add("ehvp-root-collapse"); HTML.fullViewGrid.blur(); document.body.style.overflow = bodyOverflow; } function scrollEvent() { if (HTML.root.classList.contains("ehvp-root-collapse")) return; FVGM.renderCurrView(); FVGM.tryExtend(); } function scrollImage(oriented, key) { if (BIFM.isReachedBoundary(oriented)) { const isSpace = key === "Space" || key === "Shift+Space"; if (!isSpace && conf.stickyMouse !== "disable" && BIFM.tryPreventStep()) return false; BIFM.onWheel(new WheelEvent("wheel", { deltaY: oriented === "prev" ? -1 : 1 }), !isSpace); return true; } return false; } let scrolling = false; function initKeyboardEvent() { const onbigImageFrame = { "exit-big-image-mode": new KeyboardDesc( ["Escape", "Enter"], () => BIFM.hidden() ), "step-image-prev": new KeyboardDesc( ["ArrowLeft"], () => BIFM.stepNext(conf.reversePages ? "next" : "prev") ), "step-image-next": new KeyboardDesc( ["ArrowRight"], () => BIFM.stepNext(conf.reversePages ? "prev" : "next") ), "step-to-first-image": new KeyboardDesc( ["Home"], () => BIFM.stepNext("next", -1) ), "step-to-last-image": new KeyboardDesc( ["End"], () => BIFM.stepNext("prev", -1) ), "scale-image-increase": new KeyboardDesc( ["="], () => BIFM.scaleBigImages(1, 5) ), "scale-image-decrease": new KeyboardDesc( ["-"], () => BIFM.scaleBigImages(-1, 5) ), "scroll-image-up": new KeyboardDesc( ["PageUp", "ArrowUp", "Shift+Space"], (event) => { const key = parseKey(event); if (!["PageUp", "ArrowUp", "Shift+Space"].includes(key)) { if (scrolling) return; scrolling = true; BIFM.frame.addEventListener("scrollend", () => scrolling = false, { once: true }); BIFM.frame.scrollBy({ left: 0, top: -(BIFM.frame.clientHeight / 2), behavior: "smooth" }); } if (scrollImage("prev", key)) { event.preventDefault(); scrolling = false; } }, true ), "scroll-image-down": new KeyboardDesc( ["PageDown", "ArrowDown", "Space"], (event) => { const key = parseKey(event); if (!["PageDown", "ArrowDown", "Space"].includes(key)) { if (scrolling) return; scrolling = true; BIFM.frame.addEventListener("scrollend", () => scrolling = false, { once: true }); BIFM.frame.scrollBy({ left: 0, top: BIFM.frame.clientHeight / 2, behavior: "smooth" }); } if (scrollImage("next", key)) { event.preventDefault(); scrolling = false; } }, true ) }; const onFullViewGrid = { "open-big-image-mode": new KeyboardDesc( ["Enter"], () => { let start = IFQ.currIndex; if (numberRecord && numberRecord.length > 0) { start = Number(numberRecord.join("")) - 1; numberRecord = null; if (isNaN(start)) return; start = Math.max(0, Math.min(start, IFQ.length - 1)); } IFQ[start].node.canvasElement?.dispatchEvent(new MouseEvent("click")); } ), "pause-auto-load-temporarily": new KeyboardDesc( ["p"], () => { IL.autoLoad = !IL.autoLoad; if (IL.autoLoad) { IL.abort(IFQ.currIndex); } } ), "exit-full-view-grid": new KeyboardDesc( ["Escape"], () => main(false) ), "columns-increase": new KeyboardDesc( ["="], () => modNumberConfigEvent("colCount", "add") ), "columns-decrease": new KeyboardDesc( ["-"], () => modNumberConfigEvent("colCount", "minus") ), "back-chapters-selection": new KeyboardDesc( ["b"], () => PF.backChaptersSelection() ) }; const inMain = { "open-full-view-grid": new KeyboardDesc(["Enter"], (_) => { const activeElement = document.activeElement; if (activeElement instanceof HTMLInputElement || activeElement instanceof HTMLSelectElement) return; main(true); }, true) }; return { inBigImageMode: onbigImageFrame, inFullViewGrid: onFullViewGrid, inMain }; } const keyboardEvents = initKeyboardEvent(); let numberRecord = null; function bigImageFrameKeyBoardEvent(event) { if (HTML.bigImageFrame.classList.contains("big-img-frame-collapse")) return; const key = parseKey(event); const triggered = Object.entries(keyboardEvents.inBigImageMode).some(([id, desc]) => { const override = conf.keyboards.inBigImageMode[id]; if (override !== void 0 && override.length > 0 ? override.includes(key) : desc.defaultKeys.includes(key)) { desc.cb(event); return !desc.noPreventDefault; } return false; }); if (triggered) { event.preventDefault(); } } function fullViewGridKeyBoardEvent(event) { if (HTML.root.classList.contains("ehvp-root-collapse")) return; const key = parseKey(event); const triggered = Object.entries(keyboardEvents.inFullViewGrid).some(([id, desc]) => { const override = conf.keyboards.inFullViewGrid[id]; if (override !== void 0 && override.length > 0 ? override.includes(key) : desc.defaultKeys.includes(key)) { desc.cb(event); return !desc.noPreventDefault; } return false; }); if (triggered) { event.preventDefault(); } else if (event.key.length === 1 && event.key >= "0" && event.key <= "9") { numberRecord = numberRecord ? [...numberRecord, Number(event.key)] : [Number(event.key)]; event.preventDefault(); } } function keyboardEvent(event) { if (!HTML.root.classList.contains("ehvp-root-collapse")) return; if (!HTML.bigImageFrame.classList.contains("big-img-frame-collapse")) return; const key = parseKey(event); const triggered = Object.entries(keyboardEvents.inMain).some(([id, desc]) => { const override = conf.keyboards.inMain[id]; if (override !== void 0 ? override.includes(key) : desc.defaultKeys.includes(key)) { desc.cb(event); return !desc.noPreventDefault; } return false; }); if (triggered) { event.preventDefault(); } } function showGuideEvent() { const oldGuide = document.getElementById("ehvp-guide"); if (oldGuide) { oldGuide.remove(); } const guideElement = document.createElement("div"); guideElement.setAttribute("id", "ehvp-guide"); guideElement.innerHTML = `
${i18n.help.get()}
`; guideElement.classList.add("ehvp-full-panel"); guideElement.setAttribute("style", `align-items: center; color: black; text-align: left;`); guideElement.addEventListener("click", () => guideElement.remove()); if (HTML.root.classList.contains("ehvp-root-collapse")) { document.body.after(guideElement); } else { HTML.root.appendChild(guideElement); } } function showKeyboardCustomEvent() { createKeyboardCustomPanel(keyboardEvents, HTML.root); } function showExcludeURLEvent() { createExcludeURLPanel(HTML.root); } const signal = { first: true }; function main(extend) { if (HTML.pageHelper) { if (extend && !HTML.pageHelper.classList.contains("p-helper-extend")) { HTML.pageHelper.classList.add("p-helper-extend"); showFullViewGrid(); if (signal.first) { signal.first = false; PF.init(); } } else { HTML.pageHelper.classList.remove("p-helper-extend"); ["config", "downloader"].forEach((id) => togglePanelEvent(id, true)); hiddenFullViewGrid(); } } } return { main, modNumberConfigEvent, modBooleanConfigEvent, modSelectConfigEvent, modPageHelperPostion, togglePanelEvent, showFullViewGrid, hiddenFullViewGridEvent, hiddenFullViewGrid, scrollEvent, fullViewGridKeyBoardEvent, bigImageFrameKeyBoardEvent, keyboardEvent, showGuideEvent, collapsePanelEvent, abortMouseleavePanelEvent, showKeyboardCustomEvent, showExcludeURLEvent }; } class FullViewGridManager { root; // renderRangeRecord: [number, number] = [0, 0]; queue = []; done = false; chapterIndex = 0; constructor(HTML, BIFM) { this.root = HTML.fullViewGrid; EBUS.subscribe("pf-on-appended", (_total, nodes, done) => { this.append(nodes); this.done = done || false; setTimeout(() => this.renderCurrView(), 200); }); EBUS.subscribe("pf-change-chapter", (index) => { this.chapterIndex = Math.max(0, index); this.root.innerHTML = ""; this.queue = []; this.done = false; }); EBUS.subscribe("ifq-do", (_, imf) => { if (!BIFM.visible) return; if (imf.chapterIndex !== this.chapterIndex) return; if (!imf.node.root) return; let scrollTo = imf.node.root.offsetTop - window.screen.availHeight / 3; scrollTo = scrollTo <= 0 ? 0 : scrollTo >= this.root.scrollHeight ? this.root.scrollHeight : scrollTo; if (this.root.scrollTo.toString().includes("[native code]")) { this.root.scrollTo({ top: scrollTo, behavior: "smooth" }); } else { this.root.scrollTop = scrollTo; } }); } append(nodes) { if (nodes.length > 0) { const list = nodes.map((n) => { return { node: n, element: n.create() }; }); this.queue.push(...list); this.root.append(...list.map((l) => l.element)); } } tryExtend() { if (this.done) return; const nodes = Array.from(this.root.childNodes); if (nodes.length === 0) return; const lastImgNode = nodes[nodes.length - 1]; const viewButtom = this.root.scrollTop + this.root.clientHeight; if (viewButtom + this.root.clientHeight * 2.5 < lastImgNode.offsetTop + lastImgNode.offsetHeight) { return; } EBUS.emit("pf-try-extend"); } /** * 当滚动停止时,检查当前显示的页面上的是什么元素,然后渲染图片 */ renderCurrView() { const [scrollTop, clientHeight] = [this.root.scrollTop, this.root.clientHeight]; const [start, end] = this.findOutsideRoundView(scrollTop, clientHeight); this.queue.slice(start, end + 1 + conf.colCount).forEach((e) => e.node.render()); } findOutsideRoundView(currTop, clientHeight) { const viewButtom = currTop + clientHeight; let outsideTop = 0; let outsideBottom = 0; for (let i = 0; i < this.queue.length; i += conf.colCount) { const element = this.queue[i].element; if (outsideBottom === 0) { if (element.offsetTop + 2 >= currTop) { outsideBottom = i + 1; } else { outsideTop = i; } } else { outsideBottom = i; if (element.offsetTop + element.offsetHeight > viewButtom) { break; } } } return [outsideTop, Math.min(outsideBottom + conf.colCount, this.queue.length - 1)]; } } function dragElement(element, dragHub, callback) { (dragHub ?? element).addEventListener("mousedown", (event) => { event.preventDefault(); const wh = window.innerHeight; const ww = window.innerWidth; const mouseMove = (event2) => { event2.preventDefault(); const mouseX = event2.clientX; const mouseY = event2.clientY; if (mouseY <= wh / 2) { element.style.top = Math.max(mouseY, 5) + "px"; element.style.bottom = "unset"; } else { element.style.bottom = Math.max(wh - mouseY - element.clientHeight, 5) + "px"; element.style.top = "unset"; } if (mouseX <= ww / 2) { element.style.left = Math.max(mouseX, 5) + "px"; element.style.right = "unset"; } else { element.style.right = Math.max(ww - mouseX - element.clientWidth, 5) + "px"; element.style.left = "unset"; } console.log("drag element: offset top: ", element.style.top, "offset left: ", element.style.left, "offset bottom: ", element.style.bottom, "offset right: ", element.style.right); }; document.addEventListener("mousemove", mouseMove); document.addEventListener("mouseup", () => { document.removeEventListener("mousemove", mouseMove); callback?.(element.offsetTop, element.offsetLeft); }, { once: true }); }); } function createHTML() { const fullViewGrid = document.createElement("div"); fullViewGrid.classList.add("ehvp-root"); fullViewGrid.classList.add("ehvp-root-collapse"); document.body.after(fullViewGrid); const HTML_STRINGS = `
${i18n.imageScale.get()}:
${conf.imgScale}%
-
+
RESET
📖
${i18n.config.get()}
${i18n.download.get()}
1/0/FIN:0
${i18n.autoPagePlay.get()}
${i18n.collapse.get()}
`; fullViewGrid.innerHTML = HTML_STRINGS; const styleSheel = loadStyleSheel(); if (!conf.disableCssAnimation) { toggleAnimationStyle(conf.disableCssAnimation); } return { root: fullViewGrid, fullViewGrid: q("#ehvp-nodes-container", fullViewGrid), // root element bigImageFrame: q("#big-img-frame", fullViewGrid), // page helper pageHelper: q("#p-helper", fullViewGrid), // config button in pageHelper configPanelBTN: q("#config-panel-btn", fullViewGrid), // config panel mouse leave event configPanel: q("#config-panel", fullViewGrid), // download button in pageHelper downloaderPanelBTN: q("#downloader-panel-btn", fullViewGrid), // download panel mouse leave event downloaderPanel: q("#downloader-panel", fullViewGrid), collapseBTN: q("#collapse-btn", fullViewGrid), gate: q("#ehvp-gate-icon", fullViewGrid), currPageElement: q("#p-curr-page", fullViewGrid), totalPageElement: q("#p-total", fullViewGrid), finishedElement: q("#p-finished", fullViewGrid), showGuideElement: q("#show-guide-element", fullViewGrid), showKeyboardCustomElement: q("#show-keyboard-custom-element", fullViewGrid), showExcludeURLElement: q("#show-exclude-url-element", fullViewGrid), imgLandLeft: q("#img-land-left", fullViewGrid), imgLandRight: q("#img-land-right", fullViewGrid), imgScaleBar: q("#img-scale-bar", fullViewGrid), autoPageBTN: q("#auto-page-btn", fullViewGrid), pageLoading: q("#page-loading", fullViewGrid), downloaderCanvas: q("#downloader-canvas", fullViewGrid), downloadTabDashboard: q("#download-tab-dashboard", fullViewGrid), downloadTabChapters: q("#download-tab-chapters", fullViewGrid), downloadDashboard: q("#download-dashboard", fullViewGrid), downloadChapters: q("#download-chapters", fullViewGrid), downloadNotice: q("#download-notice", fullViewGrid), downloadBTNForce: q("#download-force", fullViewGrid), downloadBTNStart: q("#download-start", fullViewGrid), styleSheel }; } function addEventListeners(events, HTML, BIFM, DL) { HTML.configPanelBTN.addEventListener("click", () => events.togglePanelEvent("config")); HTML.downloaderPanelBTN.addEventListener("click", () => { events.togglePanelEvent("downloader"); DL.check(); }); function collapsePanel(key) { const elements = { "config": HTML.configPanel, "downloader": HTML.downloaderPanel }; conf.autoCollapsePanel && events.collapsePanelEvent(elements[key], key); } HTML.configPanel.addEventListener("mouseleave", () => collapsePanel("config")); HTML.configPanel.addEventListener("blur", () => collapsePanel("config")); HTML.downloaderPanel.addEventListener("mouseleave", () => collapsePanel("downloader")); HTML.downloaderPanel.addEventListener("blur", () => collapsePanel("downloader")); HTML.pageHelper.addEventListener("mouseover", () => events.abortMouseleavePanelEvent()); HTML.pageHelper.addEventListener("mouseleave", () => ["config", "downloader"].forEach((k) => collapsePanel(k))); for (const key of ConfigNumberKeys) { q(`#${key}MinusBTN`, HTML.root).addEventListener("click", () => events.modNumberConfigEvent(key, "minus")); q(`#${key}AddBTN`, HTML.root).addEventListener("click", () => events.modNumberConfigEvent(key, "add")); q(`#${key}Input`, HTML.root).addEventListener("wheel", (event) => { if (event.deltaY < 0) { events.modNumberConfigEvent(key, "add"); } else if (event.deltaY > 0) { events.modNumberConfigEvent(key, "minus"); } }); } for (const key of ConfigBooleanKeys) { q(`#${key}Checkbox`, HTML.root).addEventListener("click", () => events.modBooleanConfigEvent(key)); } for (const key of ConfigSelectKeys) { q(`#${key}Select`, HTML.root).addEventListener("change", () => events.modSelectConfigEvent(key)); } HTML.collapseBTN.addEventListener("click", () => events.main(false)); HTML.gate.addEventListener("click", () => events.main(true)); const debouncer = new Debouncer(); HTML.fullViewGrid.addEventListener("scroll", () => debouncer.addEvent("FULL-VIEW-SCROLL-EVENT", events.scrollEvent, 400)); HTML.fullViewGrid.addEventListener("click", events.hiddenFullViewGridEvent); HTML.currPageElement.addEventListener("wheel", (event) => BIFM.stepNext(event.deltaY > 0 ? "next" : "prev", parseInt(event.target.textContent ?? "") - 1)); document.addEventListener("keydown", (event) => events.keyboardEvent(event)); HTML.fullViewGrid.addEventListener("keydown", (event) => events.fullViewGridKeyBoardEvent(event)); HTML.bigImageFrame.addEventListener("keydown", (event) => events.bigImageFrameKeyBoardEvent(event)); HTML.imgLandLeft.addEventListener("click", (event) => { BIFM.stepNext(conf.reversePages ? "next" : "prev"); event.stopPropagation(); }); HTML.imgLandRight.addEventListener("click", (event) => { BIFM.stepNext(conf.reversePages ? "prev" : "next"); event.stopPropagation(); }); HTML.showGuideElement.addEventListener("click", events.showGuideEvent); HTML.showKeyboardCustomElement.addEventListener("click", events.showKeyboardCustomEvent); HTML.showExcludeURLElement.addEventListener("click", events.showExcludeURLEvent); dragElement(HTML.pageHelper, q("#dragHub", HTML.pageHelper), events.modPageHelperPostion); } class PageHelper { html; chapterIndex = 0; constructor(html, getChapter) { this.html = html; EBUS.subscribe("pf-change-chapter", (index) => { this.chapterIndex = index; const [total, finished] = (() => { const queue = getChapter(index)?.queue; if (!queue) return [0, 0]; const finished2 = queue.filter((imf) => imf.stage === FetchState.DONE).length; return [finished2, queue.length]; })(); this.setPageState({ finished: finished.toString(), total: total.toString(), current: "1" }); }); EBUS.subscribe("bifm-on-show", () => this.minify(true, "bigImageFrame")); EBUS.subscribe("bifm-on-hidden", () => this.minify(false, "bigImageFrame")); EBUS.subscribe("ifq-do", (index, imf) => { if (imf.chapterIndex !== this.chapterIndex) return; const queue = getChapter(this.chapterIndex)?.queue; if (!queue) return; this.setPageState({ current: (index + 1).toString() }); if (imf.stage !== FetchState.DONE) { this.setFetchState("fetching"); } }); EBUS.subscribe("ifq-on-finished-report", (index, queue) => { if (queue.chapterIndex !== this.chapterIndex) return; this.setPageState({ finished: queue.finishedIndex.size.toString() }); evLog("info", `No.${index + 1} Finished,Current index at No.${queue.currIndex + 1}`); if (queue[queue.currIndex].stage === FetchState.DONE) { this.setFetchState("fetched"); } }); EBUS.subscribe("pf-on-appended", (total, _ifs, done) => { this.setPageState({ total: `${total}${done ? "" : ".."}` }); }); html.currPageElement.addEventListener("click", (event) => { const ele = event.target; const index = parseInt(ele.textContent || "1") - 1; const queue = getChapter(this.chapterIndex)?.queue; if (!queue || !queue[index]) return; EBUS.emit("imf-on-click", queue[index]); }); } setFetchState(state) { if (state === "fetching") { this.html.pageHelper.classList.add("p-helper-fetching"); } else { this.html.pageHelper.classList.remove("p-helper-fetching"); } } setPageState({ total, current, finished }) { if (total !== void 0) { this.html.totalPageElement.textContent = total; } if (current !== void 0) { this.html.currPageElement.textContent = current; } if (finished !== void 0) { this.html.finishedElement.textContent = finished; } } minify(ok, level) { switch (conf.minifyPageHelper) { case "inBigMode": if (level === "fullViewGrid") { return; } break; case "always": if (level === "bigImageFrame") { return; } break; case "never": this.html.pageHelper.classList.remove("p-minify"); return; } if (ok) { this.html.pageHelper.classList.add("p-minify"); } else { this.html.pageHelper.classList.remove("p-minify"); } } } function sleep(ms) { return new Promise((resolve) => setTimeout(resolve, ms)); } function onMouse(ele, callback, signal) { ele.addEventListener("mousedown", (event) => { const { left } = ele.getBoundingClientRect(); const mouseMove = (event2) => { const xInProgress = event2.clientX - left; const percent = Math.round(xInProgress / ele.clientWidth * 100); callback(percent); }; mouseMove(event); ele.addEventListener("mousemove", mouseMove); ele.addEventListener("mouseup", () => { ele.removeEventListener("mousemove", mouseMove); }, { once: true }); ele.addEventListener("mouseleave", () => { ele.removeEventListener("mousemove", mouseMove); }, { once: true }); }, { signal }); } const PLAY_ICON = ``; const PAUSE_ICON = ``; const VOLUME_ICON = ` `; const MUTED_ICON = ``; class VideoControl { ui; context = /* @__PURE__ */ new Map(); paused = false; abortController; constructor(root) { this.ui = this.create(root); this.flushUI(); } show() { this.ui.root.hidden = false; } hidden() { this.ui.root.hidden = true; } create(root) { const ui = document.createElement("div"); ui.classList.add("bifm-vid-ctl"); ui.innerHTML = `
00:00 / 10:00
`; root.appendChild(ui); return { root: ui, playBTN: q("#bifm-vid-ctl-play", ui), volumeBTN: q("#bifm-vid-ctl-mute", ui), volumeProgress: q("#bifm-vid-ctl-volume", ui), progress: q("#bifm-vid-ctl-pg", ui), time: q("#bifm-vid-ctl-time", ui), duration: q("#bifm-vid-ctl-duration", ui) }; } flushUI(state, onlyState) { let { value, max } = state ? { value: state.time, max: state.duration } : { value: 0, max: 10 }; const percent = value / max * 100; this.ui.progress.firstElementChild.style.width = `${percent}%`; this.ui.time.textContent = secondsToTime(value); this.ui.duration.textContent = secondsToTime(max); if (onlyState) return; this.ui.playBTN.innerHTML = this.paused ? PLAY_ICON : PAUSE_ICON; this.ui.volumeBTN.innerHTML = conf.muted ? MUTED_ICON : VOLUME_ICON; this.ui.volumeProgress.firstElementChild.style.width = `${conf.volume || 30}%`; } attach(element) { evLog("info", "attach video control"); this.detach(); this.show(); this.abortController = new AbortController(); let state = this.context.get(element.src); if (!state) { state = { time: element.currentTime, duration: element.duration }; this.context.set(element.src, state); } else { element.currentTime = state.time; } this.flushUI(state); element.addEventListener("timeupdate", (event) => { const ele = event.target; if (!state) return; state.time = ele.currentTime; this.flushUI(state, true); }, { signal: this.abortController.signal }); element.onwaiting = () => evLog("debug", "onwaiting"); element.loop = true; element.muted = conf.muted || false; element.volume = (conf.volume || 30) / 100; if (!this.paused) { element.play(); } let elementID = element.id; if (!elementID) { elementID = "vid-" + Math.random().toString(36).slice(2); element.id = elementID; } this.ui.playBTN.addEventListener("click", () => { const vid = document.querySelector(`#${elementID}`); if (vid) { this.paused = !this.paused; if (this.paused) { vid.pause(); } else { vid.play(); } this.flushUI(this.context.get(vid.src)); } }, { signal: this.abortController.signal }); this.ui.volumeBTN.addEventListener("click", () => { const vid = document.querySelector(`#${elementID}`); if (vid) { conf.muted = !conf.muted; vid.muted = conf.muted; saveConf(conf); this.flushUI(this.context.get(vid.src)); } }, { signal: this.abortController.signal }); onMouse(this.ui.progress, (percent) => { const vid = document.querySelector(`#${elementID}`); if (vid) { vid.currentTime = vid.duration * (percent / 100); const state2 = this.context.get(vid.src); state2.time = vid.currentTime; this.flushUI(state2); } }, this.abortController.signal); onMouse(this.ui.volumeProgress, (percent) => { const vid = document.querySelector(`#${elementID}`); if (vid) { conf.volume = percent; saveConf(conf); vid.volume = conf.volume / 100; this.flushUI(this.context.get(vid.src)); } }, this.abortController.signal); } detach() { this.abortController?.abort(); this.abortController = void 0; this.flushUI(); } } function secondsToTime(seconds) { const min = Math.floor(seconds / 60).toString().padStart(2, "0"); const sec = Math.floor(seconds % 60).toString().padStart(2, "0"); return `${min}:${sec}`; } class BigImageFrameManager { frame; lockInit; currMediaNode; lastMouseY; recordedDistance; reachBottom; // for sticky mouse, if reach bottom, when mouse move up util reach top, will step next image page imgScaleBar; debouncer; throttler; callbackOnWheel; hammer; preventStep = { fin: false }; visible = false; html; frameScrollAbort; vidController; chapterIndex = 0; getChapter; constructor(HTML, getChapter) { this.html = HTML; this.frame = HTML.bigImageFrame; this.imgScaleBar = HTML.imgScaleBar; this.debouncer = new Debouncer(); this.throttler = new Debouncer("throttle"); this.lockInit = false; this.getChapter = getChapter; this.resetStickyMouse(); this.initFrame(); this.initImgScaleBar(); this.initImgScaleStyle(); this.initHammer(); EBUS.subscribe("pf-change-chapter", (index) => this.chapterIndex = Math.max(0, index)); EBUS.subscribe("imf-on-click", (imf) => this.show(imf)); EBUS.subscribe("imf-on-finished", (index, success, imf) => { if (imf.chapterIndex !== this.chapterIndex) return; if (!this.visible || !success) return; const img = this.getMediaNodes().find((img2) => index === parseInt(img2.getAttribute("d-index"))); if (!img) return; if (imf.contentType?.startsWith("video")) { const vid = this.newMediaNode(index, imf); img.replaceWith(vid); if (img === this.currMediaNode) { this.currMediaNode = vid; } img.remove(); return; } img.setAttribute("src", imf.blobUrl); }); new AutoPage(this, HTML.autoPageBTN); } initHammer() { this.hammer = new Hammer(this.frame, { // touchAction: "auto", recognizers: [ [Hammer.Swipe, { direction: Hammer.DIRECTION_ALL, enable: false }] ] }); this.hammer.on("swipe", (ev) => { ev.preventDefault(); if (conf.readMode === "singlePage") { switch (ev.direction) { case Hammer.DIRECTION_LEFT: this.stepNext(conf.reversePages ? "prev" : "next"); break; case Hammer.DIRECTION_UP: this.stepNext("next"); break; case Hammer.DIRECTION_RIGHT: this.stepNext(conf.reversePages ? "next" : "prev"); break; case Hammer.DIRECTION_DOWN: this.stepNext("prev"); break; } } }); } resetStickyMouse() { this.reachBottom = false; this.recordedDistance = 0; this.lastMouseY = void 0; } flushImgScaleBar() { q("#img-scale-status", this.imgScaleBar).innerHTML = `${conf.imgScale}%`; q("#img-scale-progress-inner", this.imgScaleBar).style.width = `${conf.imgScale}%`; } initFrame() { this.frame.addEventListener("wheel", (event) => this.onWheel(event, true)); this.frame.addEventListener("click", (event) => this.hidden(event)); this.frame.addEventListener("contextmenu", (event) => event.preventDefault()); const debouncer = new Debouncer("throttle"); this.frame.addEventListener("mousemove", (event) => { debouncer.addEvent("BIG-IMG-MOUSE-MOVE", () => { if (this.lastMouseY && conf.imgScale > 0) { this.stickyMouse(event, this.lastMouseY); } this.lastMouseY = event.clientY; }, 5); }); } initImgScaleBar() { q("#img-increase-btn", this.imgScaleBar).addEventListener("click", () => this.scaleBigImages(1, 5)); q("#img-decrease-btn", this.imgScaleBar).addEventListener("click", () => this.scaleBigImages(-1, 5)); q("#img-scale-reset-btn", this.imgScaleBar).addEventListener("click", () => this.resetScaleBigImages()); const progress = q("#img-scale-progress", this.imgScaleBar); onMouse(progress, (percent) => this.scaleBigImages(0, 0, percent)); } // Deprecated // createNextLand(x: number, y: number) { // this.frame.querySelector("#nextLand")?.remove(); // const nextLand = document.createElement("div"); // nextLand.setAttribute("id", "nextLand"); // const svg_bg = ``; // let yFix = this.frame.clientHeight / 9; // if (conf.stickyMouse === "reverse") { // yFix = -yFix // } // nextLand.setAttribute("style", // `position: fixed; width: 150px; height: 40px; top: ${y + yFix}px; left: ${x - 75}px; z-index: 1006;`); // nextLand.innerHTML = svg_bg; // nextLand.addEventListener("mouseover", () => { // nextLand.remove(); // this.stepNext("next"); // }); // this.frame.appendChild(nextLand); // window.setTimeout(() => nextLand.remove(), 1500) // } hidden(event) { if (event && event.target && event.target.tagName === "SPAN") return; this.visible = false; EBUS.emit("bifm-on-hidden"); this.html.fullViewGrid.focus(); this.frameScrollAbort?.abort(); this.frame.classList.add("big-img-frame-collapse"); this.debouncer.addEvent("TOGGLE-CHILDREN", () => this.removeMediaNode(), 200); } show(imf) { this.visible = true; this.frame.classList.remove("big-img-frame-collapse"); this.frame.focus(); this.frameScrollAbort = new AbortController(); this.frame.addEventListener("scroll", () => this.onScroll(), { signal: this.frameScrollAbort.signal }); this.debouncer.addEvent("TOGGLE-CHILDREN-D", () => { if (imf.chapterIndex !== this.chapterIndex) return; this.setNow(imf); }, 100); EBUS.emit("bifm-on-show"); } setNow(imf, oriented) { if (this.visible) { this.resetStickyMouse(); this.initElement(imf, oriented); } else { const queue = this.getChapter(this.chapterIndex).queue; const index = queue.indexOf(imf); if (index === -1) return; EBUS.emit("ifq-do", index, imf, oriented || "next"); } } initElement(imf, oriented) { this.removeMediaNode(); this.resetPreventStep(); const queue = this.getChapter(this.chapterIndex).queue; const index = queue.indexOf(imf); if (index === -1) return; this.currMediaNode = this.newMediaNode(index, imf); EBUS.emit("ifq-do", index, imf, oriented || "next"); this.frame.appendChild(this.currMediaNode); if (conf.readMode === "consecutively") { this.hammer?.get("swipe").set({ enable: false }); this.tryExtend(); } else { this.hammer?.get("swipe").set({ enable: true }); } this.currMediaNode.scrollIntoView(); } removeMediaNode() { this.currMediaNode = void 0; this.vidController?.detach(); this.vidController?.hidden(); for (const child of Array.from(this.frame.children)) { if (child.nodeName.toLowerCase() === "img" || child.nodeName.toLowerCase() === "video") { if (child instanceof HTMLVideoElement) { child.pause(); child.removeAttribute("src"); child.load(); } child.remove(); } } } getMediaNodes() { const list = Array.from(this.frame.querySelectorAll("img, video")); let last = 0; for (const ele of list) { const index = parseInt(ele.getAttribute("d-index")); if (index < last) { throw new Error("BIFM: getMediaNodes: list is not ordered by d-index"); } last = index; } return list; } stepNext(oriented, current) { let index = current !== void 0 ? current : this.currMediaNode ? parseInt(this.currMediaNode.getAttribute("d-index")) : void 0; if (index === void 0 || isNaN(index)) return; const queue = this.getChapter(this.chapterIndex)?.queue; if (!queue || queue.length === 0) return; index = oriented === "next" ? index + 1 : index - 1; if (index < -1) index = queue.length - 1; if (!queue[index]) return; this.setNow(queue[index], oriented); } // isMouse: onWheel triggered by mousewheel, if not, means by keyboard control onWheel(event, isMouse, preventCallback) { if (!preventCallback) this.callbackOnWheel?.(event); if (event.buttons === 2) { event.preventDefault(); this.scaleBigImages(event.deltaY > 0 ? -1 : 1, 5); return; } if (conf.readMode === "consecutively") return; const oriented = event.deltaY > 0 ? "next" : "prev"; if (conf.stickyMouse === "disable") { if (!this.isReachedBoundary(oriented)) return; if (isMouse && this.tryPreventStep()) return; } event.preventDefault(); this.stepNext(oriented); } onScroll() { if (conf.readMode === "consecutively") { this.consecutive(); } } resetPreventStep(fin) { this.preventStep.ani?.cancel(); this.preventStep.ele?.remove(); this.preventStep = { fin: fin ?? false }; } // prevent scroll to next page while mouse scrolling; tryPreventStep() { if (!conf.imgScale || conf.imgScale === 0 || conf.preventScrollPageTime === 0) { return false; } if (this.preventStep.fin) { this.resetPreventStep(); return false; } else { if (!this.preventStep.ele) { const lockEle = document.createElement("div"); lockEle.style.width = "100vw"; lockEle.style.position = "fixed"; lockEle.style.display = "flex"; lockEle.style.justifyContent = "center"; lockEle.style.bottom = "0px"; lockEle.innerHTML = `
`; this.frame.appendChild(lockEle); const ani = lockEle.children[0].animate([{ width: "30vw" }, { width: "0vw" }], { duration: conf.preventScrollPageTime }); this.preventStep = { ele: lockEle, ani, fin: false }; ani.onfinish = () => this.resetPreventStep(true); ani.oncancel = () => this.resetPreventStep(true); } return true; } } isReachedBoundary(oriented) { if (oriented === "prev") { return this.frame.scrollTop <= 0; } if (oriented === "next") { return this.frame.scrollTop >= this.frame.scrollHeight - this.frame.offsetHeight; } return false; } consecutive() { this.throttler.addEvent("SCROLL", () => { this.debouncer.addEvent("REDUCE", () => { const distance2 = this.getRealOffsetTop(this.currMediaNode) - this.frame.scrollTop; if (this.tryReduce()) { this.restoreScrollTop(this.currMediaNode, distance2); } }, 500); let mediaNodes = this.getMediaNodes(); let index = this.findMediaNodeIndexOnCenter(mediaNodes); const centerNode = mediaNodes[index]; if (this.currMediaNode != centerNode) { const oldIndex = parseInt(this.currMediaNode?.getAttribute("d-index")); const newIndex = parseInt(centerNode.getAttribute("d-index")); const oriented = oldIndex < newIndex ? "next" : "prev"; const queue = this.getChapter(this.chapterIndex).queue; if (queue.length === 0) return; const imf = queue[newIndex]; EBUS.emit("ifq-do", newIndex, imf, oriented); if (this.currMediaNode instanceof HTMLVideoElement) { this.currMediaNode.pause(); } this.tryPlayVideo(centerNode); } this.currMediaNode = centerNode; const distance = this.getRealOffsetTop(this.currMediaNode) - this.frame.scrollTop; if (this.tryExtend() > 0) { this.restoreScrollTop(this.currMediaNode, distance); } }, 60); } restoreScrollTop(imgNode, distance) { this.frame.scrollTop = this.getRealOffsetTop(imgNode) - distance; } /** * Usually, when the central image occupies the full height of the screen, * it is simple to obtain the offsetTop of that image element. * However, when encountering images with aspect ratios that exceed the screen's aspect ratio, * it is necessary to rely on natureWidth and natureHeight to obtain the actual offsetTop. */ getRealOffsetTop(imgNode) { return imgNode.offsetTop; } tryExtend() { let indexOffset = 0; let mediaNodes = []; let scrollTopFix = 0; while (true) { mediaNodes = this.getMediaNodes(); const frist = mediaNodes[0]; if (frist.offsetTop + frist.offsetHeight > this.frame.scrollTop + scrollTopFix) { const extended = this.extendImgNode(frist, "prev"); if (extended === null) { break; } else { scrollTopFix += extended.offsetHeight; } indexOffset++; } else { break; } } while (true) { mediaNodes = this.getMediaNodes(); const last = mediaNodes[mediaNodes.length - 1]; if (last.offsetTop < this.frame.scrollTop + this.frame.offsetHeight) { if (this.extendImgNode(last, "next") === null) break; } else { break; } } return indexOffset; } tryReduce() { const imgNodes = this.getMediaNodes(); const shouldRemoveNodes = []; let oriented = "prev"; for (const imgNode of imgNodes) { if (oriented === "prev") { if (imgNode.offsetTop + imgNode.offsetHeight < this.frame.scrollTop) { shouldRemoveNodes.push(imgNode); } else { oriented = "next"; shouldRemoveNodes.pop(); } } else if (oriented === "next") { if (imgNode.offsetTop > this.frame.scrollTop + this.frame.offsetHeight) { oriented = "remove"; } } else { shouldRemoveNodes.push(imgNode); } } if (shouldRemoveNodes.length === 0) return false; for (const imgNode of shouldRemoveNodes) { imgNode.remove(); } return true; } extendImgNode(mediaNode, oriented) { let extendedNode; const index = parseInt(mediaNode.getAttribute("d-index")); if (isNaN(index)) { throw new Error("BIFM: extendImgNode: media node index is NaN"); } const queue = this.getChapter(this.chapterIndex).queue; if (queue.length === 0) return null; if (oriented === "prev") { if (index === 0) return null; extendedNode = this.newMediaNode(index - 1, queue[index - 1]); mediaNode.before(extendedNode); } else { if (index === queue.length - 1) return null; extendedNode = this.newMediaNode(index + 1, queue[index + 1]); mediaNode.after(extendedNode); } return extendedNode; } newMediaNode(index, imf) { if (!imf) throw new Error("BIFM: newMediaNode: img fetcher is null"); if (imf.contentType?.startsWith("video")) { const vid = document.createElement("video"); vid.classList.add("bifm-img"); vid.classList.add("bifm-vid"); vid.setAttribute("d-index", index.toString()); vid.onloadeddata = () => { if (this.visible && vid === this.currMediaNode) { this.tryPlayVideo(vid); } }; vid.src = imf.blobUrl; return vid; } else { const img = document.createElement("img"); img.decoding = "sync"; img.classList.add("bifm-img"); img.setAttribute("d-index", index.toString()); if (imf.stage === FetchState.DONE) { img.src = imf.blobUrl; } else { img.src = imf.node.src; } return img; } } tryPlayVideo(vid) { if (vid instanceof HTMLVideoElement) { if (!this.vidController) { this.vidController = new VideoControl(this.html.root); } this.vidController.attach(vid); } else { this.vidController?.hidden(); } } /** * @param fix: 1 or -1, means scale up or down * @param rate: step of scale, eg: current scale is 80, rate is 10, then new scale is 90 * @param _percent: directly set width percent */ scaleBigImages(fix, rate, _percent) { let percent = 0; const cssRules = Array.from(this.html.styleSheel.sheet?.cssRules ?? []); for (const cssRule of cssRules) { if (cssRule instanceof CSSStyleRule) { if (cssRule.selectorText === ".bifm-img") { if (!conf.imgScale) conf.imgScale = 0; if (conf.imgScale == 0 && (_percent || this.currMediaNode)) { percent = _percent ?? Math.round(this.currMediaNode.offsetWidth / this.frame.offsetWidth * 100); if (conf.readMode === "consecutively") { cssRule.style.minHeight = ""; } else { cssRule.style.minHeight = "100vh"; } cssRule.style.maxWidth = ""; cssRule.style.height = ""; } else { percent = _percent ?? conf.imgScale; } percent = Math.max(percent + rate * fix, 10); percent = Math.min(percent, 100); cssRule.style.width = `${percent}vw`; break; } } } if (conf.readMode === "singlePage" && this.currMediaNode && this.currMediaNode.offsetHeight <= this.frame.offsetHeight) { this.resetScaleBigImages(); } else { conf.imgScale = percent; } saveConf(conf); this.flushImgScaleBar(); return percent; } resetScaleBigImages() { const cssRules = Array.from(this.html.styleSheel.sheet?.cssRules ?? []); for (const cssRule of cssRules) { if (cssRule instanceof CSSStyleRule) { if (cssRule.selectorText === ".bifm-img") { cssRule.style.maxWidth = "100vw"; if (conf.readMode === "singlePage") { cssRule.style.minHeight = "100vh"; cssRule.style.height = "100vh"; cssRule.style.width = ""; } else { cssRule.style.minHeight = ""; cssRule.style.height = ""; const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Mobile/i.test(navigator.userAgent); cssRule.style.width = isMobile ? "100vw" : "80vw"; } break; } } } conf.imgScale = 0; saveConf(conf); this.flushImgScaleBar(); } initImgScaleStyle() { if (conf.imgScale && conf.imgScale > 0) { const imgScale = conf.imgScale; conf.imgScale = 0; this.scaleBigImages(1, 0, imgScale); } else { this.resetScaleBigImages(); } } // return [stepImage, distance] stickyMouse(event, lastMouseY) { let [stepImage, distance] = [false, 0]; if (conf.readMode === "singlePage" && conf.stickyMouse !== "disable") { distance = event.clientY - lastMouseY; distance = conf.stickyMouse === "enable" ? -distance : distance; const rate = (this.frame.scrollHeight - this.frame.offsetHeight) / (this.frame.offsetHeight / 4) * 3; let scrollTop = this.frame.scrollTop + distance * rate; if (distance > 0) { this.recordedDistance += distance; if (scrollTop >= this.frame.scrollHeight - this.frame.offsetHeight) { scrollTop = this.frame.scrollHeight - this.frame.offsetHeight; this.reachBottom = this.recordedDistance >= this.frame.clientHeight / 9; } } else if (distance < 0) { if (scrollTop <= 0) { scrollTop = 0; stepImage = this.reachBottom; this.reachBottom = false; } } this.frame.scrollTo({ top: scrollTop, behavior: "auto" }); } return [stepImage, distance]; } findMediaNodeIndexOnCenter(imgNodes) { const centerLine = this.frame.offsetHeight / 2; for (let i = 0; i < imgNodes.length; i++) { const imgNode = imgNodes[i]; const realOffsetTop = imgNode.offsetTop - this.frame.scrollTop; if (realOffsetTop < centerLine && realOffsetTop + imgNode.offsetHeight >= centerLine) { return i; } } return 0; } } class AutoPage { bifm; status; button; lockVer; restart; constructor(BIFM, root) { this.bifm = BIFM; this.status = "stop"; this.button = root; this.lockVer = 0; this.restart = false; this.bifm.callbackOnWheel = () => { if (this.status === "running") { this.stop(); this.start(this.lockVer); } }; EBUS.subscribe("bifm-on-hidden", () => this.stop()); EBUS.subscribe("bifm-on-show", () => conf.autoPlay && this.start(this.lockVer)); this.initPlayButton(); } initPlayButton() { this.button.addEventListener("click", () => { if (this.status === "stop") { this.start(this.lockVer); } else { this.stop(); } }); } async start(lockVer) { this.status = "running"; this.button.firstElementChild.innerText = i18n.autoPagePause.get(); const b = this.bifm.frame; if (this.bifm.frame.classList.contains("big-img-frame-collapse")) { const queue = this.bifm.getChapter(this.bifm.chapterIndex).queue; if (queue.length === 0) return; const index = parseInt(this.bifm.currMediaNode?.getAttribute("d-index") || "0"); this.bifm.show(queue[index]); } const progress = q("#auto-page-progress", this.button); while (true) { await sleep(10); progress.style.animation = `${conf.autoPageInterval ?? 1e4}ms linear main-progress`; await sleep(conf.autoPageInterval ?? 1e4); if (this.lockVer !== lockVer) { return; } if (this.restart) { this.restart = false; continue; } progress.style.animation = ``; if (this.status !== "running") { break; } if (!this.bifm.currMediaNode) break; const index = parseInt(this.bifm.currMediaNode.getAttribute("d-index")); const queue = this.bifm.getChapter(this.bifm.chapterIndex).queue; if (index >= queue.length) break; const deltaY = this.bifm.frame.offsetHeight / 2; if (this.bifm.isReachedBoundary("next")) { this.bifm.onWheel(new WheelEvent("wheel", { deltaY }), false, true); if (conf.readMode === "singlePage") continue; } b.scrollBy({ top: deltaY, behavior: "smooth" }); } this.stop(); } stop() { this.status = "stop"; const progress = q("#auto-page-progress", this.button); progress.style.animation = ``; this.lockVer += 1; this.button.firstElementChild.innerText = i18n.autoPagePlay.get(); } } function revertMonkeyPatch(element) { const originalScrollTo = Element.prototype.scrollTo; Object.defineProperty(element, "scrollTo", { value: originalScrollTo, writable: true, configurable: true }); } function main(MATCHER) { const HTML = createHTML(); [HTML.fullViewGrid, HTML.bigImageFrame].forEach((e) => revertMonkeyPatch(e)); const IFQ = IMGFetcherQueue.newQueue(); const IL = new IdleLoader(IFQ); const PF = new PageFetcher(IFQ, MATCHER); const DL = new Downloader(HTML, IFQ, IL, PF, MATCHER); const PH = new PageHelper(HTML, (index) => PF.chapters[index]); const BIFM = new BigImageFrameManager(HTML, (index) => PF.chapters[index]); const FVGM = new FullViewGridManager(HTML, BIFM); const events = initEvents(HTML, BIFM, FVGM, IFQ, PF, IL, PH); addEventListeners(events, HTML, BIFM, DL); EBUS.subscribe("downloader-canvas-on-click", (index) => { IFQ.currIndex = index; if (IFQ.chapterIndex !== BIFM.chapterIndex) return; BIFM.show(IFQ[index]); }); PF.beforeInit = () => HTML.pageLoading.style.display = "flex"; PF.afterInit = () => { HTML.pageLoading.style.display = "none"; IL.processingIndexList = [0]; IL.start(); }; if (conf["first"]) { events.showGuideEvent(); conf["first"] = false; saveConf(conf); } return () => { console.log("destory eh-view-enhance"); HTML.root.remove(); PF.abort(); IL.abort(); IFQ.length = 0; }; } (() => { let oldPushState = history.pushState; history.pushState = function pushState(...args) { let ret = oldPushState.apply(this, args); window.dispatchEvent(new Event("pushstate")); window.dispatchEvent(new Event("locationchange")); return ret; }; let oldReplaceState = history.replaceState; history.replaceState = function replaceState(...args) { let ret = oldReplaceState.apply(this, args); window.dispatchEvent(new Event("replacestate")); window.dispatchEvent(new Event("locationchange")); return ret; }; window.addEventListener("popstate", () => { window.dispatchEvent(new Event("locationchange")); }); })(); let destoryFunc; window.addEventListener("locationchange", () => { destoryFunc?.(); const matcher2 = adaptMatcher(window.location.href); if (matcher2 !== null) { destoryFunc = main(matcher2); } }); const matcher = adaptMatcher(window.location.href); if (matcher !== null) { destoryFunc = main(matcher); } })(saveAs, JSZip, Hammer);