ceph/src/mds/InoTable.h
Greg Farnum 6e797e0055 InoTable: use modern encoding for encode_state and decode_state
Signed-off-by: Greg Farnum <greg@inktank.com>
2013-02-08 13:17:51 -08:00

62 lines
1.6 KiB
C++

// -*- 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 <sage@newdream.net>
*
* 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) {
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);
}
void skip_inos(inodeno_t i);
};
#endif