6.18 模板

模板类型名称可能出现在接口文件中期望类型的任何位置。例如:

  1. void foo(vector<int> *a, int n);
  2. void bar(list<int,100> *x);

非类型参数的使用有些限制。SWIG支持简单的字面量和一些常量表达式。但是,在常量表达式中包含<>目前还不支持(<=>=也一样)。例如:

  1. void bar(list<int,100> *x); // OK
  2. void bar(list<int,2*50> *x); // OK
  3. void bar(list<int,(2>1 ? 100 : 50)> *x) // Not supported

SWIG的类型系统很强大,能够识别typedef。比如:

  1. typedef int Integer;
  2. void foo(vector<int> *x, vector<Integer> *y);

这种情况下,vector<Integer>等同于vector<int>。对foo的包装支持这样的变体。

从SWIG-1.3.7开始,SWIG支持简单的 C++模板声明。SWIG-1.3.12大幅扩展了早期的实现。在深入讨论之前,有些关于模板包装的事儿你需要了解。首先,C++模板并不定义任何可运行的对象代码,SWIG并不能为其创建包装。因此,为了包装模板,你需要告诉要实例化的模板的信息(如vector<intarray<double>等)。其次,实例化的名字如vector<int>一般在目标语言中无效。因此,当创建包装时你需要给模板的实例一个更合适的名字,比如intvector

为演示,考虑如下的模板定义:

  1. template<class T> class List {
  2. private:
  3. T *data;
  4. int nitems;
  5. int maxitems;
  6. public:
  7. List(int max) {
  8. data = new T [max];
  9. nitems = 0;
  10. maxitems = max;
  11. }
  12. ~List() {
  13. delete [] data;
  14. };
  15. void append(T obj) {
  16. if (nitems < maxitems) {
  17. data[nitems++] = obj;
  18. }
  19. }
  20. int length() {
  21. return nitems;
  22. }
  23. T get(int n) {
  24. return data[n];
  25. }
  26. };

对SWIG来说,这个模板的声明是无效的,会被简单忽略,因为SWIG不知道怎样为其生成包装代码,除非提供了T的实际类型。

创建特定模板实例的包装的一种方式是提供类的扩展版本,如:

  1. %rename(intList) List<int>; // Rename to a suitable identifier
  2. class List<int> {
  3. private:
  4. int *data;
  5. int nitems;
  6. int maxitems;
  7. public:
  8. List(int max);
  9. ~List();
  10. void append(int obj);
  11. int length();
  12. int get(int n);
  13. };

%rename指令给模板类在目标语言中提供了一个合适的标识符名字(绝大多数的语言不识别C++模板语法,认为模板类的名字是无效的)。接下来的代码和常规类定义是一样的。

由于模板的手动扩展很快就过时了,%template 指令用于创建模板类的实例。语义上说,%template是个简单的快捷方式——它以上面解释的方式一样扩展模板代码。这里有一些例子:

  1. /* Instantiate a few different versions of the template */
  2. %template(intList) List<int>;
  3. %template(doubleList) List<double>;

%template指令的参数是目标语言中要使用的实例化名字。你选择的名字不能与接口文件中的其他名字冲突,但有一个例外——用typedef声明的同样类型的名称可以一样。比如:

  1. %template(intList) List<int>;
  2. ...
  3. typedef List<int> intList; // OK

SWIG还可以为函数模板生成包装代码,使用的是一样的技术。例如:

  1. // Function template
  2. template<class T> T max(T a, T b) { return a > b ? a : b; }
  3. // Make some different versions of this function
  4. %template(maxint) max<int>;
  5. %template(maxdouble) max<double>;

这种情况下,maxintmaxdouble编程特定实例化函数的唯一名字。

提供该%template指令的参数个数与原始模板定义的参数一样。支持默认参数的模板。比如:

  1. template vector<typename T, int max=100>
  2. class vector {
  3. ...
  4. };
  5. %template(intvec) vector<int>; // OK
  6. %template(vec1000) vector<int,1000>; // OK

在同一个作用域内,%template指令能同时包装对相同的模板进行实例化,要不然就会报错。比如:

  1. %template(intList) List<int>;
  2. %template(Listint) List<int>; // Error. Template already wrapped.

之所以会提示错误是因为,用同样的名字对模板进行展开得到了同样的类。这导致符号表冲突。除此之外,应该对特定的模板实例化一次,减少潜在的代码膨胀。

