blob: a754bb00e9d84e09573f1fa5b43fcbfe1cb89885 (
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
|
// 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/javascript_signal_strategy.h"
#include <algorithm>
#include "base/logging.h"
#include "remoting/jingle_glue/iq_request.h"
#include "remoting/jingle_glue/jingle_signaling_connector.h"
#include "remoting/jingle_glue/xmpp_proxy.h"
#include "third_party/libjingle/source/talk/xmllite/xmlelement.h"
namespace remoting {
JavascriptSignalStrategy::JavascriptSignalStrategy(const std::string& your_jid)
: your_jid_(your_jid),
listener_(NULL) {
}
JavascriptSignalStrategy::~JavascriptSignalStrategy() {
jingle_signaling_connector_.reset();
DCHECK(listener_ == NULL);
}
void JavascriptSignalStrategy::AttachXmppProxy(
scoped_refptr<XmppProxy> xmpp_proxy) {
xmpp_proxy_ = xmpp_proxy;
xmpp_proxy_->AttachCallback(AsWeakPtr());
}
void JavascriptSignalStrategy::Init(StatusObserver* observer) {
DCHECK(CalledOnValidThread());
// Blast through each state since for a JavascriptSignalStrategy, we're
// already connected.
//
// TODO(ajwong): Clarify the status API contract to see if we have to actually
// walk through each state.
observer->OnStateChange(StatusObserver::START);
observer->OnStateChange(StatusObserver::CONNECTING);
observer->OnJidChange(your_jid_);
observer->OnStateChange(StatusObserver::CONNECTED);
}
void JavascriptSignalStrategy::SetListener(Listener* listener) {
DCHECK(CalledOnValidThread());
// Don't overwrite an listener without explicitly going
// through "NULL" first.
DCHECK(listener_ == NULL || listener == NULL);
listener_ = listener;
}
void JavascriptSignalStrategy::SendStanza(buzz::XmlElement* stanza) {
DCHECK(CalledOnValidThread());
xmpp_proxy_->SendIq(stanza->Str());
delete stanza;
}
void JavascriptSignalStrategy::StartSession(
cricket::SessionManager* session_manager) {
DCHECK(CalledOnValidThread());
jingle_signaling_connector_.reset(
new JingleSignalingConnector(this, session_manager));
}
void JavascriptSignalStrategy::EndSession() {
DCHECK(CalledOnValidThread());
if (xmpp_proxy_) {
xmpp_proxy_->DetachCallback();
}
xmpp_proxy_ = NULL;
}
IqRequest* JavascriptSignalStrategy::CreateIqRequest() {
DCHECK(CalledOnValidThread());
return new JavascriptIqRequest(this, &iq_registry_);
}
void JavascriptSignalStrategy::OnIq(const std::string& stanza_str) {
scoped_ptr<buzz::XmlElement> stanza(buzz::XmlElement::ForStr(stanza_str));
if (!stanza.get()) {
LOG(WARNING) << "Malformed XMPP stanza received: " << stanza_str;
return;
}
if (listener_)
listener_->OnIncomingStanza(stanza.get());
iq_registry_.OnIncomingStanza(stanza.get());
}
} // namespace remoting
|