classes.pl 2.51 KB
Newer Older
Tom Tromey committed
1 2 3
# classes.pl - A perl program to generate most of the contents of
# javaprims.h automatically.

4
# Copyright (C) 1998, 1999, 2000  Red Hat, Inc.
Tom Tromey committed
5 6 7 8 9 10 11 12
#
# This file is part of libjava.
#
# This software is copyrighted work licensed under the terms of the
# Libjava License.  Please consult the file "LIBJAVA_LICENSE" for
# details.

# Usage: cd <top-srcdir> ; perl classes.pl.
Tom Tromey committed
13
# Can also be run from the `include' directory; this lets us
Tom Tromey committed
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
# more easily insert the output into javaprims.h (which is where it goes).

use DirHandle;

if (-d 'java')
{
    # Ok here.
}
elsif (-d '../java')
{
    chdir ('..');
}
else
{
    die "couldn't find java directory\n";
}

&scan ('java', 2);

exit 0;

sub scan
{
    local ($dir, $indent) = @_;
    local (@subdirs) = ();
39
    local (%classes) = ();
Tom Tromey committed
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

    local ($d) = new DirHandle $dir;
    local (*JFILE);
    local ($name);
    if (defined $d)
    {
	while (defined ($name = $d->read))
	{
	    next if $name eq 'CVS';
	    next if $name eq '.';
	    next if $name eq '..';
	    if ($dir eq 'java'
		&& $name ne 'lang'
		&& $name ne 'util'
		&& $name ne 'io')
	    {
		# We only generate decls for java.lang, java.io, and
		# java.util.
		next;
	    }
	    if (-d ($dir . '/' . $name))
	    {
		push (@subdirs, $name);
		next;
	    }
	    next unless $name =~ /\.java$/;

	    open (FILE, "< $dir/$name");
68
	    local ($outer, $classname);
Tom Tromey committed
69 70 71
	    while (<FILE>)
	    {
		s,//.*$,,;
72 73 74 75 76
		# NOTE: we don't skip `/*' comments.  However, we do
		# skip lines with a `*' with leading whitespace.  This
		# catches the most important cases.
		s,^\s*\*.*$,,;

Tom Tromey committed
77 78
		# For now assume that class names start with upper
		# case letter.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
		next unless /\b(class|interface) ([A-Z][A-Za-z0-9]+)/;
		$classname = $2;

		# We assume the code is properly indented, so that we
		# can print inner classes properly.
		if (/^\s/)
		{
		    die "no outer class for $classname in $dir/$name"
			unless $outer;
		    $classes{$outer . "\$" . $classname} = 1;
		}
		else
		{
		    $classes{$classname} = 1;
		    $outer = $classname;
		}
Tom Tromey committed
95 96 97 98 99 100 101 102 103 104 105 106 107
	    }
	    close (FILE);
	}

	undef $d;
    }

    local ($spaces) = ' ' x $indent;
    local ($classname);
    ($classname = $dir) =~ s/^.*\///;
    print $spaces, "namespace ", $classname, "\n";
    print $spaces, "{\n";

108
    foreach (sort keys %classes)
Tom Tromey committed
109 110 111 112 113 114 115 116 117 118 119 120 121
    {
	print $spaces, "  class ", $_, ";\n";
    }
    print "\n" if scalar @classes > 0 && scalar @subdirs > 0;

    local ($first) = 1;
    foreach (sort @subdirs)
    {
	print "\n" unless $first;
	$first = 0;
	&scan ("$dir/$_", $indent + 2);
    }

Tom Tromey committed
122
    print $spaces, "};\n";
Tom Tromey committed
123
}