mirror of
https://github.com/ceph/ceph
synced 2025-02-07 02:43:59 +00:00
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1107 29311d96-e01e-0410-9327-a35deaab8ce9
68 lines
1.8 KiB
C++
68 lines
1.8 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.
|
|
*
|
|
*/
|
|
|
|
#include "LogEvent.h"
|
|
|
|
#include "MDS.h"
|
|
|
|
// events i know of
|
|
#include "events/EString.h"
|
|
#include "events/EImportMap.h"
|
|
#include "events/EMetaBlob.h"
|
|
#include "events/EUpdate.h"
|
|
#include "events/EUnlink.h"
|
|
#include "events/EAlloc.h"
|
|
#include "events/EPurgeFinish.h"
|
|
#include "events/EExportStart.h"
|
|
#include "events/EExportFinish.h"
|
|
#include "events/EImportStart.h"
|
|
#include "events/EImportFinish.h"
|
|
|
|
LogEvent *LogEvent::decode(bufferlist& bl)
|
|
{
|
|
// parse type, length
|
|
int off = 0;
|
|
int type;
|
|
bl.copy(off, sizeof(type), (char*)&type);
|
|
off += sizeof(type);
|
|
|
|
int length = bl.length() - off;
|
|
dout(15) << "decode_log_event type " << type << ", size " << length << endl;
|
|
|
|
assert(type > 0);
|
|
|
|
// create event
|
|
LogEvent *le;
|
|
switch (type) {
|
|
case EVENT_STRING: le = new EString(); break;
|
|
case EVENT_IMPORTMAP: le = new EImportMap; break;
|
|
case EVENT_UPDATE: le = new EUpdate; break;
|
|
case EVENT_UNLINK: le = new EUnlink(); break;
|
|
case EVENT_PURGEFINISH: le = new EPurgeFinish(); break;
|
|
case EVENT_ALLOC: le = new EAlloc(); break;
|
|
case EVENT_EXPORTSTART: le = new EExportStart; break;
|
|
case EVENT_EXPORTFINISH: le = new EExportFinish; break;
|
|
case EVENT_IMPORTSTART: le = new EImportStart; break;
|
|
case EVENT_IMPORTFINISH: le = new EImportFinish; break;
|
|
default:
|
|
dout(1) << "uh oh, unknown log event type " << type << endl;
|
|
assert(0);
|
|
}
|
|
|
|
// decode
|
|
le->decode_payload(bl, off);
|
|
|
|
return le;
|
|
}
|
|
|