1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/lzio.c

90 lines
1.8 KiB
C
Raw Permalink Normal View History

1997-06-16 13:50:22 -03:00
/*
** $Id: lzio.c $
2012-05-14 10:34:18 -03:00
** Buffered streams
1997-09-16 16:25:59 -03:00
** See Copyright Notice in lua.h
1997-06-16 13:50:22 -03:00
*/
2002-12-04 15:38:31 -02:00
#define lzio_c
#define LUA_CORE
2002-12-04 15:38:31 -02:00
#include "lprefix.h"
#include <string.h>
#include "lua.h"
#include "lapi.h"
#include "llimits.h"
#include "lmem.h"
2003-08-27 17:57:52 -03:00
#include "lstate.h"
1997-09-16 16:25:59 -03:00
#include "lzio.h"
1997-06-16 13:50:22 -03:00
int luaZ_fill (ZIO *z) {
size_t size;
2003-08-27 17:57:52 -03:00
lua_State *L = z->L;
const char *buff;
lua_unlock(L);
buff = z->reader(L, z->data, &size);
lua_lock(L);
2011-02-23 10:13:10 -03:00
if (buff == NULL || size == 0)
return EOZ;
2011-02-23 10:13:10 -03:00
z->n = size - 1; /* discount char being returned */
z->p = buff;
return cast_uchar(*(z->p++));
1997-06-16 13:50:22 -03:00
}
2005-05-17 16:49:15 -03:00
void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
2003-08-25 17:00:50 -03:00
z->L = L;
2002-06-06 09:40:22 -03:00
z->reader = reader;
z->data = data;
z->n = 0;
z->p = NULL;
1997-06-16 13:50:22 -03:00
}
/* --------------------------------------------------------------- read --- */
static int checkbuffer (ZIO *z) {
if (z->n == 0) { /* no bytes in buffer? */
if (luaZ_fill(z) == EOZ) /* try to read more */
return 0; /* no more input */
else {
z->n++; /* luaZ_fill consumed first byte; put it back */
z->p--;
}
}
return 1; /* now buffer has something */
}
2002-08-05 15:45:02 -03:00
size_t luaZ_read (ZIO *z, void *b, size_t n) {
1997-06-16 13:50:22 -03:00
while (n) {
2000-05-24 10:54:49 -03:00
size_t m;
if (!checkbuffer(z))
return n; /* no more input; return number of missing bytes */
1999-02-25 18:07:26 -03:00
m = (n <= z->n) ? n : z->n; /* min. between n and z->n */
1997-06-16 13:50:22 -03:00
memcpy(b, z->p, m);
z->n -= m;
z->p += m;
b = (char *)b + m;
n -= m;
}
return 0;
}
const void *luaZ_getaddr (ZIO* z, size_t n) {
const void *res;
if (!checkbuffer(z))
return NULL; /* no more input */
if (z->n < n) /* not enough bytes? */
return NULL; /* block not whole; cannot give an address */
res = z->p; /* get block address */
z->n -= n; /* consume these bytes */
z->p += n;
return res;
}