2 Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
25 #include "obstack.h" /* We use obstacks in lex.c */
33 #ifdef HAVE_NL_LANGINFO
39 extern void fatal_error
PARAMS ((const char *s
, ...))
40 ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORETURN
;
41 void warning
PARAMS ((const char *s
, ...)) ATTRIBUTE_PRINTF_1
;
42 void gcc_obstack_init
PARAMS ((struct obstack
*obstack
));
43 void report
PARAMS ((void));
45 static void usage
PARAMS ((void)) ATTRIBUTE_NORETURN
;
46 static void help
PARAMS ((void)) ATTRIBUTE_NORETURN
;
47 static void version
PARAMS ((void)) ATTRIBUTE_NORETURN
;
53 /* Current input file and output file IO streams. */
56 /* Current input filename. */
59 /* Executable name. */
62 /* Flags matching command line options. */
63 int flag_find_main
= 0;
64 int flag_dump_class
= 0;
65 int flag_list_filename
= 0;
66 int flag_complexity
= 0;
73 /* This is used to mark options with no short value. */
74 #define LONG_OPT(Num) ((Num) + 128)
76 #define OPT_HELP LONG_OPT (0)
77 #define OPT_VERSION LONG_OPT (1)
78 #define OPT_ENCODING LONG_OPT (2)
80 static const struct option options
[] =
82 { "help", no_argument
, NULL
, OPT_HELP
},
83 { "version", no_argument
, NULL
, OPT_VERSION
},
84 { "print-main", no_argument
, &flag_find_main
, 1 },
85 { "list-filename", no_argument
, &flag_list_filename
, 1 },
86 { "list-class", no_argument
, &flag_dump_class
, 1 },
87 { "encoding", required_argument
, NULL
, OPT_ENCODING
},
88 { "complexity", no_argument
, &flag_complexity
, 1 },
89 { "no-assert", no_argument
, &flag_assert
, 0 },
90 { "assert", no_argument
, &flag_assert
, 1 },
91 { NULL
, no_argument
, NULL
, 0 }
97 fprintf (stderr
, "Try `jv-scan --help' for more information.\n");
104 printf ("Usage: jv-scan [OPTION]... FILE...\n\n");
105 printf ("Print useful information read from Java source files.\n\n");
106 printf (" --no-assert Don't recognize the assert keyword\n");
107 printf (" --complexity Print cyclomatic complexity of input file\n");
108 printf (" --encoding NAME Specify encoding of input file\n");
109 printf (" --print-main Print name of class containing `main'\n");
110 printf (" --list-class List all classes defined in file\n");
111 printf (" --list-filename Print input filename when listing class names\n");
112 printf (" -o FILE Set output file name\n");
114 printf (" --help Print this help, then exit\n");
115 printf (" --version Print version number, then exit\n");
117 printf ("For bug reporting instructions, please see:\n");
118 printf ("%s.\n", GCCBUGURL
);
125 printf ("jv-scan (GCC) %s\n\n", version_string
);
126 printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n");
127 printf ("This is free software; see the source for copying conditions. There is NO\n");
128 printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
132 /* jc1-lite main entry point */
134 DEFUN (main
, (argc
, argv
),
135 int argc AND
char **argv
)
138 const char *output_file
= NULL
;
139 const char *encoding
= NULL
;
145 /* Default for output */
148 /* Process options first. We use getopt_long and not
149 getopt_long_only because we only support `--' long options here. */
150 while ((opt
= getopt_long (argc
, argv
, "o:", options
, NULL
)) != -1)
155 /* Already handled. */
159 output_file
= optarg
;
180 /* No flags? Do nothing */
181 if (! flag_find_main
&& ! flag_dump_class
&& ! flag_complexity
)
184 /* Check on bad usage */
185 if (flag_find_main
+ flag_dump_class
+ flag_complexity
> 1)
187 ("only one of `--print-main', `--list-class', and `--complexity' allowed");
189 if (output_file
&& !(out
= fopen (output_file
, "w")))
190 fatal_error ("can't open output file `%s'", output_file
);
194 gcc_obstack_init (&temporary_obstack
);
195 java_push_parser_context ();
197 for ( i
= optind
; i
< argc
; i
++ )
200 input_filename
= argv
[i
];
201 if ( (finput
= fopen (argv
[i
], "r")) )
203 /* There's no point in trying to find the current encoding
204 unless we are going to do something intelligent with it
205 -- hence the test for iconv. */
206 #if defined (HAVE_LOCALE_H) && defined (HAVE_ICONV) && defined (HAVE_NL_LANGINFO)
207 setlocale (LC_CTYPE
, "");
208 if (encoding
== NULL
)
209 encoding
= nl_langinfo (CODESET
);
211 if (encoding
== NULL
|| *encoding
== '\0')
212 encoding
= DEFAULT_ENCODING
;
214 java_init_lex (finput
, encoding
);
217 if (ftell (out
) != ft
)
224 fatal_error ("file not found `%s'", argv
[i
]);
227 /* Flush and close */
228 if (ftell (out
) != ft
)
238 /* Error report, memory, obstack initialization and other utility
242 fatal_error
VPARAMS ((const char *s
, ...))
245 VA_FIXEDARG (ap
, const char *, s
);
247 fprintf (stderr
, "%s: error: ", exec_name
);
248 vfprintf (stderr
, s
, ap
);
249 fputc ('\n', stderr
);
255 warning
VPARAMS ((const char *s
, ...))
258 VA_FIXEDARG (ap
, const char *, s
);
260 fprintf (stderr
, "%s: warning: ", exec_name
);
261 vfprintf (stderr
, s
, ap
);
262 fputc ('\n', stderr
);
267 gcc_obstack_init (obstack
)
268 struct obstack
*obstack
;
270 /* Let particular systems override the size of a chunk. */
271 #ifndef OBSTACK_CHUNK_SIZE
272 #define OBSTACK_CHUNK_SIZE 0
274 /* Let them override the alloc and free routines too. */
275 #ifndef OBSTACK_CHUNK_ALLOC
276 #define OBSTACK_CHUNK_ALLOC xmalloc
278 #ifndef OBSTACK_CHUNK_FREE
279 #define OBSTACK_CHUNK_FREE free
281 _obstack_begin (obstack
, OBSTACK_CHUNK_SIZE
, 0,
282 (void *(*) (long)) OBSTACK_CHUNK_ALLOC
,
283 (void (*) (void *)) OBSTACK_CHUNK_FREE
);