summaryrefslogtreecommitdiffstats
path: root/src/lua2c.c
blob: 261239af7e564bf8f6f5e3afeb8f0cd4bbffd857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* --------------------------------------------------------------------------
 * Copyright 2003-2011 (inclusive) Nathan Angelacos 
 *                   (nangel@users.sourceforge.net)
 * 
 *   This file is part of haserl.
 *
 *   Haserl is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License version 2,
 *   as published by the Free Software Foundation.
 *
 *   Haserl is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with haserl.  If not, see <http://www.gnu.org/licenses/>.
 *
 * ------------------------------------------------------------------------ */

/* This program loads the source file, and then uses lua_dump to output it
 * to a c const char array.  Because lua_dump is used instead of the internal
 * luaU_dump function, debugging info is in the output array.   If you want
 * to compile the array without debugging information, first use luac on the
 * .lua source, and then run lua2c on that output:
 * luac -s -o foo haserl_lualib.lua
 * lua2c haserl_lualib foo >haserl_lualib.inc
 */

#if HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>

lua_State *lua_vm = NULL;


static void
loadit (char *filename)
{

  lua_vm = luaL_newstate ();
  luaL_openlibs (lua_vm);

  if (luaL_loadfile (lua_vm, filename))
    {
      puts (lua_tostring (lua_vm, -1));
      exit (-1);
    }

}

static int
writer (lua_State * L, const void *p, size_t size, void *u)
{
  static int count = 0;
  int i;
  for (i = 0; i < size; i++)
    {
      if ((count) && (count % 16) == 0)
	printf ("\n  ");
      printf ("%3d,", *((unsigned char *) (p + i)));
      count++;
    }

  return (0);
}


static void
dumpit ()
{
#if LUA_VERSION_NUM >= 503
  lua_dump (lua_vm, writer, NULL, 0);
#else
  lua_dump (lua_vm, writer, NULL);
#endif

}


int
main (int argc, char *argv[])
{
  if (argc != 3)
    {
      printf ("usage: %s varname luasource >output\n", argv[0]);
      return (-1);
    }

  loadit (argv[2]);


  printf
    ("/* This file was automatically generated from %s. DO NOT EDIT */\n\n",
     argv[2]);
  printf ("static const unsigned char %s[] = { \n  ", argv[1]);
  dumpit ();
  printf ("\n};\n");

  return (0);
}