source: for-distributions/trunk/bin/windows/perl/lib/XSLoader.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 10.6 KB
Line 
1# Generated from XSLoader.pm.PL (resolved %Config::Config value)
2
3package XSLoader;
4
5$VERSION = "0.06";
6
7#use strict;
8
9# enable debug/trace messages from DynaLoader perl code
10# $dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
11
12 my $dl_dlext = 'dll';
13
14package DynaLoader;
15
16# No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
17# NOTE: All dl_*.xs (including dl_none.xs) define a dl_error() XSUB
18boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
19 !defined(&dl_error);
20package XSLoader;
21
22sub load {
23 package DynaLoader;
24
25 die q{XSLoader::load('Your::Module', $Your::Module::VERSION)} unless @_;
26
27 my($module) = $_[0];
28
29 # work with static linking too
30 my $b = "$module\::bootstrap";
31 goto &$b if defined &$b;
32
33 goto retry unless $module and defined &dl_load_file;
34
35 my @modparts = split(/::/,$module);
36 my $modfname = $modparts[-1];
37
38 my $modpname = join('/',@modparts);
39 my $modlibname = (caller())[1];
40 my $c = @modparts;
41 $modlibname =~ s,[\\/][^\\/]+$,, while $c--; # Q&D basename
42 my $file = "$modlibname/auto/$modpname/$modfname.$dl_dlext";
43
44# print STDERR "XSLoader::load for $module ($file)\n" if $dl_debug;
45
46 my $bs = $file;
47 $bs =~ s/(\.\w+)?(;\d*)?$/\.bs/; # look for .bs 'beside' the library
48
49 goto retry if not -f $file or -s $bs;
50
51 my $bootname = "boot_$module";
52 $bootname =~ s/\W/_/g;
53 @DynaLoader::dl_require_symbols = ($bootname);
54
55 my $boot_symbol_ref;
56
57 if ($^O eq 'darwin') {
58 if ($boot_symbol_ref = dl_find_symbol(0, $bootname)) {
59 goto boot; #extension library has already been loaded, e.g. darwin
60 }
61 }
62
63 # Many dynamic extension loading problems will appear to come from
64 # this section of code: XYZ failed at line 123 of DynaLoader.pm.
65 # Often these errors are actually occurring in the initialisation
66 # C code of the extension XS file. Perl reports the error as being
67 # in this perl code simply because this was the last perl code
68 # it executed.
69
70 my $libref = dl_load_file($file, 0) or do {
71 require Carp;
72 Carp::croak("Can't load '$file' for module $module: " . dl_error());
73 };
74 push(@DynaLoader::dl_librefs,$libref); # record loaded object
75
76 my @unresolved = dl_undef_symbols();
77 if (@unresolved) {
78 require Carp;
79 Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
80 }
81
82 $boot_symbol_ref = dl_find_symbol($libref, $bootname) or do {
83 require Carp;
84 Carp::croak("Can't find '$bootname' symbol in $file\n");
85 };
86
87 push(@DynaLoader::dl_modules, $module); # record loaded module
88
89 boot:
90 my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
91
92 # See comment block above
93 push(@DynaLoader::dl_shared_objects, $file); # record files loaded
94 return &$xs(@_);
95
96 retry:
97 my $bootstrap_inherit = DynaLoader->can('bootstrap_inherit') ||
98 XSLoader->can('bootstrap_inherit');
99 goto &$bootstrap_inherit;
100}
101
102# Versions of DynaLoader prior to 5.6.0 don't have this function.
103sub bootstrap_inherit {
104 package DynaLoader;
105
106 my $module = $_[0];
107 local *DynaLoader::isa = *{"$module\::ISA"};
108 local @DynaLoader::isa = (@DynaLoader::isa, 'DynaLoader');
109 # Cannot goto due to delocalization. Will report errors on a wrong line?
110 require DynaLoader;
111 DynaLoader::bootstrap(@_);
112}
113
1141;
115
116
117__END__
118
119=head1 NAME
120
121XSLoader - Dynamically load C libraries into Perl code
122
123=head1 VERSION
124
125Version 0.06
126
127=head1 SYNOPSIS
128
129 package YourPackage;
130 use XSLoader;
131
132 XSLoader::load 'YourPackage', $YourPackage::VERSION;
133
134=head1 DESCRIPTION
135
136This module defines a standard I<simplified> interface to the dynamic
137linking mechanisms available on many platforms. Its primary purpose is
138to implement cheap automatic dynamic loading of Perl modules.
139
140For a more complicated interface, see L<DynaLoader>. Many (most)
141features of C<DynaLoader> are not implemented in C<XSLoader>, like for
142example the C<dl_load_flags>, not honored by C<XSLoader>.
143
144=head2 Migration from C<DynaLoader>
145
146A typical module using L<DynaLoader|DynaLoader> starts like this:
147
148 package YourPackage;
149 require DynaLoader;
150
151 our @ISA = qw( OnePackage OtherPackage DynaLoader );
152 our $VERSION = '0.01';
153 bootstrap YourPackage $VERSION;
154
155Change this to
156
157 package YourPackage;
158 use XSLoader;
159
160 our @ISA = qw( OnePackage OtherPackage );
161 our $VERSION = '0.01';
162 XSLoader::load 'YourPackage', $VERSION;
163
164In other words: replace C<require DynaLoader> by C<use XSLoader>, remove
165C<DynaLoader> from C<@ISA>, change C<bootstrap> by C<XSLoader::load>. Do not
166forget to quote the name of your package on the C<XSLoader::load> line,
167and add comma (C<,>) before the arguments (C<$VERSION> above).
168
169Of course, if C<@ISA> contained only C<DynaLoader>, there is no need to have
170the C<@ISA> assignment at all; moreover, if instead of C<our> one uses the
171more backward-compatible
172
173 use vars qw($VERSION @ISA);
174
175one can remove this reference to C<@ISA> together with the C<@ISA> assignment.
176
177If no C<$VERSION> was specified on the C<bootstrap> line, the last line becomes
178
179 XSLoader::load 'YourPackage';
180
181=head2 Backward compatible boilerplate
182
183If you want to have your cake and eat it too, you need a more complicated
184boilerplate.
185
186 package YourPackage;
187 use vars qw($VERSION @ISA);
188
189 @ISA = qw( OnePackage OtherPackage );
190 $VERSION = '0.01';
191 eval {
192 require XSLoader;
193 XSLoader::load('YourPackage', $VERSION);
194 1;
195 } or do {
196 require DynaLoader;
197 push @ISA, 'DynaLoader';
198 bootstrap YourPackage $VERSION;
199 };
200
201The parentheses about C<XSLoader::load()> arguments are needed since we replaced
202C<use XSLoader> by C<require>, so the compiler does not know that a function
203C<XSLoader::load()> is present.
204
205This boilerplate uses the low-overhead C<XSLoader> if present; if used with
206an antic Perl which has no C<XSLoader>, it falls back to using C<DynaLoader>.
207
208=head1 Order of initialization: early load()
209
210I<Skip this section if the XSUB functions are supposed to be called from other
211modules only; read it only if you call your XSUBs from the code in your module,
212or have a C<BOOT:> section in your XS file (see L<perlxs/"The BOOT: Keyword">).
213What is described here is equally applicable to the L<DynaLoader|DynaLoader>
214interface.>
215
216A sufficiently complicated module using XS would have both Perl code (defined
217in F<YourPackage.pm>) and XS code (defined in F<YourPackage.xs>). If this
218Perl code makes calls into this XS code, and/or this XS code makes calls to
219the Perl code, one should be careful with the order of initialization.
220
221The call to C<XSLoader::load()> (or C<bootstrap()>) has three side effects:
222
223=over
224
225=item *
226
227if C<$VERSION> was specified, a sanity check is done to ensure that the
228versions of the F<.pm> and the (compiled) F<.xs> parts are compatible;
229
230=item *
231
232the XSUBs are made accessible from Perl;
233
234=item *
235
236if a C<BOOT:> section was present in the F<.xs> file, the code there is called.
237
238=back
239
240Consequently, if the code in the F<.pm> file makes calls to these XSUBs, it is
241convenient to have XSUBs installed before the Perl code is defined; for
242example, this makes prototypes for XSUBs visible to this Perl code.
243Alternatively, if the C<BOOT:> section makes calls to Perl functions (or
244uses Perl variables) defined in the F<.pm> file, they must be defined prior to
245the call to C<XSLoader::load()> (or C<bootstrap()>).
246
247The first situation being much more frequent, it makes sense to rewrite the
248boilerplate as
249
250 package YourPackage;
251 use XSLoader;
252 use vars qw($VERSION @ISA);
253
254 BEGIN {
255 @ISA = qw( OnePackage OtherPackage );
256 $VERSION = '0.01';
257
258 # Put Perl code used in the BOOT: section here
259
260 XSLoader::load 'YourPackage', $VERSION;
261 }
262
263 # Put Perl code making calls into XSUBs here
264
265=head2 The most hairy case
266
267If the interdependence of your C<BOOT:> section and Perl code is
268more complicated than this (e.g., the C<BOOT:> section makes calls to Perl
269functions which make calls to XSUBs with prototypes), get rid of the C<BOOT:>
270section altogether. Replace it with a function C<onBOOT()>, and call it like
271this:
272
273 package YourPackage;
274 use XSLoader;
275 use vars qw($VERSION @ISA);
276
277 BEGIN {
278 @ISA = qw( OnePackage OtherPackage );
279 $VERSION = '0.01';
280 XSLoader::load 'YourPackage', $VERSION;
281 }
282
283 # Put Perl code used in onBOOT() function here; calls to XSUBs are
284 # prototype-checked.
285
286 onBOOT;
287
288 # Put Perl initialization code assuming that XS is initialized here
289
290
291=head1 DIAGNOSTICS
292
293=over 4
294
295=item Can't find '%s' symbol in %s
296
297B<(F)> The bootstrap symbol could not be found in the extension module.
298
299=item Can't load '%s' for module %s: %s
300
301B<(F)> The loading or initialisation of the extension module failed.
302The detailed error follows.
303
304=item Undefined symbols present after loading %s: %s
305
306B<(W)> As the message says, some symbols stay undefined although the
307extension module was correctly loaded and initialised. The list of undefined
308symbols follows.
309
310=item XSLoader::load('Your::Module', $Your::Module::VERSION)
311
312B<(F)> You tried to invoke C<load()> without any argument. You must supply
313a module name, and optionally its version.
314
315=back
316
317
318=head1 LIMITATIONS
319
320To reduce the overhead as much as possible, only one possible location
321is checked to find the extension DLL (this location is where C<make install>
322would put the DLL). If not found, the search for the DLL is transparently
323delegated to C<DynaLoader>, which looks for the DLL along the C<@INC> list.
324
325In particular, this is applicable to the structure of C<@INC> used for testing
326not-yet-installed extensions. This means that running uninstalled extensions
327may have much more overhead than running the same extensions after
328C<make install>.
329
330
331=head1 BUGS
332
333Please report any bugs or feature requests via the perlbug(1) utility.
334
335
336=head1 SEE ALSO
337
338L<DynaLoader>
339
340
341=head1 AUTHORS
342
343Ilya Zakharevich originally extracted C<XSLoader> from C<DynaLoader>.
344
345CPAN version is currently maintained by SE<eacute>bastien Aperghis-Tramoni
346E<lt>[email protected]<gt>
347
348Previous maintainer was Michael G Schwern <[email protected]>
349
350
351=head1 COPYRIGHT
352
353This program is free software; you can redistribute it and/or modify
354it under the same terms as Perl itself.
355
356=cut
Note: See TracBrowser for help on using the repository browser.