ceph/branches/sage/pgs/mds/events/EImportStart.h
sageweil 9213a23f14 eek
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1138 29311d96-e01e-0410-9327-a35deaab8ce9
2007-02-28 18:42:55 +00:00

61 lines
1.4 KiB
C++

// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
/*
* 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 __EIMPORTSTART_H
#define __EIMPORTSTART_H
#include <assert.h>
#include "config.h"
#include "include/types.h"
#include "../MDS.h"
#include "EMetaBlob.h"
class EImportStart : public LogEvent {
protected:
inodeno_t dirino;
list<inodeno_t> bounds;
public:
EMetaBlob metablob;
EImportStart(inodeno_t di,
list<inodeno_t>& b) : LogEvent(EVENT_IMPORTSTART),
dirino(di), bounds(b) { }
EImportStart() : LogEvent(EVENT_IMPORTSTART) { }
void print(ostream& out) {
out << "EImportStart " << metablob;
}
virtual void encode_payload(bufferlist& bl) {
bl.append((char*)&dirino, sizeof(dirino));
metablob._encode(bl);
::_encode(bounds, bl);
}
void decode_payload(bufferlist& bl, int& off) {
bl.copy(off, sizeof(dirino), (char*)&dirino);
off += sizeof(dirino);
metablob._decode(bl, off);
::_decode(bounds, bl, off);
}
bool has_expired(MDS *mds);
void expire(MDS *mds, Context *c);
void replay(MDS *mds);
};
#endif