Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0e120327
Commit
0e120327
authored
Dec 13, 1996
by
Roger E. Masse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed.
parent
7eee08d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
73 deletions
+75
-73
Modules/dlmodule.c
Modules/dlmodule.c
+75
-73
No files found.
Modules/dlmodule.c
View file @
0e120327
...
...
@@ -31,8 +31,7 @@ PERFORMANCE OF THIS SOFTWARE.
/* dl module */
#include "allobjects.h"
#include "modsupport.h"
#include "Python.h"
#include <dlfcn.h>
...
...
@@ -40,25 +39,26 @@ PERFORMANCE OF THIS SOFTWARE.
#define RTLD_LAZY 1
#endif
typedef
ANY
*
PyUnivPtr
;
typedef
struct
{
OB
_HEAD
ANY
*
dl_handle
;
PyObject
_HEAD
PyUnivPtr
*
dl_handle
;
}
dlobject
;
staticforward
typeo
bject
Dltype
;
staticforward
PyTypeO
bject
Dltype
;
static
o
bject
*
Dlerror
;
static
PyO
bject
*
Dlerror
;
static
o
bject
*
static
PyO
bject
*
newdlobject
(
handle
)
ANY
*
handle
;
PyUnivPtr
*
handle
;
{
dlobject
*
xp
;
xp
=
NEWOBJ
(
dlobject
,
&
Dltype
);
xp
=
PyObject_NEW
(
dlobject
,
&
Dltype
);
if
(
xp
==
NULL
)
return
NULL
;
xp
->
dl_handle
=
handle
;
return
(
o
bject
*
)
xp
;
return
(
PyO
bject
*
)
xp
;
}
static
void
...
...
@@ -67,80 +67,82 @@ dl_dealloc(xp)
{
if
(
xp
->
dl_handle
!=
NULL
)
dlclose
(
xp
->
dl_handle
);
DEL
(
xp
);
PyMem_
DEL
(
xp
);
}
static
o
bject
*
static
PyO
bject
*
dl_close
(
xp
,
args
)
dlobject
*
xp
;
o
bject
*
args
;
PyO
bject
*
args
;
{
if
(
!
getargs
(
args
,
""
))
if
(
!
PyArg_Parse
(
args
,
""
))
return
NULL
;
if
(
xp
->
dl_handle
!=
NULL
)
{
dlclose
(
xp
->
dl_handle
);
xp
->
dl_handle
=
NULL
;
}
INCREF
(
None
);
return
None
;
Py_INCREF
(
Py_
None
);
return
Py_
None
;
}
static
o
bject
*
static
PyO
bject
*
dl_sym
(
xp
,
args
)
dlobject
*
xp
;
o
bject
*
args
;
PyO
bject
*
args
;
{
char
*
name
;
ANY
*
func
;
if
(
!
getargs
(
args
,
"s"
,
&
name
))
PyUnivPtr
*
func
;
if
(
!
PyArg_Parse
(
args
,
"s"
,
&
name
))
return
NULL
;
func
=
dlsym
(
xp
->
dl_handle
,
name
);
if
(
func
==
NULL
)
{
INCREF
(
None
);
return
None
;
Py_INCREF
(
Py_
None
);
return
Py_
None
;
}
return
newintobject
((
long
)
func
);
return
PyInt_FromLong
((
long
)
func
);
}
static
o
bject
*
static
PyO
bject
*
dl_call
(
xp
,
args
)
dlobject
*
xp
;
o
bject
*
args
;
/* (varargs) */
PyO
bject
*
args
;
/* (varargs) */
{
o
bject
*
name
;
PyO
bject
*
name
;
long
(
*
func
)();
long
alist
[
10
];
long
res
;
int
i
;
int
n
=
gettuples
ize
(
args
);
int
n
=
PyTuple_S
ize
(
args
);
if
(
n
<
1
)
{
err_setstr
(
TypeError
,
"at least a name is needed"
);
PyErr_SetString
(
PyExc_
TypeError
,
"at least a name is needed"
);
return
NULL
;
}
name
=
gettupleitem
(
args
,
0
);
if
(
!
is_stringobject
(
name
))
{
err_setstr
(
TypeError
,
"function name must be a string"
);
name
=
PyTuple_GetItem
(
args
,
0
);
if
(
!
PyString_Check
(
name
))
{
PyErr_SetString
(
PyExc_TypeError
,
"function name must be a string"
);
return
NULL
;
}
func
=
dlsym
(
xp
->
dl_handle
,
getstringvalue
(
name
));
func
=
dlsym
(
xp
->
dl_handle
,
PyString_AsString
(
name
));
if
(
func
==
NULL
)
{
err_setstr
(
ValueError
,
dlerror
());
PyErr_SetString
(
PyExc_
ValueError
,
dlerror
());
return
NULL
;
}
if
(
n
-
1
>
10
)
{
err_setstr
(
TypeError
,
"too many arguments (max 10)"
);
PyErr_SetString
(
PyExc_TypeError
,
"too many arguments (max 10)"
);
return
NULL
;
}
for
(
i
=
1
;
i
<
n
;
i
++
)
{
object
*
v
=
gettuplei
tem
(
args
,
i
);
if
(
is_intobject
(
v
))
alist
[
i
-
1
]
=
getintvalue
(
v
);
else
if
(
is_stringobject
(
v
))
alist
[
i
-
1
]
=
(
long
)
getstringvalue
(
v
);
else
if
(
v
==
None
)
PyObject
*
v
=
PyTuple_GetI
tem
(
args
,
i
);
if
(
PyInt_Check
(
v
))
alist
[
i
-
1
]
=
PyInt_AsLong
(
v
);
else
if
(
PyString_Check
(
v
))
alist
[
i
-
1
]
=
(
long
)
PyString_AsString
(
v
);
else
if
(
v
==
Py_
None
)
alist
[
i
-
1
]
=
(
long
)
((
char
*
)
NULL
);
else
{
err_setstr
(
TypeError
,
PyErr_SetString
(
PyExc_
TypeError
,
"arguments must be int, string or None"
);
return
NULL
;
}
...
...
@@ -149,27 +151,27 @@ dl_call(xp, args)
alist
[
i
-
1
]
=
0
;
res
=
(
*
func
)(
alist
[
0
],
alist
[
1
],
alist
[
2
],
alist
[
3
],
alist
[
4
],
alist
[
5
],
alist
[
6
],
alist
[
7
],
alist
[
8
],
alist
[
9
]);
return
newintobject
(
res
);
return
PyInt_FromLong
(
res
);
}
static
struct
methodlist
dlobject_methods
[]
=
{
{
"call"
,
(
method
)
dl_call
,
1
/* varargs */
},
{
"sym"
,
(
method
)
dl_sym
},
{
"close"
,
(
method
)
dl_close
},
{
NULL
,
NULL
}
/* Sentinel */
static
PyMethodDef
dlobject_methods
[]
=
{
{
"call"
,
(
PyCFunction
)
dl_call
,
1
/* varargs */
},
{
"sym"
,
(
PyCFunction
)
dl_sym
},
{
"close"
,
(
PyCFunction
)
dl_close
},
{
NULL
,
NULL
}
/* Sentinel */
};
static
o
bject
*
static
PyO
bject
*
dl_getattr
(
xp
,
name
)
dlobject
*
xp
;
char
*
name
;
{
return
findmethod
(
dlobject_methods
,
(
o
bject
*
)
xp
,
name
);
return
Py_FindMethod
(
dlobject_methods
,
(
PyO
bject
*
)
xp
,
name
);
}
static
typeo
bject
Dltype
=
{
OB_HEAD_INIT
(
&
Typet
ype
)
static
PyTypeO
bject
Dltype
=
{
PyObject_HEAD_INIT
(
&
PyType_T
ype
)
0
,
/*ob_size*/
"dl"
,
/*tp_name*/
sizeof
(
dlobject
),
/*tp_basicsize*/
...
...
@@ -187,36 +189,36 @@ static typeobject Dltype = {
0
,
/*tp_hash*/
};
static
o
bject
*
static
PyO
bject
*
dl_open
(
self
,
args
)
o
bject
*
self
;
o
bject
*
args
;
PyO
bject
*
self
;
PyO
bject
*
args
;
{
char
*
name
;
int
mode
;
ANY
*
handle
;
if
(
getargs
(
args
,
"z"
,
&
name
))
PyUnivPtr
*
handle
;
if
(
PyArg_Parse
(
args
,
"z"
,
&
name
))
mode
=
RTLD_LAZY
;
else
{
err_c
lear
();
if
(
!
getargs
(
args
,
"(zi)"
,
&
name
,
&
mode
))
PyErr_C
lear
();
if
(
!
PyArg_Parse
(
args
,
"(zi)"
,
&
name
,
&
mode
))
return
NULL
;
#ifndef RTLD_NOW
if
(
mode
!=
RTLD_LAZY
)
{
err_setstr
(
ValueError
,
"mode must be 1"
);
PyErr_SetString
(
PyExc_
ValueError
,
"mode must be 1"
);
return
NULL
;
}
#endif
}
handle
=
dlopen
(
name
,
mode
);
if
(
handle
==
NULL
)
{
err_setstr
(
Dlerror
,
dlerror
());
PyErr_SetString
(
Dlerror
,
dlerror
());
return
NULL
;
}
return
newdlobject
(
handle
);
}
static
struct
methodlist
dl_methods
[]
=
{
static
PyMethodDef
dl_methods
[]
=
{
{
"open"
,
dl_open
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
@@ -224,28 +226,28 @@ static struct methodlist dl_methods[] = {
void
initdl
()
{
o
bject
*
m
,
*
d
,
*
x
;
PyO
bject
*
m
,
*
d
,
*
x
;
if
(
sizeof
(
int
)
!=
sizeof
(
long
)
||
sizeof
(
long
)
!=
sizeof
(
char
*
))
fatal
(
Py_FatalError
(
"module dl requires sizeof(int) == sizeof(long) == sizeof(char*)"
);
/* Create the module and add the functions */
m
=
initm
odule
(
"dl"
,
dl_methods
);
m
=
Py_InitM
odule
(
"dl"
,
dl_methods
);
/* Add some symbolic constants to the module */
d
=
getmoduled
ict
(
m
);
Dlerror
=
x
=
newstringobject
(
"dl.error"
);
dictinsert
(
d
,
"error"
,
x
);
x
=
newintobject
((
long
)
RTLD_LAZY
);
dictinsert
(
d
,
"RTLD_LAZY"
,
x
);
d
=
PyModule_GetD
ict
(
m
);
Dlerror
=
x
=
PyString_FromString
(
"dl.error"
);
PyDict_SetItemString
(
d
,
"error"
,
x
);
x
=
PyInt_FromLong
((
long
)
RTLD_LAZY
);
PyDict_SetItemString
(
d
,
"RTLD_LAZY"
,
x
);
#ifdef RTLD_NOW
x
=
newintobject
((
long
)
RTLD_NOW
);
dictinsert
(
d
,
"RTLD_NOW"
,
x
);
x
=
PyInt_FromLong
((
long
)
RTLD_NOW
);
PyDict_SetItemString
(
d
,
"RTLD_NOW"
,
x
);
#endif
/* Check for errors */
if
(
err_o
ccurred
())
fatal
(
"can't initialize module dl"
);
if
(
PyErr_O
ccurred
())
Py_FatalError
(
"can't initialize module dl"
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment