提问人:Jyotideep Bhuyan 提问时间:1/26/2016 最后编辑:linuxbuildJyotideep Bhuyan 更新时间:9/9/2016 访问量:152
Boost:API 在 1.46.1 和 1.58.0 之间发生变化?
Boost: API changes between 1.46.1 and 1.58.0?
问:
我的应用程序使用的是 Boost 版本 1.46.1。 我想将我的应用程序移植到 Boost 版本 1.58.0 上。 但是,我遇到了一些问题。
我注意到提升 1.58 与 1.46.1 的实现不同。在 1.46.1 中,作为共享指针实现:boost::exception_ptr
boost::exception_ptr
typedef shared_ptr<exception_detail::clone_base const> exception_ptr;
在 1.58 中,所有实现都封装在一个类中。
class exception_ptr {
typedef boost::shared_ptr<exception_detail::clone_base const> impl;
impl ptr_;
friend void rethrow_exception(exception_ptr const &);
typedef exception_detail::clone_base const *(impl::*unspecified_bool_type)() const;
public:
exception_ptr() {}
explicit exception_ptr(impl const &ptr) : ptr_(ptr) {}
bool operator==(exception_ptr const &other) const { return ptr_ == other.ptr_; }
bool operator!=(exception_ptr const &other) const { return ptr_ != other.ptr_; }
operator unspecified_bool_type() const { return ptr_ ? &impl::get : 0; }
};
由于这些更改,我的代码正在中断... :(
boost::exception_ptr ExceptionHelper::GetExceptionPtr(MyExceptionPtr_t exception) {
boost::exception_ptr result =
boost::dynamic_pointer_cast<boost::exception_detail::clone_base const>(exception); // This is giving build error
return result;
}
MyExceptionPtr_t ExceptionHelper::TryGetMyExceptionPtr(boost::exception_ptr exception) {
MyExceptionPtr_t result;
boost::shared_ptr<const Exception> constPtr =
boost::dynamic_pointer_cast<const Exception>(exception); // This is giving build error.
if (constPtr) {
result = boost::const_pointer_cast<Exception>(constPtr);
}
return result;
}
std::string ExceptionHelper::GetThrowFilename(const boost::exception_ptr exception) {
std::string result;
if (exception) {
if (boost::get_error_info<boost::throw_file>(*exception)) // This is giving build error.
{
result = *boost::get_error_info<boost::throw_file>(*exception);
}
}
return result;
}
你能建议我,如何解决上述错误吗?
谢谢
答:
4赞
Mankarse
1/26/2016
#1
boost::exception_ptr
是默认可构造的、复制可构造的、可分配的和相等的可比较的。这些操作都不允许您提取捕获的异常本身。没有对类本身指定其他操作。从 1.46.1 到 1.58.0 没有变化;唯一的区别是实现已更改,因此更难意外使用不属于指定接口的功能(就像您的代码一样)。boost::exception_ptr
唯一可能的其他操作是:
template <class T>
exception_ptr copy_exception( T const & e );
exception_ptr current_exception();
void rethrow_exception( exception_ptr const & ep );
rethrow_exception
是您在此处想要的函数。要从 中提取数据,请重新抛出它,然后在 catch 块中处理数据(这与用于 的模型匹配,因此当您最终迁移到支持 C++11 的编译器时,您不必进行进一步的更改):exception_ptr
std::exception_ptr
std::string ExceptionHelper::GetThrowFilename(
const boost::exception_ptr exception)
{
std::string result;
if (!exception) return result;
try {
boost::rethrow_exception(exception);
}
catch (boost::exception const &e) {
boost::throw_file::value_type const *throw_file_data =
boost::get_error_info<boost::throw_file>(e)
if (throw_file_data) {
result = *throw_file_data;
}
}
return result;
}
我不知道这是干什么用的。看起来它可以被替换(因此转换函数可以变得不必要),但如果没有所有代码,我很难确定。MyExceptionPtr_t
boost::exception_ptr
评论
0赞
Jyotideep Bhuyan
1/26/2016
MyException 是我的自定义 Exception 类,我的所有异常都应该派生自它。类型定义提升::shared_ptr<MyException> MyExceptionPtr_t;and class MyException : public virtual std::exception, public virtual boost::exception { public: explicit MyException(const std::string& what); virtual ~MyException() throw() {} virtual const char* what() const throw(); .... /// 返回 boost::d iagnostic_information(*this) 的结果 virtual std::string diagnostic_information() const; -------- };
评论
MyExceptionPtr_t
boost::exception_ptr