LevelDB 源码分析(五):Status

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

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

查看所有标签

猜你喜欢:

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

榨干百度谷歌

榨干百度谷歌

张志 / 电子工业出版社 / 2011-1 / 28.00元

小小的搜索引擎,可以成为你从事网络营销的利器。如果你还没有意识到这一点,或者还不知道从何下手,请打开《榨干百度谷歌:搜索引擎广告大赢家》吧!《榨干百度谷歌:搜索引擎广告大赢家》作者将其丰富的实战经验融汇在这书中,结合大量国内不同行业实际应用案例,生动地告诉读者,怎样正确地利用搜索引擎,以很小的投资获得巨大的回报。并且深入浅出地介绍了企业开展搜索营销的关键点,包括如何提炼并组合关键词、如何撰写简洁明......一起来看看 《榨干百度谷歌》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

随机密码生成器
随机密码生成器

多种字符组合密码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具