Welcome to mirror list, hosted at ThFree Co, Russian Federation.

protocol.hpp « tracking - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b15b7bdeb0ca99695d65abced82550ec2f4594b (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
#pragma once

#include "coding/traffic.hpp"

#include "std/string.hpp"
#include "std/vector.hpp"

#include "boost/circular_buffer.hpp"

namespace tracking
{
class Protocol
{
public:
  using Encoder = coding::TrafficGPSEncoder;
  using DataElements = boost::circular_buffer<Encoder::DataPoint>;

  static uint8_t const kOk[4];
  static uint8_t const kFail[4];

  enum class PacketType
  {
    AuthV0 = 0x81,
    DataV0 = 0x82,

    CurrentAuth = AuthV0,
    CurrentData = DataV0
  };

  static vector<uint8_t> CreateAuthPacket(string const & clientId);
  static vector<uint8_t> CreateDataPacket(DataElements const & points);

private:
  static void InitHeader(vector<uint8_t> & packet, PacketType type, uint32_t payloadSize);
};

string DebugPrint(Protocol::PacketType type);
}  // namespace tracking