forked from luakit/luakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
luah.h
169 lines (151 loc) · 5.1 KB
/
luah.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
* luah.h - Lua helper functions
*
* Copyright © 2010 Mason Larobina <[email protected]>
* Copyright © 2008-2009 Julien Danjou <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef LUAKIT_LUA_H
#define LUAKIT_LUA_H
#include "common/luaobject.h"
#include "common/lualib.h"
#include "globalconf.h"
#include <lua.h>
#define luaH_deprecate(L, repl) \
do { \
luaH_warn(L, "%s: This function is deprecated and will be removed, see %s", \
__FUNCTION__, repl); \
lua_pushlstring(L, __FUNCTION__, sizeof(__FUNCTION__)); \
signal_object_emit(L, &globalconf.signals, "debug::deprecation", 1, 0); \
} while(0)
static inline gboolean
luaH_checkboolean(lua_State *L, gint n) {
if(!lua_isboolean(L, n))
luaL_typerror(L, n, "boolean");
return lua_toboolean(L, n);
}
static inline gboolean
luaH_optboolean(lua_State *L, gint idx, gboolean def) {
return luaL_opt(L, luaH_checkboolean, idx, def);
}
static inline lua_Number
luaH_getopt_number(lua_State *L, gint idx, const gchar *name, lua_Number def) {
lua_getfield(L, idx, name);
if (lua_isnil(L, -1) || lua_isnumber(L, -1))
def = luaL_optnumber(L, -1, def);
lua_pop(L, 1);
return def;
}
static inline const gchar *
luaH_getopt_lstring(lua_State *L, gint idx, const gchar *name, const gchar *def, size_t *len) {
lua_getfield(L, idx, name);
const gchar *s = luaL_optlstring(L, -1, def, len);
lua_pop(L, 1);
return s;
}
static inline gboolean
luaH_getopt_boolean(lua_State *L, gint idx, const gchar *name, gboolean def) {
lua_getfield(L, idx, name);
gboolean b = luaH_optboolean(L, -1, def);
lua_pop(L, 1);
return b;
}
/* Register an Lua object.
* \param L The Lua stack.
* \param idx Index of the object in the stack.
* \param ref A gint address: it will be filled with the gint
* registered. If the address points to an already registered object, it will
* be unregistered.
* \return Always 0.
*/
static inline gint
luaH_register(lua_State *L, gint idx, gint *ref) {
lua_pushvalue(L, idx);
if(*ref != LUA_REFNIL)
luaL_unref(L, LUA_REGISTRYINDEX, *ref);
*ref = luaL_ref(L, LUA_REGISTRYINDEX);
return 0;
}
/* Unregister a Lua object.
* \param L The Lua stack.
* \param ref A reference to an Lua object.
*/
static inline void
luaH_unregister(lua_State *L, gint *ref) {
luaL_unref(L, LUA_REGISTRYINDEX, *ref);
*ref = LUA_REFNIL;
}
/* Register a function.
* \param L The Lua stack.
* \param idx Index of the function in the stack.
* \param fct A gint address: it will be filled with the gint
* registered. If the address points to an already registered function, it will
* be unregistered.
* \return luaH_register value.
*/
static inline gint
luaH_registerfct(lua_State *L, gint idx, gint *fct) {
luaH_checkfunction(L, idx);
return luaH_register(L, idx, fct);
}
/* Grab a function from the registry and execute it.
* \param L The Lua stack.
* \param ref The function reference.
* \param nargs The number of arguments for the Lua function.
* \param nret The number of returned value from the Lua function.
* \return True on no error, false otherwise.
*/
static inline gboolean
luaH_dofunction_from_registry(lua_State *L, gint ref, gint nargs, gint nret) {
lua_rawgeti(L, LUA_REGISTRYINDEX, ref);
return luaH_dofunction(L, nargs, nret);
}
/* Print a warning about some Lua code.
* This is less mean than luaL_error() which setjmp via lua_error() and kills
* everything. This only warn, it's up to you to then do what's should be done.
* \param L The Lua VM state.
* \param fmt The warning message.
*/
static inline void __attribute__ ((format(printf, 2, 3)))
luaH_warn(lua_State *L, const gchar *fmt, ...) {
va_list ap;
luaL_where(L, 1);
fprintf(stderr, "%sW: ", lua_tostring(L, -1));
lua_pop(L, 1);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
fprintf(stderr, "\n");
}
static inline gint
luaH_rawfield(lua_State *L, gint idx, const gchar *field)
{
lua_pushstring(L, field);
lua_rawget(L, idx);
gint type = lua_type(L, -1);
if (type == LUA_TNIL)
lua_pop(L, 1);
return type;
}
void luaH_init();
gboolean luaH_parserc(const gchar *, gboolean);
gint luaH_mtnext(lua_State *, gint);
gint luaH_class_index_miss_property(lua_State *, lua_object_t *);
gint luaH_class_newindex_miss_property(lua_State *, lua_object_t *);
void luaH_modifier_table_push(lua_State *, guint);
void luaH_keystr_push(lua_State *, guint);
#endif
// vim: ft=c:et:sw=4:ts=8:sts=4:tw=80