fix AF-2692 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added comprehensive Windows support for audio and application capture, including real-time microphone usage detection, combined microphone and system audio recording, and application state monitoring. - The "meetings" setting is now enabled on Windows as well as macOS. - Conditional UI styling and attributes introduced for Windows environments in the Electron renderer. - **Bug Fixes** - Enhanced file path handling and validation for Windows in Electron file requests. - **Refactor** - Unified application info handling across platforms by consolidating types into a single `ApplicationInfo` structure. - Updated native module APIs by removing deprecated types, refining method signatures, and improving error messages. - Streamlined audio tapping APIs to use process IDs and consistent callback types. - **Documentation** - Added detailed documentation for the Windows-specific audio recording and microphone listener modules. - **Chores** - Updated development dependencies in multiple packages. - Reorganized and added platform-specific dependencies and configuration for Windows support. <!-- end of auto-generated comment: release notes by coderabbit.ai --> #### PR Dependency Tree * **PR #12615** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) --------- Co-authored-by: LongYinan <lynweklm@gmail.com>
392 lines
9.9 KiB
JavaScript
392 lines
9.9 KiB
JavaScript
// 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('./affine.android-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-android-arm64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm') {
|
|
try {
|
|
return require('./affine.android-arm-eabi.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-android-arm-eabi')
|
|
} 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('./affine.win32-x64-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-win32-x64-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'ia32') {
|
|
try {
|
|
return require('./affine.win32-ia32-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-win32-ia32-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./affine.win32-arm64-msvc.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-win32-arm64-msvc')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on Windows: ${process.arch}`))
|
|
}
|
|
} else if (process.platform === 'darwin') {
|
|
try {
|
|
return require('./affine.darwin-universal.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-darwin-universal')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
if (process.arch === 'x64') {
|
|
try {
|
|
return require('./affine.darwin-x64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-darwin-x64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./affine.darwin-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-darwin-arm64')
|
|
} 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('./affine.freebsd-x64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-freebsd-x64')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 'arm64') {
|
|
try {
|
|
return require('./affine.freebsd-arm64.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-freebsd-arm64')
|
|
} 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('./affine.linux-x64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-x64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./affine.linux-x64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-x64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'arm64') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./affine.linux-arm64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-arm64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./affine.linux-arm64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-arm64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'arm') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./affine.linux-arm-musleabihf.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-arm-musleabihf')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./affine.linux-arm-gnueabihf.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-arm-gnueabihf')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'riscv64') {
|
|
if (isMusl()) {
|
|
try {
|
|
return require('./affine.linux-riscv64-musl.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-riscv64-musl')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
try {
|
|
return require('./affine.linux-riscv64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-riscv64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
}
|
|
} else if (process.arch === 'ppc64') {
|
|
try {
|
|
return require('./affine.linux-ppc64-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-ppc64-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else if (process.arch === 's390x') {
|
|
try {
|
|
return require('./affine.linux-s390x-gnu.node')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
try {
|
|
return require('@affine/native-linux-s390x-gnu')
|
|
} catch (e) {
|
|
loadErrors.push(e)
|
|
}
|
|
|
|
} else {
|
|
loadErrors.push(new Error(`Unsupported architecture on Linux: ${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('./affine.wasi.cjs')
|
|
} catch (err) {
|
|
if (process.env.NAPI_RS_FORCE_WASI) {
|
|
loadErrors.push(err)
|
|
}
|
|
}
|
|
if (!nativeBinding) {
|
|
try {
|
|
nativeBinding = require('@affine/native-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.ApplicationInfo = nativeBinding.ApplicationInfo
|
|
module.exports.ApplicationListChangedSubscriber = nativeBinding.ApplicationListChangedSubscriber
|
|
module.exports.ApplicationStateChangedSubscriber = nativeBinding.ApplicationStateChangedSubscriber
|
|
module.exports.AudioCaptureSession = nativeBinding.AudioCaptureSession
|
|
module.exports.ShareableContent = nativeBinding.ShareableContent
|
|
module.exports.decodeAudio = nativeBinding.decodeAudio
|
|
module.exports.decodeAudioSync = nativeBinding.decodeAudioSync
|
|
module.exports.mintChallengeResponse = nativeBinding.mintChallengeResponse
|
|
module.exports.verifyChallengeResponse = nativeBinding.verifyChallengeResponse
|
|
module.exports.DocStorage = nativeBinding.DocStorage
|
|
module.exports.DocStoragePool = nativeBinding.DocStoragePool
|
|
module.exports.SqliteConnection = nativeBinding.SqliteConnection
|
|
module.exports.ValidationResult = nativeBinding.ValidationResult
|