因为类型系统知道如何处理typedef,没必要对相同的类型实例化不同版本的模板。比如,考虑如下的代码:

  1. %template(intList) vector<int>;
  2. typedef int Integer;
  3. ...
  4. void foo(vector<Integer> *x);

这种情况下,vector<Integer>vector<int>是一样的类型。使用vector<Integer>时就会将其映射到vector<int>上。因此,没有必要再为Integer类型实例化模板了(这样做是多余的,并且对导致代码膨胀)。

当使用%template指令实例化模板时,该类的信息就会被SWIG保存起来,在程序的其他地方使用。例如,如果你写了这样的代码:

  1. ...
  2. %template(intList) List<int>;
  3. ...
  4. class UltraList : public List<int> {
  5. ...
  6. };

则,SWIG知道List<int>已经被intList类包装了,并且以此信息正确处理继承关系。从另一方面说,如果不知道List<int>,你会得到类似下面一样的警告消息:

example.h:42: Warning 401. Nothing known about class ‘List‘. Ignored. example.h:42: Warning 401. Maybe you forgot to instantiate ‘List‘ using %template.

如果一个模板类从另外一个模板类继承,你需要确保基类在派生类之前已经实例化了。例如:

  1. template<class T> class Foo {
  2. ...
  3. };
  4. template<class T> class Bar : public Foo<T> {
  5. ...
  6. };
  7. // Instantiate base classes first
  8. %template(intFoo) Foo<int>;
  9. %template(doubleFoo) Foo<double>;
  10. // Now instantiate derived classes
  11. %template(intBar) Bar<int>;
  12. %template(doubleBar) Bar<double>;

这里的顺序非常重要,因为SWIG在包装代码中使用实例化名字去正确处理继承层级(基类需要在派生列之前被包装)。不要担心——如果写错了顺序,SWIG会给你提示警告消息的。

偶尔情况下,你可能需要告诉SWIG通过模板定义的基类,但是基类又不想被包装。因为SWIG这种情况下不能自动实例化模板,你必须手动调整。为达此目的,简单地使用空的模板实例化,也就是不给%template指令提供名字。比如:

  1. // Instantiate traits<double,double>, but don't wrap it.
  2. %template() traits<double,double>;

