Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the value of outdata3, outdata4 from Python code. I used ctypes in order to call c function. c function is like below:

#include <stdio.h>

void cfunction(int indata1, double indata2, int * outdata3, double * outdata4)
{
    int i;
    for (i = 0; i < indata1; ++i)
    {
        outdata3[i] = indata1;
        outdata4[i] = indata2;
        //printf("indata3 [%d] = %d\n", i, outdata3[i]);
        //printf("indata4 [%d] = %1.1f\n", i, outdata4[i]);     
    }
}

below code is Python code:

import numpy
import ctypes

indata1 = ctypes.c_int(8)
indata2 = ctypes.c_double(3.4)
#outdata3 = numpy.zeros((5), dtype=numpy.int)
#outdata4 = numpy.zeros((5), dtype=numpy.double)

lib = ctypes.cdll.LoadLibrary('./ctest.so')
fun = lib.cfunction

# Allocate array of int*
outdata3 = (ctypes.POINTER(ctypes.c_int) * 8)()
#for i in range(8):
#    # Allocate arrays of int
#    outdata3[i] = (ctypes.c_int * 8)()

# Allocate array of double*
outdata4 = (ctypes.POINTER(ctypes.c_double) * 8)()
#for i in range(8):
#    # Allocate arrays of double
#    outdata4[i] = (ctypes.c_double * 8)()

fun(ctypes.c_int(8), ctypes.c_double(3.4), ctypes.byref(outdata3), types.byref(outdata4))

#fun(ctypes.c_void_p(indata.ctypes.data), ctypes.c_int(5), ctypes.c_int(6),
#    ctypes.c_void_p(outdata.ctypes.data))

#print('outdata3:    ', outdata3.contents)
#print('outdata4: ', outdata4.contents)


def dump1(a,rows):
    for i in range(rows):
        print a[i]

def dump2(a,rows,cols):
    for i in range(rows):
        for j in range(cols):
            print a[i][j]

dump1(outdata3, 8)
#dump1(outdata4, 8)

I could get below from above code.

[===>19:14:48]one+two:python test.py 
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>
<__main__.LP_c_long object at 0x93566ec>

but I want the value like below.

0.0 1.0 2.0 3.0 4.0 5.0
1.0 2.0 3.0 4.0 5.0 6.0
2.0 3.0 4.0 5.0 6.0 7.0
3.0 4.0 5.0 6.0 7.0 8.0
4.0 5.0 6.0 7.0 8.0 9.0
share|improve this question
1  
This seems clear: docs.python.org/library/ctypes.html#arrays and docs.python.org/library/…. What part is confusing? Aren't you supposed to use the .value to find the value which is pointed to by the pointer? – S.Lott Feb 10 '12 at 11:59

1 Answer

You passed wrong types to cfunction. You should pass an int array and a double array to cfunction.

outdata3 = (ctypes.c_int * 8)()
outdata4 = (ctypes.c_double * 8)()
fun(ctypes.c_int(8), ctypes.c_double(3.4), outdata3, outdata4)

def dump1(a,rows):
    for i in range(rows):
        print a[i]

dump1(outdata3, 8)

or you can pass numpy array to cfunction:

lib.cfunction.argtypes = [c_int, c_double, 
    np.ctypeslib.ndpointer(dtype=np.int32, ndim=1),
    np.ctypeslib.ndpointer(dtype=np.float64, ndim=1)]

outdata3 = np.zeros(8, np.int32)
outdata4 = np.zeros(8, np.float64)

lib.cfunction(8, 3.4, outdata3, outdata4)
print outdata3
print outdata4
share|improve this answer
the second way displays error(*** glibc detected *** python: free(): invalid next size (normal): 0x087cdd98 *** ) and if I pass two dimensional array, is it same way? – wonjun Feb 13 '12 at 0:30
I could fix the error, by the way, I wonder if I could pass two dimensional array – wonjun Feb 13 '12 at 0:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.