• 15.5 从扩展模块中定义和导出C的API
    • 问题
    • 解决方案
    • 讨论

    15.5 从扩展模块中定义和导出C的API

    问题

    你有一个C扩展模块,在内部定义了很多有用的函数,你想将它们导出为一个公共的C API供其他地方使用。你想在其他扩展模块中使用这些函数,但是不知道怎样将它们链接起来,并且通过C编译器/链接器来做看上去特别复杂(或者不可能做到)。

    解决方案

    本节主要问题是如何处理15.4小节中提到的Point对象。仔细回一下,在C代码中包含了如下这些工具函数:

    1. /* Destructor function for points */
    2. static void del_Point(PyObject *obj) {
    3.  
    4. free(PyCapsule_GetPointer(obj,"Point"));
    5. }
    6.  
    7. /* Utility functions */
    8. static Point *PyPoint_AsPoint(PyObject *obj) {
    9. return (Point *) PyCapsule_GetPointer(obj, "Point");
    10. }
    11.  
    12. static PyObject *PyPoint_FromPoint(Point *p, int must_free) {
    13. return PyCapsule_New(p, "Point", must_free ? del_Point : NULL);
    14. }

    现在的问题是怎样将 PyPoint_AsPoint()Point_FromPoint() 函数作为API导出,这样其他扩展模块能使用并链接它们,比如如果你有其他扩展也想使用包装的Point对象。

    要解决这个问题,首先要为 sample 扩展写个新的头文件名叫 pysample.h ,如下:

    1. /* pysample.h */
    2. #include "Python.h"
    3. #include "sample.h"
    4. #ifdef __cplusplus
    5. extern "C" {
    6. #endif
    7.  
    8. /* Public API Table */
    9. typedef struct {
    10. Point *(*aspoint)(PyObject *);
    11. PyObject *(*frompoint)(Point *, int);
    12. } _PointAPIMethods;
    13.  
    14. #ifndef PYSAMPLE_MODULE
    15. /* Method table in external module */
    16. static _PointAPIMethods *_point_api = 0;
    17.  
    18. /* Import the API table from sample */
    19. static int import_sample(void) {
    20. _point_api = (_PointAPIMethods *) PyCapsule_Import("sample._point_api",0);
    21. return (_point_api != NULL) ? 1 : 0;
    22. }
    23.  
    24. /* Macros to implement the programming interface */
    25. #define PyPoint_AsPoint(obj) (_point_api->aspoint)(obj)
    26. #define PyPoint_FromPoint(obj) (_point_api->frompoint)(obj)
    27. #endif
    28.  
    29. #ifdef __cplusplus
    30. }
    31. #endif

    这里最重要的部分是函数指针表 _PointAPIMethods .它会在导出模块时被初始化,然后导入模块时被查找到。修改原始的扩展模块来填充表格并将它像下面这样导出:

    1. /* pysample.c */
    2.  
    3. #include "Python.h"
    4. #define PYSAMPLE_MODULE
    5. #include "pysample.h"
    6.  
    7. ...
    8. /* Destructor function for points */
    9. static void del_Point(PyObject *obj) {
    10. printf("Deleting point\n");
    11. free(PyCapsule_GetPointer(obj,"Point"));
    12. }
    13.  
    14. /* Utility functions */
    15. static Point *PyPoint_AsPoint(PyObject *obj) {
    16. return (Point *) PyCapsule_GetPointer(obj, "Point");
    17. }
    18.  
    19. static PyObject *PyPoint_FromPoint(Point *p, int free) {
    20. return PyCapsule_New(p, "Point", free ? del_Point : NULL);
    21. }
    22.  
    23. static _PointAPIMethods _point_api = {
    24. PyPoint_AsPoint,
    25. PyPoint_FromPoint
    26. };
    27. ...
    28.  
    29. /* Module initialization function */
    30. PyMODINIT_FUNC
    31. PyInit_sample(void) {
    32. PyObject *m;
    33. PyObject *py_point_api;
    34.  
    35. m = PyModule_Create(&samplemodule);
    36. if (m == NULL)
    37. return NULL;
    38.  
    39. /* Add the Point C API functions */
    40. py_point_api = PyCapsule_New((void *) &_point_api, "sample._point_api", NULL);
    41. if (py_point_api) {
    42. PyModule_AddObject(m, "_point_api", py_point_api);
    43. }
    44. return m;
    45. }

    最后,下面是一个新的扩展模块例子,用来加载并使用这些API函数:

    1. /* ptexample.c */
    2.  
    3. /* Include the header associated with the other module */
    4. #include "pysample.h"
    5.  
    6. /* An extension function that uses the exported API */
    7. static PyObject *print_point(PyObject *self, PyObject *args) {
    8. PyObject *obj;
    9. Point *p;
    10. if (!PyArg_ParseTuple(args,"O", &obj)) {
    11. return NULL;
    12. }
    13.  
    14. /* Note: This is defined in a different module */
    15. p = PyPoint_AsPoint(obj);
    16. if (!p) {
    17. return NULL;
    18. }
    19. printf("%f %f\n", p->x, p->y);
    20. return Py_BuildValue("");
    21. }
    22.  
    23. static PyMethodDef PtExampleMethods[] = {
    24. {"print_point", print_point, METH_VARARGS, "output a point"},
    25. { NULL, NULL, 0, NULL}
    26. };
    27.  
    28. static struct PyModuleDef ptexamplemodule = {
    29. PyModuleDef_HEAD_INIT,
    30. "ptexample", /* name of module */
    31. "A module that imports an API", /* Doc string (may be NULL) */
    32. -1, /* Size of per-interpreter state or -1 */
    33. PtExampleMethods /* Method table */
    34. };
    35.  
    36. /* Module initialization function */
    37. PyMODINIT_FUNC
    38. PyInit_ptexample(void) {
    39. PyObject *m;
    40.  
    41. m = PyModule_Create(&ptexamplemodule);
    42. if (m == NULL)
    43. return NULL;
    44.  
    45. /* Import sample, loading its API functions */
    46. if (!import_sample()) {
    47. return NULL;
    48. }
    49.  
    50. return m;
    51. }

    编译这个新模块时,你甚至不需要去考虑怎样将函数库或代码跟其他模块链接起来。例如,你可以像下面这样创建一个简单的 setup.py 文件:

    1. # setup.py
    2. from distutils.core import setup, Extension
    3.  
    4. setup(name='ptexample',
    5. ext_modules=[
    6. Extension('ptexample',
    7. ['ptexample.c'],
    8. include_dirs = [], # May need pysample.h directory
    9. )
    10. ]
    11. )

    如果一切正常,你会发现你的新扩展函数能和定义在其他模块中的C API函数一起运行的很好。

    1. >>> import sample
    2. >>> p1 = sample.Point(2,3)
    3. >>> p1
    4. <capsule object "Point *" at 0x1004ea330>
    5. >>> import ptexample
    6. >>> ptexample.print_point(p1)
    7. 2.000000 3.000000
    8. >>>

    讨论

    本节基于一个前提就是,胶囊对象能获取任何你想要的对象的指针。这样的话,定义模块会填充一个函数指针的结构体,创建一个指向它的胶囊,并在一个模块级属性中保存这个胶囊,例如 sample._point_api .

    其他模块能够在导入时获取到这个属性并提取底层的指针。事实上,Python提供了 PyCapsule_Import() 工具函数,为了完成所有的步骤。你只需提供属性的名字即可(比如sample._point_api),然后他就会一次性找到胶囊对象并提取出指针来。

    在将被导出函数变为其他模块中普通函数时,有一些C编程陷阱需要指出来。在 pysample.h 文件中,一个 _point_api 指针被用来指向在导出模块中被初始化的方法表。一个相关的函数 import_sample() 被用来指向胶囊导入并初始化这个指针。这个函数必须在任何函数被使用之前被调用。通常来讲,它会在模块初始化时被调用到。最后,C的预处理宏被定义,被用来通过方法表去分发这些API函数。用户只需要使用这些原始函数名称即可,不需要通过宏去了解其他信息。

    最后,还有一个重要的原因让你去使用这个技术来链接模块——它非常简单并且可以使得各个模块很清晰的解耦。如果你不想使用本机的技术,那你就必须使用共享库的高级特性和动态加载器来链接模块。例如,将一个普通的API函数放入一个共享库并确保所有扩展模块链接到那个共享库。这种方法确实可行,但是它相对繁琐,特别是在大型系统中。本节演示了如何通过Python的普通导入机制和仅仅几个胶囊调用来将多个模块链接起来的魔法。对于模块的编译,你只需要定义头文件,而不需要考虑函数库的内部细节。

    更多关于利用C API来构造扩展模块的信息可以参考Python的文档

    原文:

    http://python3-cookbook.readthedocs.io/zh_CN/latest/c15/p05_define_and_export_c_api_from_extension_modules.html