File: databaseversionframe.h

package info (click to toggle)
signalbackup-tools 20250313.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,752 kB
  • sloc: cpp: 47,042; sh: 477; ansic: 399; ruby: 19; makefile: 3
file content (195 lines) | stat: -rw-r--r-- 5,895 bytes parent folder | download
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
  Copyright (C) 2019-2025  Selwin van Dijk

  This file is part of signalbackup-tools.

  signalbackup-tools is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  signalbackup-tools is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with signalbackup-tools.  If not, see <https://www.gnu.org/licenses/>.
*/

#ifndef DATABASEVERSIONFRAME_H_
#define DATABASEVERSIONFRAME_H_

#include <string_view>

#include "../common_be.h"
#include "../backupframe/backupframe.h"

class DatabaseVersionFrame : public BackupFrame
{
  enum FIELD: unsigned int
  {
    INVALID = 0,
    VERSION = 1 // uint32
  };

  static Registrar s_registrar;
 public:
  inline explicit DatabaseVersionFrame(uint64_t count = 0);
  inline DatabaseVersionFrame(unsigned char const *bytes, size_t length, uint64_t count = 0);
  inline virtual ~DatabaseVersionFrame() override = default;
  inline virtual DatabaseVersionFrame *clone() const override;
  inline virtual DatabaseVersionFrame *move_clone() override;
  inline static BackupFrame *create(unsigned char const *bytes, size_t length, uint64_t count = 0);
  inline virtual FRAMETYPE frameType() const override;
  inline uint32_t version() const;
  inline virtual void printInfo() const override;
  inline virtual std::pair<unsigned char *, uint64_t> getData() const override;
  inline virtual bool validate(uint64_t) const override;
  inline std::string getHumanData() const override;
  //inline virtual bool setNewData(std::string const &field, std::string const &data) override;
  inline unsigned int getField(std::string_view const &str) const;
 private:
  inline uint64_t dataSize() const override;
};

inline DatabaseVersionFrame::DatabaseVersionFrame(uint64_t count)
  :
  BackupFrame(count)
{}

inline DatabaseVersionFrame::DatabaseVersionFrame(unsigned char const *bytes, size_t length, uint64_t count)
  :
  BackupFrame(bytes, length, count)
{
  //std::cout << "CREATING DATABASEVERSIONFRAME" << std::endl;
}

inline DatabaseVersionFrame *DatabaseVersionFrame::clone() const
{
  return new DatabaseVersionFrame(*this);
}

inline DatabaseVersionFrame *DatabaseVersionFrame::move_clone()
{
  return new DatabaseVersionFrame(std::move(*this));
}

inline BackupFrame *DatabaseVersionFrame::create(unsigned char const *bytes, size_t length, uint64_t count) // static
{
  return new DatabaseVersionFrame(bytes, length, count);
}

inline BackupFrame::FRAMETYPE DatabaseVersionFrame::frameType() const // virtual
{
  return FRAMETYPE::DATABASEVERSION;
}

inline uint32_t DatabaseVersionFrame::version() const
{
  for (auto const &p : d_framedata)
    if (std::get<0>(p) == FIELD::VERSION)
      return bytesToUint32(std::get<1>(p), std::get<2>(p));
  return 0;
}

inline void DatabaseVersionFrame::printInfo() const
{
  Logger::message("Frame number: ", d_count);
  Logger::message("        Size: ", d_constructedsize);
  Logger::message("        Type: DATABASEVERSION");
  Logger::message("         - Version: ", version());
}

inline uint64_t DatabaseVersionFrame::dataSize() const
{
  uint64_t size = 0;
  for (auto const &p : d_framedata)
  {
    switch (std::get<0>(p))
    {
      case FIELD::VERSION:
      {
        uint32_t value = bytesToUint32(std::get<1>(p), std::get<2>(p));
        size += varIntSize(value);
        size += 1; // for fieldtype + wiretype
      }
    }
  }

  // for size of this frame.
  size += varIntSize(size);
  return ++size;  // for frametype and wiretype
}

inline std::pair<unsigned char *, uint64_t> DatabaseVersionFrame::getData() const
{

  // first write the frametype as and the wiretype
  // 0b01111000 == fieldnumber (== 5 for databaseversionframe)
  // 0b00000111 == wiretype (== 2, lengthdelim, for all frames except endframe which is bool?)

  uint64_t size = dataSize();
  unsigned char *data = new unsigned char[size];
  uint64_t datapos = 0;

  datapos += setFieldAndWire(FRAMETYPE::DATABASEVERSION, WIRETYPE::LENGTHDELIM, data + datapos);
  datapos += setFrameSize(size, data + datapos);

  for (auto const &fd : d_framedata)
  {
    //switch (std::get<0>(p))
      //{
      //case FIELD::VERSION:
      //uint32_t value = bytesToUint32(std::get<1>(p), std::get<2>(p));
      //datapos += setFieldAndWire(FIELD::VERSION, WIRETYPE::VARINT, data + datapos);
      //datapos += putVarInt(value, data + datapos);
    datapos += putVarIntType(fd, data + datapos);
      //}
  }

  //std::cout << bepaald::bytesToHexString(data, size)  << std::endl;

  return {data, size};
}

inline bool DatabaseVersionFrame::validate(uint64_t) const
{
  if (d_framedata.empty())
    return false;

  for (auto const &p : d_framedata)
  {
    if (std::get<0>(p) != FIELD::VERSION)
      return false;
  }
  return true;
}

inline std::string DatabaseVersionFrame::getHumanData() const
{
  std::string data;
  for (auto const &p : d_framedata)
    if (std::get<0>(p) == FIELD::VERSION)
      data += "VERSION:uint32:" + bepaald::toString(version()) + "\n";
  return data;
}
/*
inline bool DatabaseVersionFrame::setNewData(std::string const &field, std::string const &data)
{
  if (field != "VERSION")
    return false;
  std::pair<unsigned char *, size_t> decdata = numToData(bepaald::swap_endian(std::stoul(data)));
  d_framedata.emplace_back(std::make_tuple(FIELD::VERSION, decdata.first, decdata.second));
  return true;
}
*/

inline unsigned int DatabaseVersionFrame::getField(std::string_view const &str) const
{
  if (str == "VERSION")
    return FIELD::VERSION;
  return FIELD::INVALID;
}

#endif