Calling relationship between C/Python
Since python has many powerful open source libraries, c can borrow methods from them to complete more functions.
Therefore, the method of calling python from C is particularly important.
Method/Steps
-
ubuntu 14.04 linux c
gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2
Python 2.7.6
-
file 1 [python file]: math_test.py
def add_func(a,b):
return a b
def sub_func(a,b):
return (a-b)
file 2 [c source file]: c_call_python.c
#include
#include
#include
#include "python2.7/Python.h"
int main(int argc, char** argv)
{
int arg0 = 0,arg1 = 0;
if(argc == 3){
arg0 = atoi(argv[1] );
arg1 = atoi(argv[2]);
}else{
printf("please input 2 args!!n");
return -1;
}
Py_Initialize();
if ( !Py_IsInitialized())
return -1;
PyRun_SimpleString("import sys");
PyRun_SimpleString("sys.path.append('./')");
PyObject * pModule;
PyObject *pFunction;
PyObject *pArgs;
PyObject *pRetValue;
pModule = PyImport_ImportModule ("math_test");
if(!pModule){
printf("import python failed!!n");
return -1;
}
pFunction = PyObject_GetAttrString(pModule, "add_func");
if(!pFunction){
printf(" get python function failed!!!n");
return -1;
}
pArgs = PyTuple_New(2);
PyTuple_SetItem(pArgs, 0, Py_BuildValue("i", arg0));
PyTuple_SetItem(pArgs, 1, Py_BuildValue("i", arg1 ));
pRetValue = PyObject_CallObject(pFunction, pArgs);
printf("%d %d = %ldn",arg0,arg1,PyInt_AsLong(pRetValue));
Py_DECREF(pModule);
Py_DECREF(pFunction);
Py_DECREF(pArgs);
Py_DECREF(pRetValue);
Py_Finalize();
return 0;
}
- 3
root@linux:~/code# gcc -o c_call_python c_call_python.c -lpython2.7
root@linux:~/code# ./c_call_python 12 15
12 15 = 27
Py_BuildValue() function in Python extension
The role of Py_BuildValue() function is opposite to that of PyArg_ParseTuple(). It converts C type data structure into a Python object. The prototype of this function is: PyObject *Py_BuildValue(char *format, ...) This function can recognize a series of format strings like the PyArg_ParseTuple() function, but the input parameters can only be values, not pointers. It returns a Python object. The difference from PyArg_ParseTuple() is that the first parameter of the PyArg_ParseTuple() function is a tuple, while Py_BuildValue() does not necessarily generate a tuple. It generates a tuple only if the format string contains two or more format units, and returns NONE if the format string is empty. In the following description, the item in brackets is the type of the Python object returned by the format unit, and the item in square brackets is the type of the C value passed. "s" (string) [char *]: Convert a C string into a Python object. If the C string is empty, return NONE. "s#" (string) [char *, int]: Convert a C string and its length into a Python object. If the C string is a null pointer, the length is ignored and NONE is returned. "z" (string orNone) [char *]: The same as "s". "z#" (string orNone) [char *, int]: The function is the same as "s#". "i" (integer) [int]: Convert a C type int into a Python int object. "b" (integer) [char]: Same as "i". "h" (integer) [short int]: The function is the same as "i". "l" (integer) [long int]: Convert C type long to int object in Pyhon. "c" (string of length 1) [char]: Convert C type char into a Python string object of length 1. "d" (float) [double]: Convert C type double to a floating point object in python. "f" (float) [float] :The function is the same as "d". "O&" (object) [converter,anything]: Convert any data type into a Python object through the conversion function. The data is called as a parameter of the conversion function and returns a new Python object if an error occurs. Return NULL. "(items)" (tuple) [matching-items] : Convert a series of C values into Python tuples. "[items]" (list) [matching-items] : Convert a series of C values into a Python list. "{items}" (dictionary) [matching-items]: Convert a series of C values into a Python dictionary. Each pair of consecutive C values will be converted into a key-value pair.
For example: Py_BuildValue("") None Py_BuildValue("i", 123) 123 Py_BuildValue("iii", 123, 456, 789) (123, 456, 789) Py_BuildValue("s" , "hello") 'hello' Py_BuildValue("ss", "hello", "world") ('hello', 'world') Py_BuildValue("s#", "hello", 4) 'hell' Py_BuildValue("()") () Py_BuildValue("(i)", 123) (123,) Py_BuildValue("(ii)", 123, 456) (123, 456) Py_BuildValue("( i,i)", 123, 456) (123, 456) Py_BuildValue("[i,i]", 123, 456) [123, 456] Py_BuildValue("{s:i,s:i}","abc ", 123, "def", 456) {'abc': 123, 'def': 456} Py_BuildValue("((ii)(ii)) (ii)",1, 2, 3, 4, 5, 6 ) (((1, 2), (3, 4)), (5, 6))In-depth analysis of C calling Python module
Python provides a C library that allows developers to easily call Python modules from C programs. Next, through this article, I will introduce you to the relevant knowledge of C calling Python modules. Friends who need it can refer to itGenerally, those who have developed games know that Lua and C can be well combined, learn from each other's strengths, and treat Lua scripts as similar dynamics. Link libraries are used to make good use of the flexibility of script development. As a popular general-purpose scripting language, Python can also do it. In a C application, we can use a set of plug-ins to implement some functions with a unified interface. Generally, plug-ins are implemented using dynamic link libraries. If plug-ins change frequently, we can use Python instead of dynamic link libraries. Plug-ins (which can be called dynamic link libraries in text form) make it easy to rewrite script code according to changing needs, instead of having to recompile and link binary dynamic link libraries. Flexibility is greatly improved.
As a glue language, Python can easily call C, C and other languages, and can also call Python modules through other languages.
Python provides a C library that allows developers to easily call Python modules from C programs.
For specific documentation, please refer to the official guide:
Embedding Python in Another Application
Call method
1 Link to Python calling library
The Python installation directory already contains header files (include directory) and library files (python27.lib under Windows).
You need to link to this library before using it.
2 Directly call the Python statement
<code class="language-cpp hljs ">#include "python/Python.h"int main(){Py_Initialize(); ## 初始化PyRun_SimpleString("print 'hello'");Py_Finalize(); ## 释放资源}</code>
3 Load the Python module and call the function
~/test directory contains test.py:
<code class="language-python hljs ">def test_add(a, b):print 'add ', a, ' and ', breturn a+b</code>
You can call the test_add function through the following code:
<code class="language-cpp hljs ">#include "python/Python.h"#include <iostream>using namespace std;int main(){Py_Initialize(); // 初始化// 将Python工作路径切换到待调用模块所在目录,一定要保证路径名的正确性string path = "~/test";string chdir_cmd = string("sys.path.append(\"") + path + "\")";const char* cstr_cmd = chdir_cmd.c_str();PyRun_SimpleString("import sys");PyRun_SimpleString(cstr_cmd);// 加载模块PyObject* moduleName = PyString_FromString("test"); //模块名,不是文件名PyObject* pModule = PyImport_Import(moduleName);if (!pModule) // 加载模块失败{cout << "[ERROR] Python get module failed." << endl;return 0;}cout << "[INFO] Python get module succeed." << endl;// 加载函数PyObject* pv = PyObject_GetAttrString(pModule, "test_add");if (!pv || !PyCallable_Check(pv)) // 验证是否加载成功{cout << "[ERROR] Can't find funftion (test_add)" << endl;return 0;}cout << "[INFO] Get function (test_add) succeed." << endl;// 设置参数PyObject* args = PyTuple_New(2); // 2个参数PyObject* arg1 = PyInt_FromLong(4); // 参数一设为4PyObject* arg2 = PyInt_FromLong(3); // 参数二设为3PyTuple_SetItem(args, 0, arg1);PyTuple_SetItem(args, 1, arg2);// 调用函数PyObject* pRet = PyObject_CallObject(pv, args);// 获取参数if (pRet) // 验证是否调用成功{long result = PyInt_AsLong(pRet);cout << "result:" << result;}Py_Finalize(); ## 释放资源return 0;}</iostream></code>
Parameter passing
1 C Passing parameters to Python
Python’s parameters are actually tuples, so Passing parameters is actually constructing a suitable tuple.
There are two commonly used methods:
Use PyTuple_New to create tuples, PyTuple_SetItem to set tuple values
<code class="language-cpp hljs ">PyObject* args = PyTuple_New(3);PyObject* arg1 = Py_BuildValue("i", 100); // 整数参数PyObject* arg2 = Py_BuildValue("f", 3.14); // 浮点数参数PyObject* arg3 = Py_BuildValue("s", "hello"); // 字符串参数PyTuple_SetItem(args, 0, arg1);PyTuple_SetItem(args, 1, arg2);PyTuple_SetItem(args, 2, arg3);</code>
Use Py_BuildValue directly to construct tuples
<code class="language-cpp hljs ">PyObject* args = Py_BuildValue("ifs", 100, 3.14, "hello");PyObject* args = Py_BuildValue("()"); // 无参函数</code>
Format strings such as i, s, f can refer to format string
2 Convert Python return value
What you get when calling Python are PyObject objects, so you need to use Python Some functions in the provided library convert the return value to C, such as PyInt_AsLong, PyFloat_AsDouble, PyString_AsString, etc.
You can also use the PyArg_ParseTuple function to parse the return value as a tuple.
PyArg_Parse is also a conversion function that is very convenient to use.
PyArg_ParseTuple and PyArg_Parse both use format strings
Notes
You need to switch the Python working directory to the path where the module is located. Load the module according to the module name instead of the file name or Function loading needs to be verified successfully, otherwise it may cause a stack error and cause the program to crash. Py_DECREF(PyObject*) needs to be used to dereference the object (for Python garbage collection)

