模板方法的模板模板参数教育失败(尽管明确专门化)

时间:2016-10-15 19:28:06

标签: c++ templates variadic-templates explicit-specialization

我正在尝试编写一个可通过c ++扩展的小脚本解释器。为此,将函数处理程序插入到调度表中。 为了简单地解决我的问题,handlertype定义如下(在实际代码中,它包含参数列表和返回类型的参数):

// Handler type
using function_type = void(int);

现在,调度表是一个简单的无序映射,其中有一种(某种)错位名称作为实现重载的键:

// Dispatch table
std::unordered_map<std::string, function_type*> fn_handlers;

方法直接添加到此表中,例如就像一个简单的方法,它采用类型为int的两个参数(operator+ii是我的情况下的manged名称):

fn_handlers["operator+ii"] = my_add_handler;

然而,许多处理程序,尤其是与基本数学相关的处理程序,都接受各种参数,intdouble的所有组合都是有效的,产生4个方法和4个调度表条目。因此我决定使用模板实现这些方法。 举个例子,这可能基本上就是这个(再次简化):

template<class A, class B>
void my_add_handler(int /* simplified... */)
{
  // Something here A and B are needed
}

然后将调度表填充如下:

fn_handlers["operator+ii"] = my_add_handler<int,int>;
fn_handlers["operator+di"] = my_add_handler<double,int>;
fn_handlers["operator+id"] = my_add_handler<int,double>;
fn_handlers["operator+dd"] = my_add_handler<double,double>;

打字还是很多,但现在还可以。无论如何,因为模板参数和方法签名(错位名称)之间显然存在关联,我试图自动执行此操作(参数名称管理将在handler_provider :: add中完成):

handler_provider<int, int>::add<my_add_handler>("operator+");
handler_provider<double, int>::add<fn_add_handler>("operator+");
handler_provider<int, double>::add<fn_add_handler>("operator+");
handler_provider<double, double>::add<fn_add_handler>("operator+");

然后将在开头采用参数并将它们作为第二种类型的模板参数(这样就不必两次输入<int, int>部分)。

只是为了澄清;我知道我会明确地专门化my_add_handler这样的模板:

handler_provider<int, int>::add<my_add_handler<int,int>>("test");

但正是这种重复我想省略(tw <int,int>)。

但是,我不断收到最后一部分的错误。 handler_provider::add方法的定义如下(上面提到的参数名称mangeling被省略了,因为它不是这里的重点并按预期工作):

template<class... Ts>
struct handler_provider
{
  // Overload for templates, such as 'test_handler'
  template<template<class...> class F>
  static void add(const std::string name)
  {
    handler_provider<Ts...>::add<F<Ts...>>(name);
  }

  // Overload for non-template (or already specialized) handlers (aka. function pointers)
  template<function_type F>
  static void add(const std::string name)
  {
    fn_handlers[name] = F;
  }
};

如上所述,第一个重载应该是我上面描述的确切情况,下面的处理程序安装非模板函数和那些完全专用的函数。

然而,这给了我一个错误,告诉我不能推断出如上所示的调用的内部模板。我不认为我告诉编译器完全推断出任何东西,我在调用中完成了专门的模板参数(再次):

handler_provider<int, int>::add<my_add_handler>("operator+");

外部可变参数模板class... Ts的参数显式命名为<int, int>,内部模板模板的简单参数命名为my_add_handler。但是,编译器似乎忽略了这个(?)。这是我得到的输出(gcc 5.4.0使用-std=c++14):

$ g++ -std=c++14 sci_e1.cpp -o sci
sci_e1.cpp: In function ‘int main()’:
sci_e1.cpp:45:55: error: no matching function for call to ‘handler_provider<int, int>::add(const char [5])’
  handler_provider<int, int>::add<my_add_handler>("operator+");
                                                             ^
sci_e1.cpp:17:15: note: candidate: template<template<class ...> class typedef F F> static void handler_provider<Ts>::add(std::__cxx11::string) [with F = F; Ts = {int, int}]
  static void add(const std::string name)
              ^
sci_e1.cpp:17:15: note:   template argument deduction/substitution failed:
sci_e1.cpp:24:15: note: candidate: template<void (* F)(int)> static void handler_provider<Ts>::add(std::__cxx11::string) [with void (* F)(int) = F; Ts = {int, int}]
  static void add(const std::string name)
              ^
sci_e1.cpp:24:15: note:   template argument deduction/substitution failed:
sci_e1.cpp:45:55: error: could not convert template argument ‘my_add_handler’ to ‘void (*)(int)’
  handler_provider<int, int>::add<my_add_handler>("operator+");
                                                             ^

我得到第二个错误,这完全没问题,不应该是一个问题,因为这个重载应该从模板类型的重载解析中解决。第一个错误是让我疯狂的错误。

