-1

我有一些 C 风格的函数返回0以指示成功和!= 0错误。
我想将它们“包装”到void函数中,throw而不是返回值。

我写了这个助手:

void checkStatus(int status) {
  if (status != 0)
    // throw an error object
}

然后,为了包装一个确定的函数int tilt(float degrees),我使用boost::bind

function<void(float)> ntilt = bind(checkStatus, bind(tilt, _1));
ntilt(30); // this will call checkStatus(tilt(30))

而且效果很好。但我想要一个专用的包装函数,所以我可以这样做:

function<void(float)> ntilt = wrap(tilt);
ntilt(30); // this will call checkStatus(tilt(30))

它应该适用于任何返回int.
使用 Boost 的最佳方法是什么?

4

1 回答 1

3

您可以创建多个重载来处理包装函数可能采用的不同数量的参数:

// handles 1 parameter functions
template<typename Ret, typename T0>
function<void(T0)> wrap(Ret (*fun)(T0)) {
    return bind(checkStatus, bind(fun, _1));
}

// handles 2 parameters functions    
template<typename Ret, typename T0, typename T1>
function<void(T0, T1)> wrap(Ret (*fun)(T0, T1)) {
    return bind(checkStatus, bind(fun, _1, _2));
}

// ... add more

这是一个 C++11 实现。如果你不想要一个,你可以避免一些东西std::function,但是,它有效:

#include <functional>
#include <stdexcept>

template<typename Ret, typename... Args>
struct wrapper {
    typedef Ret (*function_type)(Args...);

    void operator()(Args&&... args) {
        if(fun(std::forward<Args>(args)...) != 0)
            throw std::runtime_error("Error");
    }

    function_type fun;
};

template<typename Ret, typename... Ts>
std::function<void(Ts...)> wrap(Ret (*fun)(Ts...)) {
    return std::function<void(Ts...)>(wrapper<Ret, Ts...>{fun});
}

是一个现场演示。

于 2013-03-25T15:55:03.830 回答