Add the ability for special variable macros to call other special variable macros. Also added additional diagnostics when using -debug-tmsearch. Add tests for std::vector of shared_ptr.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12059 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
7b2c6b477a
commit
e2ce97f397
6 changed files with 116 additions and 5 deletions
|
|
@ -1,6 +1,33 @@
|
||||||
Version 2.0.0 (in progress)
|
Version 2.0.0 (in progress)
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
2010-05-27: wsfulton
|
||||||
|
Add the ability for $typemap special variable macros to call other $typemap
|
||||||
|
special variable macros, for example:
|
||||||
|
|
||||||
|
%typemap(cstype) CC "CC"
|
||||||
|
%typemap(cstype) BB "$typemap(cstype, CC)"
|
||||||
|
%typemap(cstype) AA "$typemap(cstype, BB)"
|
||||||
|
void hah(AA aa);
|
||||||
|
|
||||||
|
This also fixes C# std::vector containers of shared_ptr and %shared_ptr.
|
||||||
|
|
||||||
|
Also added diagnostics for $typemap with -debug-tmsearch, for example, the
|
||||||
|
above displays additional diagnostic lines starting "Containing: ":
|
||||||
|
|
||||||
|
example.i:34: Searching for a suitable 'cstype' typemap for: AA aa
|
||||||
|
Looking for: AA aa
|
||||||
|
Looking for: AA
|
||||||
|
Using: %typemap(cstype) AA
|
||||||
|
Containing: $typemap(cstype, BB)
|
||||||
|
example.i:31: Searching for a suitable 'cstype' typemap for: BB
|
||||||
|
Looking for: BB
|
||||||
|
Using: %typemap(cstype) BB
|
||||||
|
Containing: $typemap(cstype, CC)
|
||||||
|
example.i:29: Searching for a suitable 'cstype' typemap for: CC
|
||||||
|
Looking for: CC
|
||||||
|
Using: %typemap(cstype) CC
|
||||||
|
|
||||||
2010-05-26: olly
|
2010-05-26: olly
|
||||||
Fix %attribute2ref not to produce a syntax error if the last
|
Fix %attribute2ref not to produce a syntax error if the last
|
||||||
argument (AccessorMethod) is omitted. Patch from David Piepgras
|
argument (AccessorMethod) is omitted. Patch from David Piepgras
|
||||||
|
|
|
||||||
17
Examples/test-suite/csharp/li_boost_shared_ptr_bits_runme.cs
Normal file
17
Examples/test-suite/csharp/li_boost_shared_ptr_bits_runme.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
using System;
|
||||||
|
using li_boost_shared_ptr_bitsNamespace;
|
||||||
|
|
||||||
|
public class runme
|
||||||
|
{
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
VectorIntHolder v = new VectorIntHolder();
|
||||||
|
v.Add(new IntHolder(11));
|
||||||
|
v.Add(new IntHolder(22));
|
||||||
|
v.Add(new IntHolder(33));
|
||||||
|
|
||||||
|
int sum = li_boost_shared_ptr_bits.sum(v);
|
||||||
|
if (sum != 66)
|
||||||
|
throw new ApplicationException("sum is wrong");
|
||||||
|
}
|
||||||
|
}
|
||||||
24
Examples/test-suite/java/li_boost_shared_ptr_bits_runme.java
Normal file
24
Examples/test-suite/java/li_boost_shared_ptr_bits_runme.java
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
import li_boost_shared_ptr_bits.*;
|
||||||
|
|
||||||
|
public class li_boost_shared_ptr_bits_runme {
|
||||||
|
static {
|
||||||
|
try {
|
||||||
|
System.loadLibrary("li_boost_shared_ptr_bits");
|
||||||
|
} catch (UnsatisfiedLinkError e) {
|
||||||
|
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String argv[])
|
||||||
|
{
|
||||||
|
VectorIntHolder v = new VectorIntHolder();
|
||||||
|
v.add(new IntHolder(11));
|
||||||
|
v.add(new IntHolder(22));
|
||||||
|
v.add(new IntHolder(33));
|
||||||
|
|
||||||
|
int sum = li_boost_shared_ptr_bits.sum(v);
|
||||||
|
if (sum != 66)
|
||||||
|
throw new RuntimeException("sum is wrong");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -23,3 +23,28 @@ struct NonDynamic {
|
||||||
boost::shared_ptr<NonDynamic> boing(boost::shared_ptr<NonDynamic> b) { return b; }
|
boost::shared_ptr<NonDynamic> boing(boost::shared_ptr<NonDynamic> b) { return b; }
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
// vector of shared_ptr
|
||||||
|
%include "std_vector.i"
|
||||||
|
|
||||||
|
#if defined(SHARED_PTR_WRAPPERS_IMPLEMENTED)
|
||||||
|
|
||||||
|
%shared_ptr(IntHolder);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
%inline %{
|
||||||
|
#include "boost/shared_ptr.hpp"
|
||||||
|
struct IntHolder {
|
||||||
|
int val;
|
||||||
|
IntHolder(int a) : val(a) {}
|
||||||
|
};
|
||||||
|
int sum(std::vector< boost::shared_ptr<IntHolder> > v) {
|
||||||
|
int sum = 0;
|
||||||
|
for (size_t i=0; i<v.size(); ++i)
|
||||||
|
sum += v[i]->val;
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
%}
|
||||||
|
|
||||||
|
%template(VectorIntHolder) std::vector< boost::shared_ptr<IntHolder> >;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,3 +18,14 @@ check(nd)
|
||||||
b = boing(nd)
|
b = boing(nd)
|
||||||
check(b)
|
check(b)
|
||||||
|
|
||||||
|
################################
|
||||||
|
|
||||||
|
v = VectorIntHolder()
|
||||||
|
v.push_back(IntHolder(11))
|
||||||
|
v.push_back(IntHolder(22))
|
||||||
|
v.push_back(IntHolder(33))
|
||||||
|
|
||||||
|
sum = sum(v)
|
||||||
|
if sum != 66:
|
||||||
|
raise "sum is wrong"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1940,10 +1940,16 @@ static void replace_embedded_typemap(String *s, ParmList *parm_sublist, Wrapper
|
||||||
#ifdef SWIG_DEBUG
|
#ifdef SWIG_DEBUG
|
||||||
Printf(stdout, "Swig_typemap_attach_parms: embedded\n");
|
Printf(stdout, "Swig_typemap_attach_parms: embedded\n");
|
||||||
#endif
|
#endif
|
||||||
if (!already_substituting) {
|
if (already_substituting < 10) {
|
||||||
already_substituting = 1;
|
already_substituting++;
|
||||||
|
if ((in_typemap_search_multi == 0) && typemap_search_debug) {
|
||||||
|
String *dtypemap = NewString(dollar_typemap);
|
||||||
|
Replaceall(dtypemap, "$TYPEMAP", "$typemap");
|
||||||
|
Printf(stdout, " Containing: %s\n", dtypemap);
|
||||||
|
Delete(dtypemap);
|
||||||
|
}
|
||||||
Swig_typemap_attach_parms(tmap_method, to_match_parms, f);
|
Swig_typemap_attach_parms(tmap_method, to_match_parms, f);
|
||||||
already_substituting = 0;
|
already_substituting--;
|
||||||
|
|
||||||
/* Look for the typemap code */
|
/* Look for the typemap code */
|
||||||
attr = NewStringf("tmap:%s", tmap_method);
|
attr = NewStringf("tmap:%s", tmap_method);
|
||||||
|
|
@ -1974,10 +1980,11 @@ static void replace_embedded_typemap(String *s, ParmList *parm_sublist, Wrapper
|
||||||
}
|
}
|
||||||
Delete(attr);
|
Delete(attr);
|
||||||
} else {
|
} else {
|
||||||
/* simple recursive call check, but prevents using an embedded typemap that contains another embedded typemap */
|
/* Simple recursive call check to prevent infinite recursion - this strategy only allows a limited
|
||||||
|
* number of calls by a embedded typemaps to other embedded typemaps though */
|
||||||
String *dtypemap = NewString(dollar_typemap);
|
String *dtypemap = NewString(dollar_typemap);
|
||||||
Replaceall(dtypemap, "$TYPEMAP", "$typemap");
|
Replaceall(dtypemap, "$TYPEMAP", "$typemap");
|
||||||
Swig_error(Getfile(s), Getline(s), "Recursive $typemap calls not supported - %s\n", dtypemap);
|
Swig_error(Getfile(s), Getline(s), "Likely recursive $typemap calls containing %s. Use -debug-tmsearch to debug.\n", dtypemap);
|
||||||
Delete(dtypemap);
|
Delete(dtypemap);
|
||||||
}
|
}
|
||||||
syntax_error = 0;
|
syntax_error = 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue