lune/crates/lune-std-ffi/todo.md
2024-10-13 04:20:29 +00:00

99 lines
1.5 KiB
Markdown

- last thing to do
- [ ] Add tests
- [ ] Add docs
- [ ] Typing
pragma pack?
# Raw
- [ ] Raw:toRef()
- [ ] Raw:toBox()
- [ ] Raw:intoBox()
- [ ] Raw:intoRef()
# Box
- [x] ffi.box(size)
- [x] .size
- [x] :zero()
- [x] :ref(offset?=0) => ref
- [x] tostring
- [~] :copy(box,size?=-1,offset?=0)
- working on it
# Ref (Unsafe)
- [ ] high, low Boundaries
- [ ] iter
- [x] ref:deref() -> ref
- [x] ref:offset(bytes) -> ref
- [x] ref:ref() -> ref
~~- [ ] ref:fromRef(size,offset?=0) ?? what is this~~
~~- [ ] ref:fromBox(size,offset?=0) ?? what is this~~
# Struct
- [x] :offset(index)
- [x] :ptr()
- [x] .inner[n]
- [!] .size
- [ ] #
- [x] tostring
size, offset is strange. maybe related to cif state.
# Type
- [ ] :toBox(luavalue)
Very stupid idea.
from(box|ref|raw, offset) is better idea i think.
- [ ] :fromBox(box,offset?=0)
- [ ] :intoBox(luavalue,box,offset?=0)
- [ ] :fromRef(ref,offset?=0)
- [ ] :intoRef(luavalue,ref,offset?=0)
- [ ] :fromRaw(raw,offset?=0)
- [ ] :castBox(box,type) TODO
- [ ]
- [ ] :sum
- [ ] :mul
- [ ] :sub
## subtype
- [x] :ptr() -> Ptr
- [~] :arr(len) -> Arr
- [x] .size
# Ptr
- [x] .inner
- [x] .size
- [x] :ptr()
- [~] :arr()
## Arr
## Void
`ffi.void`
Zero sized type.
## Fn
Prototype type of some function. converts lua function into native function pointer or native function pointer into lua function.
`ffi.fn({ type }, type) -> fn`
:toLua( ref ) -> luafunction
:toBox( luafunction ) -> ref
> TODO: rust, and another ABI support