| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| // prettier-ignore |
| /* eslint-disable */ |
| // @ts-nocheck |
| /* auto-generated by NAPI-RS */ |
| |
| const { createRequire } = require('node:module') |
| require = createRequire(__filename) |
| |
| const { readFileSync } = require('node:fs') |
| let nativeBinding = null |
| const loadErrors = [] |
| |
| const isMusl = () => { |
| let musl = false |
| if (process.platform === 'linux') { |
| musl = isMuslFromFilesystem() |
| if (musl === null) { |
| musl = isMuslFromReport() |
| } |
| if (musl === null) { |
| musl = isMuslFromChildProcess() |
| } |
| } |
| return musl |
| } |
| |
| const isFileMusl = (f) => f.includes('libc.musl-') || f.includes('ld-musl-') |
| |
| const isMuslFromFilesystem = () => { |
| try { |
| return readFileSync('/usr/bin/ldd', 'utf-8').includes('musl') |
| } catch { |
| return null |
| } |
| } |
| |
| const isMuslFromReport = () => { |
| let report = null |
| if (typeof process.report?.getReport === 'function') { |
| process.report.excludeNetwork = true |
| report = process.report.getReport() |
| } |
| if (!report) { |
| return null |
| } |
| if (report.header && report.header.glibcVersionRuntime) { |
| return false |
| } |
| if (Array.isArray(report.sharedObjects)) { |
| if (report.sharedObjects.some(isFileMusl)) { |
| return true |
| } |
| } |
| return false |
| } |
| |
| const isMuslFromChildProcess = () => { |
| try { |
| return require('child_process').execSync('ldd --version', { encoding: 'utf8' }).includes('musl') |
| } catch (e) { |
| // If we reach this case, we don't know if the system is musl or not, so is better to just fallback to false |
| return false |
| } |
| } |
| |
| function requireNative() { |
| if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) { |
| try { |
| nativeBinding = require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH); |
| } catch (err) { |
| loadErrors.push(err) |
| } |
| } else if (process.platform === 'android') { |
| if (process.arch === 'arm64') { |
| try { |
| return require('./opendal.android-arm64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-android-arm64') |
| const bindingPackageVersion = require('@opendal/lib-android-arm64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'arm') { |
| try { |
| return require('./opendal.android-arm-eabi.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-android-arm-eabi') |
| const bindingPackageVersion = require('@opendal/lib-android-arm-eabi/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on Android ${process.arch}`)) |
| } |
| } else if (process.platform === 'win32') { |
| if (process.arch === 'x64') { |
| try { |
| return require('./opendal.win32-x64-msvc.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-win32-x64-msvc') |
| const bindingPackageVersion = require('@opendal/lib-win32-x64-msvc/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'ia32') { |
| try { |
| return require('./opendal.win32-ia32-msvc.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-win32-ia32-msvc') |
| const bindingPackageVersion = require('@opendal/lib-win32-ia32-msvc/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'arm64') { |
| try { |
| return require('./opendal.win32-arm64-msvc.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-win32-arm64-msvc') |
| const bindingPackageVersion = require('@opendal/lib-win32-arm64-msvc/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`)) |
| } |
| } else if (process.platform === 'darwin') { |
| try { |
| return require('./opendal.darwin-universal.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-darwin-universal') |
| const bindingPackageVersion = require('@opendal/lib-darwin-universal/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| if (process.arch === 'x64') { |
| try { |
| return require('./opendal.darwin-x64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-darwin-x64') |
| const bindingPackageVersion = require('@opendal/lib-darwin-x64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'arm64') { |
| try { |
| return require('./opendal.darwin-arm64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-darwin-arm64') |
| const bindingPackageVersion = require('@opendal/lib-darwin-arm64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on macOS: ${process.arch}`)) |
| } |
| } else if (process.platform === 'freebsd') { |
| if (process.arch === 'x64') { |
| try { |
| return require('./opendal.freebsd-x64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-freebsd-x64') |
| const bindingPackageVersion = require('@opendal/lib-freebsd-x64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'arm64') { |
| try { |
| return require('./opendal.freebsd-arm64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-freebsd-arm64') |
| const bindingPackageVersion = require('@opendal/lib-freebsd-arm64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on FreeBSD: ${process.arch}`)) |
| } |
| } else if (process.platform === 'linux') { |
| if (process.arch === 'x64') { |
| if (isMusl()) { |
| try { |
| return require('./opendal.linux-x64-musl.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-x64-musl') |
| const bindingPackageVersion = require('@opendal/lib-linux-x64-musl/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| try { |
| return require('./opendal.linux-x64-gnu.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-x64-gnu') |
| const bindingPackageVersion = require('@opendal/lib-linux-x64-gnu/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } |
| } else if (process.arch === 'arm64') { |
| if (isMusl()) { |
| try { |
| return require('./opendal.linux-arm64-musl.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-arm64-musl') |
| const bindingPackageVersion = require('@opendal/lib-linux-arm64-musl/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| try { |
| return require('./opendal.linux-arm64-gnu.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-arm64-gnu') |
| const bindingPackageVersion = require('@opendal/lib-linux-arm64-gnu/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } |
| } else if (process.arch === 'arm') { |
| if (isMusl()) { |
| try { |
| return require('./opendal.linux-arm-musleabihf.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-arm-musleabihf') |
| const bindingPackageVersion = require('@opendal/lib-linux-arm-musleabihf/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| try { |
| return require('./opendal.linux-arm-gnueabihf.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-arm-gnueabihf') |
| const bindingPackageVersion = require('@opendal/lib-linux-arm-gnueabihf/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } |
| } else if (process.arch === 'riscv64') { |
| if (isMusl()) { |
| try { |
| return require('./opendal.linux-riscv64-musl.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-riscv64-musl') |
| const bindingPackageVersion = require('@opendal/lib-linux-riscv64-musl/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| try { |
| return require('./opendal.linux-riscv64-gnu.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-riscv64-gnu') |
| const bindingPackageVersion = require('@opendal/lib-linux-riscv64-gnu/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } |
| } else if (process.arch === 'ppc64') { |
| try { |
| return require('./opendal.linux-ppc64-gnu.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-ppc64-gnu') |
| const bindingPackageVersion = require('@opendal/lib-linux-ppc64-gnu/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 's390x') { |
| try { |
| return require('./opendal.linux-s390x-gnu.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-linux-s390x-gnu') |
| const bindingPackageVersion = require('@opendal/lib-linux-s390x-gnu/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on Linux: ${process.arch}`)) |
| } |
| } else if (process.platform === 'openharmony') { |
| if (process.arch === 'arm64') { |
| try { |
| return require('./opendal.openharmony-arm64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-openharmony-arm64') |
| const bindingPackageVersion = require('@opendal/lib-openharmony-arm64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'x64') { |
| try { |
| return require('./opendal.openharmony-x64.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-openharmony-x64') |
| const bindingPackageVersion = require('@opendal/lib-openharmony-x64/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else if (process.arch === 'arm') { |
| try { |
| return require('./opendal.openharmony-arm.node') |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| try { |
| const binding = require('@opendal/lib-openharmony-arm') |
| const bindingPackageVersion = require('@opendal/lib-openharmony-arm/package.json').version |
| if (bindingPackageVersion !== '0.49.2' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { |
| throw new Error(`Native binding package version mismatch, expected 0.49.2 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) |
| } |
| return binding |
| } catch (e) { |
| loadErrors.push(e) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported architecture on OpenHarmony: ${process.arch}`)) |
| } |
| } else { |
| loadErrors.push(new Error(`Unsupported OS: ${process.platform}, architecture: ${process.arch}`)) |
| } |
| } |
| |
| nativeBinding = requireNative() |
| |
| if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) { |
| try { |
| nativeBinding = require('./opendal.wasi.cjs') |
| } catch (err) { |
| if (process.env.NAPI_RS_FORCE_WASI) { |
| loadErrors.push(err) |
| } |
| } |
| if (!nativeBinding) { |
| try { |
| nativeBinding = require('@opendal/lib-wasm32-wasi') |
| } catch (err) { |
| if (process.env.NAPI_RS_FORCE_WASI) { |
| loadErrors.push(err) |
| } |
| } |
| } |
| } |
| |
| if (!nativeBinding) { |
| if (loadErrors.length > 0) { |
| throw new Error( |
| `Cannot find native binding. ` + |
| `npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` + |
| 'Please try `npm i` again after removing both package-lock.json and node_modules directory.', |
| { cause: loadErrors } |
| ) |
| } |
| throw new Error(`Failed to load native binding`) |
| } |
| |
| module.exports = nativeBinding |
| module.exports.BlockingLister = nativeBinding.BlockingLister |
| module.exports.BlockingReader = nativeBinding.BlockingReader |
| module.exports.BlockingWriter = nativeBinding.BlockingWriter |
| module.exports.Capability = nativeBinding.Capability |
| module.exports.ConcurrentLimitLayer = nativeBinding.ConcurrentLimitLayer |
| module.exports.Entry = nativeBinding.Entry |
| module.exports.Layer = nativeBinding.Layer |
| module.exports.Lister = nativeBinding.Lister |
| module.exports.LoggingLayer = nativeBinding.LoggingLayer |
| module.exports.Metadata = nativeBinding.Metadata |
| module.exports.Operator = nativeBinding.Operator |
| module.exports.Reader = nativeBinding.Reader |
| module.exports.RetryLayer = nativeBinding.RetryLayer |
| module.exports.ThrottleLayer = nativeBinding.ThrottleLayer |
| module.exports.TimeoutLayer = nativeBinding.TimeoutLayer |
| module.exports.Writer = nativeBinding.Writer |
| module.exports.EntryMode = nativeBinding.EntryMode |