I'm trying to find a way to add code to swig generated functions. I have used typemaps to extend classes, but can't find anything in the documentation about extending specific functions.
Given the following swig interface file:
%module Test
%{
#include "example.h"
%}
%typemap(cscode) Example %{
bool 64bit = SizeOf(typeof(System.IntPtr)) == 8;
static string Path = 64bit ? "/...Path to 64 bit dll.../" :
"/...Path to 32 bit dll.../";
%}
%include "example.h"
I get the following C# code:
public class MyClass : global::System.IDisposable {
...
bool 64bit = SizeOf(typeof(System.IntPtr)) == 8;
static string Path = 64bit ? "/...Path to 64 bit dll.../" :
"/...Path to 32 bit dll.../";
...
public static SomeObject Process(...) { // Function defined in example.h
<- I would like to add some code here.
SomeObject ret = new SomeObject(...);
}
...
}
I would like to add some code to the function Process, this code is a call to SetDllDirectory(Path)
which loads the correct dll depending on the platform type. This needs to happen inside the Process()
call.
Any help is greatly appreciated!
You can generate the code you're looking for using
%typemap(csout)
. It's a bit of a hack though, and you'll need to copy some of the existing typemap for SWIGTYPE (which is a generic place holder) that can be found in csharp.swgSo for example, given a header file example.h:
You can then write the following SWIG interface file:
Which produces:
If you want to generate that for all return types, not just things which return SomeObject you'll have a bit more work to do for all the variants of csout.