lua/lundump.c

240 lines
4.7 KiB
C
Raw Normal View History

1998-01-14 18:49:01 +03:00
/*
1998-03-26 17:50:19 +03:00
** $Id: lundump.c,v 1.7 1998/03/05 15:45:08 lhf Exp lhf $
1998-01-14 18:49:01 +03:00
** load bytecodes from files
** See Copyright Notice in lua.h
*/
#include <stdio.h>
#include "lauxlib.h"
#include "lfunc.h"
#include "lmem.h"
#include "lstring.h"
#include "lundump.h"
1998-03-26 17:50:19 +03:00
#define LoadBlock(b,size,Z) ezread(Z,b,size)
#define LoadNative(t,D) LoadBlock(&t,sizeof(t),D)
/* LUA_NUMBER */
/* if you change the definition of real, make sure you set ID_NUMBER
* accordingly lundump.h, specially if sizeof(long)!=4.
* for types other than the ones listed below, you'll have to write your own
* dump and undump routines.
*/
#if ID_NUMBER==ID_REAL4
#define LoadNumber LoadFloat
#elif ID_NUMBER==ID_REAL8
#define LoadNumber LoadDouble
#elif ID_NUMBER==ID_INT4
#define LoadNumber LoadLong
#elif ID_NUMBER==ID_NATIVE
#define LoadNumber LoadNative
#else
#define LoadNumber LoadWhat
#endif
1998-01-14 18:49:01 +03:00
static void unexpectedEOZ(ZIO* Z)
{
1998-03-26 17:50:19 +03:00
luaL_verror("unexpected end of file in %s",zname(Z));
1998-01-14 18:49:01 +03:00
}
static int ezgetc(ZIO* Z)
{
int c=zgetc(Z);
if (c==EOZ) unexpectedEOZ(Z);
return c;
}
1998-03-26 17:50:19 +03:00
static void ezread(ZIO* Z, void* b, int n)
1998-01-14 18:49:01 +03:00
{
int r=zread(Z,b,n);
if (r!=0) unexpectedEOZ(Z);
}
1998-03-26 17:50:19 +03:00
static unsigned int LoadWord(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
unsigned int hi=ezgetc(Z);
unsigned int lo=ezgetc(Z);
1998-01-14 18:49:01 +03:00
return (hi<<8)|lo;
}
1998-03-26 17:50:19 +03:00
static unsigned long LoadLong(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
unsigned long hi=LoadWord(Z);
unsigned long lo=LoadWord(Z);
return (hi<<16)|lo;
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
/* LUA_NUMBER */
/* assumes sizeof(long)==4 and sizeof(float)==4 (IEEE) */
static float LoadFloat(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
long l=LoadLong(Z);
float f=*(float*)&l;
return f;
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
/* LUA_NUMBER */
/* assumes sizeof(long)==4 and sizeof(double)==8 (IEEE) */
static double LoadDouble(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
long l[2];
double f;
int x=1;
if (*(char*)&x==1) /* little-endian */
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
l[1]=LoadLong(Z);
l[0]=LoadLong(Z);
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
else /* big-endian */
{
l[0]=LoadLong(Z);
l[1]=LoadLong(Z);
}
f=*(double*)l;
return f;
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
static Byte* LoadCode(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
long size=LoadLong(Z);
unsigned int s=size;
void* b;
if (s!=size) luaL_verror("code too long (%ld bytes) in %s",size,zname(Z));
b=luaM_malloc(size);
LoadBlock(b,size,Z);
return b;
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
static TaggedString* LoadTString(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
int size=LoadWord(Z);
if (size==0)
return NULL;
1998-01-14 18:49:01 +03:00
else
{
1998-03-26 17:50:19 +03:00
char* s=luaL_openspace(size);
LoadBlock(s,size,Z);
return luaS_newlstr(s,size-1);
1998-01-14 18:49:01 +03:00
}
}
static void LoadLocals(TProtoFunc* tf, ZIO* Z)
{
int i,n=LoadWord(Z);
if (n==0) return;
tf->locvars=luaM_newvector(n+1,LocVar);
for (i=0; i<n; i++)
{
tf->locvars[i].line=LoadWord(Z);
tf->locvars[i].varname=LoadTString(Z);
}
tf->locvars[i].line=-1; /* flag end of vector */
tf->locvars[i].varname=NULL;
}
1998-03-26 17:50:19 +03:00
static TProtoFunc* LoadFunction(ZIO* Z);
static void LoadConstants(TProtoFunc* tf, ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
int i,n=LoadWord(Z);
1998-01-14 18:49:01 +03:00
tf->nconsts=n;
if (n==0) return;
tf->consts=luaM_newvector(n,TObject);
for (i=0; i<n; i++)
{
TObject* o=tf->consts+i;
1998-03-26 17:50:19 +03:00
int c=ezgetc(Z);
1998-01-14 18:49:01 +03:00
switch (c)
{
case ID_NUM:
ttype(o)=LUA_T_NUMBER;
1998-03-26 17:50:19 +03:00
#if ID_NUMBER==ID_NATIVE
LoadNative(nvalue(o),Z)
#else
nvalue(o)=LoadNumber(Z);
#endif
1998-01-14 18:49:01 +03:00
break;
case ID_STR:
ttype(o)=LUA_T_STRING;
1998-03-26 17:50:19 +03:00
tsvalue(o)=LoadTString(Z);
1998-01-14 18:49:01 +03:00
break;
case ID_FUN:
ttype(o)=LUA_T_PROTO;
1998-03-26 17:50:19 +03:00
tfvalue(o)=LoadFunction(Z);
1998-01-14 18:49:01 +03:00
break;
1998-03-26 17:50:19 +03:00
default:
luaL_verror("bad constant #%d in %s: type=%d ('%c')",i,zname(Z),c,c);
1998-01-14 18:49:01 +03:00
break;
}
}
}
1998-03-26 17:50:19 +03:00
static TProtoFunc* LoadFunction(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
TProtoFunc* tf=luaF_newproto();
tf->lineDefined=LoadWord(Z);
tf->fileName=LoadTString(Z);
1998-03-26 17:50:19 +03:00
tf->code=LoadCode(Z);
1998-01-14 18:49:01 +03:00
LoadLocals(tf,Z);
1998-03-26 17:50:19 +03:00
LoadConstants(tf,Z);
1998-01-14 18:49:01 +03:00
return tf;
}
static void LoadSignature(ZIO* Z)
{
char* s=SIGNATURE;
while (*s!=0 && ezgetc(Z)==*s)
++s;
1998-03-26 17:50:19 +03:00
if (*s!=0) luaL_verror("bad signature in %s",zname(Z));
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
static void LoadHeader(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
int version,id,sizeofR;
real f=-TEST_NUMBER,tf=TEST_NUMBER;
1998-01-14 18:49:01 +03:00
LoadSignature(Z);
version=ezgetc(Z);
if (version>VERSION)
luaL_verror(
1998-03-26 17:50:19 +03:00
"%s too new: version=0x%02x; expected at most 0x%02x",
zname(Z),version,VERSION);
1998-01-14 18:49:01 +03:00
if (version<0x31) /* major change in 3.1 */
luaL_verror(
1998-03-26 17:50:19 +03:00
"%s too old: version=0x%02x; expected at least 0x%02x",
zname(Z),version,0x31);
id=ezgetc(Z); /* test number representation */
sizeofR=ezgetc(Z);
if (id!=ID_NUMBER || sizeofR!=sizeof(real))
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
luaL_verror("unknown number representation in %s: "
"read 0x%02x %d; expected 0x%02x %d",
zname(Z),id,sizeofR,ID_NUMBER,sizeof(real));
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
f=LoadNumber(Z);
if (f!=tf)
luaL_verror("unknown number representation in %s: "
"read %g; expected %g", /* LUA_NUMBER */
zname(Z),(double)f,(double)tf);
1998-01-14 18:49:01 +03:00
}
1998-03-26 17:50:19 +03:00
static TProtoFunc* LoadChunk(ZIO* Z)
1998-01-14 18:49:01 +03:00
{
1998-03-26 17:50:19 +03:00
LoadHeader(Z);
return LoadFunction(Z);
1998-01-14 18:49:01 +03:00
}
/*
** load one chunk from a file or buffer
** return main if ok and NULL at EOF
*/
TProtoFunc* luaU_undump1(ZIO* Z)
{
int c=zgetc(Z);
if (c==ID_CHUNK)
1998-03-26 17:50:19 +03:00
return LoadChunk(Z);
1998-01-14 18:49:01 +03:00
else if (c!=EOZ)
1998-03-26 17:50:19 +03:00
luaL_verror("%s is not a Lua binary file",zname(Z));
1998-01-14 18:49:01 +03:00
return NULL;
}