Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

302 lines
10 KiB

  1. package ExtUtils::Mksymlists;
  2. use 5.005_64;
  3. use strict qw[ subs refs ];
  4. # no strict 'vars'; # until filehandles are exempted
  5. use Carp;
  6. use Exporter;
  7. our(@ISA, @EXPORT, $VERSION);
  8. @ISA = 'Exporter';
  9. @EXPORT = '&Mksymlists';
  10. $VERSION = substr q$Revision: 1.17 $, 10;
  11. sub Mksymlists {
  12. my(%spec) = @_;
  13. my($osname) = $^O;
  14. croak("Insufficient information specified to Mksymlists")
  15. unless ( $spec{NAME} or
  16. ($spec{FILE} and ($spec{DL_FUNCS} or $spec{FUNCLIST})) );
  17. $spec{DL_VARS} = [] unless $spec{DL_VARS};
  18. ($spec{FILE} = $spec{NAME}) =~ s/.*::// unless $spec{FILE};
  19. $spec{FUNCLIST} = [] unless $spec{FUNCLIST};
  20. $spec{DL_FUNCS} = { $spec{NAME} => [] }
  21. unless ( ($spec{DL_FUNCS} and keys %{$spec{DL_FUNCS}}) or
  22. @{$spec{FUNCLIST}});
  23. if (defined $spec{DL_FUNCS}) {
  24. my($package);
  25. foreach $package (keys %{$spec{DL_FUNCS}}) {
  26. my($packprefix,$sym,$bootseen);
  27. ($packprefix = $package) =~ s/\W/_/g;
  28. foreach $sym (@{$spec{DL_FUNCS}->{$package}}) {
  29. if ($sym =~ /^boot_/) {
  30. push(@{$spec{FUNCLIST}},$sym);
  31. $bootseen++;
  32. }
  33. else { push(@{$spec{FUNCLIST}},"XS_${packprefix}_$sym"); }
  34. }
  35. push(@{$spec{FUNCLIST}},"boot_$packprefix") unless $bootseen;
  36. }
  37. }
  38. # We'll need this if we ever add any OS which uses mod2fname
  39. # not as pseudo-builtin.
  40. # require DynaLoader;
  41. if (defined &DynaLoader::mod2fname and not $spec{DLBASE}) {
  42. $spec{DLBASE} = DynaLoader::mod2fname([ split(/::/,$spec{NAME}) ]);
  43. }
  44. if ($osname eq 'aix') { _write_aix(\%spec); }
  45. elsif ($osname eq 'MacOS'){ _write_aix(\%spec) }
  46. elsif ($osname eq 'VMS') { _write_vms(\%spec) }
  47. elsif ($osname eq 'os2') { _write_os2(\%spec) }
  48. elsif ($osname eq 'MSWin32') { _write_win32(\%spec) }
  49. else { croak("Don't know how to create linker option file for $osname\n"); }
  50. }
  51. sub _write_aix {
  52. my($data) = @_;
  53. rename "$data->{FILE}.exp", "$data->{FILE}.exp_old";
  54. open(EXP,">$data->{FILE}.exp")
  55. or croak("Can't create $data->{FILE}.exp: $!\n");
  56. print EXP join("\n",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
  57. print EXP join("\n",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
  58. close EXP;
  59. }
  60. sub _write_os2 {
  61. my($data) = @_;
  62. require Config;
  63. my $threaded = ($Config::Config{archname} =~ /-thread/ ? " threaded" : "");
  64. if (not $data->{DLBASE}) {
  65. ($data->{DLBASE} = $data->{NAME}) =~ s/.*:://;
  66. $data->{DLBASE} = substr($data->{DLBASE},0,7) . '_';
  67. }
  68. my $distname = $data->{DISTNAME} || $data->{NAME};
  69. $distname = "Distribution $distname";
  70. my $comment = "Perl (v$Config::Config{version}$threaded) module $data->{NAME}";
  71. if ($data->{INSTALLDIRS} and $data->{INSTALLDIRS} eq 'perl') {
  72. $distname = '[email protected]';
  73. $comment = "Core $comment";
  74. }
  75. rename "$data->{FILE}.def", "$data->{FILE}_def.old";
  76. open(DEF,">$data->{FILE}.def")
  77. or croak("Can't create $data->{FILE}.def: $!\n");
  78. print DEF "LIBRARY '$data->{DLBASE}' INITINSTANCE TERMINSTANCE\n";
  79. print DEF "DESCRIPTION '\@#$distname:$data->{VERSION}#\@ $comment'\n";
  80. print DEF "CODE LOADONCALL\n";
  81. print DEF "DATA LOADONCALL NONSHARED MULTIPLE\n";
  82. print DEF "EXPORTS\n ";
  83. print DEF join("\n ",@{$data->{DL_VARS}}, "\n") if @{$data->{DL_VARS}};
  84. print DEF join("\n ",@{$data->{FUNCLIST}}, "\n") if @{$data->{FUNCLIST}};
  85. if (%{$data->{IMPORTS}}) {
  86. print DEF "IMPORTS\n";
  87. my ($name, $exp);
  88. while (($name, $exp)= each %{$data->{IMPORTS}}) {
  89. print DEF " $name=$exp\n";
  90. }
  91. }
  92. close DEF;
  93. }
  94. sub _write_win32 {
  95. my($data) = @_;
  96. require Config;
  97. if (not $data->{DLBASE}) {
  98. ($data->{DLBASE} = $data->{NAME}) =~ s/.*:://;
  99. $data->{DLBASE} = substr($data->{DLBASE},0,7) . '_';
  100. }
  101. rename "$data->{FILE}.def", "$data->{FILE}_def.old";
  102. open(DEF,">$data->{FILE}.def")
  103. or croak("Can't create $data->{FILE}.def: $!\n");
  104. # put library name in quotes (it could be a keyword, like 'Alias')
  105. if ($Config::Config{'cc'} !~ /^gcc/i) {
  106. print DEF "LIBRARY \"$data->{DLBASE}\"\n";
  107. }
  108. print DEF "EXPORTS\n ";
  109. my @syms;
  110. # Export public symbols both with and without underscores to
  111. # ensure compatibility between DLLs from different compilers
  112. # NOTE: DynaLoader itself only uses the names without underscores,
  113. # so this is only to cover the case when the extension DLL may be
  114. # linked to directly from C. GSAR 97-07-10
  115. if ($Config::Config{'cc'} =~ /^bcc/i) {
  116. for (@{$data->{DL_VARS}}, @{$data->{FUNCLIST}}) {
  117. push @syms, "_$_", "$_ = _$_";
  118. }
  119. }
  120. else {
  121. for (@{$data->{DL_VARS}}, @{$data->{FUNCLIST}}) {
  122. push @syms, "$_", "_$_ = $_";
  123. }
  124. }
  125. print DEF join("\n ",@syms, "\n") if @syms;
  126. if (%{$data->{IMPORTS}}) {
  127. print DEF "IMPORTS\n";
  128. my ($name, $exp);
  129. while (($name, $exp)= each %{$data->{IMPORTS}}) {
  130. print DEF " $name=$exp\n";
  131. }
  132. }
  133. close DEF;
  134. }
  135. sub _write_vms {
  136. my($data) = @_;
  137. require Config; # a reminder for once we do $^O
  138. require ExtUtils::XSSymSet;
  139. my($isvax) = $Config::Config{'archname'} =~ /VAX/i;
  140. my($set) = new ExtUtils::XSSymSet;
  141. my($sym);
  142. rename "$data->{FILE}.opt", "$data->{FILE}.opt_old";
  143. open(OPT,">$data->{FILE}.opt")
  144. or croak("Can't create $data->{FILE}.opt: $!\n");
  145. # Options file declaring universal symbols
  146. # Used when linking shareable image for dynamic extension,
  147. # or when linking PerlShr into which we've added this package
  148. # as a static extension
  149. # We don't do anything to preserve order, so we won't relax
  150. # the GSMATCH criteria for a dynamic extension
  151. print OPT "case_sensitive=yes\n"
  152. if $Config::Config{d_vms_case_sensitive_symbols};
  153. foreach $sym (@{$data->{FUNCLIST}}) {
  154. my $safe = $set->addsym($sym);
  155. if ($isvax) { print OPT "UNIVERSAL=$safe\n" }
  156. else { print OPT "SYMBOL_VECTOR=($safe=PROCEDURE)\n"; }
  157. }
  158. foreach $sym (@{$data->{DL_VARS}}) {
  159. my $safe = $set->addsym($sym);
  160. print OPT "PSECT_ATTR=${sym},PIC,OVR,RD,NOEXE,WRT,NOSHR\n";
  161. if ($isvax) { print OPT "UNIVERSAL=$safe\n" }
  162. else { print OPT "SYMBOL_VECTOR=($safe=DATA)\n"; }
  163. }
  164. close OPT;
  165. }
  166. 1;
  167. __END__
  168. =head1 NAME
  169. ExtUtils::Mksymlists - write linker options files for dynamic extension
  170. =head1 SYNOPSIS
  171. use ExtUtils::Mksymlists;
  172. Mksymlists({ NAME => $name ,
  173. DL_VARS => [ $var1, $var2, $var3 ],
  174. DL_FUNCS => { $pkg1 => [ $func1, $func2 ],
  175. $pkg2 => [ $func3 ] });
  176. =head1 DESCRIPTION
  177. C<ExtUtils::Mksymlists> produces files used by the linker under some OSs
  178. during the creation of shared libraries for dynamic extensions. It is
  179. normally called from a MakeMaker-generated Makefile when the extension
  180. is built. The linker option file is generated by calling the function
  181. C<Mksymlists>, which is exported by default from C<ExtUtils::Mksymlists>.
  182. It takes one argument, a list of key-value pairs, in which the following
  183. keys are recognized:
  184. =over
  185. =item DLBASE
  186. This item specifies the name by which the linker knows the
  187. extension, which may be different from the name of the
  188. extension itself (for instance, some linkers add an '_' to the
  189. name of the extension). If it is not specified, it is derived
  190. from the NAME attribute. It is presently used only by OS2 and Win32.
  191. =item DL_FUNCS
  192. This is identical to the DL_FUNCS attribute available via MakeMaker,
  193. from which it is usually taken. Its value is a reference to an
  194. associative array, in which each key is the name of a package, and
  195. each value is an a reference to an array of function names which
  196. should be exported by the extension. For instance, one might say
  197. C<DL_FUNCS =E<gt> { Homer::Iliad =E<gt> [ qw(trojans greeks) ],
  198. Homer::Odyssey =E<gt> [ qw(travellers family suitors) ] }>. The
  199. function names should be identical to those in the XSUB code;
  200. C<Mksymlists> will alter the names written to the linker option
  201. file to match the changes made by F<xsubpp>. In addition, if
  202. none of the functions in a list begin with the string B<boot_>,
  203. C<Mksymlists> will add a bootstrap function for that package,
  204. just as xsubpp does. (If a B<boot_E<lt>pkgE<gt>> function is
  205. present in the list, it is passed through unchanged.) If
  206. DL_FUNCS is not specified, it defaults to the bootstrap
  207. function for the extension specified in NAME.
  208. =item DL_VARS
  209. This is identical to the DL_VARS attribute available via MakeMaker,
  210. and, like DL_FUNCS, it is usually specified via MakeMaker. Its
  211. value is a reference to an array of variable names which should
  212. be exported by the extension.
  213. =item FILE
  214. This key can be used to specify the name of the linker option file
  215. (minus the OS-specific extension), if for some reason you do not
  216. want to use the default value, which is the last word of the NAME
  217. attribute (I<e.g.> for C<Tk::Canvas>, FILE defaults to C<Canvas>).
  218. =item FUNCLIST
  219. This provides an alternate means to specify function names to be
  220. exported from the extension. Its value is a reference to an
  221. array of function names to be exported by the extension. These
  222. names are passed through unaltered to the linker options file.
  223. Specifying a value for the FUNCLIST attribute suppresses automatic
  224. generation of the bootstrap function for the package. To still create
  225. the bootstrap name you have to specify the package name in the
  226. DL_FUNCS hash:
  227. Mksymlists({ NAME => $name ,
  228. FUNCLIST => [ $func1, $func2 ],
  229. DL_FUNCS => { $pkg => [] } });
  230. =item IMPORTS
  231. This attribute is used to specify names to be imported into the
  232. extension. It is currently only used by OS/2 and Win32.
  233. =item NAME
  234. This gives the name of the extension (I<e.g.> C<Tk::Canvas>) for which
  235. the linker option file will be produced.
  236. =back
  237. When calling C<Mksymlists>, one should always specify the NAME
  238. attribute. In most cases, this is all that's necessary. In
  239. the case of unusual extensions, however, the other attributes
  240. can be used to provide additional information to the linker.
  241. =head1 AUTHOR
  242. Charles Bailey I<E<lt>bailey@newman.upenn.eduE<gt>>
  243. =head1 REVISION
  244. Last revised 14-Feb-1996, for Perl 5.002.