blob: 4c8d991c7df56fa266ceda905c48d00bcc10de5d [file] [log] [blame]
// 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_JINGLE_GLUE_JAVASCRIPT_SIGNAL_STRATEGY_H_
#define REMOTING_JINGLE_GLUE_JAVASCRIPT_SIGNAL_STRATEGY_H_
#include "remoting/jingle_glue/signal_strategy.h"
#include <vector>
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "remoting/jingle_glue/xmpp_proxy.h"
namespace remoting {
class XmppProxy;
class JavascriptSignalStrategy : public SignalStrategy,
public XmppProxy::ResponseCallback,
public base::NonThreadSafe {
public:
explicit JavascriptSignalStrategy(const std::string& your_jid);
virtual ~JavascriptSignalStrategy();
void AttachXmppProxy(scoped_refptr<XmppProxy> xmpp_proxy);
// SignalStrategy interface.
virtual void Init(StatusObserver* observer) OVERRIDE;
virtual void Close() OVERRIDE;
virtual void AddListener(Listener* listener) OVERRIDE;
virtual void RemoveListener(Listener* listener) OVERRIDE;
virtual bool SendStanza(buzz::XmlElement* stanza) OVERRIDE;
virtual std::string GetNextId() OVERRIDE;
// XmppProxy::ResponseCallback interface.
virtual void OnIq(const std::string& stanza);
private:
std::string your_jid_;
scoped_refptr<XmppProxy> xmpp_proxy_;
std::vector<Listener*> listeners_;
int last_id_;
DISALLOW_COPY_AND_ASSIGN(JavascriptSignalStrategy);
};
} // namespace remoting
#endif // REMOTING_JINGLE_GLUE_JAVASCRIPT_SIGNAL_STRATEGY_H_