Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1495923
  • 博文数量: 164
  • 博客积分: 2993
  • 博客等级: 少校
  • 技术积分: 1718
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-24 11:42
文章分类

全部博文(164)

文章存档

2014年(1)

2013年(36)

2012年(90)

2011年(37)

分类: 网络与安全

2013-07-31 16:30:09

This article explains how to write a DLL/SO in C/C++ for Python

Note:  can also be used to create and wrap C libraries for Python, and might be a good alternative to the approach explained in this article.

  1. Create a new file and write, for example, a function that sums two numbers and returns the result.

    If you are using C call the file test.c and write:

    //test.c
    __declspec(dllexport) int sum(int a, int b) {
        return a + b;
    }

    If you are using C++ call the file test.cpp and write:

    //test.cpp
    #define DLLEXPORT extern "C" __declspec(dllexport)
    
    DLLEXPORT int sum(int a, int b) {
        return a + b;
    }

    If you are using Windows, __declspec(dllexport) is necessary to add the export directive to the object file and make the function accessible without using a .def file. If you are using Linux it can be omitted.

    The extern "C" construct prevents the compiler to add  on the functions' names in the DLL/SO and it is necessary while using C++.

    Note: in order to make the code more readable and avoid repetitions, it is a good idea to use a #define as shown in the example

  2. The header of the function can be added to test.h (but it's not necessary):

    //test.h
    int sum(int, int);
  3. Compile the program to obtain a DLL/SO.

    If you are using Windows and Visual Studio, create a new Dinamic-Link Library project and include the two files.

    Another way is to use the cl program located in the Visual Studio directory (e.g. C:\Programs\Microsoft Visual Studio 8\VC) with the /LD option:

    >cl /LD test.c
    [...]
    /out:test.dll /dll
    /implib:test.lib
    test.obj
       Creating library test.lib and object test.exp 

    Note: cl use the file extension (.c or .cpp) to know if the source is written in C or C++.

    If you are using Linux, you can use gcc/g++ to compile the program and create the .so:

    gcc -Wall -Wextra -O -ansi -pedantic -shared test.c -o test.so

    Note: the -shared option is responsible to create the .so.

    Note: You can also use  or similar programs to see the list of the exported functions and check if the sum function is there.

  4. Use the ctypes module to access the DLL:

    >>> from ctypes import cdll
    >>> mydll = cdll.LoadLibrary('test.dll')
    >>> mydll 

    On Windows, cdll.LoadLibrary will search for the DLL in the CWD. On Linux instead, it is necessary to provide the path too:

    >>> from ctypes import cdll
    >>> mydll = cdll.LoadLibrary('/home/wolf/test.so')
    >>> mydll 

    Note: ctype module is already included from Python 2.5. If you are using an older version you can .

  5. We can now use mydll to access the sum function:

    >>> mydll.sum <_FuncPtr object at 0x00AF6918> >>> mydll.sum(5, 3) 8
阅读(1612) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~