mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-04 10:50:57 +01:00
* Restructures monorepo packages * Updated pesde manifests with scope and other metadata * Consolidated all interactive install logic into __call metamethod for one liner bin re-exports * Renamed binlib->toolchainlib * Introduced first real world package - stylua (!!)
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
--> Mostly a recreation of rokit's detection logic in Luau
|
|
--> See https://github.com/rojo-rbx/rokit/blob/a6b84c/lib/descriptor/arch.rs
|
|
|
|
local process = require("@lune/process")
|
|
local detection = require("./detection")
|
|
|
|
local types = require("../utils/result_option_conv")
|
|
local Option = types.Option
|
|
type Option<T> = types.Option<T>
|
|
|
|
export type Arch = process.Arch | "arm" | "x86"
|
|
|
|
local ARCH_SUBSTRINGS: { [Arch]: { string } } = {
|
|
aarch64 = { "aarch64", "arm64", "armv9" },
|
|
x86_64 = { "x86-64", "x86_64", "amd64", "win64", "win-x64" },
|
|
arm = { "arm32", "armv7" },
|
|
x86 = { "i686", "i386", "win32", "win-x86" },
|
|
}
|
|
|
|
local ARCH_FULL_WORDS: { [Arch]: { string } } = {
|
|
aarch64 = {},
|
|
x86_64 = { "x64", "win" },
|
|
arm = { "arm" },
|
|
x86 = { "x86" },
|
|
}
|
|
|
|
return {
|
|
detect = function(str: string): Option<Arch>
|
|
return detection.detect(str, ARCH_SUBSTRINGS, ARCH_FULL_WORDS)
|
|
end,
|
|
|
|
detectFromExecutable = function(binaryContents: buffer)
|
|
return Option.from(detection.detectFromExecutable(binaryContents))
|
|
:map(function(inner: detection.ExecutableDetectionResult)
|
|
return inner.arch
|
|
end)
|
|
end,
|
|
}
|