fix cacao/gennativetable to not crash on zipfile input, whole classpath in cacaodev...
[cacao.git] / cacaoh.c
1 /* cacaoh.c - main for header generation (cacaoh)
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
5    M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
6    P. Tomsich, J. Wenninger
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Reinhard Grafl
28
29    Changes: Mark Probst
30             Philipp Tomsich
31             Christian Thalinger
32
33    $Id: cacaoh.c 1264 2004-07-01 14:21:05Z jowenn $
34
35 */
36
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include "types.h"
42 #include "global.h"
43 #include "headers.h"
44 #include "loader.h"
45 #include "tables.h"
46 #include "mm/boehm.h"
47 #include "threads/thread.h"
48 #include "toolbox/logging.h"
49 #include "toolbox/memory.h"
50
51
52 /************************** Function: main *******************************
53
54    Main program.
55    
56 **************************************************************************/
57
58 int main(int argc, char **argv)
59 {
60         s4 i,a;
61         char *cp;
62         classinfo *c;
63                 
64
65         /********** internal (only used by main) *****************************/
66    
67         char classpath[500] = "";
68         u4 heapmaxsize = 1 * 1024 * 1024;
69         u4 heapstartsize = 100 * 1024;
70
71
72         /************ Collect some info from the environment *****************/
73
74         if (argc < 2) {
75                 printf("Usage: cacaoh class [class..]\n");
76                 exit(1);
77         }
78
79         cp = getenv("CLASSPATH");
80         if (cp) {
81                 strcpy(classpath + strlen(classpath), ":");
82                 strcpy(classpath + strlen(classpath), cp);
83         }
84
85
86         /**************************** Program start **************************/
87
88         log_init(NULL);
89         log_text("Java - header-generator started"); 
90         
91         /* initialize the garbage collector */
92         gc_init(heapmaxsize, heapstartsize);
93
94         tables_init();
95
96         suck_init(classpath);
97    
98
99 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
100         initThreadsEarly();
101 #endif
102         loader_init();
103
104
105         /*********************** Load JAVA classes  **************************/
106         
107         nativemethod_chain = chain_new();
108         nativeclass_chain = chain_new();
109         
110         for (a = 1; a < argc; a++) {
111                 cp = argv[a];
112
113                 /* convert classname */
114                 for (i = strlen(cp) - 1; i >= 0; i--) {
115                         switch (cp[i]) {
116                         case '.': cp[i]='/';
117                                 break;
118                         case '_': cp[i]='$';    
119                         }
120                 }
121         
122                 c = class_new(utf_new_char(cp));
123
124                 /* exceptions are catched with new_exception call */
125                 class_load(c);
126                 class_link(c);
127
128                 headerfile_generate(c);
129         }
130
131         /************************ Release all resources **********************/
132
133         loader_close();
134         tables_close(literalstring_free);
135
136         /* Print "finished" message */
137
138         log_text("Java - header-generator stopped");
139         log_cputime();
140         mem_usagelog(1);
141         
142         return 0;
143 }
144
145
146 /*
147  * These are local overrides for various environment variables in Emacs.
148  * Please do not remove this and leave it at the end of the file, where
149  * Emacs will automagically detect them.
150  * ---------------------------------------------------------------------
151  * Local variables:
152  * mode: c
153  * indent-tabs-mode: t
154  * c-basic-offset: 4
155  * tab-width: 4
156  * End:
157  */