blob: 1b1d452fb1d6c2daabc666957653453b97e5e23d (
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
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef REMOTING_HOST_SERVER_LOG_ENTRY_H_
#define REMOTING_HOST_SERVER_LOG_ENTRY_H_
#include <map>
#include <string>
namespace buzz {
class XmlElement;
} // namespace buzz
namespace remoting {
class ServerLogEntry {
public:
// Constructs a log entry for a session state change.
// Currently this is either connection or disconnection.
static ServerLogEntry* MakeSessionStateChange(bool connection);
~ServerLogEntry();
// Adds fields describing the host to this log entry.
void AddHostFields();
// Converts this object to an XML stanza.
// The caller takes ownership of the stanza.
buzz::XmlElement* ToStanza() const;
private:
typedef std::map<std::string, std::string> ValuesMap;
ServerLogEntry();
void Set(const char* key, const char* value);
static const char* GetValueSessionState(bool connected);
ValuesMap values_map_;
};
} // namespace remoting
#endif
|