xref: /freebsd/contrib/lutok/exceptions.cpp (revision c697fb7f7cc9bedc5beee44d35b771c4e87b335a)
1*c697fb7fSBrooks Davis // Copyright 2011 Google Inc.
2*c697fb7fSBrooks Davis // All rights reserved.
3*c697fb7fSBrooks Davis //
4*c697fb7fSBrooks Davis // Redistribution and use in source and binary forms, with or without
5*c697fb7fSBrooks Davis // modification, are permitted provided that the following conditions are
6*c697fb7fSBrooks Davis // met:
7*c697fb7fSBrooks Davis //
8*c697fb7fSBrooks Davis // * Redistributions of source code must retain the above copyright
9*c697fb7fSBrooks Davis //   notice, this list of conditions and the following disclaimer.
10*c697fb7fSBrooks Davis // * Redistributions in binary form must reproduce the above copyright
11*c697fb7fSBrooks Davis //   notice, this list of conditions and the following disclaimer in the
12*c697fb7fSBrooks Davis //   documentation and/or other materials provided with the distribution.
13*c697fb7fSBrooks Davis // * Neither the name of Google Inc. nor the names of its contributors
14*c697fb7fSBrooks Davis //   may be used to endorse or promote products derived from this software
15*c697fb7fSBrooks Davis //   without specific prior written permission.
16*c697fb7fSBrooks Davis //
17*c697fb7fSBrooks Davis // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*c697fb7fSBrooks Davis // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*c697fb7fSBrooks Davis // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*c697fb7fSBrooks Davis // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*c697fb7fSBrooks Davis // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*c697fb7fSBrooks Davis // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*c697fb7fSBrooks Davis // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*c697fb7fSBrooks Davis // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*c697fb7fSBrooks Davis // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*c697fb7fSBrooks Davis // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*c697fb7fSBrooks Davis // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*c697fb7fSBrooks Davis 
29*c697fb7fSBrooks Davis #include <cassert>
30*c697fb7fSBrooks Davis 
31*c697fb7fSBrooks Davis #include <lua.hpp>
32*c697fb7fSBrooks Davis 
33*c697fb7fSBrooks Davis #include "c_gate.hpp"
34*c697fb7fSBrooks Davis #include "exceptions.hpp"
35*c697fb7fSBrooks Davis #include "state.ipp"
36*c697fb7fSBrooks Davis 
37*c697fb7fSBrooks Davis 
38*c697fb7fSBrooks Davis /// Constructs a new error with a plain-text message.
39*c697fb7fSBrooks Davis ///
40*c697fb7fSBrooks Davis /// \param message The plain-text error message.
error(const std::string & message)41*c697fb7fSBrooks Davis lutok::error::error(const std::string& message) :
42*c697fb7fSBrooks Davis     std::runtime_error(message)
43*c697fb7fSBrooks Davis {
44*c697fb7fSBrooks Davis }
45*c697fb7fSBrooks Davis 
46*c697fb7fSBrooks Davis 
47*c697fb7fSBrooks Davis /// Destructor for the error.
~error(void)48*c697fb7fSBrooks Davis lutok::error::~error(void) throw()
49*c697fb7fSBrooks Davis {
50*c697fb7fSBrooks Davis }
51*c697fb7fSBrooks Davis 
52*c697fb7fSBrooks Davis 
53*c697fb7fSBrooks Davis /// Constructs a new error.
54*c697fb7fSBrooks Davis ///
55*c697fb7fSBrooks Davis /// \param api_function_ The name of the API function that caused the error.
56*c697fb7fSBrooks Davis /// \param message The plain-text error message provided by Lua.
api_error(const std::string & api_function_,const std::string & message)57*c697fb7fSBrooks Davis lutok::api_error::api_error(const std::string& api_function_,
58*c697fb7fSBrooks Davis                             const std::string& message) :
59*c697fb7fSBrooks Davis     error(message),
60*c697fb7fSBrooks Davis     _api_function(api_function_)
61*c697fb7fSBrooks Davis {
62*c697fb7fSBrooks Davis }
63*c697fb7fSBrooks Davis 
64*c697fb7fSBrooks Davis 
65*c697fb7fSBrooks Davis /// Destructor for the error.
~api_error(void)66*c697fb7fSBrooks Davis lutok::api_error::~api_error(void) throw()
67*c697fb7fSBrooks Davis {
68*c697fb7fSBrooks Davis }
69*c697fb7fSBrooks Davis 
70*c697fb7fSBrooks Davis 
71*c697fb7fSBrooks Davis /// Constructs a new api_error with the message on the top of the Lua stack.
72*c697fb7fSBrooks Davis ///
73*c697fb7fSBrooks Davis /// \pre There is an error message on the top of the stack.
74*c697fb7fSBrooks Davis /// \post The error message is popped from the stack.
75*c697fb7fSBrooks Davis ///
76*c697fb7fSBrooks Davis /// \param state_ The Lua state.
77*c697fb7fSBrooks Davis /// \param api_function_ The name of the Lua API function that caused the error.
78*c697fb7fSBrooks Davis ///
79*c697fb7fSBrooks Davis /// \return A new api_error with the popped message.
80*c697fb7fSBrooks Davis lutok::api_error
from_stack(state & state_,const std::string & api_function_)81*c697fb7fSBrooks Davis lutok::api_error::from_stack(state& state_, const std::string& api_function_)
82*c697fb7fSBrooks Davis {
83*c697fb7fSBrooks Davis     lua_State* raw_state = lutok::state_c_gate(state_).c_state();
84*c697fb7fSBrooks Davis 
85*c697fb7fSBrooks Davis     assert(lua_isstring(raw_state, -1));
86*c697fb7fSBrooks Davis     const std::string message = lua_tostring(raw_state, -1);
87*c697fb7fSBrooks Davis     lua_pop(raw_state, 1);
88*c697fb7fSBrooks Davis     return lutok::api_error(api_function_, message);
89*c697fb7fSBrooks Davis }
90*c697fb7fSBrooks Davis 
91*c697fb7fSBrooks Davis 
92*c697fb7fSBrooks Davis /// Gets the name of the Lua API function that caused this error.
93*c697fb7fSBrooks Davis ///
94*c697fb7fSBrooks Davis /// \return The name of the function.
95*c697fb7fSBrooks Davis const std::string&
api_function(void) const96*c697fb7fSBrooks Davis lutok::api_error::api_function(void) const
97*c697fb7fSBrooks Davis {
98*c697fb7fSBrooks Davis     return _api_function;
99*c697fb7fSBrooks Davis }
100*c697fb7fSBrooks Davis 
101*c697fb7fSBrooks Davis 
102*c697fb7fSBrooks Davis /// Constructs a new error.
103*c697fb7fSBrooks Davis ///
104*c697fb7fSBrooks Davis /// \param filename_ The file that count not be found.
file_not_found_error(const std::string & filename_)105*c697fb7fSBrooks Davis lutok::file_not_found_error::file_not_found_error(
106*c697fb7fSBrooks Davis     const std::string& filename_) :
107*c697fb7fSBrooks Davis     error("File '" + filename_ + "' not found"),
108*c697fb7fSBrooks Davis     _filename(filename_)
109*c697fb7fSBrooks Davis {
110*c697fb7fSBrooks Davis }
111*c697fb7fSBrooks Davis 
112*c697fb7fSBrooks Davis 
113*c697fb7fSBrooks Davis /// Destructor for the error.
~file_not_found_error(void)114*c697fb7fSBrooks Davis lutok::file_not_found_error::~file_not_found_error(void) throw()
115*c697fb7fSBrooks Davis {
116*c697fb7fSBrooks Davis }
117*c697fb7fSBrooks Davis 
118*c697fb7fSBrooks Davis 
119*c697fb7fSBrooks Davis /// Gets the name of the file that could not be found.
120*c697fb7fSBrooks Davis ///
121*c697fb7fSBrooks Davis /// \return The name of the file.
122*c697fb7fSBrooks Davis const std::string&
filename(void) const123*c697fb7fSBrooks Davis lutok::file_not_found_error::filename(void) const
124*c697fb7fSBrooks Davis {
125*c697fb7fSBrooks Davis     return _filename;
126*c697fb7fSBrooks Davis }
127