入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

一,levelDB源码分析(slice)

创建时间:2016-12-26 投稿人: 浏览次数:313
#ifndef STORAGE_LEVELDB_INCLUDE_SLICE_H_
#define STORAGE_LEVELDB_INCLUDE_SLICE_H_


#include <assert.h>
#include <stddef.h>
#include <string.h>
#include <string>


namespace leveldb {


class Slice {
 public:
  // 默认构造函数
  Slice() : data_(""), size_(0) { }


  // 构造函数
  Slice(const char* d, size_t n) : data_(d), size_(n) { }


  //构造函数
  Slice(const std::string& s) : data_(s.data()), size_(s.size()) { }


  // 构造函数
  Slice(const char* s) : data_(s), size_(strlen(s)) { }


  //返回字符串指针
  const char* data() const { return data_; }


  // 返回字符串的大小
  size_t size() const { return size_; }


  // 检查字符串是否为空
  bool empty() const { return size_ == 0; }


  //重载赋值运算符
  // REQUIRES: n < size()
  char operator[](size_t n) const {
    assert(n < size());
    return data_[n];
  }


  // 清楚字符串
  void clear() { data_ = ""; size_ = 0; }


  // 字符串往右边移动N个字符,然后size减少N
  void remove_prefix(size_t n) {
    assert(n <= size());
    data_ += n;
    size_ -= n;
  }


  // 转换为string对象
  std::string ToString() const { return std::string(data_, size_); }


  // Three-way comparison.  Returns value:
  //   <  0 iff "*this" <  "b",
  //   == 0 iff "*this" == "b",
  //   >  0 iff "*this" >  "b"
  int compare(const Slice& b) const;


  // Return true iff "x" is a prefix of "*this"
  bool starts_with(const Slice& x) const {
    return ((size_ >= x.size_) &&
            (memcmp(data_, x.data_, x.size_) == 0));
  }


 private:

//字符串指针

  const char* data_;

//字符串大小  

size_t size_;



  // Intentionally copyable
};


inline bool operator==(const Slice& x, const Slice& y) {
  return ((x.size() == y.size()) &&
          (memcmp(x.data(), y.data(), x.size()) == 0));
}


inline bool operator!=(const Slice& x, const Slice& y) {
  return !(x == y);
}


inline int Slice::compare(const Slice& b) const {
  const size_t min_len = (size_ < b.size_) ? size_ : b.size_;
  int r = memcmp(data_, b.data_, min_len);
  if (r == 0) {
    if (size_ < b.size_) r = -1;
    else if (size_ > b.size_) r = +1;
  }
  return r;
}


}  // namespace leveldb




#endif  // STORAGE_LEVELDB_INCLUDE_SLICE_H_


一,slice 是leveldb的基本数据结构,实在了leveldb的字符串封装,实现了const string 和char *与slice的转换

二,对外的API包括构造函数,data(),empty(),size()这几个

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像