2002-03-27 19:00:00 +01:00
|
|
|
/*=========================================================================*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* Input/Output interface for Lua programs
|
|
|
|
* LuaSocket toolkit
|
2003-03-28 22:08:50 +01:00
|
|
|
*
|
|
|
|
* RCS ID: $Id$
|
2002-03-27 19:00:00 +01:00
|
|
|
\*=========================================================================*/
|
|
|
|
#include <lua.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
|
2003-06-09 20:23:40 +02:00
|
|
|
#include "buffer.h"
|
2002-03-27 19:00:00 +01:00
|
|
|
|
|
|
|
/*=========================================================================*\
|
2003-05-25 03:54:13 +02:00
|
|
|
* Internal function prototypes
|
2002-03-27 19:00:00 +01:00
|
|
|
\*=========================================================================*/
|
2004-03-21 08:50:15 +01:00
|
|
|
static int recvraw(p_buf buf, size_t wanted, luaL_Buffer *b);
|
|
|
|
static int recvline(p_buf buf, luaL_Buffer *b);
|
|
|
|
static int recvall(p_buf buf, luaL_Buffer *b);
|
2003-05-25 03:54:13 +02:00
|
|
|
static int buf_get(p_buf buf, const char **data, size_t *count);
|
|
|
|
static void buf_skip(p_buf buf, size_t count);
|
|
|
|
static int sendraw(p_buf buf, const char *data, size_t count, size_t *sent);
|
2002-03-27 19:00:00 +01:00
|
|
|
|
2004-06-15 08:24:00 +02:00
|
|
|
/* min and max macros */
|
|
|
|
#ifndef MIN
|
|
|
|
#define MIN(x, y) ((x) < (y) ? x : y)
|
|
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
|
|
#define MAX(x, y) ((x) > (y) ? x : y)
|
|
|
|
#endif
|
|
|
|
|
2002-03-27 19:00:00 +01:00
|
|
|
/*=========================================================================*\
|
|
|
|
* Exported functions
|
|
|
|
\*=========================================================================*/
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Initializes module
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
int buf_open(lua_State *L) {
|
2002-03-27 19:00:00 +01:00
|
|
|
(void) L;
|
2004-02-04 15:29:11 +01:00
|
|
|
return 0;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Initializes C structure
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
void buf_init(p_buf buf, p_io io, p_tm tm) {
|
2003-05-25 03:54:13 +02:00
|
|
|
buf->first = buf->last = 0;
|
|
|
|
buf->io = io;
|
|
|
|
buf->tm = tm;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* object:send() interface
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
int buf_meth_send(lua_State *L, p_buf buf) {
|
2002-03-27 19:00:00 +01:00
|
|
|
int top = lua_gettop(L);
|
|
|
|
size_t total = 0;
|
2003-05-25 03:54:13 +02:00
|
|
|
int arg, err = IO_DONE;
|
2004-07-01 05:32:09 +02:00
|
|
|
p_tm tm = tm_markstart(buf->tm);
|
2002-03-27 19:00:00 +01:00
|
|
|
for (arg = 2; arg <= top; arg++) { /* first arg is socket object */
|
2003-05-25 03:54:13 +02:00
|
|
|
size_t sent, count;
|
|
|
|
const char *data = luaL_optlstring(L, arg, NULL, &count);
|
|
|
|
if (!data || err != IO_DONE) break;
|
|
|
|
err = sendraw(buf, data, count, &sent);
|
|
|
|
total += sent;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
2004-06-18 01:08:56 +02:00
|
|
|
/* check if there was an error */
|
|
|
|
if (err != IO_DONE) {
|
|
|
|
lua_pushnil(L);
|
2004-07-01 05:32:09 +02:00
|
|
|
io_pusherror(L, buf->io, err);
|
2004-06-18 01:08:56 +02:00
|
|
|
lua_pushnumber(L, total);
|
|
|
|
} else {
|
|
|
|
lua_pushnumber(L, total);
|
|
|
|
lua_pushnil(L);
|
|
|
|
lua_pushnil(L);
|
|
|
|
}
|
2002-12-03 08:20:34 +01:00
|
|
|
#ifdef LUASOCKET_DEBUG
|
2002-03-27 19:00:00 +01:00
|
|
|
/* push time elapsed during operation as the last return value */
|
2004-07-01 05:32:09 +02:00
|
|
|
lua_pushnumber(L, tm_gettime() - tm_getstart(tm));
|
2002-03-27 19:00:00 +01:00
|
|
|
#endif
|
|
|
|
return lua_gettop(L) - top;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* object:receive() interface
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
int buf_meth_receive(lua_State *L, p_buf buf) {
|
2004-03-21 08:50:15 +01:00
|
|
|
int err = IO_DONE, top = lua_gettop(L);
|
2004-07-01 05:32:09 +02:00
|
|
|
p_tm tm = tm_markstart(buf->tm);
|
2004-03-21 08:50:15 +01:00
|
|
|
luaL_Buffer b;
|
|
|
|
luaL_buffinit(L, &b);
|
2002-03-27 19:00:00 +01:00
|
|
|
/* receive all patterns */
|
2004-03-21 08:50:15 +01:00
|
|
|
if (!lua_isnumber(L, 2)) {
|
|
|
|
static const char *patternnames[] = {"*l", "*a", NULL};
|
|
|
|
const char *pattern = luaL_optstring(L, 2, "*l");
|
|
|
|
/* get next pattern */
|
|
|
|
int p = luaL_findstring(pattern, patternnames);
|
|
|
|
if (p == 0) err = recvline(buf, &b);
|
|
|
|
else if (p == 1) err = recvall(buf, &b);
|
|
|
|
else luaL_argcheck(L, 0, 2, "invalid receive pattern");
|
2003-06-26 20:47:49 +02:00
|
|
|
/* get a fixed number of bytes */
|
2004-03-21 08:50:15 +01:00
|
|
|
} else err = recvraw(buf, (size_t) lua_tonumber(L, 2), &b);
|
|
|
|
/* check if there was an error */
|
|
|
|
if (err != IO_DONE) {
|
|
|
|
luaL_pushresult(&b);
|
2004-07-01 05:32:09 +02:00
|
|
|
io_pusherror(L, buf->io, err);
|
2004-03-21 08:50:15 +01:00
|
|
|
lua_pushvalue(L, -2);
|
|
|
|
lua_pushnil(L);
|
|
|
|
lua_replace(L, -4);
|
|
|
|
} else {
|
|
|
|
luaL_pushresult(&b);
|
|
|
|
lua_pushnil(L);
|
|
|
|
lua_pushnil(L);
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
2002-12-03 08:20:34 +01:00
|
|
|
#ifdef LUASOCKET_DEBUG
|
2002-03-27 19:00:00 +01:00
|
|
|
/* push time elapsed during operation as the last return value */
|
2004-07-01 05:32:09 +02:00
|
|
|
lua_pushnumber(L, tm_gettime() - tm_getstart(tm));
|
2002-03-27 19:00:00 +01:00
|
|
|
#endif
|
|
|
|
return lua_gettop(L) - top;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Determines if there is any data in the read buffer
|
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
int buf_isempty(p_buf buf) {
|
2003-05-25 03:54:13 +02:00
|
|
|
return buf->first >= buf->last;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*=========================================================================*\
|
|
|
|
* Internal functions
|
|
|
|
\*=========================================================================*/
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* Sends a block of data (unbuffered)
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static int sendraw(p_buf buf, const char *data, size_t count, size_t *sent) {
|
2003-05-25 03:54:13 +02:00
|
|
|
p_io io = buf->io;
|
|
|
|
p_tm tm = buf->tm;
|
2002-03-27 19:00:00 +01:00
|
|
|
size_t total = 0;
|
2003-05-25 03:54:13 +02:00
|
|
|
int err = IO_DONE;
|
2004-07-01 05:32:09 +02:00
|
|
|
while (total < count && err == IO_DONE) {
|
2002-03-27 19:00:00 +01:00
|
|
|
size_t done;
|
2004-07-01 05:32:09 +02:00
|
|
|
err = io->send(io->ctx, data+total, count-total, &done, tm);
|
2002-03-27 19:00:00 +01:00
|
|
|
total += done;
|
|
|
|
}
|
|
|
|
*sent = total;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* Reads a fixed number of bytes (buffered)
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static int recvraw(p_buf buf, size_t wanted, luaL_Buffer *b) {
|
|
|
|
int err = IO_DONE;
|
2002-03-27 19:00:00 +01:00
|
|
|
size_t total = 0;
|
2004-07-01 05:32:09 +02:00
|
|
|
while (total < wanted && err == IO_DONE) {
|
2003-05-25 03:54:13 +02:00
|
|
|
size_t count; const char *data;
|
|
|
|
err = buf_get(buf, &data, &count);
|
|
|
|
count = MIN(count, wanted - total);
|
2004-03-21 08:50:15 +01:00
|
|
|
luaL_addlstring(b, data, count);
|
2003-05-25 03:54:13 +02:00
|
|
|
buf_skip(buf, count);
|
|
|
|
total += count;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* Reads everything until the connection is closed (buffered)
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static int recvall(p_buf buf, luaL_Buffer *b) {
|
2003-05-25 03:54:13 +02:00
|
|
|
int err = IO_DONE;
|
2004-07-01 05:32:09 +02:00
|
|
|
while (err == IO_DONE) {
|
2003-05-25 03:54:13 +02:00
|
|
|
const char *data; size_t count;
|
|
|
|
err = buf_get(buf, &data, &count);
|
2004-03-21 08:50:15 +01:00
|
|
|
luaL_addlstring(b, data, count);
|
2003-05-25 03:54:13 +02:00
|
|
|
buf_skip(buf, count);
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
2004-03-21 08:50:15 +01:00
|
|
|
if (err == IO_CLOSED) return IO_DONE;
|
|
|
|
else return err;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Reads a line terminated by a CR LF pair or just by a LF. The CR and LF
|
2003-06-26 20:47:49 +02:00
|
|
|
* are not returned by the function and are discarded from the buffer
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static int recvline(p_buf buf, luaL_Buffer *b) {
|
2003-06-26 20:47:49 +02:00
|
|
|
int err = IO_DONE;
|
2004-07-01 05:32:09 +02:00
|
|
|
while (err == IO_DONE) {
|
2003-05-25 03:54:13 +02:00
|
|
|
size_t count, pos; const char *data;
|
|
|
|
err = buf_get(buf, &data, &count);
|
2002-03-27 19:00:00 +01:00
|
|
|
pos = 0;
|
2003-05-25 03:54:13 +02:00
|
|
|
while (pos < count && data[pos] != '\n') {
|
2002-03-27 19:00:00 +01:00
|
|
|
/* we ignore all \r's */
|
2004-03-21 08:50:15 +01:00
|
|
|
if (data[pos] != '\r') luaL_putchar(b, data[pos]);
|
2002-03-27 19:00:00 +01:00
|
|
|
pos++;
|
|
|
|
}
|
2003-05-25 03:54:13 +02:00
|
|
|
if (pos < count) { /* found '\n' */
|
|
|
|
buf_skip(buf, pos+1); /* skip '\n' too */
|
2002-03-27 19:00:00 +01:00
|
|
|
break; /* we are done */
|
|
|
|
} else /* reached the end of the buffer */
|
2003-05-25 03:54:13 +02:00
|
|
|
buf_skip(buf, pos);
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
2003-06-26 20:47:49 +02:00
|
|
|
* Skips a given number of bytes from read buffer. No data is read from the
|
|
|
|
* transport layer
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static void buf_skip(p_buf buf, size_t count) {
|
2003-05-25 03:54:13 +02:00
|
|
|
buf->first += count;
|
|
|
|
if (buf_isempty(buf))
|
|
|
|
buf->first = buf->last = 0;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
|
|
* Return any data available in buffer, or get more data from transport layer
|
2003-06-26 20:47:49 +02:00
|
|
|
* if buffer is empty
|
2002-03-27 19:00:00 +01:00
|
|
|
\*-------------------------------------------------------------------------*/
|
2004-07-01 05:32:09 +02:00
|
|
|
static int buf_get(p_buf buf, const char **data, size_t *count) {
|
2003-05-25 03:54:13 +02:00
|
|
|
int err = IO_DONE;
|
|
|
|
p_io io = buf->io;
|
|
|
|
p_tm tm = buf->tm;
|
|
|
|
if (buf_isempty(buf)) {
|
|
|
|
size_t got;
|
2004-07-01 05:32:09 +02:00
|
|
|
err = io->recv(io->ctx, buf->data, BUF_SIZE, &got, tm);
|
2003-05-25 03:54:13 +02:00
|
|
|
buf->first = 0;
|
|
|
|
buf->last = got;
|
2002-03-27 19:00:00 +01:00
|
|
|
}
|
2003-05-25 03:54:13 +02:00
|
|
|
*count = buf->last - buf->first;
|
|
|
|
*data = buf->data + buf->first;
|
2002-03-27 19:00:00 +01:00
|
|
|
return err;
|
|
|
|
}
|