blob: 5cc8b1dab20b4ffc0d241b427c994e8a141b5da6 (
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
|
/*
* Copyright (c) 2012 Yoann Blein
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#pragma once
#include <Swiften/Network/UDPSocket.h>
#include <Swiften/EventLoop/EventOwner.h>
//#include <Swiften/Base/SafeByteArray.h>
#include <boost/asio/io_service.hpp>
#include <boost/asio/ip/udp.hpp>
#include <boost/enable_shared_from_this.hpp>
#include <boost/thread/mutex.hpp>
namespace boost {
class thread;
namespace system {
class error_code;
}
}
namespace Swift {
class EventLoop;
class HostAddressPort;
class BoostUDPSocket : public UDPSocket, public EventOwner, public boost::enable_shared_from_this<BoostUDPSocket> {
public:
typedef boost::shared_ptr<BoostUDPSocket> ref;
virtual ~BoostUDPSocket();
static ref create(boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) {
return ref(new BoostUDPSocket(ioService, eventLoop));
}
virtual void bind(int port);
virtual void listen();
virtual void connect(const HostAddressPort& address);
virtual void connectToFirstIncoming();
virtual void send(const SafeByteArray& data);
virtual void close();
boost::asio::ip::udp::socket& getSocket() {
return socket_;
}
private:
BoostUDPSocket(boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop);
void handleSocketRead(const boost::system::error_code& error, size_t bytesTransferred);
void handleFirstRead(const boost::system::error_code& error);
void handleDataWritten(const boost::system::error_code& error);
void doRead();
void doSend(const SafeByteArray& data);
private:
EventLoop* eventLoop;
boost::shared_ptr<boost::asio::io_service> ioService;
boost::asio::ip::udp::socket socket_;
boost::shared_ptr<SafeByteArray> readBuffer_;
boost::mutex sendMutex_;
bool sending_;
SafeByteArray sendQueue_;
boost::asio::ip::udp::endpoint remoteEndpoint_;
};
}
|