mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
Chnage naming naturally (#243)
This commit is contained in:
parent
7a51bc9aa4
commit
8f248ff624
13 changed files with 24 additions and 18 deletions
|
@ -11,7 +11,7 @@ use super::{
|
||||||
use crate::{
|
use crate::{
|
||||||
data::{CallableData, ClosureData, RefData, RefFlag},
|
data::{CallableData, ClosureData, RefData, RefFlag},
|
||||||
ffi::{
|
ffi::{
|
||||||
association, bit_mask::*, libffi_helper::SIZE_OF_POINTER, FfiArg, FfiData, FfiResult,
|
association, bit_field::*, libffi_helper::SIZE_OF_POINTER, FfiArg, FfiData, FfiResult,
|
||||||
FfiSignedness, FfiSize,
|
FfiSignedness, FfiSize,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::ffi::bit_mask::*;
|
use crate::ffi::bit_field::*;
|
||||||
|
|
||||||
pub enum BoxFlag {
|
pub enum BoxFlag {
|
||||||
Leaked,
|
Leaked,
|
||||||
|
|
|
@ -10,7 +10,7 @@ use mlua::prelude::*;
|
||||||
use super::helper::method_provider;
|
use super::helper::method_provider;
|
||||||
use crate::{
|
use crate::{
|
||||||
data::{association_names::REF_INNER, RefBounds, RefData, RefFlag},
|
data::{association_names::REF_INNER, RefBounds, RefData, RefFlag},
|
||||||
ffi::{association, bit_mask::*, FfiData},
|
ffi::{association, bit_field::*, FfiData},
|
||||||
};
|
};
|
||||||
|
|
||||||
mod flag;
|
mod flag;
|
||||||
|
|
|
@ -13,6 +13,7 @@ use mlua::prelude::*;
|
||||||
use super::{GetFfiData, RefData};
|
use super::{GetFfiData, RefData};
|
||||||
use crate::ffi::{FfiArg, FfiData, FfiResult};
|
use crate::ffi::{FfiArg, FfiData, FfiResult};
|
||||||
|
|
||||||
|
// A function pointer that luau can call. it stores libffi cif for calling convention.
|
||||||
pub struct CallableData {
|
pub struct CallableData {
|
||||||
cif: *mut ffi_cif,
|
cif: *mut ffi_cif,
|
||||||
arg_info_list: Vec<FfiArg>,
|
arg_info_list: Vec<FfiArg>,
|
||||||
|
|
|
@ -17,6 +17,7 @@ use crate::ffi::{
|
||||||
FfiArg, FfiData, FfiResult,
|
FfiArg, FfiData, FfiResult,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// A closure that can be created with lua function.
|
||||||
pub struct ClosureData {
|
pub struct ClosureData {
|
||||||
lua: *const Lua,
|
lua: *const Lua,
|
||||||
closure: *mut ffi_closure,
|
closure: *mut ffi_closure,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
use crate::ffi::bit_mask::*;
|
use crate::ffi::bit_field::*;
|
||||||
|
|
||||||
pub enum RefFlag {
|
pub enum RefFlag {
|
||||||
Leaked,
|
Leaked,
|
||||||
|
|
|
@ -5,7 +5,7 @@ use mlua::prelude::*;
|
||||||
use super::helper::method_provider;
|
use super::helper::method_provider;
|
||||||
use crate::{
|
use crate::{
|
||||||
data::association_names::REF_INNER,
|
data::association_names::REF_INNER,
|
||||||
ffi::{association, bit_mask::*, FfiData},
|
ffi::{association, bit_field::*, FfiData},
|
||||||
};
|
};
|
||||||
|
|
||||||
mod bounds;
|
mod bounds;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#![allow(unused)]
|
#![allow(unused)]
|
||||||
|
|
||||||
|
// Simple bit field library for handling data flags
|
||||||
|
|
||||||
pub const U8_MASK1: u8 = 1;
|
pub const U8_MASK1: u8 = 1;
|
||||||
pub const U8_MASK2: u8 = 2;
|
pub const U8_MASK2: u8 = 2;
|
||||||
pub const U8_MASK3: u8 = 4;
|
pub const U8_MASK3: u8 = 4;
|
|
@ -3,7 +3,7 @@ use std::cell::Ref;
|
||||||
use mlua::prelude::*;
|
use mlua::prelude::*;
|
||||||
|
|
||||||
pub mod association;
|
pub mod association;
|
||||||
pub mod bit_mask;
|
pub mod bit_field;
|
||||||
mod cast;
|
mod cast;
|
||||||
pub mod libffi_helper;
|
pub mod libffi_helper;
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,10 @@ local lib = require("../utils/compile")("./tests/ffi/external_closure/lib.c")
|
||||||
local c = ffi.c
|
local c = ffi.c
|
||||||
|
|
||||||
-- Create closure
|
-- Create closure
|
||||||
local closureInfo = c.fn({ c.int, c.int }, c.int)
|
local closure = c.fn({ c.int, c.int }, c.int):closure(function(ret, a, b)
|
||||||
local closure = closureInfo:closure(function(ret, a, b)
|
|
||||||
c.int:writeData(ret, c.int:readData(a) + c.int:readData(b))
|
c.int:writeData(ret, c.int:readData(a) + c.int:readData(b))
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local callClosure = callableWrapper(lib:find("call_closure"), { closureInfo }, c.int)
|
local callClosure = callableWrapper(lib:find("call_closure"), { c.void:ptr() }, c.int)
|
||||||
local result = callClosure(closure:ref())
|
local result = callClosure(closure:ref())
|
||||||
assert(result == 72, `callClosure failed. result expected 20000, got {result}`)
|
assert(result == 72, `callClosure failed. result expected 20000, got {result}`)
|
||||||
|
|
|
@ -4,12 +4,12 @@ local lib = require("../utils/compile")("./tests/ffi/external_closure/lib.c")
|
||||||
local c = ffi.c
|
local c = ffi.c
|
||||||
|
|
||||||
-- Create closure
|
-- Create closure
|
||||||
local closureWithPointerInfo = c.fn({ c.int, c.int:ptr() }, c.int)
|
local closureWithPointer = c.fn({ c.int, c.int:ptr() }, c.int)
|
||||||
local closureWithPointer = closureWithPointerInfo:closure(function(returnRef, aRef, bRef)
|
:closure(function(returnRef, aRef, bRef)
|
||||||
c.int:writeData(returnRef, c.int:readData(aRef) + c.int:readData(bRef:deref()))
|
c.int:writeData(returnRef, c.int:readData(aRef) + c.int:readData(bRef:deref()))
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local callClosureWithPointer =
|
local callClosureWithPointer =
|
||||||
callableWrapper(lib:find("call_closure_with_pointer"), { closureWithPointerInfo }, c.int)
|
callableWrapper(lib:find("call_closure_with_pointer"), { c.void:ptr() }, c.int)
|
||||||
local result = callClosureWithPointer(closureWithPointer:ref())
|
local result = callClosureWithPointer(closureWithPointer:ref())
|
||||||
assert(result == 72, `closureWithPointer failed. result expected 20000, got {result}`)
|
assert(result == 72, `closureWithPointer failed. result expected 20000, got {result}`)
|
||||||
|
|
|
@ -3,10 +3,9 @@ local lib = require("../utils/compile")("./tests/ffi/external_closure/lib.c")
|
||||||
local c = ffi.c
|
local c = ffi.c
|
||||||
|
|
||||||
-- Create closure
|
-- Create closure
|
||||||
local helloWorldInfo = c.fn({}, c.void)
|
local helloWorld = c.fn({}, c.void):closure(function()
|
||||||
local helloWorld = helloWorldInfo:closure(function()
|
|
||||||
print("Hello world in lua closure!")
|
print("Hello world in lua closure!")
|
||||||
end)
|
end)
|
||||||
|
|
||||||
local callHelloWorld = c.fn({ helloWorldInfo }, c.void):callable(lib:find("call_hello_world"))
|
local callHelloWorld = c.fn({ c.void:ptr() }, c.void):callable(lib:find("call_hello_world"))
|
||||||
callHelloWorld(nil, helloWorld:ref())
|
callHelloWorld(nil, helloWorld:ref())
|
||||||
|
|
|
@ -563,7 +563,9 @@ export type CPtrInfo<T> = {
|
||||||
--[=[
|
--[=[
|
||||||
@class CArrInfo
|
@class CArrInfo
|
||||||
|
|
||||||
A c sized array type information.
|
A c sized array type information. It can be used for sturct field.
|
||||||
|
|
||||||
|
For function arguments, use CPtr instead.
|
||||||
]=]
|
]=]
|
||||||
export type CArrInfo<T, R> = {
|
export type CArrInfo<T, R> = {
|
||||||
--[=[
|
--[=[
|
||||||
|
@ -682,6 +684,8 @@ export type CArrInfo<T, R> = {
|
||||||
@class CFnInfo
|
@class CFnInfo
|
||||||
|
|
||||||
A C function pointer type information, with function signature.
|
A C function pointer type information, with function signature.
|
||||||
|
|
||||||
|
For struct field, array element, or function arguments, use `void:ptr()` instead.
|
||||||
]=]
|
]=]
|
||||||
export type CFnInfo = {
|
export type CFnInfo = {
|
||||||
--[=[
|
--[=[
|
||||||
|
|
Loading…
Add table
Reference in a new issue