如果你不得不为不同类型实例化不同的类,可以考虑写一个SWIG宏。例如:

  1. %define TEMPLATE_WRAP(prefix, T...)
  2. %template(prefix ## Foo) Foo<T >;
  3. %template(prefix ## Bar) Bar<T >;
  4. ...
  5. %enddef
  6. TEMPLATE_WRAP(int, int)
  7. TEMPLATE_WRAP(double, double)
  8. TEMPLATE_WRAP(String, char *)
  9. TEMPLATE_WRAP(PairStringInt, std::pair<string, int>)

注意这里对类型T使用了可变参数的宏。如果不这样做的话,最后一个例子中的模板类型中的逗号就会导致错误发生。

SWIG模板机制的确支持特化。比如,你定义了像这样的类:

  1. template<> class List<int> {
  2. private:
  3. int *data;
  4. int nitems;
  5. int maxitems;
  6. public:
  7. List(int max);
  8. ~List();
  9. void append(int obj);
  10. int length();
  11. int get(int n);
  12. };

无论何时用户展开List<int>时,SWIG都会使用这段代码。实践中,这对底层的包装代码没什么影响,因为特化一般被用于提供稍微修改的方法体(这些又被SWIG忽略了)。但是,特殊的SWIG指令如%typemap%extend等能将特化版本使用起来,用于提供对特定类型的自定义。

SWIG支持部分的模板偏特化。例如,下面的代码定义了一个模板,其参数是一个指针:

  1. template<class T> class List<T*> {
  2. private:
  3. T *data;
  4. int nitems;
  5. int maxitems;
  6. public:
  7. List(int max);
  8. ~List();
  9. void append(int obj);
  10. int length();
  11. T get(int n);
  12. };

SWIG同时支持显式特化和偏特化。如:

  1. template<class T1, class T2> class Foo { }; // (1) primary template
  2. template<> class Foo<double *, int *> { }; // (2) explicit specialization
  3. template<class T1, class T2> class Foo<T1, T2 *> { }; // (3) partial specialization

SWIG有能力正确地匹配显式实例化:

  1. Foo<double *, int *> // explicit specialization matching (2)

SWIG实现了模板参数的推导,所有下面的偏特化例子的工作方式和它们在C++编译器中的工作方式是一样的:

  1. Foo<int *, int *> // partial specialization matching (3)
  2. Foo<int *, const int *> // partial specialization matching (3)
  3. Foo<int *, int **> // partial specialization matching (3)

成员函数模板也支持。后面的原理与一般模板的技术是一样的——SWIG不能穿件包装代码,除非你提供类型信息。例如,一个带有模板成员的类:

  1. class Foo {
  2. public:
  3. template<class T> void bar(T x, T y) { ... };
  4. ...
  5. };

为了展开模板,简单地在类中使用%template:

  1. class Foo {
  2. public:
  3. template<class T> void bar(T x, T y) { ... };
  4. ...
  5. %template(barint) bar<int>;
  6. %template(bardouble) bar<double>;
  7. };

或者,如果你想在原始外之外定义,这样做:

  1. class Foo {
  2. public:
  3. template<class T> void bar(T x, T y) { ... };
  4. ...
  5. };
  6. ...
  7. %extend Foo {
  8. %template(barint) bar<int>;
  9. %template(bardouble) bar<double>;
  10. };

再者:

  1. class Foo {
  2. public:
  3. template<class T> void bar(T x, T y) { ... };
  4. ...
  5. };
  6. ...
  7. %template(bari) Foo::bar<int>;
  8. %template(bard) Foo::bar<double>;

这种情况下,就不需要%extend指令了,%template做了这些工作,比如向Foo类添加了两个新方法。

注意:因为模板的处理方式,%template指令必须总是出现在要展开的模板定义的后面。

现在,如果你的目标语言支持重载,你甚至可以这样:

  1. %template(bar) Foo::bar<int>;
  2. %template(bar) Foo::bar<double>;

并且,因为两个包装方法的名字bar相同,它们就被重载了,当被调用时会根据参数类型不同通过函数分发机制调用到正确的函数。

在当做成员使用时,%template指令可以放在另外的模板类中。这是一个有点不正常的例子:

  1. // A template
  2. template<class T> class Foo {
  3. public:
  4. // A member template
  5. template<class S> T bar(S x, S y) { ... };
  6. ...
  7. };
  8. // Expand a few member templates
  9. %extend Foo {
  10. %template(bari) bar<int>;
  11. %template(bard) bar<double>;
  12. }
  13. // Create some wrappers for the template
  14. %template(Fooi) Foo<int>;
  15. %template(Food) Foo<double>;

你会奇迹般的发现每个被扩展后的Foo类都有成员函数baribard

成员模板的一般应用是为拷贝和转换定义构造函数。例如:

  1. template<class T1, class T2> struct pair {
  2. T1 first;
  3. T2 second;
  4. pair() : first(T1()), second(T2()) { }
  5. pair(const T1 &x, const T2 &y) : first(x), second(y) { }
  6. template<class U1, class U2> pair(const pair<U1,U2> &x)
  7. : first(x.first),second(x.second) { }
  8. };

SWIG可以非常完美地接受这样的声明,但是模板构造函数将被忽略,除非你显式地扩展了它。为达此目的,你可以在模板类中扩展一系列的构造函数。例如:

  1. %extend pair {
  2. %template(pair) pair<T1,T2>; // Generate default copy constructor
  3. };

当向这样使用%extend指令时,请注意你是如何能够在原始的模板定义中使用模板参数的。

另外一种方式是,你可以选择性的实例化扩展构造函数模板。比如:

  1. // Instantiate a few versions
  2. %template(pairii) pair<int,int>;
  3. %template(pairdd) pair<double,double>;
  4. // Create a default constructor only
  5. %extend pair<int,int> {
  6. %template(paird) pair<int,int>; // Default constructor
  7. };
  8. // Create default and conversion constructors
  9. %extend pair<double,double> {
  10. %template(paird) pair<double,dobule>; // Default constructor
  11. %template(pairc) pair<int,int>; // Conversion constructor
  12. };

并且如果目标语言支持重载,你还可以这样写:

  1. // Create default and conversion constructors
  2. %extend pair<double,double> {
  3. %template(pair) pair<double,double>; // Default constructor
  4. %template(pair) pair<int,int>; // Conversion constructor
  5. };

在这种情况下,默认的和转换构造器的名字一样。因此,SWIG会重载它们,且会定义一个唯一可见的构造函数,这将根据参数类型分发并调用合适的函数。

如果这些还不够的话,你想让人更头疼,%rename%extendtypemap指令可以之间在模板中定义。例如:

  1. // File : list.h
  2. template<class T> class List {
  3. ...
  4. public:
  5. %rename(__getitem__) get(int);
  6. List(int max);
  7. ~List();
  8. ...
  9. T get(int index);
  10. %extend {
  11. char *__str__() {
  12. /* Make a string representation */
  13. ...
  14. }
  15. }
  16. };

这个例子中,使用了额外的SWIG指令,所有使用该模板的类都将使用这些定义。

还可以从模板类中分离出这些声明。例如:

  1. %rename(__getitem__) List::get;
  2. %extend List {
  3. char *__str__() {
  4. /* Make a string representation */
  5. ...
  6. }
  7. /* Make a copy */
  8. T *__copy__() {
  9. return new List<T>(*$self);
  10. }
  11. };
  12. ...
  13. template<class T> class List {
  14. ...
  15. public:
  16. List() { }
  17. T get(int index);
  18. ...
  19. };

%extend从类定义中分离出来后,像在类定义中一样使用模板参数是合法的。这些都将在模板展开时被替换。除此之外,%extend指令还能用于添加额外的方法到特定的模板实例化之上。例如:

  1. %template(intList) List<int>;
  2. %extend List<int> {
  3. void blah() {
  4. printf("Hey, I'm an List<int>!\n");
  5. }
  6. };

SWIG甚至支持重载的模板函数。一般%template指令用于包装模板函数。比如:

  1. template<class T> void foo(T x) { };
  2. template<class T> void foo(T x, T y) { };
  3. %template(foo) foo<int>;

这将生成两个重载的包装函数,第一个带一个整形参数,第二个带两个整形参数。

不用说,SWIG对模板的支持提供了大量的打破常规的方式方法。也就是说,一个重要的终极要点是:SWIG不对模板执行大范围的错误检查!特别是,SWIG不执行类型检查,也不检查模板声明是否真的有意义。因为C++编译器会检查,实践中SWIG就不用再重复实现这些功能了。

因为SWIG的模板支持不执行类型检查,可以在模板声明后,尽早使用%template指令。你还可以(尽管这种情况很少)在模板参数声明之前使用%template。比如:

  1. template <class T> class OuterTemplateClass {};
  2. // The nested class OuterClass::InnerClass inherits from the template class
  3. // OuterTemplateClass<OuterClass::InnerStruct> and thus the template needs
  4. // to be expanded with %template before the OuterClass declaration.
  5. %template(OuterTemplateClass_OuterClass__InnerStruct)
  6. OuterTemplateClass<OuterClass::InnerStruct>
  7. // Don't forget to use %feature("flatnested") for OuterClass::InnerStruct and
  8. // OuterClass::InnerClass if the target language doesn't support nested classes.
  9. class OuterClass {
  10. public:
  11. // Forward declarations:
  12. struct InnerStruct;
  13. class InnerClass;
  14. };
  15. struct OuterClass::InnerStruct {};
  16. // Expanding the template at this point with %template is too late as the
  17. // OuterClass::InnerClass declaration is processed inside OuterClass.
  18. class OuterClass::InnerClass : public OuterTemplateClass<InnerStruct> {};

兼容性注释:模板支持的第一个实现版本非常依赖预处理器中的宏扩展。SWIG-1.3.12中,模板与解释器和类型系统已经做了紧密集成,预处理器就不再需要了。模板扩展中依赖于预处理特征的代码不再工作。但是SWIG依然允许#操作符用于从模板参数中生成字符串。

兼容性注释:在早期版本的SWIG中,%template指令会引入新的类名。这个名字可以在其他指令中使用。例如:

  1. %template(vectori) vector<int>;
  2. %extend vectori {
  3. void somemethod() { }
  4. };

这种行为不再被支持。你应该使用原始的模板名字作为类名。比如:

  1. %template(vectori) vector<int>;
  2. %extend vector<int> {
  3. void somemethod() { }
  4. };

Typemap和其他的自定义特征也做相似的改变。