luasocket/src/buffer.c

243 lines
8.0 KiB
C
Raw Normal View History

2002-03-27 19:00:00 +01: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>
#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
\*=========================================================================*/
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
/* 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
\*-------------------------------------------------------------------------*/
int buf_open(lua_State *L)
2002-03-27 19:00:00 +01:00
{
(void) L;
return 0;
2002-03-27 19:00:00 +01:00
}
/*-------------------------------------------------------------------------*\
* Initializes C structure
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
void buf_init(p_buf buf, p_io io, p_tm tm)
2002-03-27 19:00:00 +01:00
{
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
}
/*-------------------------------------------------------------------------*\
* object:send() interface
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +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;
p_tm tm = buf->tm;
tm_markstart(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
}
lua_pushnumber(L, total);
io_pusherror(L, err);
#ifdef LUASOCKET_DEBUG
2002-03-27 19:00:00 +01:00
/* push time elapsed during operation as the last return value */
2003-05-25 03:54:13 +02:00
lua_pushnumber(L, (tm_gettime() - tm_getstart(tm))/1000.0);
2002-03-27 19:00:00 +01:00
#endif
return lua_gettop(L) - top;
}
/*-------------------------------------------------------------------------*\
* object:receive() interface
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
int buf_meth_receive(lua_State *L, p_buf buf)
2002-03-27 19:00:00 +01:00
{
int err = IO_DONE, top = lua_gettop(L);
2003-05-25 03:54:13 +02:00
p_tm tm = buf->tm;
luaL_Buffer b;
luaL_buffinit(L, &b);
2003-05-25 03:54:13 +02:00
tm_markstart(tm);
2002-03-27 19:00:00 +01:00
/* receive all patterns */
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");
/* get a fixed number of bytes */
} else err = recvraw(buf, (size_t) lua_tonumber(L, 2), &b);
/* check if there was an error */
if (err != IO_DONE) {
luaL_pushresult(&b);
io_pusherror(L, err);
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
}
#ifdef LUASOCKET_DEBUG
2002-03-27 19:00:00 +01:00
/* push time elapsed during operation as the last return value */
2003-05-25 03:54:13 +02:00
lua_pushnumber(L, (tm_gettime() - tm_getstart(tm))/1000.0);
2002-03-27 19:00:00 +01:00
#endif
return lua_gettop(L) - top;
}
/*-------------------------------------------------------------------------*\
* Determines if there is any data in the read buffer
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
int buf_isempty(p_buf buf)
2002-03-27 19:00:00 +01:00
{
2003-05-25 03:54:13 +02:00
return buf->first >= buf->last;
2002-03-27 19:00:00 +01:00
}
/*=========================================================================*\
* Internal functions
\*=========================================================================*/
/*-------------------------------------------------------------------------*\
* Sends a block of data (unbuffered)
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
static
int sendraw(p_buf buf, const char *data, size_t count, size_t *sent)
2002-03-27 19:00:00 +01:00
{
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-05-28 09:38:12 +02:00
while (total < count && (err == IO_DONE || err == IO_RETRY)) {
2002-03-27 19:00:00 +01:00
size_t done;
err = io->send(io->ctx, data+total, count-total, &done, tm_get(tm));
2002-03-27 19:00:00 +01:00
total += done;
}
*sent = total;
return err;
}
/*-------------------------------------------------------------------------*\
* Reads a fixed number of bytes (buffered)
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
static
int recvraw(p_buf buf, size_t wanted, luaL_Buffer *b)
2002-03-27 19:00:00 +01:00
{
2003-05-25 03:54:13 +02:00
int err = IO_DONE;
2002-03-27 19:00:00 +01:00
size_t total = 0;
while (total < wanted && (err == IO_DONE || err == IO_RETRY)) {
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);
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;
}
/*-------------------------------------------------------------------------*\
* Reads everything until the connection is closed (buffered)
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
static
int recvall(p_buf buf, luaL_Buffer *b)
2002-03-27 19:00:00 +01:00
{
2003-05-25 03:54:13 +02:00
int err = IO_DONE;
while (err == IO_DONE || err == IO_RETRY) {
2003-05-25 03:54:13 +02:00
const char *data; size_t count;
err = buf_get(buf, &data, &count);
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
}
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
* are not returned by the function and are discarded from the buffer
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
static
int recvline(p_buf buf, luaL_Buffer *b)
2002-03-27 19:00:00 +01:00
{
int err = IO_DONE;
while (err == IO_DONE || err == IO_RETRY) {
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 */
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;
}
/*-------------------------------------------------------------------------*\
* 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
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
static
void buf_skip(p_buf buf, size_t count)
2002-03-27 19:00:00 +01:00
{
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
* if buffer is empty
2002-03-27 19:00:00 +01:00
\*-------------------------------------------------------------------------*/
2003-05-25 03:54:13 +02:00
static
int buf_get(p_buf buf, const char **data, size_t *count)
2002-03-27 19:00:00 +01:00
{
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;
err = io->recv(io->ctx, buf->data, BUF_SIZE, &got, tm_get(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;
}