forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection.hpp
38 lines (31 loc) · 816 Bytes
/
connection.hpp
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
#pragma once
#include "coding/traffic.hpp"
#include <cstdint>
#include <memory>
#include <string>
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-copy"
#endif
#include <boost/circular_buffer.hpp>
#ifdef __clang__
#pragma clang diagnostic pop
#endif
namespace platform { class Socket; }
namespace tracking
{
using DataPoint = coding::TrafficGPSEncoder::DataPoint;
class Connection final
{
public:
Connection(std::unique_ptr<platform::Socket> socket, std::string const & host, uint16_t port,
bool isHistorical);
bool Reconnect();
void Shutdown();
bool Send(boost::circular_buffer<DataPoint> const & points);
private:
std::unique_ptr<platform::Socket> m_socket;
std::string const m_host;
uint16_t const m_port;
};
} // namespace tracking