mds/events/ESession.h\
mds/events/ESessions.h\
mds/events/ESlaveUpdate.h\
- mds/events/EString.h\
mds/events/ESubtreeMap.h\
mds/events/ETableClient.h\
mds/events/ETableServer.h\
#include "include/filepath.h"
-#include "events/EString.h"
#include "events/EUpdate.h"
#include "events/EOpen.h"
#include "MDS.h"
// events i know of
-#include "events/EString.h"
-
#include "events/ESubtreeMap.h"
#include "events/EExport.h"
#include "events/EImportStart.h"
// create event
LogEvent *le;
switch (type) {
- case EVENT_STRING: le = new EString; break;
-
case EVENT_SUBTREEMAP: le = new ESubtreeMap; break;
case EVENT_SUBTREEMAP_TEST:
le = new ESubtreeMap;
#ifndef CEPH_LOGEVENT_H
#define CEPH_LOGEVENT_H
-#define EVENT_STRING 1
+#define EVENT_UNUSED 1 // was previously EVENT_STRING
#define EVENT_SUBTREEMAP 2
#define EVENT_EXPORT 3
#include "events/ESubtreeMap.h"
#include "events/EUpdate.h"
#include "events/ESlaveUpdate.h"
-#include "events/EString.h"
#include "events/EImportFinish.h"
#include "events/EFragment.h"
#include "events/ECommitted.h"
#include "include/filepath.h"
-#include "events/EString.h"
#include "events/EExport.h"
#include "events/EImportStart.h"
#include "events/EImportFinish.h"
#include "messages/MDentryUnlink.h"
-#include "events/EString.h"
#include "events/EUpdate.h"
#include "events/ESlaveUpdate.h"
#include "events/ESession.h"
#include "../MDS.h"
#include "EMetaBlob.h"
+#include "../LogEvent.h"
class EExport : public LogEvent {
public:
#include "include/types.h"
#include "../MDS.h"
+#include "../LogEvent.h"
class EImportFinish : public LogEvent {
protected:
#include "../MDS.h"
#include "EMetaBlob.h"
+#include "../LogEvent.h"
class EImportStart : public LogEvent {
protected:
+++ /dev/null
-// -*- 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_ESTRING_H
-#define CEPH_ESTRING_H
-
-#include <stdlib.h>
-#include <string>
-using namespace std;
-
-#include "../LogEvent.h"
-
-// generic log event
-class EString : public LogEvent {
- protected:
- string event;
-
- public:
- EString(string e) :
- LogEvent(EVENT_STRING) {
- event = e;
- }
- EString() :
- LogEvent(EVENT_STRING) {
- }
-
- void encode(bufferlist& bl) const {
- ::encode(event, bl);
- ::encode(stamp, bl);
- }
- void decode(bufferlist::iterator &bl) {
- ::decode(event, bl);
- if (!bl.end())
- ::decode(stamp, bl);
- }
-
- void print(ostream& out) {
- out << '"' << event << '"';
- }
-
- void replay(MDS *mds);
-
-};
-
-#endif
#include "common/config.h"
#include "osdc/Journaler.h"
-#include "events/EString.h"
#include "events/ESubtreeMap.h"
#include "events/ESession.h"
#include "events/ESessions.h"
#define DOUT_COND(cct, l) (l<=cct->_conf->debug_mds || l <= cct->_conf->debug_mds_log)
-// -----------------------
-// EString
-
-void EString::replay(MDS *mds)
-{
- dout(10) << "EString.replay " << event << dendl;
-}
-
-
-
// -----------------------
// EMetaBlob