根据美国司法部的解释,蓝色警报旨在提供关于可能对执法人员构成直接和紧急威胁的个人的重要信息。这种警报的目的是及时通知公众,并让他们了解与这些罪犯相关的潜在危险。通过这种主动的方式,蓝色警报有助于增强社区的安全意识,促使人们采取必要的预防措施以保护自己和周围的人。这种警报系统的建立旨在提高对潜在威胁的警觉性,并加强执法机构与公众之间的沟通,以共尽管这些紧急通知对我们社会至关重要,但有时可能会对日常生活造成干扰,尤其是在午夜或重要活动时收到通知时。为了确保安全,我们建议您保持这些通知功能开启,但如果

Android中的轮询是一项关键技术,它允许应用程序定期从服务器或数据源检索和更新信息。通过实施轮询,开发人员可以确保实时数据同步并向用户提供最新的内容。它涉及定期向服务器或数据源发送请求并获取最新信息。Android提供了定时器、线程、后台服务等多种机制来高效地完成轮询。这使开发人员能够设计与远程数据源保持同步的响应式动态应用程序。本文探讨了如何在Android中实现轮询。它涵盖了实现此功能所涉及的关键注意事项和步骤。轮询定期检查更新并从服务器或源检索数据的过程在Android中称为轮询。通过

