X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a59d4ae96a5ab66d5ba0ba146aa4fc275c8ab5a..1ecbb4c88462e9ec9be0c830a257da6e9b774a25:/tools/sg_unit_extractor.pl diff --git a/tools/sg_unit_extractor.pl b/tools/sg_unit_extractor.pl index e7d14228fe..1c6285997c 100755 --- a/tools/sg_unit_extractor.pl +++ b/tools/sg_unit_extractor.pl @@ -2,187 +2,283 @@ use strict; +use strict; +use Getopt::Long qw(GetOptions); + my $progname="sg_unit_extractor"; # Get the args -die "USAGE: $progname infile [outfile]\n" - if (scalar @ARGV == 0 || scalar @ARGV > 2); -my ($infile,$outfile) = @ARGV; - -if (not defined($outfile)) { - $outfile = $infile; - $outfile =~ s/\.c$/_unit.c/; - $outfile =~ s|.*/([^/]*)$|$1| if $outfile =~ m|/|; -} -# Get the unit data -my ($unit_source,$suite_name,$suite_title)=("","",""); -my (%tests); # to detect multiple definition -my (@tests); # actual content - -open IN, "$infile" || die "$progname: Cannot open input file '$infile': $!\n"; - -my $takeit=0; -while () { - if (m/ifdef +SIMGRID_TEST/) { - $takeit = 1; - next; - } - if (m/endif.*SIMGRID_TEST/) { - $takeit = 0; - next - } - - if (m/XBT_TEST_SUITE\(\w*"([^"]*)"\w*,(.*?)\);/) { #" - die "$progname: Multiple suites in the same file ($infile) are not supported yet\n" - if length($suite_name); - ($suite_name,$suite_title)=($1,$2); - next; - } - - if (m/XBT_TEST_UNIT\(\w*"([^"]*)"\w*,([^,]*),(.*?)\)/) { #" - die "$progname: multiply defined test in file $infile: $1\n" - if (defined($tests{$1})); - - my @t=($1,$2,$3); - push @tests,\@t; - $tests{$1} = 1; - } - $unit_source .= $_ if $takeit; +sub usage($) { + my $ret; + print "USAGE: $progname [--root=part/to/cut] [--path=where/to/search NOT WORKING] [--outdir=where/to/generate/files] infile [infile+]\n"; + exit $ret; } -close IN || die "$progname: cannot close input file '$infile': $!\n"; +my $path=undef; +my $outdir=undef; +my $root; +my $help; -if ($takeit) { - die "$progname: end of file reached in SIMGRID_TEST block.\n". - "You should end each of the with a line matching: /endif.*SIMGRID_TEST/\n". - "Example:\n". - "#endif /* SIMGRID_TEST */\n" -} +Getopt::Long::config('permute','no_getopt_compat', 'no_auto_abbrev'); +GetOptions( + 'help|h' => sub {usage(0)}, + 'root=s' =>\$root, + 'path=s' =>\$path, + 'outdir=s' =>\$outdir) or usage(1); -die "$progname: no suite defined in $infile\n" - unless (length($suite_name)); - -# Write the test - -my ($GENERATED)=("/*******************************/\n". - "/* GENERATED FILE, DO NOT EDIT */\n". - "/*******************************/\n\n"); - -open OUT,">$outfile" || die "$progname: Cannot open output file '$outfile': $!\n"; -print OUT $GENERATED; -print OUT "#include \"xbt.h\"\n"; -print OUT $GENERATED; -print OUT "$unit_source"; -print OUT $GENERATED; -close OUT || die "$progname: Cannot close output file '$outfile': $!\n"; - -# write the main skeleton if needed -if (! -e "simgrid_units_main.c") { - open OUT,">simgrid_units_main.c" || die "$progname: Cannot open main file 'simgrid_units_main.c': $!\n"; - print OUT $GENERATED; - print OUT "#include \"xbt.h\"\n\n"; - print OUT "/* SGU: BEGIN PROTOTYPES */\n"; - print OUT "/* SGU: END PROTOTYPES */\n\n"; - print OUT $GENERATED; - print OUT "int main(int argc, char *argv[]) {\n"; - print OUT " xbt_test_suite_t suite;\n\n"; - print OUT " /* SGU: BEGIN SUITES DECLARATION */\n"; - print OUT " /* SGU: END SUITES DECLARATION */\n\n"; - print OUT " return xbt_test_run();\n"; - print OUT "}\n"; - print OUT $GENERATED; - close OUT || die "$progname: Cannot close main file 'simgrid_units_main.c': $!\n"; -} +usage(1) if (scalar @ARGV == 0); + +map {process_one($_)} @ARGV; -print " Suite $suite_name: $suite_title (".(scalar @tests)." tests)\n"; -map { - my ($name,$func,$title) = @{$_}; - print " test $name: func=$func; title=$title\n"; -} @tests; - -#while (my $t = shift @tests) { - -# add this suite to the main -my $newmain=""; -open IN,"simgrid_units_main.c" || die "$progname: Cannot open main file 'simgrid_units_main.c': $!\n"; - # search prototypes - while () { - $newmain .= $_; -# print "Look for proto: $_"; - last if /SGU: BEGIN PROTOTYPES/; - } - - # search my prototype - while () { -# print "Seek protos: $_"; - last if (/SGU: END PROTOTYPES/ || /SGU: BEGIN FILE $infile/); - $newmain .= $_; - } - if (/SGU: BEGIN FILE $infile/) { # found an old section for this file. Kill it +sub process_one($) { + my $infile = shift; + my $outfile; + + $infile =~ s|src/|| unless (-e $infile); + + $outfile = $infile; + $outfile =~ s/\.c$/_unit.c/; + $outfile =~ s|.*/([^/]*)$|$1| if $outfile =~ m|/|; + $outfile = "$outdir$outfile"; + + print "$progname: processing $infile (generating $outfile)...\n"; + + # Get the unit data + my ($unit_source,$suite_name,$suite_title)=("","",""); + my (%tests); # to detect multiple definition + my (@tests); # actual content + + open IN, "$infile" || die "$progname: Cannot open input file '$infile': $!\n"; + $infile =~ s|$root|| if defined($root); + + my $takeit=0; + my $line=0; + my $beginline=0; while () { - last if /SGU: END FILE/; + $line++; + if (m/ifdef +SIMGRID_TEST/) { + $beginline = $line; + $takeit = 1; + next; + } + if (m/endif.*SIMGRID_TEST/) { + $takeit = 0; + next + } + + if (m/XBT_TEST_SUITE\(\w*"([^"]*)"\w*, *(.*?)\);/) { #" { + die "$progname: Multiple suites in the same file ($infile) are not supported yet\n" if length($suite_name); + ($suite_name,$suite_title)=($1,$2); + die "$progname: Empty suite name in $infile" unless length($suite_name); + die "$progname: Empty suite title in $infile" unless length($suite_title); + next; + } elsif (m/XBT_TEST_SUITE/) { + die "$progname: Parse error: This line seem to be a test suite declaration, but failed to parse it\n$_\n"; + } + + if (m/XBT_TEST_UNIT\(\w*"([^"]*)"\w*,([^,]*),(.*?)\)/) { #"{ + die "$progname: multiply defined unit in file $infile: $1\n" if (defined($tests{$1})); + + my @t=($1,$2,$3); + push @tests,\@t; + $tests{$1} = 1; + } elsif (m/XBT_TEST_UNIT/) { + die "$progname: Parse error: This line seem to be a test unit, but failed to parse it\n$_\n"; + } + $unit_source .= $_ if $takeit; + } + close IN || die "$progname: cannot close input file '$infile': $!\n"; + + + if ($takeit) { + die "$progname: end of file reached in SIMGRID_TEST block.\n". + "You should end each of the with a line matching: /endif.*SIMGRID_TEST/\n". + "Example:\n". + "#endif /* SIMGRID_TEST */\n" } - $_ = ; # pass extra blank line - chomp; - die "this line should be blank ($_). Did you edit the file?" if /\W/; - } - my ($old_)=($_); - # add my section - $newmain .= " /* SGU: BEGIN FILE $infile */\n"; - map { - my ($name,$func,$title) = @{$_}; - $newmain .= " void $func(xbt_test_unit_t _unit);\n" - } @tests; - - $newmain .= " /* SGU: END FILE */\n\n"; - if ($old_ =~ /SGU: BEGIN FILE/ || $old_ =~ /SGU: END PROTOTYPES/) { - $newmain .= $old_; - } - - # pass remaining prototypes, search declarations - while () { - $newmain .= $_ unless /SGU: END PROTOTYPES/; - last if /SGU: BEGIN SUITES DECLARATION/; - } - - ### Done with prototypes. And now, the actual code + + die "$progname: no suite defined in $infile\n" unless (length($suite_name)); - # search my prototype - while () { - last if (/SGU: END SUITES DECLARATION/ || /SGU: BEGIN FILE $infile/); - $newmain .= $_; - } - if (/SGU: BEGIN FILE $infile/) { # found an old section for this file. Kill it - while () { - last if /SGU: END FILE/; + # Write the test + + my ($GENERATED)=("/*******************************/\n". + "/* GENERATED FILE, DO NOT EDIT */\n". + "/*******************************/\n\n"); + $beginline+=2; + open OUT,">$outfile" || die "$progname: Cannot open output file '$outfile': $!\n"; + print OUT $GENERATED; + print OUT "#include \n"; + print OUT "#include \"xbt.h\"\n"; + print OUT $GENERATED; + print OUT "#line $beginline \"$infile\" \n"; + print OUT "$unit_source"; + print OUT $GENERATED; + close OUT || die "$progname: Cannot close output file '$outfile': $!\n"; + + # write the main skeleton if needed + if (! -e "${outdir}simgrid_units_main.c") { + open OUT,">${outdir}simgrid_units_main.c" || die "$progname: Cannot open main file '${outdir}simgrid_units_main.c': $!\n"; + print OUT $GENERATED; + print OUT "#include \n\n"; + print OUT "#include \"xbt.h\"\n\n"; + print OUT "extern xbt_test_unit_t _xbt_current_unit;\n\n"; + print OUT "/* SGU: BEGIN PROTOTYPES */\n"; + print OUT "/* SGU: END PROTOTYPES */\n\n"; + print OUT $GENERATED; + # print OUT "# 93 \"sg_unit_extractor.pl\"\n"; + print OUT <; # pass extra blank line - chomp; - die "this line should be blank ($_). Did you edit the file?" if /\W/; - } - my ($old_)=($_); - # add my section - $newmain .= " /* SGU: BEGIN FILE $infile */\n"; - $newmain .= " suite = xbt_test_suite_by_name(\"$suite_name\",$suite_title);\n"; - map { - my ($name,$func,$title) = @{$_}; - $newmain .= " xbt_test_suite_push(suite, $func, $title);\n"; - } @tests; - - $newmain .= " /* SGU: END FILE */\n\n"; - if ($old_ =~ /SGU: BEGIN FILE/ || $old_ =~ /SGU: END SUITES DECLARATION/) { - $newmain .= $old_; - } - - # pass the remaining - while () { - $newmain .= $_; - } -close IN || die "$progname: Cannot close main file 'simgrid_units_main.c': $!\n"; - -# write it back to main -open OUT,">simgrid_units_main.c" || die "$progname: Cannot open main file 'simgrid_units_main.c': $!\n"; -print OUT $newmain; -close OUT || die "$progname: Cannot close main file 'simgrid_units_main.c': $!\n"; - -0; \ No newline at end of file + /* Got all my tests to do */ + + res = xbt_test_run(selection); + xbt_test_exit(); + return res; +} +EOF + print OUT $GENERATED; + close OUT || die "$progname: Cannot close main file '${outdir}simgrid_units_main.c': $!\n"; + } + + print " Suite $suite_name: $suite_title (".(scalar @tests)." tests)\n"; + map { + my ($name,$func,$title) = @{$_}; + print " unit $name: func=$func; title=$title\n"; + } @tests; + + #while (my $t = shift @tests) { + + # add this suite to the main + my $newmain=""; + open IN,"${outdir}simgrid_units_main.c" || die "$progname: Cannot open main file '${outdir}simgrid_units_main.c': $!\n"; + # search prototypes + while () { + $newmain .= $_; + # print "Look for proto: $_"; + last if /SGU: BEGIN PROTOTYPES/; + } + + # search my prototype + while () { + # print "Seek protos: $_"; + last if (/SGU: END PROTOTYPES/ || /SGU: BEGIN FILE $infile/); + $newmain .= $_; + } + if (/SGU: BEGIN FILE $infile/) { # found an old section for this file. Kill it + while () { + last if /SGU: END FILE/; + } + $_ = ; # pass extra blank line + chomp; + die "this line should be blank ($_). Did you edit the file?" if /\W/; + } + my ($old_)=($_); + # add my section + $newmain .= " /* SGU: BEGIN FILE $infile */\n"; + map { + my ($name,$func,$title) = @{$_}; + $newmain .= " void $func(void);\n" + } @tests; + + $newmain .= " /* SGU: END FILE */\n\n"; + if ($old_ =~ /SGU: BEGIN FILE/ || $old_ =~ /SGU: END PROTOTYPES/) { + $newmain .= $old_; + } + + # pass remaining prototypes, search declarations + while () { + $newmain .= $_ unless /SGU: END PROTOTYPES/; + last if /SGU: BEGIN SUITES DECLARATION/; + } + + ### Done with prototypes. And now, the actual code + + # search my prototype + while () { + last if (/SGU: END SUITES DECLARATION/ || /SGU: BEGIN FILE $infile/); + $newmain .= $_; + } + if (/SGU: BEGIN FILE $infile/) { # found an old section for this file. Kill it + while () { + last if /SGU: END FILE/; + } + $_ = ; # pass extra blank line + chomp; + die "this line should be blank ($_). Did you edit the file?" if /\W/; + } + my ($old_)=($_); + # add my section + $newmain .= " /* SGU: BEGIN FILE $infile */\n"; + $newmain .= " suite = xbt_test_suite_by_name(\"$suite_name\",$suite_title);\n"; + map { + my ($name,$func,$title) = @{$_}; + $newmain .= " xbt_test_suite_push(suite, \"$name\", $func, $title);\n"; + } @tests; + + $newmain .= " /* SGU: END FILE */\n\n"; + if ($old_ =~ /SGU: BEGIN FILE/ || $old_ =~ /SGU: END SUITES DECLARATION/) { + $newmain .= $old_; + } + + # pass the remaining + while () { + $newmain .= $_; + } + close IN || die "$progname: Cannot close main file '${outdir}simgrid_units_main.c': $!\n"; + + # write it back to main + open OUT,">${outdir}simgrid_units_main.c" || die "$progname: Cannot open main file '${outdir}simgrid_units_main.c': $!\n"; + print OUT $newmain; + close OUT || die "$progname: Cannot close main file '${outdir}simgrid_units_main.c': $!\n"; +} # end if process_one($) + +0;