active questions tagged swig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T07:19:20Z http://stackoverflow.com/feeds/tag/swig http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801518/why-does-swig-crash-python-when-linked-to-gtkglext 0 Why does SWIG crash Python when linked to gtkglext? Steve 2009-11-26T04:23:54Z 2009-11-26T10:24:31Z <p>Anything I link to gtkglext using SWIG crashes Python on exit. Why does this crash?</p> <p>test.i:</p> <pre><code>%module test %{ void test() { printf("Test.\n"); } %} void test(); </code></pre> <p>Session:</p> <pre><code>$ swig -python test.i $ g++ -I/usr/include/python2.6 -shared -fPIC -o _test.so test_wrap.c -lpython2.6 $ python -c 'import test; test.test()' Test. $ g++ -I/usr/include/python2.6 -shared -fPIC -o _test.so test_wrap.c -lpython2.6 `pkg-config --libs gtkglext-1.0` $ python -c 'import test; test.test()' Test. Segmentation fault </code></pre> <p>Any ideas? Thanks...</p> http://stackoverflow.com/questions/1774116/swig-and-lua-how-to-map-lua-file-to-file 1 Swig and Lua: how to map Lua file to FILE* marcin 2009-11-21T00:52:51Z 2009-11-26T09:42:52Z <p>I have a C function that takes <code>FILE*</code> as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a <code>%typemap</code> for this. How to write it? (I just started learning Lua).</p> http://stackoverflow.com/questions/1247536/how-can-i-collapse-multiple-arguments-into-one-swig-parameter 1 How can I collapse multiple arguments into one SWIG parameter mmccoo 2009-08-08T00:02:33Z 2009-11-25T14:31:40Z <p>I'm trying to write a typemap that converts multiple/variable arguments into one input parameter.</p> <p>For example, say I have a function that takes a vector.</p> <pre><code>void foo(vector&lt;int&gt; x); </code></pre> <p>And I want to call it like this (happens to be in Perl)</p> <pre><code>foo(1,2,3,4); </code></pre> <p>The typemap should take arguments ($argnum, ...), gather them into one vector and then pass that to foo.</p> <p>I have this so far:</p> <pre><code>typedef vector&lt;int&gt; vectori; %typemap(in) (vectori) { for (int i=$argnum-1; i&lt;items; i++) { $1-&gt;push_back( &lt;argv i&gt; ); // This is language dependent, of course. } } </code></pre> <p>This would work, except that SWIG checks the number of arguments</p> <pre><code>if ((items &lt; 1) || (items &gt; 1)) { SWIG_croak("Usage: foo(vectori);"); } </code></pre> <p>If I do:</p> <pre><code> void foo(vectori, ...); </code></pre> <p>SWIG will expect to call foo with two arguments.</p> <pre><code> foo(arg1, arg2); </code></pre> <p>Perhaps there's a way to tell SWIG to suppress arg2 from the call to foo?</p> <p>I can't use this in my .i:</p> <pre><code>void foo(...) </code></pre> <p>because I want to have different typemaps, depending on the types that foo is expecting (an array of int, strings, whatever). Maybe there's a way to give a type to "..."</p> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/1792678/wrapping-a-lua-object-for-use-in-c-with-swig 0 Wrapping a Lua object for use in C++ with SWIG Tom J Nowell 2009-11-24T20:21:55Z 2009-11-24T21:54:54Z <p>Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse.</p> <p>I am using Lua &amp; C++ &amp; SWIG.</p> <p>I have interfaces in C++ and objects in lua, that implement methods which do the same job and have the same structure. I would like to be able to instantiate these objects in lua yet pass them around in C++ using pointers to that interface which they resemble.</p> <p>As such I can imagine creating a c++ implementation of the interface which would act as a handler for said lua object, yet I don't know how to do this. The class would act as the lua objects representative or proxy in the C++ world.</p> <p>To clarify I shall start with the following example code used in an answer to a similar question I asked:</p> <p>C++ code:</p> <pre><code>// Represents a generic bank account class Account { virtual void deposit(double amount) = 0; }; </code></pre> <p>Lua code:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount a.balance = 100 a.deposit(1000) </code></pre> <p>Now say that I have a class in C++ called Bank:</p> <pre><code>class Bank { void AddAccount(Account* a); }; </code></pre> <p>What I would like here is a mechanism for doing the following in lua:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount bank:AddAccount(a) </code></pre> <p>If I need to take an extra step such as instantiating a C++ class to act as a proxy and pass it the lua table with all my lua functions etc, I can imagine it looking like this:</p> <p>C++ code:</p> <pre><code>// Represents a generic bank account class ProxyAccount : public Account { virtual void deposit(double amount); }; </code></pre> <p>Lua code:</p> <pre><code>SavingsAccount = { balance = 0 } SavingsAccount.deposit = function(amount) SavingsAccount.balance = SavingsAccount.balance + amount end -- Usage a = SavingsAccount a.balance = 100 a.deposit(1000) proxy = program.ProxyAccount() proxy.settable(a) bank:AddAccount(p) </code></pre> <p>The problem here being I have no idea how I would implement the ProxyAccount class, or even what the function signature of settable would look like...</p> http://stackoverflow.com/questions/1785604/c-lib-with-python-bindings-where-both-want-to-render 0 C lib with Python bindings where both want to render mizipzor 2009-11-23T20:06:39Z 2009-11-24T04:10:31Z <p>I'm sketching on some fluid dynamics in Python. After a while, I'm looking for a bit more speed, so I rewrote the actual logic in C and put up some Python bindings (using <strong>SWIG</strong>).</p> <p>My problem now is that I don't how to render it in a good way. The logic is run pixel by pixel so pixels are what I want to track and render.</p> <p>Python gives my a <strong>TypeError</strong> if I try to make a function in the C lib that accepts a <code>SDL_Surface*</code>, I was probably a bit naive to think that PyGame mapped that easily directly to SDL. Python also seems unsure what to do if I make the C libs "init" return an <code>SDL_Surface*</code>. </p> <p>What is a good way to do this? It wouldn't be a problem if I would just render everything in the C lib. But I want to put on some GUI there (using Python). The C lib already keeps track of which pixels are "dirty". Should I expose that list and let Python loop through it, call a function for every dirty pixel? Seems bad, since those kind of huge loops are the exact reason I wanted to rewrite parts of the app in C.</p> <p>And before anyone suggests it, <strong>boost.python</strong> is a bit heavy to install right now (since I'm on Windows), so I'll just stick to SWIG for the moment (unless anyone has a clever way to install "just" boost.python?).</p> <p>I'm hoping for a silver bullet here. <strong>How to make a C lib, running SDL, share a render target with Python, running PyGame?</strong></p> http://stackoverflow.com/questions/1785673/returning-big-array-from-python-module-written-in-c 0 Returning big array from Python module written in C mizipzor 2009-11-23T20:19:14Z 2009-11-23T22:09:21Z <p>I have a C lib that creates (and changes) a big array of enums. What is the best way if I want to access that array in Python? I have created bindings in SWIG but Im a bit unsure how to approach this problem.</p> <p>Should Python call a function with an index and have the value returned? I assume (correctly?) that calls from Python to a C module arent cheap so I might want to avoid that.</p> <p>But given Pythons specific nature, I also assume that returning a pointer (reference?) to the array cant be done.</p> <p>Has anyone done this that can share some wisdom? </p> http://stackoverflow.com/questions/1782337/implementing-and-inheriting-from-c-classes-in-lua-using-swig 0 Implementing and inheriting from C++ classes in Lua using SWIG Tom J Nowell 2009-11-23T10:45:19Z 2009-11-23T13:36:26Z <p>Would it be possible using <a href="http://en.wikipedia.org/wiki/Lua%5F%28programming%5Flanguage%29" rel="nofollow">Lua</a> and <a href="http://en.wikipedia.org/wiki/SWIG" rel="nofollow">SWIG</a> and say an IInterface class, to implement that interface and instantiate it all within Lua? If so how would it be done?</p> http://stackoverflow.com/questions/1778487/python-subclass-with-c-baseclass 0 Python subclass with C++ baseclass mizipzor 2009-11-22T11:41:22Z 2009-11-22T15:42:31Z <p>I have some C++ I have exposed to <a href="http://en.wikipedia.org/wiki/Python%5F%28programming%5Flanguage%29" rel="nofollow">Python</a> through <a href="http://en.wikipedia.org/wiki/SWIG" rel="nofollow">SWIG</a>. In there is a base class with a single pure virtual function.</p> <p>In Python, I import my module and define a class that uses the abstract class as base.</p> <pre><code>import mymodule class Foo(mymodule.mybase): ... </code></pre> <p>In that module is also a manager class, I want to add my new defined class to the manager.</p> <pre><code>m = mymodule.mymanager() m.add(Foo()) </code></pre> <p>Definition of add:</p> <pre><code>void add(mybase* b) { ... } </code></pre> <p>Didn't work as I would expect:</p> <pre><code>TypeError: in method 'mymanager_add', argument 2 of type 'mymodule::mybase *' </code></pre> <p>What did I miss? It seems it's not sure that my Foo class is a "mybase". I tried adding a call to the base class constructor in Python but that didn't work, said the class was abstract.</p> <pre><code>def __init__(self): mymodule.mybase.__init__(self) </code></pre> http://stackoverflow.com/questions/1770725/pointers-to-members-in-swig-or-boostpython 0 Pointers to members in swig (or Boost::Python) Tristram Gräbener 2009-11-20T14:20:52Z 2009-11-20T21:55:12Z <p>Hello,</p> <p>I made some bindings from my C++ app for python.</p> <p>The problem is that I use pointers to members (It's for computing shortest path and giving the property to minimize as parameter).</p> <p>This is the C++ signature:</p> <pre><code>std::vector&lt;Path&gt; martins(int start, int dest, MultimodalGraph &amp; g, float Edge::*) </code></pre> <p>This is what I did (from what I understood in the doc):</p> <pre><code>%constant float Edge::* distance = &amp;Edge::distance; </code></pre> <p>This is how I call my function from python:</p> <pre><code>foo.martins(0, 1000, g, foo.distance) </code></pre> <p>And this is the error I get:</p> <pre><code>NotImplementedError: Wrong number of arguments for overloaded function 'martins'. Possible C/C++ prototypes are: martins(int,int,MultimodalGraph &amp;,float Edge::*) </code></pre> <p>I have an overloaded method that uses a default 4th paramaters, and it works perfectly.</p> <p>So is it possible to use pointers to members with swig? If yes, what's the trick? If no, what would be the most elegant way to work arround?</p> <p>Thank you for your help!</p> <p><strong>UPDATE:</strong> if someone knows if Boost::python does it for sure, I'll switch to it.</p> http://stackoverflow.com/questions/1735199/swig-crashes-on-aix-with-python-and-probably-everything-else-swig-support 0 SWIG crashes on AIX (with python, and probably everything else SWIG support) Davide 2009-11-14T18:55:30Z 2009-11-14T19:26:25Z <p>SWIG compiles and install easily on AIX. Unfortunately, a simple <a href="http://www.swig.org/tutorial.html" rel="nofollow">SWIG hello world</a> (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction (depending on some details of the compilation/linker process). This happens with both gcc and xlc (IBM c compiler). I tried only the native AIX linker ld, because the homonyms GNU ld was not installed on my system. </p> <p>File: example.c</p> <pre><code> #include &lt;time.h&gt; double My_variable = 3.0; int fact(int n) { if (n &lt;= 1) return 1; else return n*fact(n-1); } int my_mod(int x, int y) { return (x%y); } char *get_time() { time_t ltime; time(&amp;ltime); return ctime(&amp;ltime); } </code></pre> <p>File: example.i</p> <pre><code>%module example %{ /* Put header files here or function declarations like below */ extern double My_variable; extern int fact(int n); extern int my_mod(int x, int y); extern char *get_time(); %} extern double My_variable; extern int fact(int n); extern int my_mod(int x, int y); extern char *get_time(); </code></pre> <p>Makefile snippet:</p> <pre><code>swig -python example.i xlc -q64 -c example.c example_wrap.c -I/your-python-path/include/python2.5/ ld -G -b64 -berok -bnoentry -bexpall -brtl example.o example_wrap.o -o _example.so </code></pre> <p>The linker step is the problematic one. If you follow the examples on the <a href="http://www.swig.org/tutorial.html" rel="nofollow">tutorial</a>, you should do</p> <pre><code>ld -bshared example.o example_wrap.o -o _example.so #the b is not a typo, but a different syntax in AIX vd GNU ld </code></pre> <p>Unfortunately this does not work for several reasons. I believe that IBM/AIX and the Open Source communities have quite a different thoughts on what "shared library" means. The most common shared objects (so) that you get from the AIX native linker have no symbols at all in them (and are in fact less than 1kB in size). It's also pretty easy to get broken output from the linker (in such a case a quite long list of unresolved symbols like the following appears while linking):</p> <pre><code>ld: 0711-317 ERROR: Undefined symbol: PyType_Type </code></pre> <p>Doing what one is <a href="http://en.wikipedia.org/wiki/RTFM" rel="nofollow">supposed to do</a>, it seems clear that the solution is hacking with the various linker options, <code>-berok</code>, <code>-bnoentry</code>, <code>-bexpall</code>, <code>-brtl</code>, <code>-bshared</code>, <code>-bM:SRE</code>, <code>-bexpfull</code>. In fact, it is possible to find some combinations which create a non-empty .so library, without generating errors. One of these combinations is reported in the Makefile snippet above (there are others). Unfortunately, all of them fail in one of the following two modes!</p> <pre><code>$ python -c "import example" Illegal instruction (core dumped) </code></pre> <p>or </p> <pre><code>$ python -c "import example" Segmentation fault (core dumped) </code></pre> <p>Using the gcc, or a different version of python (we have 7!) either 32 bit or 64 bit does not change anything: you can find a "good" link option, but it crashes at runtime. How to solve this?</p> http://stackoverflow.com/questions/1604200/creating-windows-dll-from-c-source-files 0 Creating Windows DLL from C++ source files Kazoom 2009-10-21T23:22:42Z 2009-11-12T20:17:50Z <p>I have multiple source files in C++ using which i want to create a Dynamic link library.</p> <p>I see this happening in linux with gcc -shared and ln </p> <p>however for Windows i suppose i would have to modify source files to generate a DLL.</p> <p>Is there a way to generate DLL (a file similar to *.so in linux) with provided source files. Please correct me if i m wrong, i think *so is dll for linux.</p> <p>The reason for needing this is to use SWIG for calling C++ functions in python in Windows Platfrom. I am stuck at the step that requires me to generate a dll in windows.</p> http://stackoverflow.com/questions/1685655/wxlua-bindings-does-not-work-with-my-shaderobjects-made-using-swig 2 wxlua bindings does not work with my shaderobjects made using SWIG Ashutosh 2009-11-06T05:44:59Z 2009-11-12T05:01:21Z <p>Hi, I made a class using wxwdigets </p> <pre><code>//wrapper over wxIPV4address class IPV4addressLua : public wxIPV4address { public: IPV4addressLua(); ~IPV4addressLua(); bool SetService (const wxString &amp;service); bool SetService (unsigned short service); unsigned short GetService () const; wxSockAddress* GetwxSockAddress(); wxIPV4address GetwxIPV4address(); wxSocketServer* GetwxSocketServer(); }; </code></pre> <p>I make the abc.i file for SWIG input like this </p> <pre><code>%module wxAppManagerLua %{ #include "wxAppManager.h" #include "wx/socket.h" %} </code></pre> <p>//wrapper over wxIPV4address class IPV4addressLua //: public wxIPV4address ................... ....</p> <p>then I write make file to generate SWIG bindings : ===</p> <pre><code>TARGET= wxAppManagerLua.so WRAPPER= wxAppManager_wrap.cxx SRCS= $(ROOTSRC)/wxAppManager.cpp $(ROOTSRC)/XMLReader.cpp $(WRAPPER) INTERFACE=wxAppManager.i CC= g++ FLAGS=-shared -fPIC -DDEBUG=1 SWIGFLGS= -lua -c++ -includeall -v RM=rm -rfv all:$(WRAPPER) $(TARGET) : $(SRCS) $(CC) $(FLAGS) -o $(TARGET) $(SRCS) $(EXTRAINC) $(WXCONFIGFLGS) $(WRAPPER): swig $(SWIGFLGS) -I/usr/include $(EXTRAINC) $(INTERFACE) clean: $(RM) *.so* $(WRAPPER) </code></pre> <p>~</p> <p>...</p> <p>===== I generate my so like this :-</p> <p><code>g++ -g -shared -fPIC -o wxAppManagerLua.so ./wxAppManager_wrap.cxx ./wxAppManager/src/XMLReader.cpp ./wxAppManager/src/wxAppManager.cpp -I./ -I./wxAppManager/inc/ -I/usr/local/lib/wx/include/gtk2-ansi-debug-2.8 -I/usr/local/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXDEBUG__ -D__WXGTK__ -pthread -L/usr/local/lib -pthread -lwx_gtk2d_richtext-2.8 -lwx_gtk2d_aui-2.8 -lwx_gtk2d_xrc-2.8 -lwx_gtk2d_qa-2.8 -lwx_gtk2d_html-2.8 -lwx_gtk2d_adv-2.8 -lwx_gtk2d_core-2.8 -lwx_based_xml-2.8 -lwx_based_net-2.8 -lwx_based-2.8</code></p> <p>=====</p> <p>I write my lua file like this :</p> <pre><code>function CreateServer() -- Create the address - defaults to localhost:0 initially local addr = wxAppManagerLua.IPV4addressLua() if addr ~= nil then print(" Calling Bind Port ") addr:SetService(3000) end port = addr:GetService() print(" Binded to Port "..port) -- Create the socket SockAddr = wx.wxSockAddress --CODE FAILS HERE SOCKSERVER = wx.wxSocketServer(addr) </code></pre> <p>.... ....</p> <h1>...</h1> <p>My code fails at the last line saying..</p> <pre> SockTestAppMgr.wx.lua:584: wxLua: Expected a 'wxSockAddress' for parameter 1, but got a 'userdata'. Function called: 'wxSocketServer(userdata)' 01. wxSocketServer::wxSocketServer([wxSockAddress, integer]) stack traceback: [C]: in function 'wxSocketServer' SockTestAppMgr.wx.lua:584: in function 'CreateServer' SockTestAppMgr.wx.lua:682: in function 'main' SockTestAppMgr.wx.lua:694: in main chunk </pre> <p>===== Please Note ..... wxSockAddess is base class of wxIPV4address from which I derived my class.</p> <p>Check in this link <a href="http://docs.wxwidgets.org/trunk/classwx%5Fi%5Fpaddress.html" rel="nofollow">http://docs.wxwidgets.org/trunk/classwx%5Fi%5Fpaddress.html</a></p> <p>Can anyone help?</p> <p>My Diagnosis is :-</p> <p>The basic problem is Whenever I make sos... using SWIG and try to refer fucntions or clases from lua .... it works fine till when I refer any wxwidget class or funtion ... even two sos of mine are able to refer to the classes across sos ... but not with wxwidgets clases ... although .... if I continue to refer any class of wx.so to any other class of wx.so it works ...</p> <p>Kindly let me know what is stopping lua from understanding the type of my class to any class of wxwidgets.</p> <p>I know the bindings of wxwidgets have generated by traditional methods and not by SWIG .. is this causing a problem ?</p> http://stackoverflow.com/questions/1709806/using-ruby-blocks-from-c-with-swig 0 Using Ruby Blocks from C with SWIG t6d 2009-11-10T17:41:07Z 2009-11-10T17:41:07Z <p>I am using SWIG to wrap a C interface in Ruby. Given two structs</p> <pre><code>typedef struct Vertex { int color, discoverd, finished; struct Vertex *next; } Vertex; typedef struct Graph { struct Vertex *vertex; } Graph; </code></pre> <p>how can I create a <code>#each</code> method which yields the current vertex, so that I can process it in Ruby. Currently my SWIG interface file contains something like</p> <pre><code>%extend Graph { void each() { Vertex *v; v = self-&gt;vertex; while(v) { rb_yield(Qnil); // how do I yield a vertex? v = v-&gt;next; } } }; </code></pre> <p>Thanks in advance for your help.</p> <p>--t6d</p> http://stackoverflow.com/questions/1631755/access-violation-on-run-function-from-dll 1 Access violation on run function from dll Xeningem 2009-10-27T15:48:44Z 2009-11-10T09:27:36Z <p>I have DLL, interface on C++ for work with he. In bcb, msvc it works fine. I want to use Python-scripts to access function in this library. Generate python-package using Swig.</p> <p>File <em>setup.py</em></p> <pre><code> import distutils from distutils.core import setup, Extension setup(name = "DCM", version = "1.3.2", ext_modules = [Extension("_dcm", ["dcm.i"], swig_opts=["-c++","-D__stdcall"])], y_modules = ['dcm']) </code></pre> <p>file <em>dcm.i</em></p> <pre><code>%module dcm %include &lt;windows.i&gt; %{ #include &lt;windows.h&gt; #include "../interface/DcmInterface.h" #include "../interface/DcmFactory.h" #include "../interface/DcmEnumerations.h" %} %include "../interface/DcmEnumerations.h" %include "../interface/DcmInterface.h" %include "../interface/DcmFactory.h" </code></pre> <p>run these command (python is associated with extension .py)</p> <pre><code>setup build setup install </code></pre> <p>using this DLL</p> <pre><code>import dcm f = dcm.Factory() #ok r = f.getRegistrationMessage() #ok print "r.GetLength() ", r.GetLength() #ok r.SetLength(0) #access violation </code></pre> <p>On last string I get access violation. And I have access violation on every function using input parameters.</p> <p><em>DcmInterface.h</em> (interface)</p> <pre><code>class IRegistrationMessage { public: ... virtual int GetLength() const = 0; virtual void SetLength(int value) = 0; ... }; </code></pre> <p><em>uRegistrationMessage.cpp</em> (implementation in DLL)</p> <pre><code>class TRegistrationMessage : public IRegistrationMessage { public: ... virtual int GetLength() const { return FLength; } virtual void SetLength(int Value) { FLength = Value; FLengthExists = true; } ... }; </code></pre> <p>Factory</p> <p><em>DcmFactory.h</em> (using DLL in client code)</p> <pre><code>class Factory { private: GetRegistrationMessageFnc GetRegistration; bool loadLibrary(const char *dllFileName = "dcmDLL.dll" ) { ... hDLL = LoadLibrary(dllFileName); if (!hDLL) return false; ... GetRegistration = (GetRegistrationMessageFnc) GetProcAddress( hDLL, "getRegistration" ); ... } public: Factory(const char* dllFileName = "dcmDLL.dll") { loadLibrary(dllFileName); } IRegistrationMessage* getRegistrationMessage() { if(!GetRegistration) return 0; return GetRegistration(); }; }; </code></pre> http://stackoverflow.com/questions/1700717/wrapping-c-structs-with-swig 0 Wrapping C structs with SWIG t6d 2009-11-09T12:31:45Z 2009-11-09T13:29:41Z <p>I have C header file containing the following type definition:</p> <pre><code>// example.h typedef struct Vertex { int color; } Vertex; </code></pre> <p>I try to wrap this struct with SWIG, but apparently I am doing something wrong. My SWIG interface file looks like</p> <pre><code>// example.i %module example %inline %{ #include "example.h" } </code></pre> <p>But if I copy the contents of my header file into my interface file so that the latter looks like</p> <pre><code>%module example %inline %{ typedef struct Vertex { int color; } Vertex; %} </code></pre> <p>I can access the struct from Ruby in the following way</p> <pre><code>irb&gt; require 'example' # =&gt; true irb&gt; Examlpe::Vertex # =&gt; Vertex </code></pre> <p>Is there a way to automatically wrap a header file? I don't want to copy and paste the contents of the header file to the interface file every time I change it.</p> <p>Thanks in advance for your help.</p> <p>-- t6d</p> http://stackoverflow.com/questions/1246038/swig-c-lua-pass-class-by-reference 1 Swig C++ Lua Pass class by reference Jeremy 2009-08-07T17:34:47Z 2009-11-06T14:46:59Z <p>I don't know why I'm having the damndest time with this. All I want to do is this:</p> <pre><code>class foo { public: foo(){} ~foo(){} float a,b; }; class foo2 { public: foo2(){} foo2(const foo &amp;f){*this = f;} ~foo2(){} void operator=(const foo&amp; f){ x = f.a; y = f.b; } float x,y; }; /* Usage(cpp): foo f; foo2 f2(f); //or using the = operator f2 = f; */ </code></pre> <p>The problem I'm having is that, after swigging this code, I can't figure out how to make the lua script play nice.</p> <pre><code>/* Usage(lua) f = example.foo() f2 = example.foo2(f) --error */ </code></pre> <p>The error I get is "Wrong arguments for overloaded function 'new_Foo2'": Possible c/c++ prototypes are: foo2() foo2(foo const &amp;)</p> <p>The same thing happens if I try and use do f2 = f. As I understand it everything is stored as a pointer so I did try adding an additional constructor that took a pointer to foo but to no avail. </p> http://stackoverflow.com/questions/1498969/generating-swig-bindings-with-cmake 0 Generating SWIG bindings with CMake joemoe 2009-09-30T15:44:42Z 2009-11-03T21:20:04Z <p>How would I generate automatic bindings for a C project that is built using CMake?</p> <p>I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automatically.</p> http://stackoverflow.com/questions/16067/prototyping-hybrid-python-code 8 Prototyping hybrid Python code Brendan 2008-08-19T12:32:38Z 2009-11-02T13:49:49Z <p>I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement some core routines in a compiled language eventually.</p> <p>IIRC, one of Python's original remits was as a prototyping language, however Python is pretty liberal in allowing functions, functors, objects to be passed to functions and methods, whereas I suspect the same is not true of say C or Fortran.</p> <p>What should I know about designing functions/classes which I envisage will have to interface into the compiled language? And how much of these potential problems are dealt with by libraries such as cTypes, bgen, <a href="http://www.swig.org/" rel="nofollow">SWIG</a>, <a href="http://www.boost.org/doc/libs/1_35_0/libs/python/doc/index.html" rel="nofollow">Boost.Python</a>, <a href="http://cython.org/" rel="nofollow">Cython</a> or <a href="http://www.riverbankcomputing.co.uk/software/sip/intro" rel="nofollow">Python SIP</a>?</p> <p>For this particular use case, (a fitting library) I imagine allowing users to define mathematical functions (Guassian, Lorentzian etc.) as Python functions which can then to be passed an interpreted by the compiled code fitting library. Passing and returning arrays is also essential.</p> http://stackoverflow.com/questions/1528148/swig-pointers-and-java-arrays 0 SWIG pointers and Java arrays Buggieboy 2009-10-06T21:18:03Z 2009-10-23T14:28:54Z <p>The SWIG documentation explains how a variety of input types in C, like this:</p> <pre><code>void spam1(Foo *x); // Pass by pointer void spam2(Foo &amp;x); // Pass by reference void spam3(Foo x); // Pass by value void spam4(Foo x[]); // Array of objects </code></pre> <p>Would all take a single type of argument in Java, like this:</p> <pre><code>Foo f = new Foo(); // Create a Foo example.spam1(f); // Ok. Pointer example.spam2(f); // Ok. Reference example.spam3(f); // Ok. Value. example.spam4(f); // Ok. Array (1 element) </code></pre> <p>Similarly for return types in C:</p> <pre><code>Foo *spam5(); Foo &amp;spam6(); Foo spam7(); </code></pre> <p>all three functions will return a pointer to some Foo object that will be assigned to a Java object variable, the final one requiring an allocation of a value type that the Java garbage collection will take care of upon release.</p> <p>But suppose spam5() returns a pointer to an array. In Java, I have to use array semantics to access the individual elements, but I don't think that I can just do this:</p> <pre><code>Foo foo[] = spam5(); </code></pre> <p>I don't even think the compiler would accept a cast to (Foo[]), so how does this work in SWIG?</p> http://stackoverflow.com/questions/1515374/using-swig-with-a-build-system 1 Using SWIG with a build system joemoe 2009-10-04T01:47:14Z 2009-10-23T12:25:58Z <p>Anyone have experience with using SWIG (the interface generator)? </p> <p>I have a C project which I would like to expose to a bunch of other languages/frameworks, like Python, Java, .NET, Perl, PHP, Ruby.</p> <p>I would like to integrate with my build system (which is CMake-based), but any method of accomplishing this will do.</p> http://stackoverflow.com/questions/1611050/embed-python-in-ni-cvilabwindows 0 Embed Python in NI CVI(LabWindows) Kazoom 2009-10-23T02:01:17Z 2009-10-23T02:01:17Z <p>I need to access LabWindows API and/or fucntions written in labwindows from Python.</p> <p>My approach so far I have been able to do so in Visual studio using SWIG to some extent, but my dll creation fails when i try to generate it in Labwindows using the source file and the SWIG generated wrapper file.</p> http://stackoverflow.com/questions/1575802/python-callback-with-swig-wrapped-type 1 Python callback with SWIG wrapped type rogueg 2009-10-16T00:13:39Z 2009-10-21T21:03:05Z <p>I'm trying to add a python callback to a C++ library as illustrated:</p> <pre><code>template&lt;typename T&gt; void doCallback(shared_ptr&lt;T&gt; data) { PyObject* pyfunc; //I have this already PyObject* args = Py_BuildValue("(O)", data); PyEval_CallObject(pyfunc,args); } </code></pre> <p>This fails because data hasn't gone through swig, and isn't a PyObject.</p> <p>I tried using:</p> <pre><code>swigData = SWIG_NewPointerObj((void*)data, NULL, 0); </code></pre> <p>But because its a template, I don't really know what to use for the second parameter. Even if I do hard code the 'correct' SWIGTYPE, it usually segfaults on PyEval_CallObject.</p> <p>So my questions are:</p> <ol> <li><p>Whats the best way to invoke swig type wrapping?</p></li> <li><p>Am I even going in the right direction here? Directors looked promising for implementing a callback, but I couldn't find an example of directors with python.</p></li> </ol> <p><strong>Update:</strong> The proper wrapping is getting generated. I have other functions that return shared_ptrs and can call those correctly.</p> http://stackoverflow.com/questions/1575838/embedding-ruby-in-a-c-application-using-swig 1 Embedding Ruby in a C++ application using SWIG? StackedCrooked 2009-10-16T00:25:49Z 2009-10-20T23:35:54Z <p>I've successfully created Ruby-C++ bindings in the past using SWIG where the C++ code was compiled as a dynamic library with the Ruby script connecting to it.</p> <p>However, I'd like to do it the other way around. Create an executable using C++ and enable it to load and execute Ruby code. Ruby should be able to call functions defined on the C++ side as well (naturally, otherwise all I would need is the 'system()' call.)</p> <p>Does SWIG provide the means to achieve this?</p> http://stackoverflow.com/questions/1583293/using-swig-with-pointer-to-function-in-c-struct 2 Using SWIG with pointer to function in C struct Steve 2009-10-17T21:36:33Z 2009-10-19T00:31:42Z <p>I'm trying to write a SWIG wrapper for a C library that uses pointers to functions in its structs. I can't figure out how to handle structs that contain function pointers. A simplified example follows.</p> <p>test.i:</p> <pre><code>/* test.i */ %module test %{ typedef struct { int (*my_func)(int); } test_struct; int add1(int n) { return n+1; } test_struct *init_test() { test_struct *t = (test_struct*) malloc(sizeof(test_struct)); t-&gt;my_func = add1; } %} typedef struct { int (*my_func)(int); } test_struct; extern test_struct *init_test(); </code></pre> <p>sample session:</p> <pre><code>Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import test &gt;&gt;&gt; t = test.init_test() &gt;&gt;&gt; t &lt;test.test_struct; proxy of &lt;Swig Object of type 'test_struct *' at 0xa1cafd0&gt; &gt; &gt;&gt;&gt; t.my_func &lt;Swig Object of type 'int (*)(int)' at 0xb8009810&gt; &gt;&gt;&gt; t.my_func(1) Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; TypeError: 'PySwigObject' object is not callable </code></pre> <p>Anyone know if it's possible to get <strong>t.my_func(1)</strong> to return 2?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1576737/releasing-python-gil-in-c-code 1 Releasing python GIL in C++ code uhzzre 2009-10-16T08:07:48Z 2009-10-16T14:21:01Z <p>Hi, I've got a library written in C++ which I wrap using SWIG and use in python. Generally there is one class with few methods. The problem is that calling these methods may be time consuming - they may hang my application (GIL is not released when calling these methods). So my question is: </p> <p>what is the simplest way to release GIL for these method calls? </p> <p>(I understand that if I used C library I could wrap this with some additional C code, but here I use C++ and classes)</p> http://stackoverflow.com/questions/456884/extending-python-to-swig-or-not-to-swig 13 Extending python - to swig or not to swig RSabet 2009-01-19T08:32:06Z 2009-10-12T06:23:04Z <p>I found the bottleneck in my python code, played around with psycho etc. Then decided to write a c/c++ extension for performance.</p> <p>With the help of swig you almost don't need to care about arguments etc. Everything works fine.</p> <p>Now my question: swig creates a quite large py-file which does a lot of 'checkings' and 'PySwigObject' before calling the actual .pyd or .so code.</p> <p>Does anyone of you have any experience whether there is some more performance to gain if you hand-write this file or let swig do it. </p> http://stackoverflow.com/questions/828843/debugging-swig-extensions-for-python 1 Debugging swig extensions for Python wr 2009-05-06T09:38:33Z 2009-10-09T01:06:30Z <p>Is there any other way to debug swig extensions except for doing </p> <blockquote> <p>gdb python stuff.py</p> </blockquote> <p>?</p> <p>I have wrapped the legacy library <a href="http://libkdtree.alioth.debian.org/" rel="nofollow">libkdtree++</a> and followed all the swig related memory managemant points (borrowed ref vs. own ref, etc.). But still, I am not sure whether my binding is not eating up memory. It would be helpful to be able to just debug step by step each publicized function: starting from Python then going to via the C glue binding into C space, and returning back.</p> <p>Is there already such a possibility?</p> <p>Thanks,</p> <p>wr</p> http://stackoverflow.com/questions/1522660/java-and-sdlgetkeystate 0 Java and SDL_GetKeyState() Buggieboy 2009-10-05T22:06:36Z 2009-10-08T15:54:02Z <p>I'm trying to convert to Java some code that uses SDL. I'm using the sdljava bindings.</p> <p>sdljava uses SWIG as the bridge between the C datatypes and Java. To get the equivalent of <code>SDL_GetKeyState()</code>, sdljava provides the method <code>SWIG_SDLEvent.SDL_GetKeyState()</code>, which returns something called a <code>SWIGTYPE_p_unsigned_char</code>.</p> <p>Of course, Java has no <code>unsigned char</code> type, and I don't know what the compiler thinks this SWIG type actually represents to Java. Normal use of <code>SDL_GetKeyState()</code> in C/C++ would be something like:</p> <pre><code>Uint8 *ks = SDL_GetKeyState(NULL); if ( ks[SDLK_UP] ) { /* handle Up key */ } </code></pre> <p>... where the SDL keystate values like SDLK_UP index into an array.</p> <p>However, the following Java code:</p> <pre><code>SWIGTYPE_p_unsigned_char ks = SWIG_SDLEvent.SDL_GetKeyState(null); if ( ks[SDLKeyValues.SDLK_UP] != 0) { /* handle Up key */ } </code></pre> <p>results in the compiler error, "The type of the expression must be an array type, but it resolved to SWIGTYPE_p_unsigned_char."</p> <p>What I want to know is, after calling SWIG_SDLEvent.SDL_GetKeyState(), how do you use what it returns to inspect the state of the individual keys?</p> http://stackoverflow.com/questions/1504747/swig-lua-determine-member-field-data-type 1 SWIG / Lua: Determine member field data type Zack 2009-10-01T15:46:00Z 2009-10-07T20:43:55Z <p>SWIG graciously provides the swig_type() function to get a string representation of the data type of a passed userdata object. However, in the case of member fields, SWIG and Lua consider those to be simple "number" items and so prints only "number" instead of the data type's name.</p> <p>e.g.</p> <pre><code>typedef num_years int; class Person { public: Person * spouse; num_years age; }; </code></pre> <p>in C++ would result in: </p> <pre><code>Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio &gt; p = MyModule.Person(); &gt; print(swig_type(p.spouse)); Person * &gt; print(swig_type(p.age)); number </code></pre> <p>Is there some back-door route I could take to determine member fields' data types? I see that the get and set functions have the correct string representation of the number fields when validating arguments.</p> <p>Thanks for any assistance!</p> http://stackoverflow.com/questions/1394484/how-do-i-propagate-c-exceptions-to-python-in-a-swig-wrapper-library 2 How do I propagate C++ exceptions to Python in a SWIG wrapper library? Barry 2009-09-08T14:57:44Z 2009-10-04T23:14:19Z <p>I'm writing a SWIG wrapper around a custom C++ library which defines its own C++ exception types. The library's exception types are richer and more specific than standard exceptions. (For example, one class represents parse errors and has a collection of line numbers.) How do I propagate those exceptions back to Python while preserving the type of the exception?</p>