Path: blob/main/contrib/lutok/examples/interpreter.cpp
102968 views
// Copyright 2012 Google Inc.1// All rights reserved.2//3// Redistribution and use in source and binary forms, with or without4// modification, are permitted provided that the following conditions are5// met:6//7// * Redistributions of source code must retain the above copyright8// notice, this list of conditions and the following disclaimer.9// * Redistributions in binary form must reproduce the above copyright10// notice, this list of conditions and the following disclaimer in the11// documentation and/or other materials provided with the distribution.12// * Neither the name of Google Inc. nor the names of its contributors13// may be used to endorse or promote products derived from this software14// without specific prior written permission.15//16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.2728/// \file examples/interpreter.cpp29/// Implementation of a basic command-line Lua interpreter.3031#include <cstdlib>32#include <iostream>33#include <string>3435#include <lutok/exceptions.hpp>36#include <lutok/operations.hpp>37#include <lutok/state.ipp>383940/// Executes a Lua statement provided by the user with error checking.41///42/// \param state The Lua state in which to process the statement.43/// \param line The textual statement provided by the user.44static void45run_statement(lutok::state& state, const std::string& line)46{47try {48// This utility function allows us to feed a given piece of Lua code to49// the interpreter and process it. The piece of code can include50// multiple statements separated by a semicolon or by a newline51// character.52lutok::do_string(state, line, 0, 0, 0);53} catch (const lutok::error& error) {54std::cerr << "ERROR: " << error.what() << '\n';55}56}575859/// Program's entry point.60///61/// \return A system exit code.62int63main(void)64{65// Create a new session and load some standard libraries.66lutok::state state;67state.open_base();68state.open_string();69state.open_table();7071for (;;) {72std::cout << "lua> ";73std::cout.flush();7475std::string line;76if (!std::getline(std::cin, line).good())77break;78run_statement(state, line);79}8081return EXIT_SUCCESS;82}838485