// Copyright (c) 2012 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_FAKE_SIGNAL_STRATEGY_H_ #define REMOTING_JINGLE_GLUE_FAKE_SIGNAL_STRATEGY_H_ #include #include #include #include "base/observer_list.h" #include "base/memory/weak_ptr.h" #include "base/threading/non_thread_safe.h" #include "remoting/jingle_glue/iq_sender.h" #include "remoting/jingle_glue/signal_strategy.h" namespace remoting { class FakeSignalStrategy : public SignalStrategy, public base::NonThreadSafe { public: static void Connect(FakeSignalStrategy* peer1, FakeSignalStrategy* peer2); FakeSignalStrategy(const std::string& jid); virtual ~FakeSignalStrategy(); const std::list& received_messages() { return received_messages_; } // SignalStrategy interface. virtual void Connect() OVERRIDE; virtual void Disconnect() OVERRIDE; virtual State GetState() const OVERRIDE; virtual Error GetError() const OVERRIDE; virtual std::string GetLocalJid() const OVERRIDE; virtual void AddListener(Listener* listener) OVERRIDE; virtual void RemoveListener(Listener* listener) OVERRIDE; virtual bool SendStanza(scoped_ptr stanza) OVERRIDE; virtual std::string GetNextId() OVERRIDE; private: // Called by the |peer_|. Takes ownership of |stanza|. void OnIncomingMessage(scoped_ptr stanza); void DeliverIncomingMessages(); std::string jid_; FakeSignalStrategy* peer_; ObserverList listeners_; int last_id_; // All received messages, includes thouse still in |pending_messages_|. std::list received_messages_; // Queue of messages that have yet to be delivered to observers. std::queue pending_messages_; base::WeakPtrFactory weak_factory_; DISALLOW_COPY_AND_ASSIGN(FakeSignalStrategy); }; } // namespace remoting #endif // REMOTING_JINGLE_GLUE_FAKE_SIGNAL_STRATEGY_H_