Skip to content
Advertisement

SWIG: Access Array of Structs in Python

Say I have the following static constexpr array of c struct:

JavaScript

How can I access elements in ns1::ns2::PERSONS in python by using swig?

One way I can think of is to create a accessor like const Person& get(uint32_t index) in the swig interface file. Tho, I wonder whether there is a more elegant way that I don’t have to create an accessor function for each array of c struct.

Thanks!

Advertisement

Answer

One way I can think of is to create a accessor like const Person& get(uint32_t index) in the swig interface file.

According to 5.4.5 Arrays in the SWIG documentation, that’s the way to do it:

JavaScript

Demo:

JavaScript

SWIG can also generate array wrappers for you with 11.2.2 carrays.i, but there is no bounds checking:

JavaScript

Demo:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement