@@ -6,25 +6,40 @@ use std::result::Result as StdResult;
6
6
/// Error type returned by rlua methods.
7
7
#[ derive( Debug , Clone ) ]
8
8
pub enum Error {
9
- /// Lua syntax error, aka `LUA_ERRSYNTAX` that is NOT an incomplete statement.
10
- SyntaxError ( String ) ,
11
- /// Lua syntax error that IS an incomplete statement. Useful for implementing a REPL.
12
- IncompleteStatement ( String ) ,
9
+ /// Syntax error while parsing Lua source code.
10
+ SyntaxError {
11
+ /// The error message as returned by Lua.
12
+ message : String ,
13
+ /// `true` if the error can likely be fixed by appending more input to the source code.
14
+ ///
15
+ /// This is useful for implementing REPLs as they can query the user for more input if this
16
+ /// is set.
17
+ incomplete_input : bool ,
18
+ } ,
13
19
/// Lua runtime error, aka `LUA_ERRRUN`.
14
20
///
15
21
/// The Lua VM returns this error when a builtin operation is performed on incompatible types.
16
22
/// Among other things, this includes invoking operators on wrong types (such as calling or
17
23
/// indexing a `nil` value).
18
24
RuntimeError ( String ) ,
19
- /// Lua error from inside an error handler, aka `LUA_ERRERR`.
20
- ///
21
- /// To prevent an infinite recursion when invoking an error handler, this error will be returned
22
- /// instead of invoking the error handler.
23
- ErrorError ( String ) ,
24
25
/// A Rust value could not be converted to a Lua value.
25
- ToLuaConversionError ( String ) ,
26
+ ToLuaConversionError {
27
+ /// Name of the Rust type that could not be converted.
28
+ from : & ' static str ,
29
+ /// Name of the Lua type that could not be created.
30
+ to : & ' static str ,
31
+ /// A message indicating why the conversion failed in more detail.
32
+ message : Option < String > ,
33
+ } ,
26
34
/// A Lua value could not be converted to the expected Rust type.
27
- FromLuaConversionError ( String ) ,
35
+ FromLuaConversionError {
36
+ /// Name of the Lua type that could not be converted.
37
+ from : & ' static str ,
38
+ /// Name of the Rust type that could not be created.
39
+ to : & ' static str ,
40
+ /// A string containing more detailed error information.
41
+ message : Option < String > ,
42
+ } ,
28
43
/// [`Thread::resume`] was called on an inactive coroutine.
29
44
///
30
45
/// A coroutine is inactive if its main function has returned or if an error has occured inside
@@ -64,9 +79,12 @@ pub enum Error {
64
79
/// [`UserData`]: trait.UserData.html
65
80
UserDataBorrowMutError ,
66
81
/// A Rust callback returned `Err`, raising the contained `Error` as a Lua error.
67
- ///
68
- /// The first field is the Lua traceback, the second field holds the original error.
69
- CallbackError ( String , Arc < Error > ) ,
82
+ CallbackError {
83
+ /// Lua call stack backtrace.
84
+ traceback : String ,
85
+ /// Original error returned by the Rust code.
86
+ cause : Arc < Error > ,
87
+ } ,
70
88
/// A custom error.
71
89
///
72
90
/// This can be used for returning user-defined errors from callbacks.
@@ -83,23 +101,27 @@ pub type Result<T> = StdResult<T, Error>;
83
101
impl fmt:: Display for Error {
84
102
fn fmt ( & self , fmt : & mut fmt:: Formatter ) -> fmt:: Result {
85
103
match * self {
86
- Error :: SyntaxError ( ref msg ) => write ! ( fmt, "Lua syntax error: {}" , msg ) ,
87
- Error :: IncompleteStatement ( ref msg) => {
88
- write ! ( fmt , "Lua syntax error (incomplete statement): {}" , msg )
89
- }
90
- Error :: RuntimeError ( ref msg ) => write ! ( fmt , "Lua runtime error: {}" , msg ) ,
91
- Error :: ErrorError ( ref msg ) => write ! ( fmt , "Lua error in error handler: {}" , msg ) ,
92
- Error :: ToLuaConversionError ( ref msg ) => {
93
- write ! ( fmt , "Error converting rust type to lua: {}" , msg )
104
+ Error :: SyntaxError { ref message , .. } => write ! ( fmt, "syntax error: {}" , message ) ,
105
+ Error :: RuntimeError ( ref msg) => write ! ( fmt , "runtime error: {}" , msg ) ,
106
+ Error :: ToLuaConversionError { from , to , ref message } => {
107
+ write ! ( fmt , "error converting {} to Lua {}" , from , to ) ? ;
108
+ match * message {
109
+ None => Ok ( ( ) ) ,
110
+ Some ( ref message ) => write ! ( fmt , " ({})" , message ) ,
111
+ }
94
112
}
95
- Error :: FromLuaConversionError ( ref msg) => {
96
- write ! ( fmt, "Error converting lua type to rust: {}" , msg)
113
+ Error :: FromLuaConversionError { from, to, ref message } => {
114
+ write ! ( fmt, "error converting Lua {} to {}" , from, to) ?;
115
+ match * message {
116
+ None => Ok ( ( ) ) ,
117
+ Some ( ref message) => write ! ( fmt, " ({})" , message) ,
118
+ }
97
119
}
98
- Error :: CoroutineInactive => write ! ( fmt, "Cannot resume inactive coroutine" ) ,
99
- Error :: UserDataTypeMismatch => write ! ( fmt, "Userdata not expected type" ) ,
100
- Error :: UserDataBorrowError => write ! ( fmt, "Userdata already mutably borrowed" ) ,
101
- Error :: UserDataBorrowMutError => write ! ( fmt, "Userdata already borrowed" ) ,
102
- Error :: CallbackError ( ref msg , _ ) => write ! ( fmt, "Error during lua callback: {}" , msg ) ,
120
+ Error :: CoroutineInactive => write ! ( fmt, "cannot resume inactive coroutine" ) ,
121
+ Error :: UserDataTypeMismatch => write ! ( fmt, "userdata is not expected type" ) ,
122
+ Error :: UserDataBorrowError => write ! ( fmt, "userdata already mutably borrowed" ) ,
123
+ Error :: UserDataBorrowMutError => write ! ( fmt, "userdata already borrowed" ) ,
124
+ Error :: CallbackError { ref cause , .. } => write ! ( fmt, "{}" , cause ) ,
103
125
Error :: ExternalError ( ref err) => err. fmt ( fmt) ,
104
126
}
105
127
}
@@ -108,24 +130,22 @@ impl fmt::Display for Error {
108
130
impl StdError for Error {
109
131
fn description ( & self ) -> & str {
110
132
match * self {
111
- Error :: SyntaxError ( _) => "lua syntax error" ,
112
- Error :: IncompleteStatement ( _) => "lua incomplete statement" ,
113
- Error :: RuntimeError ( _) => "lua runtime error" ,
114
- Error :: ErrorError ( _) => "lua error handling error" ,
115
- Error :: ToLuaConversionError ( _) => "conversion error to lua" ,
116
- Error :: FromLuaConversionError ( _) => "conversion error from lua" ,
117
- Error :: CoroutineInactive => "lua coroutine inactive" ,
118
- Error :: UserDataTypeMismatch => "lua userdata type mismatch" ,
119
- Error :: UserDataBorrowError => "lua userdata already mutably borrowed" ,
120
- Error :: UserDataBorrowMutError => "lua userdata already borrowed" ,
121
- Error :: CallbackError ( _, _) => "lua callback error" ,
133
+ Error :: SyntaxError { .. } => "syntax error" ,
134
+ Error :: RuntimeError ( _) => "runtime error" ,
135
+ Error :: ToLuaConversionError { .. } => "conversion error to lua" ,
136
+ Error :: FromLuaConversionError { .. } => "conversion error from lua" ,
137
+ Error :: CoroutineInactive => "attempt to resume inactive coroutine" ,
138
+ Error :: UserDataTypeMismatch => "userdata type mismatch" ,
139
+ Error :: UserDataBorrowError => "userdata already mutably borrowed" ,
140
+ Error :: UserDataBorrowMutError => "userdata already borrowed" ,
141
+ Error :: CallbackError { ref cause, .. } => cause. description ( ) ,
122
142
Error :: ExternalError ( ref err) => err. description ( ) ,
123
143
}
124
144
}
125
145
126
146
fn cause ( & self ) -> Option < & StdError > {
127
147
match * self {
128
- Error :: CallbackError ( _ , ref cause) => Some ( cause. as_ref ( ) ) ,
148
+ Error :: CallbackError { ref cause, .. } => Some ( cause. as_ref ( ) ) ,
129
149
Error :: ExternalError ( ref err) => err. cause ( ) ,
130
150
_ => None ,
131
151
}
0 commit comments