mirror of
https://github.com/ceph/ceph
synced 2024-12-22 19:34:30 +00:00
07ac5d3e74
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1068 29311d96-e01e-0410-9327-a35deaab8ce9
66 lines
1.6 KiB
C++
66 lines
1.6 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 __MUNHASHDIRACK_H
|
|
#define __MUNHASHDIRACK_H
|
|
|
|
#include "msg/Message.h"
|
|
|
|
class MUnhashDirAck : public Message {
|
|
inodeno_t ino;
|
|
bufferlist state;
|
|
int nden;
|
|
|
|
public:
|
|
MUnhashDirAck() {}
|
|
MUnhashDirAck(inodeno_t ino, bufferlist& bl, int nden) :
|
|
Message(MSG_MDS_UNHASHDIRACK) {
|
|
this->ino = ino;
|
|
state.claim(bl);
|
|
this->nden = nden;
|
|
}
|
|
virtual char *get_type_name() { return "UHaA"; }
|
|
|
|
inodeno_t get_ino() { return ino; }
|
|
bufferlist& get_state() { return state; }
|
|
bufferlist* get_state_ptr() { return &state; }
|
|
int get_nden() { return nden; }
|
|
|
|
//void set_nden(int n) { nden = n; }
|
|
//void inc_nden() { nden++; }
|
|
|
|
void decode_payload() {
|
|
int off = 0;
|
|
payload.copy(off, sizeof(ino), (char*)&ino);
|
|
off += sizeof(ino);
|
|
payload.copy(off, sizeof(nden), (char*)&nden);
|
|
off += sizeof(nden);
|
|
|
|
size_t len;
|
|
payload.copy(off, sizeof(len), (char*)&len);
|
|
off += sizeof(len);
|
|
state.substr_of(payload, off, len);
|
|
}
|
|
void encode_payload() {
|
|
payload.append((char*)&ino, sizeof(ino));
|
|
payload.append((char*)&nden, sizeof(nden));
|
|
size_t size = state.length();
|
|
payload.append((char*)&size, sizeof(size));
|
|
payload.claim_append(state);
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|