home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / Miniperl.pm < prev    next >
Text File  |  2005-01-27  |  6KB  |  225 lines

  1. # This File keeps the contents of miniperlmain.c.
  2. #
  3. # It was generated automatically by minimod.PL from the contents
  4. # of miniperlmain.c. Don't edit this file!
  5. #
  6. #       ANY CHANGES MADE HERE WILL BE LOST! 
  7. #
  8.  
  9.  
  10. package ExtUtils::Miniperl;
  11. require Exporter;
  12. @ISA = qw(Exporter);
  13. @EXPORT = qw(&writemain);
  14.  
  15. $head= <<'EOF!HEAD';
  16. /*    miniperlmain.c
  17.  *
  18.  *    Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002,
  19.  *    by Larry Wall and others
  20.  *
  21.  *    You may distribute under the terms of either the GNU General Public
  22.  *    License or the Artistic License, as specified in the README file.
  23.  *
  24.  */
  25.  
  26. /*
  27.  * "The Road goes ever on and on, down from the door where it began."
  28.  */
  29.  
  30. /* This file contains the main() function for the perl interpreter.
  31.  * Note that miniperlmain.c contains main() for the 'miniperl' binary,
  32.  * while perlmain.c contains main() for the 'perl' binary.
  33.  *
  34.  * Miniperl is like perl except that it does not support dynamic loading,
  35.  * and in fact is used to build the dynamic modules needed for the 'real'
  36.  * perl executable.
  37.  */
  38.  
  39. #ifdef OEMVS
  40. #ifdef MYMALLOC
  41. /* sbrk is limited to first heap segment so make it big */
  42. #pragma runopts(HEAP(8M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
  43. #else
  44. #pragma runopts(HEAP(2M,500K,ANYWHERE,KEEP,8K,4K) STACK(,,ANY,) ALL31(ON))
  45. #endif
  46. #endif
  47.  
  48.  
  49. #include "EXTERN.h"
  50. #define PERL_IN_MINIPERLMAIN_C
  51. #include "perl.h"
  52.  
  53. static void xs_init (pTHX);
  54. static PerlInterpreter *my_perl;
  55.  
  56. #if defined (__MINT__) || defined (atarist)
  57. /* The Atari operating system doesn't have a dynamic stack.  The
  58.    stack size is determined from this value.  */
  59. long _stksize = 64 * 1024;
  60. #endif
  61.  
  62. int
  63. main(int argc, char **argv, char **env)
  64. {
  65.     int exitstatus;
  66. #ifndef PERL_USE_SAFE_PUTENV
  67.     PL_use_safe_putenv = 0;
  68. #endif /* PERL_USE_SAFE_PUTENV */
  69.  
  70. #ifdef PERL_GLOBAL_STRUCT
  71. #define PERLVAR(var,type) /**/
  72. #define PERLVARA(var,type) /**/
  73. #define PERLVARI(var,type,init) PL_Vars.var = init;
  74. #define PERLVARIC(var,type,init) PL_Vars.var = init;
  75. #include "perlvars.h"
  76. #undef PERLVAR
  77. #undef PERLVARA
  78. #undef PERLVARI
  79. #undef PERLVARIC
  80. #endif
  81.  
  82.     /* if user wants control of gprof profiling off by default */
  83.     /* noop unless Configure is given -Accflags=-DPERL_GPROF_CONTROL */
  84.     PERL_GPROF_MONCONTROL(0);
  85.  
  86.     PERL_SYS_INIT3(&argc,&argv,&env);
  87.  
  88. #if defined(USE_5005THREADS) || defined(USE_ITHREADS)
  89.     /* XXX Ideally, this should really be happening in perl_alloc() or
  90.      * perl_construct() to keep libperl.a transparently fork()-safe.
  91.      * It is currently done here only because Apache/mod_perl have
  92.      * problems due to lack of a call to cancel pthread_atfork()
  93.      * handlers when shared objects that contain the handlers may
  94.      * be dlclose()d.  This forces applications that embed perl to
  95.      * call PTHREAD_ATFORK() explicitly, but if and only if it hasn't
  96.      * been called at least once before in the current process.
  97.      * --GSAR 2001-07-20 */
  98.     PTHREAD_ATFORK(Perl_atfork_lock,
  99.                    Perl_atfork_unlock,
  100.                    Perl_atfork_unlock);
  101. #endif
  102.  
  103.     if (!PL_do_undump) {
  104.     my_perl = perl_alloc();
  105.     if (!my_perl)
  106.         exit(1);
  107.     perl_construct(my_perl);
  108.     PL_perl_destruct_level = 0;
  109.     }
  110.     PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
  111.     exitstatus = perl_parse(my_perl, xs_init, argc, argv, (char **)NULL);
  112.     if (!exitstatus)
  113.         perl_run(my_perl);
  114.       
  115.     exitstatus = perl_destruct(my_perl);
  116.  
  117.     perl_free(my_perl);
  118.  
  119.     PERL_SYS_TERM();
  120.  
  121.     exit(exitstatus);
  122.     return exitstatus;
  123. }
  124.  
  125. /* Register any extra external extensions */
  126.  
  127. EOF!HEAD
  128. $tail=<<'EOF!TAIL';
  129.  
  130. static void
  131. xs_init(pTHX)
  132. {
  133. }
  134. EOF!TAIL
  135.  
  136. sub writemain{
  137.     my(@exts) = @_;
  138.  
  139.     my($pname);
  140.     my($dl) = canon('/','DynaLoader');
  141.     print $head;
  142.  
  143.     foreach $_ (@exts){
  144.     my($pname) = canon('/', $_);
  145.     my($mname, $cname);
  146.     ($mname = $pname) =~ s!/!::!g;
  147.     ($cname = $pname) =~ s!/!__!g;
  148.         print "EXTERN_C void boot_${cname} (pTHX_ CV* cv);\n";
  149.     }
  150.  
  151.     my ($tail1,$tail2) = ( $tail =~ /\A(.*\n)(\s*\}.*)\Z/s );
  152.     print $tail1;
  153.  
  154.     print "\tchar *file = __FILE__;\n";
  155.     print "\tdXSUB_SYS;\n" if $] > 5.002;
  156.  
  157.     foreach $_ (@exts){
  158.     my($pname) = canon('/', $_);
  159.     my($mname, $cname, $ccode);
  160.     ($mname = $pname) =~ s!/!::!g;
  161.     ($cname = $pname) =~ s!/!__!g;
  162.     print "\t{\n";
  163.     if ($pname eq $dl){
  164.         # Must NOT install 'DynaLoader::boot_DynaLoader' as 'bootstrap'!
  165.         # boot_DynaLoader is called directly in DynaLoader.pm
  166.         $ccode = "\t/* DynaLoader is a special case */\n
  167. \tnewXS(\"${mname}::boot_${cname}\", boot_${cname}, file);\n";
  168.         print $ccode unless $SEEN{$ccode}++;
  169.     } else {
  170.         $ccode = "\tnewXS(\"${mname}::bootstrap\", boot_${cname}, file);\n";
  171.         print $ccode unless $SEEN{$ccode}++;
  172.     }
  173.     print "\t}\n";
  174.     }
  175.     print $tail2;
  176. }
  177.  
  178. sub canon{
  179.     my($as, @ext) = @_;
  180.     foreach(@ext){
  181.         # might be X::Y or lib/auto/X/Y/Y.a
  182.         next if s!::!/!g;
  183.         s:^(lib|ext)/(auto/)?::;
  184.         s:/\w+\.\w+$::;
  185.     }
  186.     grep(s:/:$as:, @ext) if ($as ne '/');
  187.     @ext;
  188. }
  189.  
  190. 1;
  191. __END__
  192.  
  193. =head1 NAME
  194.  
  195. ExtUtils::Miniperl, writemain - write the C code for perlmain.c
  196.  
  197. =head1 SYNOPSIS
  198.  
  199. C<use ExtUtils::Miniperl;>
  200.  
  201. C<writemain(@directories);>
  202.  
  203. =head1 DESCRIPTION
  204.  
  205. This whole module is written when perl itself is built from a script
  206. called minimod.PL. In case you want to patch it, please patch
  207. minimod.PL in the perl distribution instead.
  208.  
  209. writemain() takes an argument list of directories containing archive
  210. libraries that relate to perl modules and should be linked into a new
  211. perl binary. It writes to STDOUT a corresponding perlmain.c file that
  212. is a plain C file containing all the bootstrap code to make the
  213. modules associated with the libraries available from within perl.
  214.  
  215. The typical usage is from within a Makefile generated by
  216. ExtUtils::MakeMaker. So under normal circumstances you won't have to
  217. deal with this module directly.
  218.  
  219. =head1 SEE ALSO
  220.  
  221. L<ExtUtils::MakeMaker>
  222.  
  223. =cut
  224.  
  225.