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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
// -*- 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_LOGCLIENT_H
#define CEPH_LOGCLIENT_H
#include "common/LogEntry.h"
#include "common/Mutex.h"
#include <iosfwd>
#include <sstream>
class LogClient;
class MLog;
class MLogAck;
class Messenger;
class MonMap;
class Message;
class Connection;
class LogClientTemp
{
public:
LogClientTemp(clog_type type_, LogClient &parent_);
LogClientTemp(const LogClientTemp &rhs);
~LogClientTemp();
template<typename T>
std::ostream& operator<<(const T& rhs)
{
return ss << rhs;
}
private:
clog_type type;
LogClient &parent;
stringstream ss;
};
class LogClient
{
public:
enum logclient_flag_t {
NO_FLAGS = 0,
FLAG_MON = 0x1,
};
LogClient(CephContext *cct, Messenger *m, MonMap *mm,
enum logclient_flag_t flags);
void handle_log_ack(MLogAck *m);
LogClientTemp debug() {
return LogClientTemp(CLOG_DEBUG, *this);
}
void debug(std::stringstream &s) {
do_log(CLOG_DEBUG, s);
}
LogClientTemp info() {
return LogClientTemp(CLOG_INFO, *this);
}
void info(std::stringstream &s) {
do_log(CLOG_INFO, s);
}
LogClientTemp warn() {
return LogClientTemp(CLOG_WARN, *this);
}
void warn(std::stringstream &s) {
do_log(CLOG_WARN, s);
}
LogClientTemp error() {
return LogClientTemp(CLOG_ERROR, *this);
}
void error(std::stringstream &s) {
do_log(CLOG_ERROR, s);
}
LogClientTemp sec() {
return LogClientTemp(CLOG_SEC, *this);
}
void sec(std::stringstream &s) {
do_log(CLOG_SEC, s);
}
void reset_session();
Message *get_mon_log_message();
bool are_pending();
private:
void do_log(clog_type type, std::stringstream& ss);
void do_log(clog_type type, const std::string& s);
Message *_get_mon_log_message();
CephContext *cct;
Messenger *messenger;
MonMap *monmap;
bool is_mon;
Mutex log_lock;
version_t last_log_sent;
version_t last_log;
std::deque<LogEntry> log_queue;
friend class LogClientTemp;
};
#endif
|