luasocket/src/luasocket.c

115 lines
3.8 KiB
C
Raw Normal View History

2000-06-02 10:55:14 -07:00
/*=========================================================================*\
* LuaSocket toolkit
* Networking support for the Lua language
2000-06-02 10:55:14 -07:00
* Diego Nehab
* 26/11/1999
*
* This library is part of an effort to progressively increase the network
* connectivity of the Lua language. The Lua interface to networking
* functions follows the Sockets API closely, trying to simplify all tasks
* involved in setting up both client and server connections. The provided
* IO routines, however, follow the Lua style, being very similar to the
* standard Lua read and write functions.
2000-06-02 10:55:14 -07:00
\*=========================================================================*/
/*=========================================================================*\
* Standard include files
2000-06-02 10:55:14 -07:00
\*=========================================================================*/
2005-09-28 23:11:42 -07:00
#include "lua.h"
#include "lauxlib.h"
#include "compat.h"
2005-09-28 23:11:42 -07:00
/*=========================================================================*\
* LuaSocket includes
\*=========================================================================*/
2005-09-28 23:11:42 -07:00
#include "luasocket.h"
#include "auxiliar.h"
#include "except.h"
#include "timeout.h"
#include "buffer.h"
2003-05-24 18:54:13 -07:00
#include "inet.h"
#include "tcp.h"
#include "udp.h"
#include "select.h"
/*-------------------------------------------------------------------------*\
* Internal function prototypes
\*-------------------------------------------------------------------------*/
static int global_skip(lua_State *L);
static int global_unload(lua_State *L);
static int base_open(lua_State *L);
/*-------------------------------------------------------------------------*\
* Modules and functions
\*-------------------------------------------------------------------------*/
static const luaL_Reg mod[] = {
2005-10-06 21:40:59 -07:00
{"auxiliar", auxiliar_open},
{"except", except_open},
2005-10-06 21:40:59 -07:00
{"timeout", timeout_open},
{"buffer", buffer_open},
{"inet", inet_open},
{"tcp", tcp_open},
{"udp", udp_open},
{"select", select_open},
{NULL, NULL}
};
static luaL_Reg func[] = {
{"skip", global_skip},
{"__unload", global_unload},
{NULL, NULL}
};
/*-------------------------------------------------------------------------*\
* Skip a few arguments
\*-------------------------------------------------------------------------*/
static int global_skip(lua_State *L) {
2018-08-22 13:37:32 -07:00
int amount = (int) luaL_checkinteger(L, 1);
int ret = lua_gettop(L) - amount - 1;
return ret >= 0 ? ret : 0;
}
/*-------------------------------------------------------------------------*\
* Unloads the library
\*-------------------------------------------------------------------------*/
static int global_unload(lua_State *L) {
2004-06-17 14:46:22 -07:00
(void) L;
2005-10-06 21:40:59 -07:00
socket_close();
return 0;
}
/*-------------------------------------------------------------------------*\
* Setup basic stuff.
\*-------------------------------------------------------------------------*/
static int base_open(lua_State *L) {
2005-10-06 21:40:59 -07:00
if (socket_open()) {
/* export functions (and leave namespace table on top of stack) */
lua_newtable(L);
luaL_setfuncs(L, func, 0);
#ifdef LUASOCKET_DEBUG
2005-06-13 21:29:23 -07:00
lua_pushstring(L, "_DEBUG");
lua_pushboolean(L, 1);
lua_rawset(L, -3);
#endif
/* make version string available to scripts */
2005-06-13 21:29:23 -07:00
lua_pushstring(L, "_VERSION");
lua_pushstring(L, LUASOCKET_VERSION);
lua_rawset(L, -3);
return 1;
} else {
lua_pushstring(L, "unable to initialize library");
lua_error(L);
return 0;
}
}
/*-------------------------------------------------------------------------*\
* Initializes all library modules.
\*-------------------------------------------------------------------------*/
2005-08-11 22:56:32 -07:00
LUASOCKET_API int luaopen_socket_core(lua_State *L) {
2004-05-27 23:16:43 -07:00
int i;
base_open(L);
2004-06-04 08:15:45 -07:00
for (i = 0; mod[i].name; i++) mod[i].func(L);
return 1;
}