2013-07-10 02:45:36 +02:00
|
|
|
/*
|
|
|
|
* libjingle
|
|
|
|
* Copyright 2008 Google Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TALK_P2P_BASE_TESTRELAYSERVER_H_
|
|
|
|
#define TALK_P2P_BASE_TESTRELAYSERVER_H_
|
|
|
|
|
2014-08-13 19:26:08 +02:00
|
|
|
#include "talk/p2p/base/relayserver.h"
|
2014-07-29 19:36:52 +02:00
|
|
|
#include "webrtc/base/asynctcpsocket.h"
|
|
|
|
#include "webrtc/base/scoped_ptr.h"
|
|
|
|
#include "webrtc/base/sigslot.h"
|
2014-08-13 19:26:08 +02:00
|
|
|
#include "webrtc/base/socketadapters.h"
|
2014-07-29 19:36:52 +02:00
|
|
|
#include "webrtc/base/thread.h"
|
2013-07-10 02:45:36 +02:00
|
|
|
|
|
|
|
namespace cricket {
|
|
|
|
|
|
|
|
// A test relay server. Useful for unit tests.
|
|
|
|
class TestRelayServer : public sigslot::has_slots<> {
|
|
|
|
public:
|
2014-07-29 19:36:52 +02:00
|
|
|
TestRelayServer(rtc::Thread* thread,
|
|
|
|
const rtc::SocketAddress& udp_int_addr,
|
|
|
|
const rtc::SocketAddress& udp_ext_addr,
|
|
|
|
const rtc::SocketAddress& tcp_int_addr,
|
|
|
|
const rtc::SocketAddress& tcp_ext_addr,
|
|
|
|
const rtc::SocketAddress& ssl_int_addr,
|
|
|
|
const rtc::SocketAddress& ssl_ext_addr)
|
2013-07-10 02:45:36 +02:00
|
|
|
: server_(thread) {
|
2014-07-29 19:36:52 +02:00
|
|
|
server_.AddInternalSocket(rtc::AsyncUDPSocket::Create(
|
2013-07-10 02:45:36 +02:00
|
|
|
thread->socketserver(), udp_int_addr));
|
2014-07-29 19:36:52 +02:00
|
|
|
server_.AddExternalSocket(rtc::AsyncUDPSocket::Create(
|
2013-07-10 02:45:36 +02:00
|
|
|
thread->socketserver(), udp_ext_addr));
|
|
|
|
|
|
|
|
tcp_int_socket_.reset(CreateListenSocket(thread, tcp_int_addr));
|
|
|
|
tcp_ext_socket_.reset(CreateListenSocket(thread, tcp_ext_addr));
|
|
|
|
ssl_int_socket_.reset(CreateListenSocket(thread, ssl_int_addr));
|
|
|
|
ssl_ext_socket_.reset(CreateListenSocket(thread, ssl_ext_addr));
|
|
|
|
}
|
|
|
|
int GetConnectionCount() const {
|
|
|
|
return server_.GetConnectionCount();
|
|
|
|
}
|
2014-07-29 19:36:52 +02:00
|
|
|
rtc::SocketAddressPair GetConnection(int connection) const {
|
2013-07-10 02:45:36 +02:00
|
|
|
return server_.GetConnection(connection);
|
|
|
|
}
|
2014-07-29 19:36:52 +02:00
|
|
|
bool HasConnection(const rtc::SocketAddress& address) const {
|
2013-07-10 02:45:36 +02:00
|
|
|
return server_.HasConnection(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-07-29 19:36:52 +02:00
|
|
|
rtc::AsyncSocket* CreateListenSocket(rtc::Thread* thread,
|
|
|
|
const rtc::SocketAddress& addr) {
|
|
|
|
rtc::AsyncSocket* socket =
|
2013-07-10 02:45:36 +02:00
|
|
|
thread->socketserver()->CreateAsyncSocket(addr.family(), SOCK_STREAM);
|
|
|
|
socket->Bind(addr);
|
|
|
|
socket->Listen(5);
|
|
|
|
socket->SignalReadEvent.connect(this, &TestRelayServer::OnAccept);
|
|
|
|
return socket;
|
|
|
|
}
|
2014-07-29 19:36:52 +02:00
|
|
|
void OnAccept(rtc::AsyncSocket* socket) {
|
2013-07-10 02:45:36 +02:00
|
|
|
bool external = (socket == tcp_ext_socket_.get() ||
|
|
|
|
socket == ssl_ext_socket_.get());
|
|
|
|
bool ssl = (socket == ssl_int_socket_.get() ||
|
|
|
|
socket == ssl_ext_socket_.get());
|
2014-07-29 19:36:52 +02:00
|
|
|
rtc::AsyncSocket* raw_socket = socket->Accept(NULL);
|
2013-07-10 02:45:36 +02:00
|
|
|
if (raw_socket) {
|
2014-07-29 19:36:52 +02:00
|
|
|
rtc::AsyncTCPSocket* packet_socket = new rtc::AsyncTCPSocket(
|
2013-07-10 02:45:36 +02:00
|
|
|
(!ssl) ? raw_socket :
|
2014-07-29 19:36:52 +02:00
|
|
|
new rtc::AsyncSSLServerSocket(raw_socket), false);
|
2013-07-10 02:45:36 +02:00
|
|
|
if (!external) {
|
|
|
|
packet_socket->SignalClose.connect(this,
|
|
|
|
&TestRelayServer::OnInternalClose);
|
|
|
|
server_.AddInternalSocket(packet_socket);
|
|
|
|
} else {
|
|
|
|
packet_socket->SignalClose.connect(this,
|
|
|
|
&TestRelayServer::OnExternalClose);
|
|
|
|
server_.AddExternalSocket(packet_socket);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-07-29 19:36:52 +02:00
|
|
|
void OnInternalClose(rtc::AsyncPacketSocket* socket, int error) {
|
2013-07-10 02:45:36 +02:00
|
|
|
server_.RemoveInternalSocket(socket);
|
|
|
|
}
|
2014-07-29 19:36:52 +02:00
|
|
|
void OnExternalClose(rtc::AsyncPacketSocket* socket, int error) {
|
2013-07-10 02:45:36 +02:00
|
|
|
server_.RemoveExternalSocket(socket);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
cricket::RelayServer server_;
|
2014-07-29 19:36:52 +02:00
|
|
|
rtc::scoped_ptr<rtc::AsyncSocket> tcp_int_socket_;
|
|
|
|
rtc::scoped_ptr<rtc::AsyncSocket> tcp_ext_socket_;
|
|
|
|
rtc::scoped_ptr<rtc::AsyncSocket> ssl_int_socket_;
|
|
|
|
rtc::scoped_ptr<rtc::AsyncSocket> ssl_ext_socket_;
|
2013-07-10 02:45:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cricket
|
|
|
|
|
|
|
|
#endif // TALK_P2P_BASE_TESTRELAYSERVER_H_
|