2003-05-25 01:54:13 +00:00
|
|
|
/*=========================================================================*\
|
|
|
|
* Auxiliar routines for class hierarchy manipulation
|
2003-06-26 18:47:49 +00:00
|
|
|
* LuaSocket toolkit
|
2003-05-25 01:54:13 +00:00
|
|
|
\*=========================================================================*/
|
2019-02-25 15:57:01 -07:00
|
|
|
#include "luasocket.h"
|
|
|
|
#include "auxiliar.h"
|
2003-06-26 18:47:49 +00:00
|
|
|
#include <string.h>
|
2004-01-24 00:18:19 +00:00
|
|
|
#include <stdio.h>
|
2003-06-26 18:47:49 +00:00
|
|
|
|
2003-05-25 01:54:13 +00:00
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 18:47:49 +00:00
|
|
|
* Initializes the module
|
2003-05-25 01:54:13 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
int auxiliar_open(lua_State *L) {
|
2004-06-17 21:46:22 +00:00
|
|
|
(void) L;
|
2004-02-04 14:29:11 +00:00
|
|
|
return 0;
|
2003-05-25 01:54:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 18:47:49 +00:00
|
|
|
* Creates a new class with given methods
|
2004-06-15 06:24:00 +00:00
|
|
|
* Methods whose names start with __ are passed directly to the metatable.
|
2003-05-25 01:54:13 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void auxiliar_newclass(lua_State *L, const char *classname, luaL_Reg *func) {
|
2003-06-26 18:47:49 +00:00
|
|
|
luaL_newmetatable(L, classname); /* mt */
|
2004-01-24 00:18:19 +00:00
|
|
|
/* create __index table to place methods */
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_pushstring(L, "__index"); /* mt,"__index" */
|
2015-08-21 15:39:34 -03:00
|
|
|
lua_newtable(L); /* mt,"__index",it */
|
2004-01-24 00:18:19 +00:00
|
|
|
/* put class name into class metatable */
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_pushstring(L, "class"); /* mt,"__index",it,"class" */
|
|
|
|
lua_pushstring(L, classname); /* mt,"__index",it,"class",classname */
|
|
|
|
lua_rawset(L, -3); /* mt,"__index",it */
|
2004-05-25 05:27:44 +00:00
|
|
|
/* pass all methods that start with _ to the metatable, and all others
|
|
|
|
* to the index table */
|
|
|
|
for (; func->name; func++) { /* mt,"__index",it */
|
|
|
|
lua_pushstring(L, func->name);
|
|
|
|
lua_pushcfunction(L, func->func);
|
|
|
|
lua_rawset(L, func->name[0] == '_' ? -5: -3);
|
|
|
|
}
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_rawset(L, -3); /* mt */
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
2004-06-15 06:24:00 +00:00
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Prints the value of a class in a nice way
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
int auxiliar_tostring(lua_State *L) {
|
2004-06-15 06:24:00 +00:00
|
|
|
char buf[32];
|
|
|
|
if (!lua_getmetatable(L, 1)) goto error;
|
|
|
|
lua_pushstring(L, "__index");
|
|
|
|
lua_gettable(L, -2);
|
|
|
|
if (!lua_istable(L, -1)) goto error;
|
|
|
|
lua_pushstring(L, "class");
|
|
|
|
lua_gettable(L, -2);
|
|
|
|
if (!lua_isstring(L, -1)) goto error;
|
|
|
|
sprintf(buf, "%p", lua_touserdata(L, 1));
|
|
|
|
lua_pushfstring(L, "%s: %s", lua_tostring(L, -1), buf);
|
|
|
|
return 1;
|
|
|
|
error:
|
|
|
|
lua_pushstring(L, "invalid object passed to 'auxiliar.c:__tostring'");
|
|
|
|
lua_error(L);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-06-26 18:47:49 +00:00
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Insert class into group
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void auxiliar_add2group(lua_State *L, const char *classname, const char *groupname) {
|
2003-06-26 18:47:49 +00:00
|
|
|
luaL_getmetatable(L, classname);
|
|
|
|
lua_pushstring(L, groupname);
|
|
|
|
lua_pushboolean(L, 1);
|
2003-06-09 18:23:40 +00:00
|
|
|
lua_rawset(L, -3);
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Make sure argument is a boolean
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
int auxiliar_checkboolean(lua_State *L, int objidx) {
|
2003-06-26 18:47:49 +00:00
|
|
|
if (!lua_isboolean(L, objidx))
|
2012-04-16 20:41:48 +08:00
|
|
|
auxiliar_typeerror(L, objidx, lua_typename(L, LUA_TBOOLEAN));
|
2003-06-26 18:47:49 +00:00
|
|
|
return lua_toboolean(L, objidx);
|
2003-05-25 01:54:13 +00:00
|
|
|
}
|
|
|
|
|
2003-06-26 18:47:49 +00:00
|
|
|
/*-------------------------------------------------------------------------*\
|
2015-08-21 15:39:34 -03:00
|
|
|
* Return userdata pointer if object belongs to a given class, abort with
|
2003-06-26 18:47:49 +00:00
|
|
|
* error otherwise
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void *auxiliar_checkclass(lua_State *L, const char *classname, int objidx) {
|
2005-10-07 04:40:59 +00:00
|
|
|
void *data = auxiliar_getclassudata(L, classname, objidx);
|
2003-05-25 01:54:13 +00:00
|
|
|
if (!data) {
|
|
|
|
char msg[45];
|
2003-06-26 18:47:49 +00:00
|
|
|
sprintf(msg, "%.35s expected", classname);
|
2003-05-25 01:54:13 +00:00
|
|
|
luaL_argerror(L, objidx, msg);
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2015-08-21 15:39:34 -03:00
|
|
|
* Return userdata pointer if object belongs to a given group, abort with
|
2003-06-26 18:47:49 +00:00
|
|
|
* error otherwise
|
2003-05-25 01:54:13 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void *auxiliar_checkgroup(lua_State *L, const char *groupname, int objidx) {
|
2005-10-07 04:40:59 +00:00
|
|
|
void *data = auxiliar_getgroupudata(L, groupname, objidx);
|
2003-05-25 01:54:13 +00:00
|
|
|
if (!data) {
|
|
|
|
char msg[45];
|
2003-06-26 18:47:49 +00:00
|
|
|
sprintf(msg, "%.35s expected", groupname);
|
2003-05-25 01:54:13 +00:00
|
|
|
luaL_argerror(L, objidx, msg);
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 18:47:49 +00:00
|
|
|
* Set object class
|
2003-05-25 01:54:13 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void auxiliar_setclass(lua_State *L, const char *classname, int objidx) {
|
2003-06-26 18:47:49 +00:00
|
|
|
luaL_getmetatable(L, classname);
|
2003-05-25 01:54:13 +00:00
|
|
|
if (objidx < 0) objidx--;
|
|
|
|
lua_setmetatable(L, objidx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2015-08-21 15:39:34 -03:00
|
|
|
* Get a userdata pointer if object belongs to a given group. Return NULL
|
2003-06-26 18:47:49 +00:00
|
|
|
* otherwise
|
2003-05-25 01:54:13 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void *auxiliar_getgroupudata(lua_State *L, const char *groupname, int objidx) {
|
2003-06-26 18:47:49 +00:00
|
|
|
if (!lua_getmetatable(L, objidx))
|
2003-06-09 18:23:40 +00:00
|
|
|
return NULL;
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_pushstring(L, groupname);
|
2003-06-09 18:23:40 +00:00
|
|
|
lua_rawget(L, -2);
|
2003-05-25 01:54:13 +00:00
|
|
|
if (lua_isnil(L, -1)) {
|
2003-06-26 18:47:49 +00:00
|
|
|
lua_pop(L, 2);
|
2003-06-09 18:23:40 +00:00
|
|
|
return NULL;
|
2003-06-26 18:47:49 +00:00
|
|
|
} else {
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return lua_touserdata(L, objidx);
|
2003-06-09 18:23:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2015-08-21 15:39:34 -03:00
|
|
|
* Get a userdata pointer if object belongs to a given class. Return NULL
|
2003-06-26 18:47:49 +00:00
|
|
|
* otherwise
|
2003-06-09 18:23:40 +00:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
void *auxiliar_getclassudata(lua_State *L, const char *classname, int objidx) {
|
2018-06-03 20:08:02 +08:00
|
|
|
return luaL_testudata(L, objidx, classname);
|
2003-05-25 01:54:13 +00:00
|
|
|
}
|
2012-04-16 20:41:48 +08:00
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Throws error when argument does not have correct type.
|
|
|
|
* Used to be part of lauxlib in Lua 5.1, was dropped from 5.2.
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2019-02-27 20:55:43 -07:00
|
|
|
int auxiliar_typeerror (lua_State *L, int narg, const char *tname) {
|
2015-08-21 15:39:34 -03:00
|
|
|
const char *msg = lua_pushfstring(L, "%s expected, got %s", tname,
|
2012-04-16 20:41:48 +08:00
|
|
|
luaL_typename(L, narg));
|
|
|
|
return luaL_argerror(L, narg, msg);
|
|
|
|
}
|