swig & passing array of arrays

  • Thread starter Albert Vernon Smith
  • Start date
A

Albert Vernon Smith

Hi,

I'm trying to get SWIG to create a wrapper for some C code. I have
some functions which take an int** (which points to an array of
arrays, and they also take the dimensions as arguments). I don't
know how to do the typemap for this - I want to be able to write

My_module.my_c_function([[1,2],[3,4]])

for the corresponding C function

void my_c_function(int xsize, int ysize, int** aryary)

Anyone have any idea how to help me? From various googling, I
understand how to pass an array of ints, but passing arrays of arrays
has me stumped.

Thanks,
-albert
 
R

rickhg12hs

Sorry I don't have a complete answer for you ... looks like this may
take a bit of work.

http://www.swig.org/Doc1.3/Typemaps.html#Typemaps_nn40

.... shows an example using Python.

To call your function the way you want, looks like you'll need to write
a typemap and/or helper functions to extract the Ruby array values and
populate a C array with the correct type values. ruby.h has a bunch of
conversion macros and prototypes that will help.

Good luck!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top