blob: be95819b334a07c500cd69868bf59ac2f9c1ff36 (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
// 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/jingle_glue/fake_signal_strategy.h"
#include "base/bind.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/stl_util.h"
#include "base/string_number_conversions.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
#include "third_party/libjingle/source/talk/xmpp/constants.h"
namespace remoting {
// static
void FakeSignalStrategy::Connect(FakeSignalStrategy* peer1,
FakeSignalStrategy* peer2) {
peer1->peer_ = peer2;
peer2->peer_ = peer1;
}
FakeSignalStrategy::FakeSignalStrategy(const std::string& jid)
: jid_(jid),
peer_(NULL),
listener_(NULL),
last_id_(0),
ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)) {
}
FakeSignalStrategy::~FakeSignalStrategy() {
while (!pending_messages_.empty()) {
delete pending_messages_.front();
pending_messages_.pop();
}
}
void FakeSignalStrategy::Init(StatusObserver* observer) {
observer->OnStateChange(StatusObserver::START);
observer->OnStateChange(StatusObserver::CONNECTING);
observer->OnJidChange(jid_);
observer->OnStateChange(StatusObserver::CONNECTED);
}
void FakeSignalStrategy::Close() {
DCHECK(CalledOnValidThread());
listener_ = NULL;
}
void FakeSignalStrategy::SetListener(Listener* listener) {
DCHECK(CalledOnValidThread());
// Don't overwrite an listener without explicitly going
// through "NULL" first.
DCHECK(listener_ == NULL || listener == NULL);
listener_ = listener;
}
void FakeSignalStrategy::SendStanza(buzz::XmlElement* stanza) {
DCHECK(CalledOnValidThread());
stanza->SetAttr(buzz::QN_FROM, jid_);
if (peer_) {
peer_->OnIncomingMessage(stanza);
} else {
delete stanza;
}
}
std::string FakeSignalStrategy::GetNextId() {
++last_id_;
return base::IntToString(last_id_);
}
IqRequest* FakeSignalStrategy::CreateIqRequest() {
DCHECK(CalledOnValidThread());
return new JavascriptIqRequest(this, &iq_registry_);
}
void FakeSignalStrategy::OnIncomingMessage(buzz::XmlElement* stanza) {
pending_messages_.push(stanza);
MessageLoop::current()->PostTask(
FROM_HERE, task_factory_.NewRunnableMethod(
&FakeSignalStrategy::DeliverIncomingMessages));
}
void FakeSignalStrategy::DeliverIncomingMessages() {
while (!pending_messages_.empty()) {
buzz::XmlElement* stanza = pending_messages_.front();
const std::string& to_field = stanza->Attr(buzz::QN_TO);
if (to_field != jid_) {
LOG(WARNING) << "Dropping stanza that is addressed to " << to_field
<< ". Local jid: " << jid_
<< ". Message content: " << stanza->Str();
return;
}
if (listener_)
listener_->OnIncomingStanza(stanza);
iq_registry_.OnIncomingStanza(stanza);
pending_messages_.pop();
delete stanza;
}
}
} // namespace remoting
|