in reply to parsing a java src file
And this the code one line:public class test { public static final test alpha = new test("foo", "bar"); public static final test beta = new test("baz", "boo"); } public class test2 { public static final test2 alpha2 = new test2("foo", "bar"); public static final test2 beta2 = new test2("baz", "boo"); public static final test alpha = new test("foo", "bar"); public static final test beta = new test("baz", "boo"); }
this is the result:perl -MData::Dumper -le 'undef $/;$javafile = <>; while ( $javafile =~ + / class (\w+) (.*?)^\}/smg ) { ($class,$body) = ($1,$2); while ( $bo +dy =~ /(\w+)\s*=\s*new\s+$class\s*\((.*)\)/g) { ($variable,$parameter +s)=($1,$2); foreach $v (split",",$parameters){ $v =~ s/[ "]//g; push +@{$var{$class}{$variable}},$v } } }; print Dumper %var ' kk.java
Updated: Not oneline version:$VAR1 = 'test'; $VAR2 = { 'alpha' => [ 'foo', 'bar' ], 'beta' => [ 'baz', 'boo' ] }; $VAR3 = 'test2'; $VAR4 = { 'alpha2' => [ 'foo', 'bar' ], 'beta2' => [ 'baz', 'boo' ] };
Updated. Edited for last test.#!/usr/bin/perl use Data::Dumper; use diagnostics; use warnings; use strict; undef $/; my %vars; # My vars space my $javafile = <>; # Read the java src # Read all class' bodies while ( $javafile =~ / class (\w+) (.*?)^\}/smg ) { my ($class,$body) = ($1,$2); # Read all vars' declarations while ( $body =~ /(\w+)\s*=\s*new\s+$class\s*\((.*)\)/g) { my ($variable,$parameters)=($1,$2); # Split parameters foreach my $v ( split ",",$parameters ) { # Filter bad characters $v =~ s/[ \"]//g; # Parameters falling into the black hole push @{ $vars{$class}{$variable} }, $v; } } } # Out of the space print Dumper %vars;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: parsing a java src file
by rmexico (Novice) on Jan 28, 2006 at 19:49 UTC | |
by explorer (Chaplain) on Jan 28, 2006 at 21:05 UTC |