LevelDB 源码分析(五):Status

栏目: 数据库 · 发布时间: 7年前

内容简介:LevelDB 源码分析(五):Status

Status 囊括了一个操作的结果。可以表示成功,也可以表示错误,对于出错的操作还会返回相应的出错信息。

在 LevelDB 中很多可能会出错的函数都会返回一个 Status 对象。

通常的错误处理(如:errno)是返回一个错误号,然后根据错误号可以获得出错的描述信息。

LevelDB 将错误号和错误信息封装成 Status 类,来统一进行处理。

class Status {
public:
// 创建一个成功的status
Status() : state_(NULL) { } // 构造函数,默认状态为success
~Status() { delete[] state_; } // 析构函数,释放状态字符串

// Copy the specified status.
Status(const Status& s);
void operator=(const Status& s);

// 返回一个成功的status.
static Status OK() { return Status(); }

// 返回一个适当的类型的错误的status
static Status NotFound(const Slice& msg, const Slice& msg2 = Slice()) {
return Status(kNotFound, msg, msg2);
}
static Status Corruption(const Slice& msg, const Slice& msg2 = Slice()) {
return Status(kCorruption, msg, msg2);
}
static Status NotSupported(const Slice& msg, const Slice& msg2 = Slice()) {
return Status(kNotSupported, msg, msg2);
}
static Status InvalidArgument(const Slice& msg, const Slice& msg2 = Slice()) {
return Status(kInvalidArgument, msg, msg2);
}
static Status IOError(const Slice& msg, const Slice& msg2 = Slice()) {
return Status(kIOError, msg, msg2);
}

// 如果是成功的status就返回true
bool ok() const { return (state_ == NULL); }

// 如果status是NotFound错误就返回true
bool IsNotFound() const { return code() == kNotFound; }

// 如果status是Corruption错误就返回true
bool IsCorruption() const { return code() == kCorruption; }

// 如果status是IOError错误就返回true
bool IsIOError() const { return code() == kIOError; }

// 如果status是NotSupported错误就返回true
bool IsNotSupportedError() const { return code() == kNotSupported; }

// 如果status是InvalidArgument错误就返回true
bool IsInvalidArgument() const { return code() == kInvalidArgument; }

// Return a string representation of this status suitable for printing.
// Returns the string "OK" for success.
std::string ToString() const;

private:
// 如果是成功的话,state_ 为null
// 否则 state_ 是下面这种形式的数组:(将返回码和错误信息封装到了一个字符串数组中)
// state_[0..3] == length of message
// state_[4] == code
// state_[5..] == message
const char* state_;

//状态码
enum Code {
kOk = 0,
kNotFound = 1,
kCorruption = 2,
kNotSupported = 3,
kInvalidArgument = 4,
kIOError = 5
};

// 返回状态码
Code code() const {
return (state_ == NULL) ? kOk : static_cast<Code>(state_[4]);
}

// 内部构造函数
Status(Code code, const Slice& msg, const Slice& msg2);
static const char* CopyState(const char* s);
};

inline Status::Status(const Status& s) {
state_ = (s.state_ == NULL) ? NULL : CopyState(s.state_);
}
// 赋值运算符重载
inline void Status::operator=(const Status& s) {
// The following condition catches both aliasing (when this == &s),
// and the common case where both s and *this are ok.
if (state_ != s.state_) {
delete[] state_;
state_ = (s.state_ == NULL) ? NULL : CopyState(s.state_);
}
}

以上所述就是小编给大家介绍的《LevelDB 源码分析(五):Status》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

iOS面试之道

iOS面试之道

故胤道长、唐巧 / 电子工业出版社 / 2018-7 / 59.00元

《iOS面试之道》是作者将多年的工作经验和积累,结合具体面试内容总结而成的。 《iOS面试之道》共分为3部分。第1部分为面试准备,详细介绍求职中遇到的基本问题,作者根据其多年的经验,在面试流程、简历投递、复习准备方面给出了完善的参考意见和建议。第2部分为算法知识。算法几乎是各种水平的程序员都要面对的考查内容。该部分采用Swift语言重新审视了多种数据结构和算法原理,可以说是为iOS开发者量身......一起来看看 《iOS面试之道》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

MD5 加密
MD5 加密

MD5 加密工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具