napi-rs/scripts/napi.js

86 lines
1.9 KiB
JavaScript
Raw Normal View History

2018-04-28 17:26:38 +09:00
#!/usr/bin/env node
const parseArgs = require('minimist')
const path = require('path')
const os = require('os')
2020-02-19 00:05:13 +09:00
const toml = require('toml')
const fs = require('fs')
2018-04-28 17:26:38 +09:00
2020-02-19 00:05:13 +09:00
let tomlContentString
let tomlContent
let moduleName
try {
tomlContentString = fs.readFileSync(path.join(process.cwd(), 'Cargo.toml'), 'utf-8')
} catch {
throw new TypeError('Can not find Cargo.toml in process.cwd')
}
try {
tomlContent = toml.parse(tomlContentString)
} catch {
throw new TypeError('Can not parse the Cargo.toml')
}
if (tomlContent.package && tomlContent.package.name) {
moduleName = tomlContent.package.name.replace(/-/g, '_')
} else {
throw new TypeError('No package.name field in Cargo.toml')
2018-04-28 17:26:38 +09:00
}
const argv = parseArgs(process.argv.slice(2), {
boolean: ['release'],
})
const platform = os.platform()
2020-02-19 00:05:13 +09:00
let libExt
let dylibName = moduleName
2018-04-28 17:26:38 +09:00
// Platform based massaging for build commands
switch (platform) {
case 'darwin':
libExt = '.dylib'
2020-02-19 00:05:13 +09:00
dylibName = `lib${moduleName}`
2018-04-28 17:26:38 +09:00
break
case 'win32':
libExt = '.dll'
break
case 'linux':
2020-02-19 00:05:13 +09:00
dylibName = `lib${moduleName}`
2018-04-28 17:26:38 +09:00
libExt = '.so'
break
default:
console.error(
'Operating system not currently supported or recognized by the build script',
)
process.exit(1)
}
2020-02-19 00:05:13 +09:00
const targetDir = argv.release ? 'release' : 'debug'
let subcommand = argv._[0] || path.join('target', targetDir, `${moduleName}.node`)
const parsedDist = path.parse(subcommand)
if (parsedDist.ext && parsedDist.ext !== '.node') {
throw new TypeError('Dist file must be end with .node extension')
}
if (!parsedDist.name || parsedDist.name === '.') {
subcommand = moduleName
2018-04-28 17:26:38 +09:00
}
2020-02-19 00:05:13 +09:00
if (!parsedDist.ext) {
subcommand = `${subcommand}.node`
}
const pos = __dirname.indexOf('node_modules')
2020-02-19 00:05:13 +09:00
const dylibContent = fs.readFileSync(path.join(
__dirname.substring(0, pos),
2020-02-19 00:05:13 +09:00
'target',
targetDir,
`${dylibName}${libExt}`,
))
fs.writeFileSync(subcommand, dylibContent)