use std::iter::FromIterator; use std::ops::{Deref, DerefMut}; use std::result::Result as StdResult; use crate::error::Result; use crate::lua::Lua; use crate::value::{FromLua, FromLuaMulti, IntoLua, IntoLuaMulti, MultiValue, Nil}; /// Result is convertible to `MultiValue` following the common Lua idiom of returning the result /// on success, or in the case of an error, returning `nil` and an error message. impl<'lua, T: IntoLua<'lua>, E: IntoLua<'lua>> IntoLuaMulti<'lua> for StdResult { #[inline] fn into_lua_multi(self, lua: &'lua Lua) -> Result> { let mut result = MultiValue::new_or_pooled(lua); match self { Ok(v) => result.push_front(v.into_lua(lua)?), Err(e) => { result.push_front(e.into_lua(lua)?); result.push_front(Nil); } } Ok(result) } } impl<'lua, T: IntoLua<'lua>> IntoLuaMulti<'lua> for T { #[inline] fn into_lua_multi(self, lua: &'lua Lua) -> Result> { let mut v = MultiValue::new_or_pooled(lua); v.push_front(self.into_lua(lua)?); Ok(v) } #[inline(always)] fn lua_multi_len(&self) -> Option { Some(1) } } impl<'lua, T: FromLua<'lua>> FromLuaMulti<'lua> for T { #[inline] fn from_lua_multi(mut values: MultiValue<'lua>, lua: &'lua Lua) -> Result { let res = T::from_lua(values.pop_front().unwrap_or(Nil), lua); MultiValue::return_to_pool(values, lua); res } #[inline] fn from_lua_multi_args( mut values: MultiValue<'lua>, i: usize, to: Option<&str>, lua: &'lua Lua, ) -> Result { let res = T::from_lua_arg(values.pop_front().unwrap_or(Nil), i, to, lua); MultiValue::return_to_pool(values, lua); res } } impl<'lua> IntoLuaMulti<'lua> for MultiValue<'lua> { #[inline] fn into_lua_multi(self, _: &'lua Lua) -> Result> { Ok(self) } #[inline(always)] fn lua_multi_len(&self) -> Option { Some(self.len()) } } impl<'lua> FromLuaMulti<'lua> for MultiValue<'lua> { #[inline] fn from_lua_multi(values: MultiValue<'lua>, _: &'lua Lua) -> Result { Ok(values) } } /// Wraps a variable number of `T`s. /// /// Can be used to work with variadic functions more easily. Using this type as the last argument of /// a Rust callback will accept any number of arguments from Lua and convert them to the type `T` /// using [`FromLua`]. `Variadic` can also be returned from a callback, returning a variable /// number of values to Lua. /// /// The [`MultiValue`] type is equivalent to `Variadic`. /// /// # Examples /// /// ``` /// # use mlua::{Lua, Result, Variadic}; /// # fn main() -> Result<()> { /// # let lua = Lua::new(); /// let add = lua.create_function(|_, vals: Variadic| -> Result { /// Ok(vals.iter().sum()) /// })?; /// lua.globals().set("add", add)?; /// assert_eq!(lua.load("add(3, 2, 5)").eval::()?, 10.0); /// # Ok(()) /// # } /// ``` /// /// [`FromLua`]: crate::FromLua /// [`MultiValue`]: crate::MultiValue #[derive(Debug, Clone)] pub struct Variadic(Vec); impl Variadic { /// Creates an empty `Variadic` wrapper containing no values. pub const fn new() -> Variadic { Variadic(Vec::new()) } } impl Default for Variadic { fn default() -> Variadic { Variadic::new() } } impl FromIterator for Variadic { fn from_iter>(iter: I) -> Self { Variadic(Vec::from_iter(iter)) } } impl IntoIterator for Variadic { type Item = T; type IntoIter = as IntoIterator>::IntoIter; fn into_iter(self) -> Self::IntoIter { self.0.into_iter() } } impl Deref for Variadic { type Target = Vec; fn deref(&self) -> &Self::Target { &self.0 } } impl DerefMut for Variadic { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } impl<'lua, T: IntoLua<'lua>> IntoLuaMulti<'lua> for Variadic { #[inline] fn into_lua_multi(self, lua: &'lua Lua) -> Result> { let mut values = MultiValue::new_or_pooled(lua); values.refill(self.0.into_iter().map(|e| e.into_lua(lua)))?; Ok(values) } #[inline(always)] fn lua_multi_len(&self) -> Option { Some(self.0.len()) } } impl<'lua, T: FromLua<'lua>> FromLuaMulti<'lua> for Variadic { #[inline] fn from_lua_multi(mut values: MultiValue<'lua>, lua: &'lua Lua) -> Result { let res = values .drain_all() .map(|e| T::from_lua(e, lua)) .collect::>>() .map(Variadic); MultiValue::return_to_pool(values, lua); res } } macro_rules! impl_tuple { () => ( impl<'lua> IntoLuaMulti<'lua> for () { #[inline] fn into_lua_multi(self, lua: &'lua Lua) -> Result> { Ok(MultiValue::new_or_pooled(lua)) } #[inline(always)] fn lua_multi_len(&self) -> Option { Some(0) } } impl<'lua> FromLuaMulti<'lua> for () { #[inline] fn from_lua_multi(values: MultiValue<'lua>, lua: &'lua Lua) -> Result { MultiValue::return_to_pool(values, lua); Ok(()) } } ); ($last:ident $($name:ident)*) => ( impl<'lua, $($name,)* $last> IntoLuaMulti<'lua> for ($($name,)* $last,) where $($name: IntoLua<'lua>,)* $last: IntoLuaMulti<'lua> { #[allow(unused_mut)] #[allow(non_snake_case)] #[inline] fn into_lua_multi(self, lua: &'lua Lua) -> Result> { let ($($name,)* $last,) = self; let mut results = $last.into_lua_multi(lua)?; push_reverse!(results, $($name.into_lua(lua)?,)*); Ok(results) } #[inline(always)] fn lua_multi_len(&self) -> Option { Some(count!($last $($name)*)) } } impl<'lua, $($name,)* $last> FromLuaMulti<'lua> for ($($name,)* $last,) where $($name: FromLua<'lua>,)* $last: FromLuaMulti<'lua> { #[allow(unused_mut)] #[allow(non_snake_case)] #[inline] fn from_lua_multi(mut values: MultiValue<'lua>, lua: &'lua Lua) -> Result { $(let $name = FromLua::from_lua(values.pop_front().unwrap_or(Nil), lua)?;)* let $last = FromLuaMulti::from_lua_multi(values, lua)?; Ok(($($name,)* $last,)) } #[allow(unused_mut)] #[allow(non_snake_case)] #[inline] fn from_lua_multi_args(mut values: MultiValue<'lua>, mut i: usize, to: Option<&str>, lua: &'lua Lua) -> Result { $( let $name = FromLua::from_lua_arg(values.pop_front().unwrap_or(Nil), i, to, lua)?; i += 1; )* let $last = FromLuaMulti::from_lua_multi_args(values, i, to, lua)?; Ok(($($name,)* $last,)) } } ); } macro_rules! push_reverse { ($multi_value:expr, $first:expr, $($rest:expr,)*) => ( push_reverse!($multi_value, $($rest,)*); $multi_value.push_front($first); ); ($multi_value:expr, $first:expr) => ( $multi_value.push_front($first); ); ($multi_value:expr,) => (); } macro_rules! count { ($a:ident) => { 1 }; ($a:ident $($b:ident)+) => { 1 + count!($($b)+) } } impl_tuple!(); impl_tuple!(A); impl_tuple!(A B); impl_tuple!(A B C); impl_tuple!(A B C D); impl_tuple!(A B C D E); impl_tuple!(A B C D E F); impl_tuple!(A B C D E F G); impl_tuple!(A B C D E F G H); impl_tuple!(A B C D E F G H I); impl_tuple!(A B C D E F G H I J); impl_tuple!(A B C D E F G H I J K); impl_tuple!(A B C D E F G H I J K L); impl_tuple!(A B C D E F G H I J K L M); impl_tuple!(A B C D E F G H I J K L M N); impl_tuple!(A B C D E F G H I J K L M N O); impl_tuple!(A B C D E F G H I J K L M N O P);