Lutok 0.6.1
Loading...
Searching...
No Matches
state.hpp
Go to the documentation of this file.
1// Copyright 2011 Google Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above copyright
11// notice, this list of conditions and the following disclaimer in the
12// documentation and/or other materials provided with the distribution.
13// * Neither the name of Google Inc. nor the names of its contributors
14// may be used to endorse or promote products derived from this software
15// without specific prior written permission.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
31
32#if !defined(LUTOK_STATE_HPP)
33#define LUTOK_STATE_HPP
34
35#include <memory>
36#include <string>
37
38namespace lutok {
39
40
41class debug;
42class state;
43
44
50typedef int (*cxx_function)(state&);
51
52
54extern const int registry_index;
55
56
71class state {
72 struct impl;
73
75 std::shared_ptr< impl > _pimpl;
76
77 void* new_userdata_voidp(const size_t);
78 void* to_userdata_voidp(const int);
79
80 friend class state_c_gate;
81 explicit state(void*);
82 void* raw_state(void);
83
84public:
85 state(void);
86 ~state(void);
87
88 void close(void);
89 void get_global(const std::string&);
90 void get_global_table(void);
91 bool get_metafield(const int, const std::string&);
92 bool get_metatable(const int);
93 void get_table(const int);
94 int get_top(void);
95 void insert(const int);
96 bool is_boolean(const int);
97 bool is_function(const int);
98 bool is_nil(const int);
99 bool is_number(const int);
100 bool is_string(const int);
101 bool is_table(const int);
102 bool is_userdata(const int);
103 void load_file(const std::string&);
104 void load_string(const std::string&);
105 void new_table(void);
106 template< typename Type > Type* new_userdata(void);
107 bool next(const int);
108 void open_all(void);
109 void open_base(void);
110 void open_string(void);
111 void open_table(void);
112 void pcall(const int, const int, const int);
113 void pop(const int);
114 void push_boolean(const bool);
115 void push_cxx_closure(cxx_function, const int);
116 void push_cxx_function(cxx_function);
117 void push_integer(const int);
118 void push_nil(void);
119 void push_string(const std::string&);
120 void push_value(const int);
121 void raw_get(const int);
122 void raw_set(const int);
123 void set_global(const std::string&);
124 void set_metatable(const int);
125 void set_table(const int);
126 bool to_boolean(const int);
127 long to_integer(const int);
128 template< typename Type > Type* to_userdata(const int);
129 std::string to_string(const int);
130 int upvalue_index(const int);
131};
132
133
134} // namespace lutok
135
136#endif // !defined(LUTOK_STATE_HPP)
const int registry_index
Stack index constant pointing to the registry table.
Definition: state.cpp:215
Gateway to the raw C state of Lua.
Definition: c_gate.hpp:55
Internal implementation for lutok::state.
Definition: state.cpp:219
A RAII model for the Lua state.
Definition: state.hpp:71
void get_global(const std::string &)
Wrapper around lua_getglobal.
Definition: state.cpp:302
bool get_metafield(const int, const std::string &)
Wrapper around luaL_getmetafield.
Definition: state.cpp:341
Type * to_userdata(const int)
Wrapper around lua_touserdata.
Definition: state.ipp:59
void push_cxx_closure(cxx_function, const int)
Wrapper around lua_pushcclosure.
Definition: state.cpp:680
void push_boolean(const bool)
Wrapper around lua_pushboolean.
Definition: state.cpp:666
int upvalue_index(const int)
Wrapper around lua_upvalueindex.
Definition: state.cpp:888
void close(void)
Terminates this Lua session.
Definition: state.cpp:284
bool is_nil(const int)
Wrapper around lua_isnil.
Definition: state.cpp:430
void get_global_table(void)
Pushes a reference to the global table onto the stack.
Definition: state.cpp:318
~state(void)
Destructor for the Lua state.
Definition: state.cpp:268
void * raw_state(void)
Gets the internal lua_State object.
Definition: state.cpp:901
void pcall(const int, const int, const int)
Wrapper around lua_pcall.
Definition: state.cpp:643
bool to_boolean(const int)
Wrapper around lua_toboolean.
Definition: state.cpp:825
void * to_userdata_voidp(const int)
Wrapper around lua_touserdata.
Definition: state.cpp:856
bool is_table(const int)
Wrapper around lua_istable.
Definition: state.cpp:466
std::shared_ptr< impl > _pimpl
Pointer to the shared internal implementation.
Definition: state.hpp:75
void push_value(const int)
Wrapper around lua_pushvalue.
Definition: state.cpp:739
void load_file(const std::string &)
Wrapper around luaL_loadfile.
Definition: state.cpp:493
bool is_boolean(const int)
Wrapper around lua_isboolean.
Definition: state.cpp:406
void new_table(void)
Wrapper around lua_newtable.
Definition: state.cpp:521
void push_integer(const int)
Wrapper around lua_pushinteger.
Definition: state.cpp:709
void * new_userdata_voidp(const size_t)
Wrapper around lua_newuserdata.
Definition: state.cpp:538
void load_string(const std::string &)
Wrapper around luaL_loadstring.
Definition: state.cpp:510
void insert(const int)
Wrapper around lua_insert.
Definition: state.cpp:394
void push_nil(void)
Wrapper around lua_pushnil.
Definition: state.cpp:717
void open_string(void)
Wrapper around luaopen_string.
Definition: state.cpp:603
void get_table(const int)
Wrapper around lua_gettable.
Definition: state.cpp:368
void open_table(void)
Wrapper around luaopen_table.
Definition: state.cpp:622
void push_string(const std::string &)
Wrapper around lua_pushstring.
Definition: state.cpp:729
void open_all(void)
Wrapper around luaL_openlibs.
Definition: state.cpp:577
void set_metatable(const int)
Wrapper around lua_setmetatable.
Definition: state.cpp:792
std::string to_string(const int)
Wrapper around lua_tostring.
Definition: state.cpp:871
void raw_set(const int)
Wrapper around lua_rawset.
Definition: state.cpp:762
Type * new_userdata(void)
Wrapper around lua_newuserdata.
Definition: state.ipp:46
bool is_function(const int)
Wrapper around lua_isfunction.
Definition: state.cpp:418
bool get_metatable(const int)
Wrapper around lua_getmetatable.
Definition: state.cpp:353
bool next(const int)
Wrapper around lua_next.
Definition: state.cpp:552
void open_base(void)
Wrapper around luaopen_base.
Definition: state.cpp:589
void pop(const int)
Wrapper around lua_pop.
Definition: state.cpp:654
void set_table(const int)
Wrapper around lua_settable.
Definition: state.cpp:807
bool is_number(const int)
Wrapper around lua_isnumber.
Definition: state.cpp:442
void raw_get(const int)
Wrapper around lua_rawget.
Definition: state.cpp:749
long to_integer(const int)
Wrapper around lua_tointeger.
Definition: state.cpp:838
bool is_userdata(const int)
Wrapper around lua_isuserdata.
Definition: state.cpp:478
void push_cxx_function(cxx_function)
Wrapper around lua_pushcfunction.
Definition: state.cpp:696
void set_global(const std::string &)
Wrapper around lua_setglobal.
Definition: state.cpp:777
state(void)
Initializes the Lua state.
Definition: state.cpp:242
bool is_string(const int)
Wrapper around lua_isstring.
Definition: state.cpp:454
int get_top(void)
Wrapper around lua_gettop.
Definition: state.cpp:384