mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
197 lines
4.4 KiB
Text
197 lines
4.4 KiB
Text
-- NOTE: T is a unique identifier for the `CType` and R is the closest Lua type.
|
|
export type CTypeInfo<T, R> = {
|
|
size: number,
|
|
signedness: boolean,
|
|
|
|
-- subtype
|
|
ptrInfo: (self: CTypeInfo<T, R>) -> CPtrInfo<CTypeInfo<T, R>>,
|
|
arrInfo: (self: CTypeInfo<T, R>, len: number) -> CArrInfo<CTypeInfo<T, R>, R>,
|
|
|
|
-- realize
|
|
box: (self: CTypeInfo<T, R>, val: R) -> Box,
|
|
fromData: (self: CTypeInfo<T, R>, data: (Ref|Box), offset: number?) -> R,
|
|
intoData: (self: CTypeInfo<T, R>, data: (Ref|Box), value: R, offset: number?) -> (),
|
|
|
|
-- FIXME: recursive types; 'intoType' should be CTypes
|
|
cast: (self: CTypeInfo<T, R>, intoType: any, fromData: (Ref|Box), intoData: (Ref|Box)) -> (),
|
|
} & { ["__phantom"]: T }
|
|
|
|
export type CPtrInfo<T> = {
|
|
size: number,
|
|
inner: T,
|
|
|
|
-- subtype
|
|
-- FIXME: recursive types; 'any' should be CPtrInfo
|
|
arrInfo: (self: CPtrInfo<T>, len: number) -> any,
|
|
ptrInfo: (self: CPtrInfo<T>) -> any,
|
|
}
|
|
|
|
export type CArrInfo<T, R> = {
|
|
size: number,
|
|
length: number,
|
|
inner: T,
|
|
|
|
-- subtype
|
|
ptrInfo: (self: CArrInfo<T, R>) -> CPtrInfo<T>,
|
|
|
|
-- realize
|
|
box: (self: CArrInfo<T, R>, table: { T }) -> Box,
|
|
fromData: (self: CArrInfo<T, R>, data: (Ref|Box), offset: number?) -> { T },
|
|
intoData: (self: CArrInfo<T, R>, data: (Ref|Box), value: { T }, offset: number?) -> (),
|
|
|
|
offset: (self: CArrInfo<T, R>, offset: number) -> number,
|
|
}
|
|
|
|
export type CFuncInfo = {
|
|
callable: (self: CFuncInfo, functionRef: Ref) -> Callable,
|
|
}
|
|
|
|
export type CStructInfo = {
|
|
arrInfo: (self: CStructInfo, len: number) -> CArrInfo<CStructInfo, {any}>,
|
|
ptrInfo: (self: CStructInfo) -> CPtrInfo<CStructInfo>,
|
|
}
|
|
|
|
type NumCType<T> = CTypeInfo<T, (number|any)>
|
|
|
|
-- Fixed size Rust-style types --
|
|
export type u8 = NumCType<"u8">
|
|
export type u16 = NumCType<"u16">
|
|
export type u32 = NumCType<"u32">
|
|
export type u64 = NumCType<"u64">
|
|
export type u128 = NumCType<"u128">
|
|
export type i8 = NumCType<"i8">
|
|
export type i16 = NumCType<"i16">
|
|
export type i32 = NumCType<"i32">
|
|
export type i64 = NumCType<"i64">
|
|
export type i128 = NumCType<"i128">
|
|
export type f32 = NumCType<"f32">
|
|
export type f64 = NumCType<"f64">
|
|
export type usize = NumCType<"usize">
|
|
export type isize = NumCType<"isize">
|
|
|
|
-- Variable size C-style types --
|
|
export type char = NumCType<"char">
|
|
export type float = NumCType<"float">
|
|
export type double = NumCType<"double">
|
|
export type uchar = NumCType<"uchar">
|
|
export type schar = NumCType<"schar">
|
|
export type short = NumCType<"short">
|
|
export type ushort = NumCType<"ushort">
|
|
export type int = NumCType<"int">
|
|
export type uint = NumCType<"uint">
|
|
export type long = NumCType<"long">
|
|
export type ulong = NumCType<"ulong">
|
|
export type longlong = NumCType<"longlong">
|
|
export type ulonglong = NumCType<"ulonglong">
|
|
|
|
export type CTypes =
|
|
| u8
|
|
| u16
|
|
| u32
|
|
| u64
|
|
| u128
|
|
| i8
|
|
| i16
|
|
| i32
|
|
| i64
|
|
| i128
|
|
| f32
|
|
| f64
|
|
| usize
|
|
| isize
|
|
| char
|
|
| float
|
|
| double
|
|
| uchar
|
|
| schar
|
|
| short
|
|
| ushort
|
|
| int
|
|
| uint
|
|
| long
|
|
| ulong
|
|
| longlong
|
|
| ulonglong
|
|
| CArrInfo<CTypes, any>
|
|
| CPtrInfo<CTypes>
|
|
| CFuncInfo
|
|
|
|
export type Ref = {
|
|
deref: (self: Ref) -> Ref,
|
|
offset: (self: Ref, offset: number) -> Ref,
|
|
ref: (self: Ref) -> Ref,
|
|
isNull: (self: Ref) -> boolean,
|
|
}
|
|
|
|
export type Box = {
|
|
size: number,
|
|
|
|
zero: (self: Box) -> Box,
|
|
leak: (self: Box, offset: number?) -> Ref,
|
|
ref: (self: Box, offset: number?) -> Ref,
|
|
}
|
|
|
|
export type Lib = {
|
|
find: (self: Lib, sym: string) -> Ref,
|
|
}
|
|
|
|
export type Callable = {
|
|
call: (self: Callable, result: Ref, ...(Ref | Box))->();
|
|
}
|
|
|
|
local ffi = {}
|
|
|
|
ffi.u8 = (nil :: unknown) :: u8
|
|
ffi.u16 = {} :: u16
|
|
ffi.u32 = {} :: u32
|
|
ffi.u64 = {} :: u64
|
|
ffi.u128 = {} :: u128
|
|
ffi.i8 = {} :: i8
|
|
ffi.i16 = {} :: i16
|
|
ffi.i32 = {} :: i32
|
|
ffi.i64 = {} :: i64
|
|
ffi.i128 = {} :: i128
|
|
ffi.f32 = {} :: f32
|
|
ffi.f64 = {} :: f64
|
|
ffi.usize = {} :: usize
|
|
ffi.isize = {} :: isize
|
|
|
|
ffi.char = {} :: char
|
|
ffi.float = {} :: float
|
|
ffi.double = {} :: double
|
|
ffi.uchar = {} :: uchar
|
|
ffi.schar = {} :: schar
|
|
ffi.short = {} :: short
|
|
ffi.ushort = {} :: ushort
|
|
ffi.int = {} :: int
|
|
ffi.uint = {} :: uint
|
|
ffi.long = {} :: long
|
|
ffi.ulong = {} :: ulong
|
|
ffi.longlong = {} :: longlong
|
|
ffi.ulonglong = {} :: ulonglong
|
|
|
|
function ffi.nullRef(): Ref
|
|
return nil :: any
|
|
end
|
|
|
|
function ffi.box(size: number): Box
|
|
return nil :: any
|
|
end
|
|
|
|
function ffi.open(name: string): Lib
|
|
return nil :: any
|
|
end
|
|
|
|
function ffi.uninitRef(): Ref
|
|
return nil :: any
|
|
end
|
|
|
|
function ffi.isInteger<T>(val: T): boolean
|
|
return nil :: any
|
|
end
|
|
|
|
function ffi.funcInfo<T>(args: { CTypes }, ret: CTypes): CFuncInfo
|
|
return nil :: any
|
|
end
|
|
|
|
return ffi
|