-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathConnectionImpl.h
56 lines (41 loc) · 1.08 KB
/
ConnectionImpl.h
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
#include <iostream>
#include <thread>
#include <future>
#include <boost/utility/string_ref.hpp>
#include <boost/uuid/uuid_generators.hpp> // generators
#include "restc-cpp/restc-cpp.h"
#include "restc-cpp/Socket.h"
#include "restc-cpp/logging.h"
using namespace std;
namespace restc_cpp {
std::ostream& Connection::Print(std::ostream& o) const {
return o << "{Connection "
<< GetId()
<< ' '
<< GetSocket()
<< '}';
}
class ConnectionImpl : public Connection {
public:
ConnectionImpl(std::unique_ptr<Socket> socket)
: socket_{std::move(socket)}
{
RESTC_CPP_LOG_TRACE_(*this << " is constructed.");
}
~ConnectionImpl() {
RESTC_CPP_LOG_TRACE_(*this << " is dead.");
}
Socket& GetSocket() override {
return *socket_;
}
const Socket& GetSocket() const override {
return *socket_;
}
boost::uuids::uuid GetId() const override {
return id_;
}
private:
std::unique_ptr<Socket> socket_;
const boost::uuids::uuid id_ = boost::uuids::random_generator()();
};
} // restc_cpp