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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

信息简史

信息简史

[美] 詹姆斯·格雷克 / 高博 / 人民邮电出版社 / 2013-10 / 69.00元

人类与信息遭遇的历史由来已久。詹姆斯•格雷克笔下的这段历史出人意料地从非洲的鼓语讲起(第1章)。非洲土著部落在尚未直接跨越到移动电话之前,曾用鼓声来传递讯息,但他们是如何做到的呢?后续章节进而讲述了这段历史上几个影响深远的关键事件,包括文字的发明(第2章)、罗伯特•考德里的第一本英语词典(第3章)、查尔斯•巴贝奇的差分机与爱达•拜伦的程序(第4章)、沙普兄弟的信号塔与摩尔斯电码(第5章)。 ......一起来看看 《信息简史》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

SHA 加密
SHA 加密

SHA 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具