当你觉得python慢的时候,当你的c/c++代码难以用在python上的时候,你可能会注意这篇文章。swig是一个可以把c/c++代码封装为python库的工具。(本文封装为python3的库)

文章结构

  • 整体看封装
  • 只使用python提供的c语言接口(Python.h)封装一个简单的c函数
  • 使用swig封装一个简单的c函数
  • 使用swig封装一个简单的c++类

整体看封装

c/c++实现功能 ==> c/c++封装c/c++函数 ==> 将前两者编译生成动态库 ==> python进一步封装;

手动封装c函数

我把实现和封装放在一个文件中(add.c)。

//add.c
#include <Python.h> //定义一个C函数
int add(int a,int b){
return a+b;
} //包装c函数
static PyObject* _add_add(PyObject *self,PyObject *args){
int a,b;
PyArg_ParseTuple(args,"ii",&a,&b); //把python参数转换为c函数
return (PyObject*)Py_BuildValue("i",add(a,b)); //返回python对象的指针
} //方法结构数组
static PyMethodDef _addMethods[]={ //
{ "add",_add_add,METH_VARARGS},
{NULL,NULL}
}; //模块结构
static struct PyModuleDef _addModule={
PyModuleDef_HEAD_INIT,
"_add", //模块名
"ADD", //文档
-,
_addMethods //PyMethodsDef实例
}; //初始化函数
PyMODINIT_FUNC PyInit__add(){
PyModule_Create(&_addModule); //参数为PyModuleDef*
} /*************************************************
* (1)定义一个C函数,如add()。
*
* (2)包装c函数,如_add_add()。
*
* (3)方法结构数组,如_addMethods[]。
*
* (4)模块结构,如_addModule。
*
* (5)初始化函数PyInit_<module_name>(),如PyInit__add(),"_add"是模块名。
*
* 联系:
* import ==> PyInit_<...>() ==> PyModule_Create() ==> PyModuleDef ==> PyMethodsDef ==> 包装函数 ==> c函数
* ************************************************/

把add.c编译成动态库(_add.so)。

#Makefile
_add.so : add.c
gcc -o _add.so add.c -fPIC -shared
clean :
rm _add.so
_add.so已经是一个可用的python模块了,模块名为_add。
通过python进一步封装。这个库很简单,会感觉这一步行是多余的,但用swig都有这一步。
#add.py
from _add import *
自己创建add.c、Makefile和add.py,编译生成_add.so。

swig封装c函数

首先实现功能(add.c、add.h)。
//add.h
#ifndef ADD_H
#define ADD_H int add(int,int); #endif //------------------------------------------------------------------------ //add.c
#include "add.h"
int add(int a,int b)
{
return a+b;
}
swig需要一个输入文件(add.i)。
/* add.i */
%module add /*模块名*/ %{
#include "add.h"
%} int add(int,int); /*add.h中的内容*/

又是Makefile。

#Makefile
_add.so : add.c add.h add_wrap.c
gcc -shared -fPIC -o _add.so add.c add_wrap.c
add_wrap.c : add.i
swig -python -py3 add.i
clean :
rm _add.so add_wrap.c add.py
自己创建add.c、add.h、Makefile和add.i,编译生成add.py和_add.so。swig生成add.py和add_wrap.c,gcc将add.c和add_wrap.c编译成_add.so。在add_wrap.c搜索手动封装c函数的add.c文件中的相关结构便知其实质。

swig封装c++类

用c++实现一个向量类(Vector),两个文件——vector.hpp和vector.cpp。
//vector.hpp
#ifndef VECTOR_HPP
#define VECTOR_HPP class Vector{
public:
Vector(int,int);
double abs();
void display();
private:
int x;
int y;
}; #endif
//vector.cpp
#include "vector.hpp"
#include <iostream>
#include <cmath>
using namespace std; Vector::Vector(int a,int b){ x=a; y=b; }
void Vector::display(){ cout << "(" << x << ',' << y << ')' << endl; }
double Vector::abs(){ return sqrt(x*x+y*y); }

swig输入文件(vector.i)。

/* vector.i */
%module vector
%{
#include "vector.hpp"
%} class Vector{
public:
Vector(int,int);
double abs();
void display();
private:
int x;
int y;
};

还是Makefile。

#Makefile
_vector.so : vector.cpp vector.hpp vector_wrap.cxx
g++ -shared -fPIC -I/usr/include/python3.4m -lpython3.4m -o _vector.so vector.cpp vector_wrap.cxx
vector_wrap.cxx : vector.i
swig -c++ -python -py3 vector.i
clean :
rm _vector.so vector_wrap.cxx vector.py

自己创建vector.cpp、vector.hpp、Makefile和vector.i,编译生成vector.py和_vector.so。

