mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
More pretty-prints (#243)
This commit is contained in:
parent
c3f255db7a
commit
7a7ccf7d85
6 changed files with 42 additions and 8 deletions
|
@ -50,7 +50,8 @@ impl BoxData {
|
||||||
if self.size() > FFI_BOX_PRINT_MAX_LENGTH * 2 {
|
if self.size() > FFI_BOX_PRINT_MAX_LENGTH * 2 {
|
||||||
return String::from("length limit exceed");
|
return String::from("length limit exceed");
|
||||||
}
|
}
|
||||||
let mut buff: String = String::with_capacity(self.size() * 2);
|
let mut buff: String = String::with_capacity(self.size() * 2 + 2);
|
||||||
|
buff.push_str("0x");
|
||||||
for value in self.data.iter() {
|
for value in self.data.iter() {
|
||||||
buff.push_str(format!("{:x}", value.to_be()).as_str());
|
buff.push_str(format!("{:x}", value.to_be()).as_str());
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,6 +124,11 @@ impl CallableData {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stringify for pretty-print, with hex format address
|
||||||
|
pub fn stringify(&self) -> String {
|
||||||
|
format!("0x{:x}", self.code.as_ptr() as usize)
|
||||||
|
}
|
||||||
|
|
||||||
pub unsafe fn call(&self, result: LuaValue, args: LuaMultiValue) -> LuaResult<()> {
|
pub unsafe fn call(&self, result: LuaValue, args: LuaMultiValue) -> LuaResult<()> {
|
||||||
let arg_len = self.arg_info_list.len();
|
let arg_len = self.arg_info_list.len();
|
||||||
// Optimization: use sized caller when possible
|
// Optimization: use sized caller when possible
|
||||||
|
@ -178,5 +183,8 @@ impl LuaUserData for CallableData {
|
||||||
unsafe { this.call(result, args) }
|
unsafe { this.call(result, args) }
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
methods.add_meta_method(LuaMetaMethod::ToString, |_lua, this, ()| {
|
||||||
|
Ok(this.stringify())
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,6 +118,11 @@ impl ClosureData {
|
||||||
|
|
||||||
Ok(closure_data)
|
Ok(closure_data)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stringify for pretty-print, with hex format address
|
||||||
|
pub fn stringify(&self) -> String {
|
||||||
|
format!("0x{:x}", unsafe { self.get_inner_pointer() } as usize)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl FfiData for ClosureData {
|
impl FfiData for ClosureData {
|
||||||
|
@ -148,5 +153,8 @@ impl LuaUserData for ClosureData {
|
||||||
association::set(lua, REF_INNER, &ref_data, &this)?;
|
association::set(lua, REF_INNER, &ref_data, &this)?;
|
||||||
Ok(ref_data)
|
Ok(ref_data)
|
||||||
});
|
});
|
||||||
|
methods.add_meta_method(LuaMetaMethod::ToString, |_lua, this, ()| {
|
||||||
|
Ok(this.stringify())
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,13 +13,19 @@ const LIB_REF_FLAGS: u8 = RefFlag::Offsetable.value()
|
||||||
| RefFlag::Function.value();
|
| RefFlag::Function.value();
|
||||||
|
|
||||||
// Runtime dynamic loaded libraries
|
// Runtime dynamic loaded libraries
|
||||||
pub struct LibData(Library);
|
pub struct LibData {
|
||||||
|
name: String,
|
||||||
|
lib: Library,
|
||||||
|
}
|
||||||
|
|
||||||
impl LibData {
|
impl LibData {
|
||||||
// Open library then return library handle
|
// Open library then return library handle
|
||||||
pub fn new(libname: String) -> LuaResult<Self> {
|
pub fn new(libname: String) -> LuaResult<Self> {
|
||||||
match Library::open(libname) {
|
match Library::open(&libname) {
|
||||||
Ok(t) => Ok(Self(t)),
|
Ok(t) => Ok(Self {
|
||||||
|
lib: t,
|
||||||
|
name: libname.clone(),
|
||||||
|
}),
|
||||||
Err(err) => Err(err.into_lua_err()),
|
Err(err) => Err(err.into_lua_err()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -32,7 +38,7 @@ impl LibData {
|
||||||
) -> LuaResult<LuaAnyUserData<'lua>> {
|
) -> LuaResult<LuaAnyUserData<'lua>> {
|
||||||
let lib = this.borrow::<LibData>()?;
|
let lib = this.borrow::<LibData>()?;
|
||||||
let sym = unsafe {
|
let sym = unsafe {
|
||||||
lib.0
|
lib.lib
|
||||||
.symbol::<*const ()>(name.as_str())
|
.symbol::<*const ()>(name.as_str())
|
||||||
.map_err(LuaError::external)?
|
.map_err(LuaError::external)?
|
||||||
};
|
};
|
||||||
|
@ -44,6 +50,10 @@ impl LibData {
|
||||||
|
|
||||||
Ok(ffi_ref)
|
Ok(ffi_ref)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn stringify(&self) -> String {
|
||||||
|
self.name.clone()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl LuaUserData for LibData {
|
impl LuaUserData for LibData {
|
||||||
|
@ -51,5 +61,8 @@ impl LuaUserData for LibData {
|
||||||
methods.add_function("find", |lua, (this, name): (LuaAnyUserData, String)| {
|
methods.add_function("find", |lua, (this, name): (LuaAnyUserData, String)| {
|
||||||
LibData::find_symbol(lua, this, name)
|
LibData::find_symbol(lua, this, name)
|
||||||
});
|
});
|
||||||
|
methods.add_meta_method(LuaMetaMethod::ToString, |_lua, this, ()| {
|
||||||
|
Ok(this.stringify())
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,7 +117,7 @@ impl RefData {
|
||||||
|
|
||||||
// Stringify for pretty-print, with hex format address
|
// Stringify for pretty-print, with hex format address
|
||||||
pub fn stringify(&self) -> String {
|
pub fn stringify(&self) -> String {
|
||||||
format!("{:x}", **self.ptr as usize)
|
format!("0x{:x}", **self.ptr as usize)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
# tests/ffi
|
<!-- markdownlint-disable MD036 -->
|
||||||
|
|
||||||
|
# `tests/ffi`
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
|
@ -25,7 +27,9 @@ gcc for library compiling (for external-\*)
|
||||||
**Pretty Print**
|
**Pretty Print**
|
||||||
|
|
||||||
- [x] [arr](./pretty_print/arr.luau)
|
- [x] [arr](./pretty_print/arr.luau)
|
||||||
- [ ] [box](./pretty_print/box.luau)
|
- [ ] [box](./pretty_print/box.luau) Need assertion
|
||||||
|
- [ ] [ref](./pretty_print/ref.luau) Need assertion
|
||||||
|
- [ ] [lib](./pretty_print/lib.luau) Need assertion
|
||||||
- [x] [fn](./pretty_print/fn.luau)
|
- [x] [fn](./pretty_print/fn.luau)
|
||||||
- [x] [ptr](./pretty_print/ptr.luau)
|
- [x] [ptr](./pretty_print/ptr.luau)
|
||||||
- [x] [struct](./pretty_print/struct.luau)
|
- [x] [struct](./pretty_print/struct.luau)
|
||||||
|
|
Loading…
Add table
Reference in a new issue