Main function of cacaoh, uses functions of header.c
[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 1242 2004-06-30 20:11:49Z twisti $
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         suck_init(classpath);
95    
96         tables_init();
97
98 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
99         initThreadsEarly();
100 #endif
101         loader_init();
102
103
104         /*********************** Load JAVA classes  **************************/
105         
106         nativemethod_chain = chain_new();
107         nativeclass_chain = chain_new();
108         
109         for (a = 1; a < argc; a++) {
110                 cp = argv[a];
111
112                 /* convert classname */
113                 for (i = strlen(cp) - 1; i >= 0; i--) {
114                         switch (cp[i]) {
115                         case '.': cp[i]='/';
116                                 break;
117                         case '_': cp[i]='$';    
118                         }
119                 }
120         
121                 c = class_new(utf_new_char(cp));
122
123                 /* exceptions are catched with new_exception call */
124                 class_load(c);
125                 class_link(c);
126
127                 headerfile_generate(c);
128         }
129
130         /************************ Release all resources **********************/
131
132         loader_close();
133         tables_close(literalstring_free);
134
135         /* Print "finished" message */
136
137         log_text("Java - header-generator stopped");
138         log_cputime();
139         mem_usagelog(1);
140         
141         return 0;
142 }
143
144
145 /*
146  * These are local overrides for various environment variables in Emacs.
147  * Please do not remove this and leave it at the end of the file, where
148  * Emacs will automagically detect them.
149  * ---------------------------------------------------------------------
150  * Local variables:
151  * mode: c
152  * indent-tabs-mode: t
153  * c-basic-offset: 4
154  * tab-width: 4
155  * End:
156  */