home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _da51714270a3d4c1523f9328d318b4bf < prev    next >
Encoding:
Text File  |  2004-04-13  |  17.6 KB  |  643 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S %0 %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec C:\p4view\Apps\ActivePerl\MSI\data\ActivePerl\Perl\bin\perl.exe -S $0 ${1+"$@"}'
  16.     if $running_under_some_shell;
  17. --$running_under_some_shell;
  18.  
  19. # Version 2.0, Simon Cozens, Thu Mar 30 17:52:45 JST 2000 
  20. # Version 2.01, Tom Christiansen, Thu Mar 30 08:25:14 MST 2000
  21. # Version 2.02, Simon Cozens, Sun Apr 16 01:53:36 JST 2000
  22. # Version 2.03, Edward Peschko, Mon Feb 26 12:04:17 PST 2001
  23.  
  24. use strict;
  25. use warnings;
  26. use v5.6.0;
  27.  
  28. use FileHandle;
  29. use Config;
  30. use Fcntl qw(:DEFAULT :flock);
  31. use File::Temp qw(tempfile);
  32. use Cwd;
  33. our $VERSION = 2.03;
  34. $| = 1;
  35.  
  36. $SIG{INT} = sub { exit(); }; # exit gracefully and clean up after ourselves.
  37.  
  38. use subs qw{
  39.     cc_harness check_read check_write checkopts_byte choose_backend
  40.     compile_byte compile_cstyle compile_module generate_code
  41.     grab_stash parse_argv sanity_check vprint yclept spawnit
  42. };
  43. sub opt(*); # imal quoting
  44.  
  45. our ($Options, $BinPerl, $Backend);
  46. our ($Input => $Output);
  47. our ($logfh);
  48. our ($cfile);
  49.  
  50. # eval { main(); 1 } or die;
  51.  
  52. main();
  53.  
  54. sub main {
  55.     parse_argv();
  56.     check_write($Output);
  57.     choose_backend();
  58.     generate_code();
  59.     run_code();
  60.     _die("XXX: Not reached?");
  61. }
  62.  
  63. #######################################################################
  64.  
  65. sub choose_backend {
  66.     # Choose the backend.
  67.     $Backend = 'C';
  68.     if (opt(B)) {
  69.         checkopts_byte();
  70.         $Backend = 'Bytecode';
  71.     }
  72.     if (opt(S) && opt(c)) {
  73.         # die "$0: Do you want me to compile this or not?\n";
  74.         delete $Options->{S};
  75.     }
  76.     $Backend = 'CC' if opt(O);
  77. }
  78.  
  79.  
  80. sub generate_code { 
  81.  
  82.     vprint 0, "Compiling $Input";
  83.  
  84.     $BinPerl  = yclept();  # Calling convention for perl.
  85.  
  86.     if (opt(shared)) {
  87.         compile_module();
  88.     } else {
  89.         if ($Backend eq 'Bytecode') {
  90.             compile_byte();
  91.         } else {
  92.             compile_cstyle();
  93.         }
  94.     }
  95.     exit(0) if (!opt('r'));
  96. }
  97.  
  98. sub run_code {
  99.     vprint 0, "Running code";
  100.     run("$Output @ARGV");
  101.     exit(0);
  102. }
  103.  
  104. # usage: vprint [level] msg args
  105. sub vprint {
  106.     my $level;
  107.     if (@_ == 1) {
  108.         $level = 1;
  109.     } elsif ($_[0] =~ /^\d$/) {
  110.         $level = shift;
  111.     } else {
  112.         # well, they forgot to use a number; means >0
  113.         $level = 0;
  114.     } 
  115.     my $msg = "@_";
  116.     $msg .= "\n" unless substr($msg, -1) eq "\n";
  117.     if (opt(v) > $level)
  118.     {
  119.          print        "$0: $msg" if !opt('log');
  120.      print $logfh "$0: $msg" if  opt('log');
  121.     }
  122. }
  123.  
  124. sub parse_argv {
  125.  
  126.     use Getopt::Long; 
  127. #    Getopt::Long::Configure("bundling"); turned off. this is silly because 
  128. #                                         it doesn't allow for long switches.
  129.     Getopt::Long::Configure("no_ignore_case");
  130.  
  131.     # no difference in exists and defined for %ENV; also, a "0"
  132.     # argument or a "" would not help cc, so skip
  133.     unshift @ARGV, split ' ', $ENV{PERLCC_OPTS} if $ENV{PERLCC_OPTS};
  134.  
  135.     $Options = {};
  136.     Getopt::Long::GetOptions( $Options,
  137.         'L:s',          # lib directory
  138.         'I:s',          # include directories (FOR C, NOT FOR PERL)
  139.         'o:s',          # Output executable
  140.         'v:i',           # Verbosity level
  141.         'e:s',          # One-liner
  142.     'r',            # run resulting executable
  143.         'B',            # Byte compiler backend
  144.         'O',            # Optimised C backend
  145.         'c',            # Compile only
  146.         'h',            # Help me
  147.         'S',            # Dump C files
  148.     'r',            # run the resulting executable
  149.         'static',       # Dirty hack to enable -shared/-static
  150.         'shared',       # Create a shared library (--shared for compat.)
  151.     'log:s'         # where to log compilation process information
  152.     );
  153.         
  154.     # This is an attempt to make perlcc's arg. handling look like cc.
  155.     # if ( opt('s') ) {  # must quote: looks like s)foo)bar)!
  156.     #   if (opt('s') eq 'hared') {
  157.     #        $Options->{shared}++; 
  158.     #    } elsif (opt('s') eq 'tatic') {
  159.     #        $Options->{static}++; 
  160.     #    } else {
  161.     #        warn "$0: Unknown option -s", opt('s');
  162.     #    }
  163.     # }
  164.  
  165.     $Options->{v} += 0;
  166.  
  167.     helpme() if opt(h); # And exit
  168.  
  169.     $Output = opt(o) || 'a.out';
  170.     $Output = relativize($Output);
  171.     $logfh  = new FileHandle(">> " . opt('log')) if (opt('log'));
  172.  
  173.     if (opt(e)) {
  174.         warn "$0: using -e 'code' as input file, ignoring @ARGV\n" if @ARGV;
  175.         # We don't use a temporary file here; why bother?
  176.         # XXX: this is not bullet proof -- spaces or quotes in name!
  177.         $Input = "-e '".opt(e)."'"; # Quotes eaten by shell
  178.     } else {
  179.         $Input = shift @ARGV;  # XXX: more files?
  180.         _usage_and_die("$0: No input file specified\n") unless $Input;
  181.         # DWIM modules. This is bad but necessary.
  182.         $Options->{shared}++ if $Input =~ /\.pm\z/;
  183.         warn "$0: using $Input as input file, ignoring @ARGV\n" if @ARGV;
  184.         check_read($Input);
  185.         check_perl($Input);
  186.         sanity_check();
  187.     }
  188.  
  189. }
  190.  
  191. sub opt(*) {
  192.     my $opt = shift;
  193.     return exists($Options->{$opt}) && ($Options->{$opt} || 0);
  194.  
  195. sub compile_module { 
  196.     die "$0: Compiling to shared libraries is currently disabled\n";
  197. }
  198.  
  199. sub compile_byte {
  200.     require ByteLoader;
  201.     my $stash = grab_stash();
  202.     my $command = "$BinPerl -MO=Bytecode,$stash $Input";
  203.     # The -a option means we'd have to close the file and lose the
  204.     # lock, which would create the tiniest of races. Instead, append
  205.     # the output ourselves. 
  206.     vprint 1, "Writing on $Output";
  207.  
  208.     my $openflags = O_WRONLY | O_CREAT;
  209.     $openflags |= O_BINARY if eval { O_BINARY; 1 };
  210.     $openflags |= O_EXLOCK if eval { O_EXLOCK; 1 };
  211.  
  212.     # these dies are not "$0: .... \n" because they "can't happen"
  213.  
  214.     sysopen(OUT, $Output, $openflags)
  215.         or die "can't write to $Output: $!";
  216.  
  217.     # this is blocking; hold on; why are we doing this??
  218.     # flock OUT, LOCK_EX or die "can't lock $Output: $!"
  219.     #    unless eval { O_EXLOCK; 1 };
  220.  
  221.     truncate(OUT, 0)
  222.         or die "couldn't trunc $Output: $!";
  223.  
  224.     print OUT <<EOF;
  225. #!$^X
  226. use ByteLoader $ByteLoader::VERSION;
  227. EOF
  228.  
  229.     # Now the compile:
  230.     vprint 1, "Compiling...";
  231.     vprint 3, "Calling $command";
  232.  
  233.     my ($output_r, $error_r) = spawnit($command);
  234.  
  235.     if (@$error_r && $? != 0) {
  236.     _die("$0: $Input did not compile, which can't happen:\n@$error_r\n");
  237.     } else {
  238.     my @error = grep { !/^$Input syntax OK$/o } @$error_r;
  239.     warn "$0: Unexpected compiler output:\n@error" if @error;
  240.     }
  241.     
  242.     # Write it and leave.
  243.     print OUT @$output_r               or _die("can't write $Output: $!");
  244.     close OUT                          or _die("can't close $Output: $!");
  245.  
  246.     # wait, how could it be anything but what you see next?
  247.     chmod 0777 & ~umask, $Output    or _die("can't chmod $Output: $!");
  248.     exit 0;
  249. }
  250.  
  251. sub compile_cstyle {
  252.     my $stash = grab_stash();
  253.     
  254.     # What are we going to call our output C file?
  255.     my $lose = 0;
  256.     my ($cfh);
  257.  
  258.     if (opt(S) || opt(c)) {
  259.         # We need to keep it.
  260.         if (opt(e)) {
  261.             $cfile = "a.out.c";
  262.         } else {
  263.             $cfile = $Input;
  264.             # File off extension if present
  265.             # hold on: plx is executable; also, careful of ordering!
  266.             $cfile =~ s/\.(?:p(?:lx|l|h)|m)\z//i;
  267.             $cfile .= ".c";
  268.             $cfile = $Output if opt(c) && $Output =~ /\.c\z/i;
  269.         }
  270.         check_write($cfile);
  271.     } else {
  272.         # Don't need to keep it, be safe with a tempfile.
  273.         $lose = 1;
  274.         ($cfh, $cfile) = tempfile("pccXXXXX", SUFFIX => ".c"); 
  275.         close $cfh; # See comment just below
  276.     }
  277.     vprint 1, "Writing C on $cfile";
  278.  
  279.     my $max_line_len = '';
  280.     if ($^O eq 'MSWin32' && $Config{cc} =~ /^cl/i) {
  281.         $max_line_len = '-l2000,';
  282.     }
  283.  
  284.     # This has to do the write itself, so we can't keep a lock. Life
  285.     # sucks.
  286.     my $command = "$BinPerl -MO=$Backend,$max_line_len$stash,-o$cfile $Input";
  287.     vprint 1, "Compiling...";
  288.     vprint 1, "Calling $command";
  289.  
  290.     my ($output_r, $error_r) = spawnit($command);
  291.     my @output = @$output_r;
  292.     my @error = @$error_r;
  293.  
  294.     if (@error && $? != 0) {
  295.         _die("$0: $Input did not compile, which can't happen:\n@error\n");
  296.     }
  297.  
  298.     cc_harness($cfile,$stash) unless opt(c);
  299.  
  300.     if ($lose) {
  301.         vprint 2, "unlinking $cfile";
  302.         unlink $cfile or _die("can't unlink $cfile: $!"); 
  303.     }
  304. }
  305.  
  306. sub cc_harness {
  307.     my ($cfile,$stash)=@_;
  308.     use ExtUtils::Embed ();
  309.     my $command = ExtUtils::Embed::ccopts." -o $Output $cfile ";
  310.     $command .= " -I".$_ for split /\s+/, opt(I);
  311.     $command .= " -L".$_ for split /\s+/, opt(L);
  312.     my @mods = split /-?u /, $stash;
  313.     $command .= " ".ExtUtils::Embed::ldopts("-std", \@mods);
  314.     vprint 3, "running $Config{cc} $command";
  315.     system("$Config{cc} $command");
  316. }
  317.  
  318. # Where Perl is, and which include path to give it.
  319. sub yclept {
  320.     my $command = "$^X ";
  321.  
  322.     # DWIM the -I to be Perl, not C, include directories.
  323.     if (opt(I) && $Backend eq "Bytecode") {
  324.         for (split /\s+/, opt(I)) {
  325.             if (-d $_) {
  326.                 push @INC, $_;
  327.             } else {
  328.                 warn "$0: Include directory $_ not found, skipping\n";
  329.             }
  330.         }
  331.     }
  332.             
  333.     $command .= "-I$_ " for @INC;
  334.     return $command;
  335. }
  336.  
  337. # Use B::Stash to find additional modules and stuff.
  338. {
  339.     my $_stash;
  340.     sub grab_stash {
  341.  
  342.         warn "already called get_stash once" if $_stash;
  343.  
  344.         my $command = "$BinPerl -MB::Stash -c $Input";
  345.         # Filename here is perfectly sanitised.
  346.         vprint 3, "Calling $command\n";
  347.  
  348.         my ($stash_r, $error_r) = spawnit($command);
  349.         my @stash = @$stash_r;
  350.         my @error = @$error_r;
  351.  
  352.         if (@error && $? != 0) {
  353.             _die("$0: $Input did not compile:\n@error\n");
  354.         }
  355.  
  356.         $stash[0] =~ s/,-u\<none\>//;
  357.         vprint 2, "Stash: ", join " ", split /,?-u/, $stash[0];
  358.         chomp $stash[0];
  359.         return $_stash = $stash[0];
  360.     }
  361.  
  362. }
  363.  
  364. # Check the consistency of options if -B is selected.
  365. # To wit, (-B|-O) ==> no -shared, no -S, no -c
  366. sub checkopts_byte {
  367.  
  368.     _die("$0: Please choose one of either -B and -O.\n") if opt(O);
  369.  
  370.     if (opt(shared)) {
  371.         warn "$0: Will not create a shared library for bytecode\n";
  372.         delete $Options->{shared};
  373.     }
  374.  
  375.     for my $o ( qw[c S] ) { 
  376.         if (opt($o)) { 
  377.             warn "$0: Compiling to bytecode is a one-pass process--",
  378.                   "-$o ignored\n";
  379.             delete $Options->{$o};
  380.         }
  381.     }
  382.  
  383. }
  384.  
  385. # Check the input and output files make sense, are read/writeable.
  386. sub sanity_check {
  387.     if ($Input eq $Output) {
  388.         if ($Input eq 'a.out') {
  389.             _die("$0: Compiling a.out is probably not what you want to do.\n");
  390.             # You fully deserve what you get now. No you *don't*. typos happen.
  391.         } else {
  392.             warn "$0: Will not write output on top of input file, ",
  393.                 "compiling to a.out instead\n";
  394.             $Output = "a.out";
  395.         }
  396.     }
  397. }
  398.  
  399. sub check_read { 
  400.     my $file = shift;
  401.     unless (-r $file) {
  402.         _die("$0: Input file $file is a directory, not a file\n") if -d _;
  403.         unless (-e _) {
  404.             _die("$0: Input file $file was not found\n");
  405.         } else {
  406.             _die("$0: Cannot read input file $file: $!\n");
  407.         }
  408.     }
  409.     unless (-f _) {
  410.         # XXX: die?  don't try this on /dev/tty
  411.         warn "$0: WARNING: input $file is not a plain file\n";
  412.     } 
  413. }
  414.  
  415. sub check_write {
  416.     my $file = shift;
  417.     if (-d $file) {
  418.         _die("$0: Cannot write on $file, is a directory\n");
  419.     }
  420.     if (-e _) {
  421.         _die("$0: Cannot write on $file: $!\n") unless -w _;
  422.     } 
  423.     unless (-w cwd()) { 
  424.         _die("$0: Cannot write in this directory: $!\n");
  425.     }
  426. }
  427.  
  428. sub check_perl {
  429.     my $file = shift;
  430.     unless (-T $file) {
  431.         warn "$0: Binary `$file' sure doesn't smell like perl source!\n";
  432.         print "Checking file type... ";
  433.         system("file", $file);  
  434.         _die("Please try a perlier file!\n");
  435.     } 
  436.  
  437.     open(my $handle, "<", $file)    or _die("XXX: can't open $file: $!");
  438.     local $_ = <$handle>;
  439.     if (/^#!/ && !/perl/) {
  440.         _die("$0: $file is a ", /^#!\s*(\S+)/, " script, not perl\n");
  441.     } 
  442.  
  443.  
  444. # File spawning and error collecting
  445. sub spawnit {
  446.     my ($command) = shift;
  447.     my (@error,@output);
  448.     my $errname;
  449.     (undef, $errname) = tempfile("pccXXXXX");
  450.     { 
  451.     open (S_OUT, "$command 2>$errname |")
  452.         or _die("$0: Couldn't spawn the compiler.\n");
  453.     @output = <S_OUT>;
  454.     }
  455.     open (S_ERROR, $errname) or _die("$0: Couldn't read the error file.\n");
  456.     @error = <S_ERROR>;
  457.     close S_ERROR;
  458.     close S_OUT;
  459.     unlink $errname or _die("$0: Can't unlink error file $errname");
  460.     return (\@output, \@error);
  461. }
  462.  
  463. sub helpme {
  464.        print "perlcc compiler frontend, version $VERSION\n\n";
  465.        { no warnings;
  466.        exec "pod2usage $0";
  467.        exec "perldoc $0";
  468.        exec "pod2text $0";
  469.        }
  470. }
  471.  
  472. sub relativize {
  473.     my ($args) = @_;
  474.  
  475.     return() if ($args =~ m"^[/\\]");
  476.     return("./$args");
  477. }
  478.  
  479. sub _die {
  480.     $logfh->print(@_) if opt('log');
  481.     print STDERR @_;
  482.     exit(); # should die eventually. However, needed so that a 'make compile'
  483.             # can compile all the way through to the end for standard dist.
  484. }
  485.  
  486. sub _usage_and_die {
  487.     _die(<<EOU);
  488. $0: Usage:
  489. $0 [-o executable] [-r] [-O|-B|-c|-S] [-log log] [source[.pl] | -e oneliner]
  490. EOU
  491. }
  492.  
  493. sub run {
  494.     my (@commands) = @_;
  495.  
  496.     print interruptrun(@commands) if (!opt('log'));
  497.     $logfh->print(interruptrun(@commands)) if (opt('log'));
  498. }
  499.  
  500. sub interruptrun
  501. {
  502.     my (@commands) = @_;
  503.  
  504.     my $command = join('', @commands);
  505.     local(*FD);
  506.     my $pid = open(FD, "$command |");
  507.     my $text;
  508.     
  509.     local($SIG{HUP}) = sub { kill 9, $pid; exit };
  510.     local($SIG{INT}) = sub { kill 9, $pid; exit };
  511.  
  512.     my $needalarm = 
  513.           ($ENV{PERLCC_TIMEOUT} && 
  514.       $Config{'osname'} ne 'MSWin32' && 
  515.       $command =~ m"(^|\s)perlcc\s");
  516.  
  517.     eval 
  518.     {
  519.          local($SIG{ALRM}) = sub { die "INFINITE LOOP"; };
  520.          alarm($ENV{PERLCC_TIMEOUT}) if ($needalarm);
  521.      $text = join('', <FD>);
  522.      alarm(0) if ($needalarm);
  523.     };
  524.  
  525.     if ($@)
  526.     {
  527.         eval { kill 'HUP', $pid };
  528.         vprint 0, "SYSTEM TIMEOUT (infinite loop?)\n";
  529.     }
  530.  
  531.     close(FD);
  532.     return($text);
  533. }
  534.  
  535. END {
  536.     unlink $cfile if ($cfile && !opt(S) && !opt(c));
  537. }
  538.  
  539. __END__
  540.  
  541. =head1 NAME
  542.  
  543. perlcc - generate executables from Perl programs
  544.  
  545. =head1 SYNOPSIS
  546.  
  547.     $ perlcc hello              # Compiles into executable 'a.out'
  548.     $ perlcc -o hello hello.pl  # Compiles into executable 'hello'
  549.  
  550.     $ perlcc -O file            # Compiles using the optimised C backend
  551.     $ perlcc -B file            # Compiles using the bytecode backend
  552.  
  553.     $ perlcc -c file            # Creates a C file, 'file.c'
  554.     $ perlcc -S -o hello file   # Creates a C file, 'file.c',
  555.                                 # then compiles it to executable 'hello'
  556.     $ perlcc -c out.c file      # Creates a C file, 'out.c' from 'file'
  557.  
  558.     $ perlcc -e 'print q//'     # Compiles a one-liner into 'a.out'
  559.     $ perlcc -c -e 'print q//'  # Creates a C file 'a.out.c'
  560.  
  561.     $ perlcc -r hello           # compiles 'hello' into 'a.out', runs 'a.out'.
  562.  
  563.     $ perlcc -r hello a b c     # compiles 'hello' into 'a.out', runs 'a.out'.
  564.                                 # with arguments 'a b c' 
  565.  
  566.     $ perlcc hello -log c       # compiles 'hello' into 'a.out' logs compile
  567.                                 # log into 'c'. 
  568.  
  569. =head1 DESCRIPTION
  570.  
  571. F<perlcc> creates standalone executables from Perl programs, using the
  572. code generators provided by the L<B> module. At present, you may
  573. either create executable Perl bytecode, using the C<-B> option, or 
  574. generate and compile C files using the standard and 'optimised' C
  575. backends.
  576.  
  577. The code generated in this way is not guaranteed to work. The whole
  578. codegen suite (C<perlcc> included) should be considered B<very>
  579. experimental. Use for production purposes is strongly discouraged.
  580.  
  581. =head1 OPTIONS
  582.  
  583. =over 4
  584.  
  585. =item -LI<library directories>
  586.  
  587. Adds the given directories to the library search path when C code is
  588. passed to your C compiler.
  589.  
  590. =item -II<include directories>
  591.  
  592. Adds the given directories to the include file search path when C code is
  593. passed to your C compiler; when using the Perl bytecode option, adds the
  594. given directories to Perl's include path.
  595.  
  596. =item -o I<output file name>
  597.  
  598. Specifies the file name for the final compiled executable.
  599.  
  600. =item -c I<C file name>
  601.  
  602. Create C code only; do not compile to a standalone binary.
  603.  
  604. =item -e I<perl code>
  605.  
  606. Compile a one-liner, much the same as C<perl -e '...'>
  607.  
  608. =item -S
  609.  
  610. Do not delete generated C code after compilation.
  611.  
  612. =item -B
  613.  
  614. Use the Perl bytecode code generator.
  615.  
  616. =item -O
  617.  
  618. Use the 'optimised' C code generator. This is more experimental than
  619. everything else put together, and the code created is not guaranteed to
  620. compile in finite time and memory, or indeed, at all.
  621.  
  622. =item -v
  623.  
  624. Increase verbosity of output; can be repeated for more verbose output.
  625.  
  626. =item -r 
  627.  
  628. Run the resulting compiled script after compiling it.
  629.  
  630. =item -log
  631.  
  632. Log the output of compiling to a file rather than to stdout.
  633.  
  634. =back
  635.  
  636. =cut
  637.  
  638.  
  639. __END__
  640. :endofperl
  641.