免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1191 | 回复: 0
打印 上一主题 下一主题

关于python扩展API的一个问题 [复制链接]

论坛徽章:
1
NBA常规赛纪念章
日期:2015-05-04 22:32:03
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-03-10 13:56 |只看该作者 |倒序浏览
本帖最后由 wtz_wh 于 2014-03-10 16:49 编辑

我写了一个sample,主要是为了调试PyObject_IsInstance函数在python2.7上运行为何总是返回0的问题,结果发现是因为module被import了两次导致的。下面是我的sample,
  1. [root@localhost wtz]# ll
  2. drwxr-xr-x 4 root root   4096 Feb 21 15:08 build
  3. -rw-r--r-- 1 root root     98 Mar 10 13:23 client.py
  4. -rw-r--r-- 1 root root    221 Mar  6 16:44 client.pyc
  5. -rw-r--r-- 1 root root    284 Mar 10 10:32 common.py
  6. -rw-r--r-- 1 root root   1051 Mar 10 10:33 common.pyc
  7. -rw-r--r-- 1 root root     26 Mar 10 13:22 __init__.py
  8. -rw-r--r-- 1 root root    132 Mar 10 13:23 __init__.pyc
  9. -rw-r--r-- 1 root root    166 Mar  7 15:59 profile.python
  10. -rw-r--r-- 1 root root   2045 Feb 26 15:37 ReadBuf.c
  11. -rwxr-xr-x 1 root root  18356 Feb 26 15:37 ReadBuf.so
  12. -rw-r--r-- 1 root root    121 Feb 19 17:29 setup.py
复制代码
common.py
  1. import ReadBuf
  2. class Test:
  3.   def __init__(self):
  4.     print "Test class"
  5.   def py_printT(self):
  6.     print "Test py_print"

  7. class pyTest(Test):
  8.   def __init__(self):
  9.     Test.__init__(self)
  10.     print "pyTest class"
  11.   def py_print(self):
  12.     print "pyTest py_print"

  13. print "call common"
复制代码
client.py
  1. import wtz
  2. #from common import pyTest
  3. import ReadBuf as rb

  4. b = wtz.common.pyTest()
  5. rb.testIns(b)
复制代码
__init__.py
  1. import common
复制代码
ReadBuf.c
  1. #include "Python.h"

  2. static PyObject* Test_IsInstance(PyObject* self, PyObject* args){
  3.     PyObject* pTest = NULL;
  4.     PyObject* pName = NULL;
  5.     PyObject* moduleDict = NULL;
  6.     PyObject* className = NULL;
  7.     PyObject* pModule = NULL;

  8.     pName = PyString_FromString("common");
  9.     pModule = PyImport_Import(pName);
  10.     if (!pModule){
  11.         printf("can not find client.py\n");
  12.         Py_RETURN_NONE;
  13.     }

  14.     moduleDict = PyModule_GetDict(pModule);
  15.     if (!moduleDict){
  16.         printf("can not get Dict\n");
  17.         Py_RETURN_NONE;
  18.     }

  19.     className = PyDict_GetItemString(moduleDict, "Test");
  20.     if (!className){
  21.         printf("can not get className\n");
  22.         Py_RETURN_NONE;
  23.     }

  24.     int ok = PyArg_ParseTuple(args, "O", &pTest);
  25.     if (!ok){
  26.         printf("parse tuple error!\n");
  27.         Py_RETURN_NONE;
  28.     }
  29.     if (!pTest){
  30.         printf("can not get the instance from python\n");
  31.         Py_RETURN_NONE;
  32.     }


  33.     if (!PyObject_IsInstance(pTest, className)){
  34.         printf("Not an instance for Test\n");
  35.         Py_RETURN_NONE;
  36.     } else {
  37.         printf("an instance for Test\n");
  38.     }
  39.     Py_RETURN_NONE;
  40. }
  41. static PyMethodDef readbuffer[] = {
  42.     {"testIns", Test_IsInstance, METH_VARARGS, "test for instance!"},
  43.     {NULL, NULL}
  44. };

  45. void initReadBuf(){
  46.     PyObject* m;
  47.     m = Py_InitModule("ReadBuf", readbuffer);
  48. }
复制代码
当我在python2.7上执行python client.py的时候,结果为
  1. call common
  2. Test class
  3. pyTest class
  4. call common
  5. Not an instance for Test
复制代码
当我修改client.py如下
  1. #import wtz
  2. from common import pyTest
  3. import ReadBuf as rb

  4. b = pyTest()
  5. rb.testIns(b)
复制代码
在python2.7上执行python client.py的结果为
  1. call common
  2. Test class
  3. pyTest class
  4. an instance for Test
复制代码
如果我不修改client.py的情况下,该怎样去做才能避免module被import两次?

请各位指教!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP