blob: 78f1aa0a0b1874c107df3a65df022270c89aa4ac (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <string>
#include <unordered_map>
#include <boost/intrusive_ptr.hpp>
#include <boost/smart_ptr/intrusive_ref_counter.hpp>
#include "include/buffer.h"
#include "osd/osd_types.h"
namespace ceph::os {
class Object;
/**
* a collection also orders transactions
*
* Any transactions queued under a given collection will be applied in
* sequence. Transactions queued under different collections may run
* in parallel.
*
* ObjectStore users my get collection handles with open_collection() (or,
* for bootstrapping a new collection, create_new_collection()).
*/
struct Collection : public boost::intrusive_ref_counter<
Collection,
boost::thread_unsafe_counter>
{
using ObjectRef = boost::intrusive_ptr<Object>;
const coll_t cid;
int bits = 0;
// always use bufferlist object for testing
bool use_page_set = false;
std::unordered_map<ghobject_t, ObjectRef> object_hash; ///< for lookup
std::map<ghobject_t, ObjectRef> object_map; ///< for iteration
std::map<std::string,bufferptr> xattr;
bool exists = true;
Collection(const coll_t& c);
~Collection();
ObjectRef create_object() const;
ObjectRef get_object(ghobject_t oid);
ObjectRef get_or_create_object(ghobject_t oid);
uint64_t used_bytes() const;
const coll_t &get_cid() const {
return cid;
}
void encode(bufferlist& bl) const;
void decode(bufferlist::const_iterator& p);
};
}
|