mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
230 lines
5.3 KiB
Text
230 lines
5.3 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
|
|
ptr: (self: CTypeInfo<T, R>) -> CPtrInfo<CTypeInfo<T, R>>,
|
|
arr: (self: CTypeInfo<T, R>, len: number) -> CArrInfo<CTypeInfo<T, R>, R>,
|
|
|
|
-- realize
|
|
box: (self: CTypeInfo<T, R>, val: R) -> Box,
|
|
readData: (self: CTypeInfo<T, R>, target: (Ref|Box), offset: number?) -> R,
|
|
writeData: (self: CTypeInfo<T, R>, target: (Ref|Box), value: R, offset: number?) -> (),
|
|
stringifyData: (self: CTypeInfo<T, R>, target: (Ref|Box), offset: number?) -> string,
|
|
|
|
-- 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
|
|
arr: (self: CPtrInfo<T>, len: number) -> any,
|
|
ptr: (self: CPtrInfo<T>) -> any,
|
|
|
|
readRef: (self: CPtrInfo<T>, target: (Ref|Box), offset: number?) -> Ref,
|
|
writeRef: (self: CPtrInfo<T>, target: (Ref|Box), value: (Ref|Box), offset: number?) -> (),
|
|
}
|
|
|
|
export type CArrInfo<T, R> = {
|
|
size: number,
|
|
length: number,
|
|
inner: T,
|
|
|
|
-- subtype
|
|
ptr: (self: CArrInfo<T, R>) -> CPtrInfo<T>,
|
|
|
|
-- realize
|
|
box: (self: CArrInfo<T, R>, table: { T }) -> Box,
|
|
readData: (self: CArrInfo<T, R>, target: (Ref|Box), offset: number?) -> { T },
|
|
writeData: (self: CArrInfo<T, R>, target: (Ref|Box), value: { T }, offset: number?) -> (),
|
|
copyData: (self: CArrInfo<T, R>, dst: (Ref|Box), src: (Ref|Box), dst_offset: number?, src_offset: number?) -> (),
|
|
|
|
offset: (self: CArrInfo<T, R>, offset: number) -> number,
|
|
}
|
|
|
|
export type CFnInfo = {
|
|
callable: (self: CFnInfo, functionRef: Ref) -> Callable,
|
|
closure: (self: CFnInfo, (ret: Ref, ...Ref)->()) -> Closure,
|
|
}
|
|
|
|
export type CStructInfo = {
|
|
arr: (self: CStructInfo, len: number) -> CArrInfo<CStructInfo, {any}>,
|
|
ptr: (self: CStructInfo) -> CPtrInfo<CStructInfo>,
|
|
|
|
box: (self: CStructInfo, table: { any }) -> Box,
|
|
readData: (self: CStructInfo, target: (Ref|Box), offset: number?) -> { any },
|
|
writeData: (self: CStructInfo, target: (Ref|Box), table: { any }, offset: number?) -> (),
|
|
}
|
|
|
|
export type CVoidInfo = {
|
|
ptr: (self: CVoidInfo) -> CPtrInfo<CVoidInfo>,
|
|
}
|
|
|
|
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>
|
|
| CFnInfo
|
|
| CStructInfo
|
|
| CVoidInfo
|
|
|
|
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 AppliedCallable = ()->()
|
|
|
|
export type Callable = (ret: (Ref|Box)?, ...Ref)->() & {
|
|
-- apply: (self: Callable, args: Args)->AppliedCallable,
|
|
}
|
|
|
|
export type Closure = {
|
|
ref: (self: Closure)->Ref,
|
|
}
|
|
|
|
local c = {}
|
|
|
|
c.u8 = {} :: u8
|
|
c.u16 = {} :: u16
|
|
c.u32 = {} :: u32
|
|
c.u64 = {} :: u64
|
|
c.u128 = {} :: u128
|
|
c.i8 = {} :: i8
|
|
c.i16 = {} :: i16
|
|
c.i32 = {} :: i32
|
|
c.i64 = {} :: i64
|
|
c.i128 = {} :: i128
|
|
c.f32 = {} :: f32
|
|
c.f64 = {} :: f64
|
|
c.usize = {} :: usize
|
|
c.isize = {} :: isize
|
|
|
|
c.char = {} :: char
|
|
c.float = {} :: float
|
|
c.double = {} :: double
|
|
c.uchar = {} :: uchar
|
|
c.schar = {} :: schar
|
|
c.short = {} :: short
|
|
c.ushort = {} :: ushort
|
|
c.int = {} :: int
|
|
c.uint = {} :: uint
|
|
c.long = {} :: long
|
|
c.ulong = {} :: ulong
|
|
c.longlong = {} :: longlong
|
|
c.ulonglong = {} :: ulonglong
|
|
|
|
c.void = {} :: CVoidInfo
|
|
|
|
function c.fn(args: { CTypes }, ret: CTypes): CFnInfo
|
|
return nil :: any
|
|
end
|
|
|
|
function c.struct(inner: { CTypes }): CStructInfo
|
|
return nil :: any
|
|
end
|
|
|
|
local ffi = {}
|
|
|
|
ffi.c = c
|
|
|
|
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
|
|
|
|
|
|
return ffi
|