lua/lzio.c

82 lines
1.6 KiB
C
Raw Normal View History

1997-06-16 20:50:22 +04:00
/*
2002-04-29 16:37:41 +04:00
** $Id: lzio.c,v 1.15 2001/11/28 20:13:13 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** a generic input stream interface
** See Copyright Notice in lua.h
1997-06-16 20:50:22 +04:00
*/
1997-09-16 23:25:59 +04:00
1997-06-16 20:50:22 +04:00
#include <stdio.h>
#include <string.h>
1997-09-16 23:25:59 +04:00
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "lzio.h"
1997-06-16 20:50:22 +04:00
/* ----------------------------------------------------- memory buffers --- */
static int zmfilbuf (ZIO* z) {
1999-11-09 20:59:35 +03:00
(void)z; /* to avoid warnings */
1999-08-17 00:52:00 +04:00
return EOZ;
1997-06-16 20:50:22 +04:00
}
2000-05-24 17:54:49 +04:00
ZIO* zmopen (ZIO* z, const char* b, size_t size, const char *name) {
1999-08-17 00:52:00 +04:00
if (b==NULL) return NULL;
z->n = size;
2000-03-03 17:58:26 +03:00
z->p = (const unsigned char *)b;
1999-08-17 00:52:00 +04:00
z->filbuf = zmfilbuf;
z->u = NULL;
z->name = name;
return z;
1997-06-16 20:50:22 +04:00
}
/* -------------------------------------------------------------- FILEs --- */
static int zffilbuf (ZIO* z) {
2000-05-24 17:54:49 +04:00
size_t n;
1999-08-17 00:52:00 +04:00
if (feof((FILE *)z->u)) return EOZ;
2000-02-08 19:39:42 +03:00
n = fread(z->buffer, 1, ZBSIZE, (FILE *)z->u);
1999-08-17 00:52:00 +04:00
if (n==0) return EOZ;
z->n = n-1;
z->p = z->buffer;
return *(z->p++);
1997-06-16 20:50:22 +04:00
}
1999-08-17 00:52:00 +04:00
ZIO* zFopen (ZIO* z, FILE* f, const char *name) {
if (f==NULL) return NULL;
z->n = 0;
z->p = z->buffer;
z->filbuf = zffilbuf;
z->u = f;
z->name = name;
return z;
1997-06-16 20:50:22 +04:00
}
/* --------------------------------------------------------------- read --- */
2000-05-24 17:54:49 +04:00
size_t zread (ZIO *z, void *b, size_t n) {
1997-06-16 20:50:22 +04:00
while (n) {
2000-05-24 17:54:49 +04:00
size_t m;
1997-06-16 20:50:22 +04:00
if (z->n == 0) {
if (z->filbuf(z) == EOZ)
1999-02-26 00:07:26 +03:00
return n; /* return number of missing bytes */
2001-03-26 18:31:49 +04:00
else {
++z->n; /* filbuf removed first byte; put back it */
--z->p;
}
1997-06-16 20:50:22 +04:00
}
1999-02-26 00:07:26 +03:00
m = (n <= z->n) ? n : z->n; /* min. between n and z->n */
1997-06-16 20:50:22 +04:00
memcpy(b, z->p, m);
z->n -= m;
z->p += m;
b = (char *)b + m;
n -= m;
}
return 0;
}