xref: /freebsd/contrib/lutok/examples/interpreter.cpp (revision c697fb7f7cc9bedc5beee44d35b771c4e87b335a)
1*c697fb7fSBrooks Davis // Copyright 2012 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 /// \file examples/interpreter.cpp
30*c697fb7fSBrooks Davis /// Implementation of a basic command-line Lua interpreter.
31*c697fb7fSBrooks Davis 
32*c697fb7fSBrooks Davis #include <cstdlib>
33*c697fb7fSBrooks Davis #include <iostream>
34*c697fb7fSBrooks Davis #include <string>
35*c697fb7fSBrooks Davis 
36*c697fb7fSBrooks Davis #include <lutok/exceptions.hpp>
37*c697fb7fSBrooks Davis #include <lutok/operations.hpp>
38*c697fb7fSBrooks Davis #include <lutok/state.ipp>
39*c697fb7fSBrooks Davis 
40*c697fb7fSBrooks Davis 
41*c697fb7fSBrooks Davis /// Executes a Lua statement provided by the user with error checking.
42*c697fb7fSBrooks Davis ///
43*c697fb7fSBrooks Davis /// \param state The Lua state in which to process the statement.
44*c697fb7fSBrooks Davis /// \param line The textual statement provided by the user.
45*c697fb7fSBrooks Davis static void
run_statement(lutok::state & state,const std::string & line)46*c697fb7fSBrooks Davis run_statement(lutok::state& state, const std::string& line)
47*c697fb7fSBrooks Davis {
48*c697fb7fSBrooks Davis     try {
49*c697fb7fSBrooks Davis         // This utility function allows us to feed a given piece of Lua code to
50*c697fb7fSBrooks Davis         // the interpreter and process it.  The piece of code can include
51*c697fb7fSBrooks Davis         // multiple statements separated by a semicolon or by a newline
52*c697fb7fSBrooks Davis         // character.
53*c697fb7fSBrooks Davis         lutok::do_string(state, line, 0, 0, 0);
54*c697fb7fSBrooks Davis     } catch (const lutok::error& error) {
55*c697fb7fSBrooks Davis         std::cerr << "ERROR: " << error.what() << '\n';
56*c697fb7fSBrooks Davis     }
57*c697fb7fSBrooks Davis }
58*c697fb7fSBrooks Davis 
59*c697fb7fSBrooks Davis 
60*c697fb7fSBrooks Davis /// Program's entry point.
61*c697fb7fSBrooks Davis ///
62*c697fb7fSBrooks Davis /// \return A system exit code.
63*c697fb7fSBrooks Davis int
main(void)64*c697fb7fSBrooks Davis main(void)
65*c697fb7fSBrooks Davis {
66*c697fb7fSBrooks Davis     // Create a new session and load some standard libraries.
67*c697fb7fSBrooks Davis     lutok::state state;
68*c697fb7fSBrooks Davis     state.open_base();
69*c697fb7fSBrooks Davis     state.open_string();
70*c697fb7fSBrooks Davis     state.open_table();
71*c697fb7fSBrooks Davis 
72*c697fb7fSBrooks Davis     for (;;) {
73*c697fb7fSBrooks Davis         std::cout << "lua> ";
74*c697fb7fSBrooks Davis         std::cout.flush();
75*c697fb7fSBrooks Davis 
76*c697fb7fSBrooks Davis         std::string line;
77*c697fb7fSBrooks Davis         if (!std::getline(std::cin, line).good())
78*c697fb7fSBrooks Davis             break;
79*c697fb7fSBrooks Davis         run_statement(state, line);
80*c697fb7fSBrooks Davis     }
81*c697fb7fSBrooks Davis 
82*c697fb7fSBrooks Davis     return EXIT_SUCCESS;
83*c697fb7fSBrooks Davis }
84