blob: 0dc3618ac331bad0411f39da7a63dd8bdb0fd1b3 (
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
91
92
93
94
95
96
97
|
// 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.
#include "remoting/host/log_to_server.h"
#include "base/bind.h"
#include "base/message_loop_proxy.h"
#include "remoting/base/constants.h"
#include "remoting/host/server_log_entry.h"
#include "remoting/jingle_glue/iq_sender.h"
#include "remoting/jingle_glue/jingle_thread.h"
#include "remoting/jingle_glue/signal_strategy.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
#include "third_party/libjingle/source/talk/xmpp/constants.h"
using buzz::QName;
using buzz::XmlElement;
namespace remoting {
namespace {
const char kLogCommand[] = "log";
} // namespace
LogToServer::LogToServer(base::MessageLoopProxy* message_loop)
: message_loop_(message_loop) {
}
LogToServer::~LogToServer() {
}
void LogToServer::LogSessionStateChange(bool connected) {
scoped_ptr<ServerLogEntry> entry(ServerLogEntry::MakeSessionStateChange(
connected));
entry->AddHostFields();
Log(*entry.get());
}
void LogToServer::OnSignallingConnected(SignalStrategy* signal_strategy,
const std::string& full_jid) {
DCHECK(message_loop_->BelongsToCurrentThread());
iq_sender_.reset(new IqSender(signal_strategy));
SendPendingEntries();
}
void LogToServer::OnSignallingDisconnected() {
DCHECK(message_loop_->BelongsToCurrentThread());
iq_sender_.reset();
}
void LogToServer::OnAccessDenied() {
}
void LogToServer::OnClientAuthenticated(const std::string& jid) {
LogSessionStateChange(true);
}
void LogToServer::OnClientDisconnected(const std::string& jid) {
LogSessionStateChange(false);
}
void LogToServer::OnShutdown() {
}
void LogToServer::Log(const ServerLogEntry& entry) {
DCHECK(message_loop_->BelongsToCurrentThread());
pending_entries_.push_back(entry);
SendPendingEntries();
}
void LogToServer::SendPendingEntries() {
DCHECK(message_loop_->BelongsToCurrentThread());
if (iq_sender_ == NULL) {
return;
}
if (pending_entries_.empty()) {
return;
}
// Make one stanza containing all the pending entries.
scoped_ptr<XmlElement> stanza(new XmlElement(QName(
kChromotingXmlNamespace, kLogCommand)));
while (!pending_entries_.empty()) {
ServerLogEntry& entry = pending_entries_.front();
stanza->AddElement(entry.ToStanza());
pending_entries_.pop_front();
}
// Send the stanza to the server.
scoped_ptr<IqRequest> req(iq_sender_->SendIq(
buzz::STR_SET, kChromotingBotJid, stanza.release(),
IqSender::ReplyCallback()));
// We ignore any response, so let the IqRequest be destroyed.
return;
}
} // namespace remoting
|