Clang(3.9.0)更准确一点:

$ clang++ -std=c++14 sci_e1.cpp -o sci
sci_e1.cpp:45:3: error: no matching function for call to 'add'
  handler_provider<int, int>::add<my_add_handler>("test");
  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sci_e1.cpp:17:15: note: candidate template ignored: invalid explicitly-specified argument for
      template parameter 'F'
  static void add(const std::string name)
              ^
sci_e1.cpp:24:15: note: candidate template ignored: invalid explicitly-specified argument for
      template parameter 'F'
  static void add(const std::string name)
              ^
1 error generated.

但我仍然不明白我错在哪里。我错过了什么?

谢谢,

塞巴斯蒂安

为了更好的测试,这是一个完整的例子:

#include <unordered_map>
#include <string>
#include <iostream>

// Handler type
using function_type = void(int);

// Dispatch table
std::unordered_map<std::string, function_type*> fn_handlers;

// Handler provider (to install new handlers)
template<class... Ts>
struct handler_provider
{
  // Overload for templates, such as 'test_handler'
  template<template<class...> class F>
  static void add(const std::string name)
  {
    handler_provider<Ts...>::add<F<Ts...>>(name);
  }

  // Overload for non-template (or already specialized) handlers (aka. function pointers)
  template<function_type F>
  static void add(const std::string name)
  {
    fn_handlers[name] = F;
  }
};


template<class A, class B>
void test_handler(int v)
{
  // Something here A and B are needed
}

void other_handler(int v)
{
  // A handler without specialization
}

int main()
{
  // Install handlers
  handler_provider<int, int>::add<test_handler>("testii");
  handler_provider<double, int>::add<test_handler>("testdi");
  handler_provider<bool, bool, int>::add<other_handler>("otherbbi");

  // Dispatch
  fn_handlers["testii"](5); // Sould call test_handler<int, int>
  fn_handlers["testdi"](5); // Should call test_handler<double, int>

  fn_handlers["otherbbi"](5); // Should call other_handler
}

1 个答案:

答案 0 :(得分:3)

问题如下:根据标准,[temp.arg.template] / 1,

  

[a]模板模板参数的模板参数应该是类模板或别名的名称   模板,表示为id-expression。

因此,您无法实例化模板

template<template<class...> class F>
static void add(const std::string name) {
    handler_provider<Ts...>::add<F<Ts...>>(name);
}

使用功能模板test_handler

要解决此问题,您必须将test_handler设为模板仿函数,即将其更改为

template<class A, class B>
struct test_handler {
    void operator()(int v) {
        // Something here A and B are needed
        std::cout << __PRETTY_FUNCTION__ << " called with v = " << v << std::endl;
    }
};

很遗憾,现在这已不再是void(*)(int)类型,因此您无法将其插入unordered_map。因此,您必须将地图中的元素更改为std::function<function_type>,并将模板化仿函数的add重载调整为

// Overload for templates, such as 'test_handler'
template<template<class...> class F>
static void add(const std::string name) {
    fn_handlers[name] = F<Ts...>{};
}

完整代码现在看起来像这样:

#include <iostream>
#include <functional>
#include <string>
#include <unordered_map>

// Handler typ
using function_type = void(int);

// Dispatch table
std::unordered_map<std::string, std::function<function_type>> fn_handlers;

// Handler provider (to install new handlers)
template<class... Ts>
struct handler_provider {
    // Overload for templates, such as 'test_handler'
    template<template<class...> class F>
    static void add(const std::string name) {
        fn_handlers[name] = F<Ts...>{};
    }

    // Overload for non-template (or already specialized) handlers (aka. function pointers)
    template<function_type F>
    static void add(const std::string name) {
        fn_handlers[name] = F;
    }
};

template<class A, class B>
struct test_handler {
    void operator()(int v) {
        // Something here A and B are needed
        std::cout << __PRETTY_FUNCTION__ << " called with v = " << v << std::endl;
    }
};

void other_handler(int v) {
    // A handler without specialization
    std::cout << __PRETTY_FUNCTION__ << " called with v = " << v << std::endl;
}

int main() {
    // Install handlers
    handler_provider<int, int>::add<test_handler>("testii");
    handler_provider<double, int>::add<test_handler>("testdi");
    handler_provider<bool, bool, int>::add<other_handler>("otherbbi");

    // Dispatch
    fn_handlers["testii"](5); // Sould call test_handler<int, int>
    fn_handlers["testdi"](5); // Should call test_handler<double, int>

    fn_handlers["otherbbi"](5); // Should call other_handler
}

这正是你想要的,正如coliru中所见。

如果您不想使用std::function因为开销(在我的平台上std::function使用32字节而不是8字节作为指针),您也可以编写自己的类型处理程序的擦除结构。