summaryrefslogtreecommitdiffstats
path: root/src/crimson/os/cyan_object.h
blob: 6846b1a4dc5f6c66f71b702a8ea2ec4af758a19e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <cstddef>
#include <map>
#include <string>
#include <boost/intrusive_ptr.hpp>
#include <boost/smart_ptr/intrusive_ref_counter.hpp>
#include "include/buffer.h"

namespace ceph::os {

struct Object : public boost::intrusive_ref_counter<
  Object,
  boost::thread_unsafe_counter>
{
  using bufferlist = ceph::bufferlist;

  bufferlist data;
  std::map<std::string,bufferptr> xattr;
  bufferlist omap_header;
  std::map<std::string,bufferlist> omap;

  typedef boost::intrusive_ptr<Object> Ref;

  Object() = default;

  // interface for object data
  size_t get_size() const;
  int read(uint64_t offset, uint64_t len, bufferlist &bl);
  int write(uint64_t offset, const bufferlist &bl);
  int clone(Object *src, uint64_t srcoff, uint64_t len,
	     uint64_t dstoff);
  int truncate(uint64_t offset);

  void encode(bufferlist& bl) const;
  void decode(bufferlist::const_iterator& p);
};
}