swig与python的更多相关文章

  1. SWIG 和 Python——c/c++与脚本交互

    C 和 C++ 被公认为(理当如此)创建高性能代码的首选平台.对开发人员的一个常见要求是向脚本语言接口公开 C/C++ 代码,这正是 Simplified Wrapper and Interface ...

  2. 使用swig在python中调用C++

    1.安装swig 下载链接: http://www.swig.org/survey.html tar -xvf swig-.tar.gz ./configure --prefix=/usr/local ...

  3. SWIG 扩展Opencv python调用C++

    osx:10.12 g++ 7.1 swig 3.0.12 opencv 3.2.0 SWIG是Simplified Wrapper and Interface Generator的缩写.是Pytho ...

  4. 如何实现Python调用C代码--python与C之间如何通信(swig)

    转载: https://www.zhihu.com/question/23003213 1. C代码如何调用Python 1.1 test #include <Python.h> int ...

  5. use Swig to create C/C++ extension for Python

    SWIG is a software development tool that simplifies the task of interfacing different languages to C ...

  6. python通过swig调用静态库

    swig - Simplified Wrapper and Interface Generator swig可以支持python,go,php,lua,ruby,c#等多种语言的包裹 本文主要记录如何 ...

  7. 初识代码封装工具SWIG(回调Python函数)

    这不是我最早使用swig了,之前在写Kynetix的时候就使用了swig为python封装了C语言写的扩展模块.但是当时我对C++还不是很了解,对其中的一些概念也只是拿来直接用,没有理解到底是什么,为 ...

  8. 学习笔记:安装swig+用SWIG封装C++为Python模块+SWIG使用说明

    这段时间一直在摸索swing,用它来封装C++代码来生成python脚步语言.并总结了swing从安装到配置再到代码封装编译生成动态库的整个过程,下面这篇文章都是我在实际的运用中的一些经验总结,分享给 ...

  9. c++ python 交互之 swig

    c++ python 交互之 swig 工作中准备用python 作为脚本语言来实现一些工作于是就研究 可以和c++ 交互的脚本语言 本来一开始用的lua 但是 lua本身API接口很少 要么自己需要 ...

随机推荐

  1. 017random模块

    import  randomprint(random.random())print(random.randint(1,8))            #包括8         print(random. ...

  2. C# 解决组合优化问题

    Google Optimization Tools介绍 Google Optimization Tools(OR-Tools)是一款专门快速而便携地解决组合优化问题的套件.它包含了: 约束编程求解器. ...

  3. System IPC 与Posix IPC(共享内存)

    系统v(共享内存) 1.对于系统V共享内存,主要有以下几个API:shmget().shmat().shmdt()及shmctl(). 2.shmget()用来获得共享内存区域的ID,如果不存在指定的 ...

  4. Linux下XAMPP的部署实战

    上传源码文件 rz -be 下载xampp安装包wget http://sourceforge.net/projects/xampp/files/XAMPP%20Linux/5.5.28/xampp- ...

  5. interaction-oriented architecture - MVC

    MVC(Model-View-Controller),它是专门针 对交互系统提出的,所以如果我们要构建一个交互系统,那么我们就可以直接应用MVC模式,然后 在该模式所搭建的场景的启发下去发现Model ...

  6. [19/03/31-星期日] IO技术_四大抽象类_字符流( 字符输入流 Reader、 字符输出流 Writer )(含字符缓冲类)

     一.概念 Reader Reader用于读取的字符流抽象类,数据单位为字符. int read(): 读取一个字符的数据,并将字符的值作为int类型返回(0-65535之间的一个值,即Unicode ...

  7. 关于Git学习推荐

    Git学习除了推荐官方网站:https://git-scm.com/之外, 我个人比较推荐初学者或者被动使用者可以学习参考廖雪峰的这个教程:https://www.liaoxuefeng.com/wi ...

  8. iview中position: 'fixed'最顶层z-index

    使用iview时候使用<Header :style="{position: 'fixed', width: '100%'}">不是最顶层解决方案 根据样式进行解决在ap ...

  9. PAT——1008. 数组元素循环右移问题

    一个数组A中存有N(N>0)个整数,在不允许使用另外数组的前提下,将每个整数循环向右移M(M>=0)个位置,即将A中的数据由(A0A1……AN-1)变换为(AN-M …… AN-1 A0  ...

  10. java两种反射的区别 - Class.forName()和ClassLoader.loadClass()

    在理解这两种反射机制之前,需要弄清楚java类的加载机制. 装载:通过类的全限定名获取二进制字节流(二进制的class文件),将二进制字节流转换成方法区中的运行时数据结构,在内存中生成Java.lan ...