Subject: [DOC PATCH] DynaLoader.pm
[p5sagit/p5-mst-13.2.git] / ext / DynaLoader / dl_hpux.xs
CommitLineData
a0d0e21e 1/*
2 * Author: Jeff Okamoto (okamoto@corp.hp.com)
75f92628 3 * Version: 2.1, 1995/1/25
a0d0e21e 4 */
5
b13ecc09 6/* o Added BIND_VERBOSE to dl_nonlazy condition to add names of missing
7 * symbols to stderr message on fatal error.
8 *
9 * o Added BIND_NONFATAL comment to default condition.
10 *
11 * Chuck Phillips (cdp@fc.hp.com)
12 * Version: 2.2, 1997/5/4 */
13
a0d0e21e 14#ifdef __hp9000s300
15#define magic hpux_magic
16#define MAGIC HPUX_MAGIC
17#endif
18
19#include <dl.h>
20#ifdef __hp9000s300
21#undef magic
22#undef MAGIC
23#endif
24
25#include "EXTERN.h"
26#include "perl.h"
27#include "XSUB.h"
28
cdc73a10 29typedef struct {
30 AV * x_resolve_using;
31} my_cxtx_t; /* this *must* be named my_cxtx_t */
a0d0e21e 32
cdc73a10 33#define DL_CXT_EXTRA /* ask for dl_cxtx to be defined in dlutils.c */
a0d0e21e 34#include "dlutils.c" /* for SaveError() etc */
35
cdc73a10 36#define dl_resolve_using (dl_cxtx.x_resolve_using)
a0d0e21e 37
38static void
cea2e8a9 39dl_private_init(pTHX)
a0d0e21e 40{
cea2e8a9 41 (void)dl_generic_private_init(aTHX);
cdc73a10 42 {
43 dMY_CXT;
44 dl_resolve_using = get_av("DynaLoader::dl_resolve_using", GV_ADDMULTI);
45 }
a0d0e21e 46}
47
48MODULE = DynaLoader PACKAGE = DynaLoader
49
50BOOT:
cea2e8a9 51 (void)dl_private_init(aTHX);
a0d0e21e 52
53
54void *
ff7f3c60 55dl_load_file(filename, flags=0)
56 char * filename
57 int flags
58 PREINIT:
a0d0e21e 59 shl_t obj = NULL;
8e07c86e 60 int i, max, bind_type;
cdc73a10 61 dMY_CXT;
c6a08c25 62 CODE:
bf49b057 63 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_load_file(%s,%x):\n", filename,flags));
ff7f3c60 64 if (flags & 0x01)
cea2e8a9 65 Perl_warn(aTHX_ "Can't make loaded symbols global on this platform while loading %s",filename);
b13ecc09 66 if (dl_nonlazy) {
67 bind_type = BIND_IMMEDIATE|BIND_VERBOSE;
68 } else {
69 bind_type = BIND_DEFERRED;
70 /* For certain libraries, like DCE, deferred binding often causes run
71 * time problems. Adding BIND_NONFATAL to BIND_IMMEDIATE still allows
72 * unresolved references in situations like this. */
73 /* bind_type = BIND_IMMEDIATE|BIND_NONFATAL; */
74 }
491527d0 75 /* BIND_NOSTART removed from bind_type because it causes the shared library's */
76 /* initialisers not to be run. This causes problems with all of the static objects */
77 /* in the library. */
d43d69ec 78#ifdef DEBUGGING
79 if (dl_debug)
80 bind_type |= BIND_VERBOSE;
81#endif /* DEBUGGING */
8e07c86e 82
83 max = AvFILL(dl_resolve_using);
84 for (i = 0; i <= max; i++) {
85 char *sym = SvPVX(*av_fetch(dl_resolve_using, i, 0));
bf49b057 86 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_load_file(%s) (dependent)\n", sym));
491527d0 87 obj = shl_load(sym, bind_type, 0L);
8e07c86e 88 if (obj == NULL) {
89 goto end;
75f92628 90 }
91 }
92
bf49b057 93 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_load_file(%s): ", filename));
491527d0 94 obj = shl_load(filename, bind_type, 0L);
75f92628 95
bf49b057 96 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " libref=%x\n", obj));
75f92628 97end:
a0d0e21e 98 ST(0) = sv_newmortal() ;
99 if (obj == NULL)
cea2e8a9 100 SaveError(aTHX_ "%s",Strerror(errno));
a0d0e21e 101 else
3175b8cd 102 sv_setiv( ST(0), PTR2IV(obj) );
a0d0e21e 103
104
105void *
106dl_find_symbol(libhandle, symbolname)
107 void * libhandle
108 char * symbolname
109 CODE:
110 shl_t obj = (shl_t) libhandle;
111 void *symaddr = NULL;
112 int status;
113#ifdef __hp9000s300
7a3f2258 114 symbolname = Perl_form_nocontext("_%s", symbolname);
a0d0e21e 115#endif
bf49b057 116 DLDEBUG(2, PerlIO_printf(Perl_debug_log,
46fc3d4c 117 "dl_find_symbol(handle=%lx, symbol=%s)\n",
118 (unsigned long) libhandle, symbolname));
119
8e07c86e 120 ST(0) = sv_newmortal() ;
121 errno = 0;
122
a0d0e21e 123 status = shl_findsym(&obj, symbolname, TYPE_PROCEDURE, &symaddr);
bf49b057 124 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " symbolref(PROCEDURE) = %x\n", symaddr));
8e07c86e 125
126 if (status == -1 && errno == 0) { /* try TYPE_DATA instead */
127 status = shl_findsym(&obj, symbolname, TYPE_DATA, &symaddr);
bf49b057 128 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " symbolref(DATA) = %x\n", symaddr));
8e07c86e 129 }
130
75f92628 131 if (status == -1) {
cea2e8a9 132 SaveError(aTHX_ "%s",(errno) ? Strerror(errno) : "Symbol not found") ;
75f92628 133 } else {
3175b8cd 134 sv_setiv( ST(0), PTR2IV(symaddr) );
75f92628 135 }
a0d0e21e 136
137
8e07c86e 138void
a0d0e21e 139dl_undef_symbols()
140 PPCODE:
141
142
143
144# These functions should not need changing on any platform:
145
146void
147dl_install_xsub(perl_name, symref, filename="$Package")
148 char * perl_name
149 void * symref
150 char * filename
151 CODE:
bf49b057 152 DLDEBUG(2,PerlIO_printf(Perl_debug_log, "dl_install_xsub(name=%s, symref=%x)\n",
a0d0e21e 153 perl_name, symref));
cea2e8a9 154 ST(0) = sv_2mortal(newRV((SV*)newXS(perl_name,
155 (void(*)(pTHX_ CV *))symref,
156 filename)));
a0d0e21e 157
158
159char *
160dl_error()
161 CODE:
cdc73a10 162 dMY_CXT;
163 RETVAL = dl_last_error ;
a0d0e21e 164 OUTPUT:
165 RETVAL
166
167# end.