如何声明/定义一个函数与相同的返回和参数类型作为一个给定的函数指针?



例如:

int func(const int &i, const int &j);
// Want use pointer to func to do something along these lines.
func::return_type funcHook(func::parameters...)
// So I can have a macro to do this.
HOOK(func) {
// Do hook work.
}

我需要钩子超过100个函数,复制和粘贴变得有点乏味,并增加了很多臃肿的文本。

不确定要如何使用它,但模板在这里可以做得很好:

template <auto func> struct Hook;
template <typename Ret, typename ... Args, Ret (*func)(Args...)>
struct Hook
{
static Ret call(Args... args) {
// ...
// return func(std::forward<Args>(args)...); 
}
};
// and handle also C-ellipsis as printf
template <typename Ret, typename ... Args, Ret (*func)(Args..., ...)>
struct Hook
{
#if 1
template <typename ...Us>
static Ret call(Args... args, Us&& ... ellipsis_args) {
// ...
// return func(std::forward<Args>(args)..., std::forward<Us>(ellipsis_args)...); 
}
#else
static Ret call(Args... args, ...) {
// ...
// Cannot reuse func, as va_args should be used
}
#endif
};

static call可能被operator ()取代。

使用

int a = 42, b = 51;
int res = Hook<&func>::call(a, b);

相关内容

  • 没有找到相关文章

最新更新