为了提升用户体验并防止数据或进度丢失,Android应用程序开发者必须避免意外退出。他们可以通过加入“再次按返回退出”功能来实现这一点,该功能要求用户在特定时间内连续按两次返回按钮才能退出应用程序。这种实现显著提升了用户参与度和满意度,确保他们不会意外丢失任何重要信息Thisguideexaminesthepracticalstepstoadd"PressBackAgaintoExit"capabilityinAndroid.Itpresentsasystematicguid

1.java复杂类如果有什么地方不懂,请看:JAVA总纲或者构造方法这里贴代码,很简单没有难度。2.smali代码我们要把java代码转为smali代码,可以参考java转smali我们还是分模块来看。2.1第一个模块——信息模块这个模块就是基本信息,说明了类名等,知道就好对分析帮助不大。2.2第二个模块——构造方法我们来一句一句解析,如果有之前解析重复的地方就不再重复了。但是会提供链接。.methodpublicconstructor(Ljava/lang/String;I)V这一句话分为.m

如何将WhatsApp聊天从Android转移到iPhone?你已经拿到了新的iPhone15,并且你正在从Android跳跃?如果是这种情况,您可能还对将WhatsApp从Android转移到iPhone感到好奇。但是,老实说,这有点棘手,因为Android和iPhone的操作系统不兼容。但不要失去希望。这不是什么不可能完成的任务。让我们在本文中讨论几种将WhatsApp从Android转移到iPhone15的方法。因此,坚持到最后以彻底学习解决方案。如何在不删除数据的情况下将WhatsApp

原因:1、安卓系统上设置了一个JAVA虚拟机来支持Java应用程序的运行,而这种虚拟机对硬件的消耗是非常大的;2、手机生产厂商对安卓系统的定制与开发,增加了安卓系统的负担,拖慢其运行速度影响其流畅性;3、应用软件太臃肿,同质化严重,在一定程度上拖慢安卓手机的运行速度。

1.启动ida端口监听1.1启动Android_server服务1.2端口转发1.3软件进入调试模式2.ida下断2.1attach附加进程2.2断三项2.3选择进程2.4打开Modules搜索artPS:小知识Android4.4版本之前系统函数在libdvm.soAndroid5.0之后系统函数在libart.so2.5打开Openmemory()函数在libart.so中搜索Openmemory函数并且跟进去。PS:小知识一般来说,系统dex都会在这个函数中进行加载,但是会出现一个问题,后

1.自动化测试自动化测试主要包括几个部分,UI功能的自动化测试、接口的自动化测试、其他专项的自动化测试。1.1UI功能自动化测试UI功能的自动化测试,也就是大家常说的自动化测试,主要是基于UI界面进行的自动化测试,通过脚本实现UI功能的点击,替代人工进行自动化测试。这个测试的优势在于对高度重复的界面特性功能测试的测试人力进行有效的释放,利用脚本的执行,实现功能的快速高效回归。但这种测试的不足之处也是显而易见的,主要包括维护成本高,易发生误判,兼容性不足等。因为是基于界面操作,界面的稳定程度便成了


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
