mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 13:45:05 +00:00
Massive automated renaming of all Py_/PyObject/etc. prefixes to Ty_/TyObject/etc. This includes: - All public API types (TyObject, TyTypeObject, etc.) - All public API functions (Ty_Initialize, Ty_BuildValue, etc.) - All internal API (_Ty_ prefixes) - Reference counting macros (Ty_INCREF, Ty_DECREF, etc.) - Type flags (Ty_TPFLAGS_*) - Debug flags (Ty_DEBUG, Ty_TRACE_REFS, etc.) - All object type APIs (TyList_, TyDict_, TyUnicode_, etc.) This changes over 60,000 occurrences across 1000+ files. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
77 lines
2.1 KiB
C
77 lines
2.1 KiB
C
|
|
/* Support for dynamic loading of extension modules */
|
|
|
|
#include "dl.h"
|
|
#include <errno.h>
|
|
|
|
#include "Python.h"
|
|
#include "pycore_importdl.h"
|
|
|
|
#if defined(__hp9000s300)
|
|
#define FUNCNAME_PATTERN "_%.20s_%.200s"
|
|
#else
|
|
#define FUNCNAME_PATTERN "%.20s_%.200s"
|
|
#endif
|
|
|
|
const char *_TyImport_DynLoadFiletab[] = {SHLIB_EXT, ".sl", NULL};
|
|
|
|
dl_funcptr _TyImport_FindSharedFuncptr(const char *prefix,
|
|
const char *shortname,
|
|
const char *pathname, FILE *fp)
|
|
{
|
|
int flags = BIND_FIRST | BIND_DEFERRED;
|
|
int verbose = _Ty_GetConfig()->verbose;
|
|
if (verbose) {
|
|
flags = BIND_FIRST | BIND_IMMEDIATE |
|
|
BIND_NONFATAL | BIND_VERBOSE;
|
|
printf("shl_load %s\n",pathname);
|
|
}
|
|
|
|
shl_t lib = shl_load(pathname, flags, 0);
|
|
/* XXX Chuck Blake once wrote that 0 should be BIND_NOSTART? */
|
|
if (lib == NULL) {
|
|
if (verbose) {
|
|
perror(pathname);
|
|
}
|
|
char buf[256];
|
|
TyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s",
|
|
pathname);
|
|
TyObject *buf_ob = TyUnicode_DecodeFSDefault(buf);
|
|
if (buf_ob == NULL)
|
|
return NULL;
|
|
TyObject *shortname_ob = TyUnicode_FromString(shortname);
|
|
if (shortname_ob == NULL) {
|
|
Ty_DECREF(buf_ob);
|
|
return NULL;
|
|
}
|
|
TyObject *pathname_ob = TyUnicode_DecodeFSDefault(pathname);
|
|
if (pathname_ob == NULL) {
|
|
Ty_DECREF(buf_ob);
|
|
Ty_DECREF(shortname_ob);
|
|
return NULL;
|
|
}
|
|
TyErr_SetImportError(buf_ob, shortname_ob, pathname_ob);
|
|
Ty_DECREF(buf_ob);
|
|
Ty_DECREF(shortname_ob);
|
|
Ty_DECREF(pathname_ob);
|
|
return NULL;
|
|
}
|
|
|
|
char funcname[258];
|
|
TyOS_snprintf(funcname, sizeof(funcname), FUNCNAME_PATTERN,
|
|
prefix, shortname);
|
|
if (verbose) {
|
|
printf("shl_findsym %s\n", funcname);
|
|
}
|
|
|
|
dl_funcptr p;
|
|
if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) {
|
|
shl_unload(lib);
|
|
p = NULL;
|
|
}
|
|
if (p == NULL && verbose) {
|
|
perror(funcname);
|
|
}
|
|
return p;
|
|
}
|