-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInoTable.h
72 lines (58 loc) · 1.89 KB
/
InoTable.h
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <[email protected]>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_INOTABLE_H
#define CEPH_INOTABLE_H
#include "MDSTable.h"
#include "include/interval_set.h"
class MDS;
class InoTable : public MDSTable {
interval_set<inodeno_t> free; // unused ids
interval_set<inodeno_t> projected_free;
public:
InoTable(MDS *m) : MDSTable(m, "inotable", true) { }
inodeno_t project_alloc_id(inodeno_t id=0);
void apply_alloc_id(inodeno_t id);
void project_alloc_ids(interval_set<inodeno_t>& inos, int want);
void apply_alloc_ids(interval_set<inodeno_t>& inos);
void project_release_ids(interval_set<inodeno_t>& inos);
void apply_release_ids(interval_set<inodeno_t>& inos);
void replay_alloc_id(inodeno_t ino);
void replay_alloc_ids(interval_set<inodeno_t>& inos);
void replay_release_ids(interval_set<inodeno_t>& inos);
void replay_reset();
void reset_state();
void encode_state(bufferlist& bl) const {
ENCODE_START(2, 2, bl);
::encode(free, bl);
ENCODE_FINISH(bl);
}
void decode_state(bufferlist::iterator& bl) {
DECODE_START_LEGACY_COMPAT_LEN(2, 2, 2, bl);
::decode(free, bl);
projected_free = free;
DECODE_FINISH(bl);
}
// To permit enc/decoding in isolation in dencoder
InoTable() : MDSTable(NULL, "inotable", true) {}
void encode(bufferlist& bl) const {
encode_state(bl);
}
void decode(bufferlist::iterator& bl) {
decode_state(bl);
}
void dump(Formatter *f) const;
static void generate_test_instances(list<InoTable*>& ls);
void skip_inos(inodeno_t i);
};
#endif