1997-06-17 00:50:22 +08:00
|
|
|
/*
|
2005-06-04 04:16:16 +08:00
|
|
|
** $Id: lzio.c,v 1.30 2005/05/17 19:49:15 roberto Exp roberto $
|
1997-09-17 03:25:59 +08:00
|
|
|
** a generic input stream interface
|
|
|
|
** See Copyright Notice in lua.h
|
1997-06-17 00:50:22 +08:00
|
|
|
*/
|
|
|
|
|
1997-09-17 03:25:59 +08:00
|
|
|
|
1997-06-17 00:50:22 +08:00
|
|
|
#include <string.h>
|
1997-09-17 03:25:59 +08:00
|
|
|
|
2002-12-05 01:38:31 +08:00
|
|
|
#define lzio_c
|
2004-05-01 04:13:38 +08:00
|
|
|
#define LUA_CORE
|
2002-12-05 01:38:31 +08:00
|
|
|
|
2000-06-12 21:52:05 +08:00
|
|
|
#include "lua.h"
|
|
|
|
|
2002-06-04 01:46:34 +08:00
|
|
|
#include "llimits.h"
|
2002-10-09 02:46:08 +08:00
|
|
|
#include "lmem.h"
|
2003-08-28 04:57:52 +08:00
|
|
|
#include "lstate.h"
|
1997-09-17 03:25:59 +08:00
|
|
|
#include "lzio.h"
|
|
|
|
|
1997-06-17 00:50:22 +08:00
|
|
|
|
2002-06-04 01:46:34 +08:00
|
|
|
int luaZ_fill (ZIO *z) {
|
|
|
|
size_t size;
|
2003-08-28 04:57:52 +08:00
|
|
|
lua_State *L = z->L;
|
|
|
|
const char *buff;
|
|
|
|
lua_unlock(L);
|
|
|
|
buff = z->reader(L, z->data, &size);
|
|
|
|
lua_lock(L);
|
2002-06-04 01:46:34 +08:00
|
|
|
if (buff == NULL || size == 0) return EOZ;
|
|
|
|
z->n = size - 1;
|
|
|
|
z->p = buff;
|
2003-03-21 00:00:56 +08:00
|
|
|
return char2int(*(z->p++));
|
1997-06-17 00:50:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-04 04:11:07 +08:00
|
|
|
int luaZ_lookahead (ZIO *z) {
|
|
|
|
if (z->n == 0) {
|
2005-06-04 04:16:16 +08:00
|
|
|
if (luaZ_fill(z) == EOZ)
|
|
|
|
return EOZ;
|
|
|
|
else {
|
|
|
|
z->n++; /* luaZ_fill removed first byte; put back it */
|
|
|
|
z->p--;
|
|
|
|
}
|
2002-06-04 04:11:07 +08:00
|
|
|
}
|
2003-03-21 00:00:56 +08:00
|
|
|
return char2int(*z->p);
|
2002-06-04 04:11:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-18 03:49:15 +08:00
|
|
|
void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
|
2003-08-26 04:00:50 +08:00
|
|
|
z->L = L;
|
2002-06-06 20:40:22 +08:00
|
|
|
z->reader = reader;
|
|
|
|
z->data = data;
|
2002-06-04 01:46:34 +08:00
|
|
|
z->n = 0;
|
|
|
|
z->p = NULL;
|
1997-06-17 00:50:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------- read --- */
|
2002-08-06 02:45:02 +08:00
|
|
|
size_t luaZ_read (ZIO *z, void *b, size_t n) {
|
1997-06-17 00:50:22 +08:00
|
|
|
while (n) {
|
2000-05-24 21:54:49 +08:00
|
|
|
size_t m;
|
2005-06-04 04:16:16 +08:00
|
|
|
if (luaZ_lookahead(z) == EOZ)
|
|
|
|
return n; /* return number of missing bytes */
|
1999-02-26 05:07:26 +08:00
|
|
|
m = (n <= z->n) ? n : z->n; /* min. between n and z->n */
|
1997-06-17 00:50:22 +08:00
|
|
|
memcpy(b, z->p, m);
|
|
|
|
z->n -= m;
|
|
|
|
z->p += m;
|
|
|
|
b = (char *)b + m;
|
|
|
|
n -= m;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-04 01:46:34 +08:00
|
|
|
|
2002-10-09 02:46:08 +08:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
char *luaZ_openspace (lua_State *L, Mbuffer *buff, size_t n) {
|
|
|
|
if (n > buff->buffsize) {
|
|
|
|
if (n < LUA_MINBUFFER) n = LUA_MINBUFFER;
|
2003-11-18 18:44:53 +08:00
|
|
|
luaZ_resizebuffer(L, buff, n);
|
2002-10-09 02:46:08 +08:00
|
|
|
}
|
|
|
|
return buff->buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|