summaryrefslogtreecommitdiffstats
blob: dff941f00c067ddd71d55dd94b914475b2a25f1a (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
 * Copyright (c) 2012 Yoann Blein
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#include <Swiften/Network/BoostUDPSocket.h>

#include <Swiften/Base/Log.h>
#include <Swiften/Base/Algorithm.h>
#include <Swiften/EventLoop/EventLoop.h>
#include <Swiften/Base/ByteArray.h>
#include <Swiften/Network/HostAddressPort.h>
#include <Swiften/Base/SafeAllocator.h>

#include <boost/bind.hpp>
#include <boost/asio/placeholders.hpp>

namespace Swift {

static const size_t BUFFER_SIZE = 4096;

// -----------------------------------------------------------------------------

// A reference-counted non-modifiable buffer class.
class SharedBuffer {
	public:
		SharedBuffer(const SafeByteArray& data) :
			data_(new std::vector<char, SafeAllocator<char> >(data.begin(), data.end())),
			buffer_(boost::asio::buffer(*data_)) {
		}

		// ConstBufferSequence requirements.
		typedef boost::asio::const_buffer value_type;
		typedef const boost::asio::const_buffer* const_iterator;
		const boost::asio::const_buffer* begin() const { return &buffer_; }
		const boost::asio::const_buffer* end() const { return &buffer_ + 1; }

	private:
		boost::shared_ptr< std::vector<char, SafeAllocator<char> > > data_;
		boost::asio::const_buffer buffer_;
};

// -----------------------------------------------------------------------------

BoostUDPSocket::BoostUDPSocket(boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) :
	eventLoop(eventLoop), ioService(ioService), socket_(*ioService), sending_(false)
{
}

BoostUDPSocket::~BoostUDPSocket()
{
}

void BoostUDPSocket::bind(int port)
{
	if (!socket_.is_open())
		socket_.open(boost::asio::ip::udp::v4());
	socket_.bind(boost::asio::ip::udp::endpoint(boost::asio::ip::udp::v4(), port));
}

void BoostUDPSocket::listen()
{
	if (!socket_.is_open())
		socket_.open(boost::asio::ip::udp::v4());
	doRead();
}

void BoostUDPSocket::connect(const HostAddressPort &address)
{
	if (!socket_.is_open())
		socket_.open(boost::asio::ip::udp::v4());
	socket_.connect(address.toEndpoint()); // TODO: handle errors
	eventLoop->postEvent(boost::bind(boost::ref(onConnected)), shared_from_this());
}

void BoostUDPSocket::connectToFirstIncoming()
{
	boost::shared_ptr<SafeByteArray> buf = boost::make_shared<SafeByteArray>(1);
	socket_.async_receive_from(
				boost::asio::buffer(*buf),
				remoteEndpoint_,
				boost::bind(&BoostUDPSocket::handleFirstRead, shared_from_this(), boost::asio::placeholders::error));
}

void BoostUDPSocket::close() {
	boost::system::error_code errorCode;
	socket_.shutdown(boost::asio::ip::udp::socket::shutdown_send, errorCode);
	socket_.close();
}

void BoostUDPSocket::send(const SafeByteArray& data)
{
	boost::lock_guard<boost::mutex> lock(sendMutex_);
	if (!sending_) {
		sending_ = true;
		doSend(data);
	} else {
		append(sendQueue_, data);
	}
}

void BoostUDPSocket::doSend(const SafeByteArray& data)
{
	socket_.async_send(SharedBuffer(data), boost::bind(&BoostUDPSocket::handleDataWritten, shared_from_this(), boost::asio::placeholders::error));
}

void BoostUDPSocket::doRead()
{
	readBuffer_ = boost::make_shared<SafeByteArray>(BUFFER_SIZE);
	socket_.async_receive(
				boost::asio::buffer(*readBuffer_),
				boost::bind(&BoostUDPSocket::handleSocketRead, shared_from_this(), boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
}

void BoostUDPSocket::handleSocketRead(const boost::system::error_code& error, size_t bytesTransferred)
{
	SWIFT_LOG(debug) << "Socket read " << error << std::endl;
	if (!error) {
		readBuffer_->resize(bytesTransferred);
		eventLoop->postEvent(boost::bind(boost::ref(onDataRead), readBuffer_), shared_from_this());
		doRead();
	}
//	else if (/*error == boost::asio::error::eof ||*/ error == boost::asio::error::operation_aborted) {
//		eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), boost::optional<Error>()), shared_from_this());
//	}
//	else {
//		eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), ReadError), shared_from_this());
	//	}
}

void BoostUDPSocket::handleFirstRead(const boost::system::error_code &error)
{
	if (!error) {
		socket_.connect(remoteEndpoint_); // TODO: handle errors
		eventLoop->postEvent(boost::bind(boost::ref(onConnected)), shared_from_this());
	}
}

void BoostUDPSocket::handleDataWritten(const boost::system::error_code& error)
{
	SWIFT_LOG(debug) << "Data written " << error << std::endl;

	//	if (!error) {
	//		eventLoop->postEvent(boost::ref(onDataWritten), shared_from_this());
	//	}
	//	else if (/*error == boost::asio::error::eof || */error == boost::asio::error::operation_aborted) {
	//		eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), boost::optional<Error>()), shared_from_this());
	//	}
	//	else {
	//		eventLoop->postEvent(boost::bind(boost::ref(onDisconnected), WriteError), shared_from_this());
	//	}

	boost::lock_guard<boost::mutex> lock(sendMutex_);
	if (sendQueue_.empty()) {
		sending_ = false;
	} else {
		doSend(sendQueue_);
		sendQueue_.clear();
	}
}

}