blob: f0fb9e4c87de74cf60dd5c3a01b711bbf8929429 (
plain)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// -*- 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.
*
*/
#include "config.h"
#include "LogEvent.h"
#include "MDS.h"
// events i know of
#include "events/EString.h"
#include "events/ESubtreeMap.h"
#include "events/EExport.h"
#include "events/EImportStart.h"
#include "events/EImportFinish.h"
#include "events/EFragment.h"
#include "events/ESession.h"
#include "events/ESessions.h"
#include "events/EUpdate.h"
#include "events/ESlaveUpdate.h"
#include "events/EOpen.h"
#include "events/ECommitted.h"
#include "events/EPurgeFinish.h"
#include "events/ETableClient.h"
#include "events/ETableServer.h"
LogEvent *LogEvent::decode(bufferlist& bl)
{
// parse type, length
bufferlist::iterator p = bl.begin();
__u32 type;
::decode(type, p);
int length = bl.length() - p.get_off();
generic_dout(15) << "decode_log_event type " << type << ", size " << length << dendl;
assert(type > 0);
// create event
LogEvent *le;
switch (type) {
case EVENT_STRING: le = new EString; break;
case EVENT_SUBTREEMAP: le = new ESubtreeMap; break;
case EVENT_EXPORT: le = new EExport; break;
case EVENT_IMPORTSTART: le = new EImportStart; break;
case EVENT_IMPORTFINISH: le = new EImportFinish; break;
case EVENT_FRAGMENT: le = new EFragment; break;
case EVENT_SESSION: le = new ESession; break;
case EVENT_SESSIONS: le = new ESessions; break;
case EVENT_UPDATE: le = new EUpdate; break;
case EVENT_SLAVEUPDATE: le = new ESlaveUpdate; break;
case EVENT_OPEN: le = new EOpen; break;
case EVENT_COMMITTED: le = new ECommitted; break;
case EVENT_PURGEFINISH: le = new EPurgeFinish; break;
case EVENT_TABLECLIENT: le = new ETableClient; break;
case EVENT_TABLESERVER: le = new ETableServer; break;
default:
generic_dout(1) << "uh oh, unknown log event type " << type << dendl;
assert(0);
}
// decode
le->decode(p);
assert(p.end());
return le;
}
|