lundump.c
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:6k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. /*
  2. ** $Id: lundump.c,v 1.1 2004/08/20 02:26:56 JH Exp $
  3. ** load pre-compiled Lua chunks
  4. ** See Copyright Notice in lua.h
  5. */
  6. #define lundump_c
  7. #include "lua.h"
  8. #include "ldebug.h"
  9. #include "lfunc.h"
  10. #include "lmem.h"
  11. #include "lopcodes.h"
  12. #include "lstring.h"
  13. #include "lundump.h"
  14. #include "lzio.h"
  15. #define LoadByte (lu_byte) ezgetc
  16. typedef struct {
  17.  lua_State* L;
  18.  ZIO* Z;
  19.  Mbuffer* b;
  20.  int swap;
  21.  const char* name;
  22. } LoadState;
  23. static void unexpectedEOZ (LoadState* S)
  24. {
  25.  luaG_runerror(S->L,"unexpected end of file in %s",S->name);
  26. }
  27. static int ezgetc (LoadState* S)
  28. {
  29.  int c=zgetc(S->Z);
  30.  if (c==EOZ) unexpectedEOZ(S);
  31.  return c;
  32. }
  33. static void ezread (LoadState* S, void* b, int n)
  34. {
  35.  int r=luaZ_read(S->Z,b,n);
  36.  if (r!=0) unexpectedEOZ(S);
  37. }
  38. static void LoadBlock (LoadState* S, void* b, size_t size)
  39. {
  40.  if (S->swap)
  41.  {
  42.   char* p=(char*) b+size-1;
  43.   int n=size;
  44.   while (n--) *p--=(char)ezgetc(S);
  45.  }
  46.  else
  47.   ezread(S,b,size);
  48. }
  49. static void LoadVector (LoadState* S, void* b, int m, size_t size)
  50. {
  51.  if (S->swap)
  52.  {
  53.   char* q=(char*) b;
  54.   while (m--)
  55.   {
  56.    char* p=q+size-1;
  57.    int n=size;
  58.    while (n--) *p--=(char)ezgetc(S);
  59.    q+=size;
  60.   }
  61.  }
  62.  else
  63.   ezread(S,b,m*size);
  64. }
  65. static int LoadInt (LoadState* S)
  66. {
  67.  int x;
  68.  LoadBlock(S,&x,sizeof(x));
  69.  if (x<0) luaG_runerror(S->L,"bad integer in %s",S->name);
  70.  return x;
  71. }
  72. static size_t LoadSize (LoadState* S)
  73. {
  74.  size_t x;
  75.  LoadBlock(S,&x,sizeof(x));
  76.  return x;
  77. }
  78. static lua_Number LoadNumber (LoadState* S)
  79. {
  80.  lua_Number x;
  81.  LoadBlock(S,&x,sizeof(x));
  82.  return x;
  83. }
  84. static TString* LoadString (LoadState* S)
  85. {
  86.  size_t size=LoadSize(S);
  87.  if (size==0)
  88.   return NULL;
  89.  else
  90.  {
  91.   char* s=luaZ_openspace(S->L,S->b,size);
  92.   ezread(S,s,size);
  93.   return luaS_newlstr(S->L,s,size-1); /* remove trailing '' */
  94.  }
  95. }
  96. static void LoadCode (LoadState* S, Proto* f)
  97. {
  98.  int size=LoadInt(S);
  99.  f->code=luaM_newvector(S->L,size,Instruction);
  100.  f->sizecode=size;
  101.  LoadVector(S,f->code,size,sizeof(*f->code));
  102. }
  103. static void LoadLocals (LoadState* S, Proto* f)
  104. {
  105.  int i,n;
  106.  n=LoadInt(S);
  107.  f->locvars=luaM_newvector(S->L,n,LocVar);
  108.  f->sizelocvars=n;
  109.  for (i=0; i<n; i++)
  110.  {
  111.   f->locvars[i].varname=LoadString(S);
  112.   f->locvars[i].startpc=LoadInt(S);
  113.   f->locvars[i].endpc=LoadInt(S);
  114.  }
  115. }
  116. static void LoadLines (LoadState* S, Proto* f)
  117. {
  118.  int size=LoadInt(S);
  119.  f->lineinfo=luaM_newvector(S->L,size,int);
  120.  f->sizelineinfo=size;
  121.  LoadVector(S,f->lineinfo,size,sizeof(*f->lineinfo));
  122. }
  123. static void LoadUpvalues (LoadState* S, Proto* f)
  124. {
  125.  int i,n;
  126.  n=LoadInt(S);
  127.  if (n!=0 && n!=f->nups) 
  128.   luaG_runerror(S->L,"bad nupvalues in %s: read %d; expected %d",
  129. S->name,n,f->nups);
  130.  f->upvalues=luaM_newvector(S->L,n,TString*);
  131.  f->sizeupvalues=n;
  132.  for (i=0; i<n; i++) f->upvalues[i]=LoadString(S);
  133. }
  134. static Proto* LoadFunction (LoadState* S, TString* p);
  135. static void LoadConstants (LoadState* S, Proto* f)
  136. {
  137.  int i,n;
  138.  n=LoadInt(S);
  139.  f->k=luaM_newvector(S->L,n,TObject);
  140.  f->sizek=n;
  141.  for (i=0; i<n; i++)
  142.  {
  143.   TObject* o=&f->k[i];
  144.   int t=LoadByte(S);
  145.   switch (t)
  146.   {
  147.    case LUA_TNUMBER:
  148. setnvalue(o,LoadNumber(S));
  149. break;
  150.    case LUA_TSTRING:
  151. setsvalue2n(o,LoadString(S));
  152. break;
  153.    case LUA_TNIL:
  154.     setnilvalue(o);
  155. break;
  156.    default:
  157. luaG_runerror(S->L,"bad constant type (%d) in %s",t,S->name);
  158. break;
  159.   }
  160.  }
  161.  n=LoadInt(S);
  162.  f->p=luaM_newvector(S->L,n,Proto*);
  163.  f->sizep=n;
  164.  for (i=0; i<n; i++) f->p[i]=LoadFunction(S,f->source);
  165. }
  166. static Proto* LoadFunction (LoadState* S, TString* p)
  167. {
  168.  Proto* f=luaF_newproto(S->L);
  169.  f->source=LoadString(S); if (f->source==NULL) f->source=p;
  170.  f->lineDefined=LoadInt(S);
  171.  f->nups=LoadByte(S);
  172.  f->numparams=LoadByte(S);
  173.  f->is_vararg=LoadByte(S);
  174.  f->maxstacksize=LoadByte(S);
  175.  LoadLines(S,f);
  176.  LoadLocals(S,f);
  177.  LoadUpvalues(S,f);
  178.  LoadConstants(S,f);
  179.  LoadCode(S,f);
  180. #ifndef TRUST_BINARIES
  181.  if (!luaG_checkcode(f)) luaG_runerror(S->L,"bad code in %s",S->name);
  182. #endif
  183.  return f;
  184. }
  185. static void LoadSignature (LoadState* S)
  186. {
  187.  const char* s=LUA_SIGNATURE;
  188.  while (*s!=0 && ezgetc(S)==*s)
  189.   ++s;
  190.  if (*s!=0) luaG_runerror(S->L,"bad signature in %s",S->name);
  191. }
  192. static void TestSize (LoadState* S, int s, const char* what)
  193. {
  194.  int r=LoadByte(S);
  195.  if (r!=s)
  196.   luaG_runerror(S->L,"virtual machine mismatch in %s: "
  197. "size of %s is %d but read %d",S->name,what,s,r);
  198. }
  199. #define TESTSIZE(s,w) TestSize(S,s,w)
  200. #define V(v) v/16,v%16
  201. static void LoadHeader (LoadState* S)
  202. {
  203.  int version;
  204.  lua_Number x,tx=TEST_NUMBER;
  205.  LoadSignature(S);
  206.  version=LoadByte(S);
  207.  if (version>VERSION)
  208.   luaG_runerror(S->L,"%s too new: "
  209. "read version %d.%d; expected at most %d.%d",
  210. S->name,V(version),V(VERSION));
  211.  if (version<VERSION0) /* check last major change */
  212.   luaG_runerror(S->L,"%s too old: "
  213. "read version %d.%d; expected at least %d.%d",
  214. S->name,V(version),V(VERSION0));
  215.  S->swap=(luaU_endianness()!=LoadByte(S)); /* need to swap bytes? */
  216.  TESTSIZE(sizeof(int),"int");
  217.  TESTSIZE(sizeof(size_t), "size_t");
  218.  TESTSIZE(sizeof(Instruction), "Instruction");
  219.  TESTSIZE(SIZE_OP, "OP");
  220.  TESTSIZE(SIZE_A, "A");
  221.  TESTSIZE(SIZE_B, "B");
  222.  TESTSIZE(SIZE_C, "C");
  223.  TESTSIZE(sizeof(lua_Number), "number");
  224.  x=LoadNumber(S);
  225.  if ((long)x!=(long)tx) /* disregard errors in last bits of fraction */
  226.   luaG_runerror(S->L,"unknown number format in %s",S->name);
  227. }
  228. static Proto* LoadChunk (LoadState* S)
  229. {
  230.  LoadHeader(S);
  231.  return LoadFunction(S,NULL);
  232. }
  233. /*
  234. ** load precompiled chunk
  235. */
  236. Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff)
  237. {
  238.  LoadState S;
  239.  const char* s=zname(Z);
  240.  if (*s=='@' || *s=='=')
  241.   S.name=s+1;
  242.  else if (*s==LUA_SIGNATURE[0])
  243.   S.name="binary string";
  244.  else
  245.   S.name=s;
  246.  S.L=L;
  247.  S.Z=Z;
  248.  S.b=buff;
  249.  return LoadChunk(&S);
  250. }
  251. /*
  252. ** find byte order
  253. */
  254. int luaU_endianness (void)
  255. {
  256.  int x=1;
  257.  return *(char*)&x;
  258. }