lua/lzio.c

85 lines
1.7 KiB
C
Raw Normal View History

1997-06-16 18:50:22 +02:00
/*
** $Id: lzio.c,v 1.12 2000/05/24 13:54:49 roberto Exp roberto $
1997-09-16 21:25:59 +02:00
** a generic input stream interface
** See Copyright Notice in lua.h
1997-06-16 18:50:22 +02:00
*/
1997-09-16 21:25:59 +02:00
1997-06-16 18:50:22 +02:00
#include <stdio.h>
#include <string.h>
1997-09-16 21:25:59 +02:00
#include "lua.h"
1997-09-16 21:25:59 +02:00
#include "lzio.h"
1997-06-16 18:50:22 +02:00
/* ----------------------------------------------------- memory buffers --- */
static int zmfilbuf (ZIO* z) {
1999-11-09 18:59:35 +01:00
(void)z; /* to avoid warnings */
1999-08-16 22:52:00 +02:00
return EOZ;
1997-06-16 18:50:22 +02:00
}
2000-05-24 15:54:49 +02:00
ZIO* zmopen (ZIO* z, const char* b, size_t size, const char *name) {
1999-08-16 22:52:00 +02:00
if (b==NULL) return NULL;
z->n = size;
2000-03-03 15:58:26 +01:00
z->p = (const unsigned char *)b;
1999-08-16 22:52:00 +02:00
z->filbuf = zmfilbuf;
z->u = NULL;
z->name = name;
return z;
1997-06-16 18:50:22 +02:00
}
/* ------------------------------------------------------------ strings --- */
1999-08-16 22:52:00 +02:00
ZIO* zsopen (ZIO* z, const char* s, const char *name) {
if (s==NULL) return NULL;
2000-02-08 17:39:42 +01:00
return zmopen(z, s, strlen(s), name);
1997-06-16 18:50:22 +02:00
}
/* -------------------------------------------------------------- FILEs --- */
static int zffilbuf (ZIO* z) {
2000-05-24 15:54:49 +02:00
size_t n;
1999-08-16 22:52:00 +02:00
if (feof((FILE *)z->u)) return EOZ;
2000-02-08 17:39:42 +01:00
n = fread(z->buffer, 1, ZBSIZE, (FILE *)z->u);
1999-08-16 22:52:00 +02:00
if (n==0) return EOZ;
z->n = n-1;
z->p = z->buffer;
return *(z->p++);
1997-06-16 18:50:22 +02:00
}
1999-08-16 22:52:00 +02: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 18:50:22 +02:00
}
/* --------------------------------------------------------------- read --- */
2000-05-24 15:54:49 +02:00
size_t zread (ZIO *z, void *b, size_t n) {
1997-06-16 18:50:22 +02:00
while (n) {
2000-05-24 15:54:49 +02:00
size_t m;
1997-06-16 18:50:22 +02:00
if (z->n == 0) {
if (z->filbuf(z) == EOZ)
1999-02-25 22:07:26 +01:00
return n; /* return number of missing bytes */
2000-03-03 15:58:26 +01:00
zungetc(z); /* put result from `filbuf' in the buffer */
1997-06-16 18:50:22 +02:00
}
1999-02-25 22:07:26 +01:00
m = (n <= z->n) ? n : z->n; /* min. between n and z->n */
1997-06-16 18:50:22 +02:00
memcpy(b, z->p, m);
z->n -= m;
z->p += m;
b = (char *)b + m;
n -= m;
}
return 0;
}