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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
/**********************************************************************
* File: serialis.h (Formerly serialmac.h)
* Description: Inline routines and macros for serialisation functions
* Author: Phil Cheatle
*
* (C) Copyright 1990, Hewlett-Packard Ltd.
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
** http://www.apache.org/licenses/LICENSE-2.0
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*
**********************************************************************/
#ifndef SERIALIS_H
#define SERIALIS_H
#include <tesseract/baseapi.h> // FileReader
#include <cstdint> // uint8_t
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <type_traits>
#include <vector> // std::vector
namespace tesseract {
// Return number of elements of an array.
template <typename T, size_t N>
constexpr size_t countof(T const (&)[N]) noexcept {
return N;
}
// Function to write a std::vector<char> to a whole file.
// Returns false on failure.
using FileWriter = bool (*)(const std::vector<char> &data, const char *filename);
TESS_API
bool LoadDataFromFile(const char *filename, std::vector<char> *data);
TESS_API
bool SaveDataToFile(const std::vector<char> &data, const char *filename);
// Deserialize data from file.
template <typename T>
bool DeSerialize(FILE *fp, T *data, size_t n = 1) {
return fread(data, sizeof(T), n, fp) == n;
}
// Serialize data to file.
template <typename T>
bool Serialize(FILE *fp, const T *data, size_t n = 1) {
return fwrite(data, sizeof(T), n, fp) == n;
}
// Simple file class.
// Allows for portable file input from memory and from foreign file systems.
class TESS_API TFile {
public:
TFile();
~TFile();
/* willus mod */
char tfile_filename[512];
// All the Open methods load the whole file into memory for reading.
// Opens a file with a supplied reader, or nullptr to use the default.
// Note that mixed read/write is not supported.
bool Open(const char *filename, FileReader reader);
// From an existing memory buffer.
bool Open(const char *data, size_t size);
// From an open file and an end offset.
bool Open(FILE *fp, int64_t end_offset);
// Sets the value of the swap flag, so that FReadEndian does the right thing.
void set_swap(bool value) {
swap_ = value;
}
// Deserialize data.
bool DeSerializeSize(int32_t *data);
bool DeSerializeSkip(size_t size = 1);
bool DeSerialize(std::string &data);
bool DeSerialize(std::vector<char> &data);
//bool DeSerialize(std::vector<std::string> &data);
template <typename T>
bool DeSerialize(T *data, size_t count = 1) {
return FReadEndian(data, sizeof(T), count) == count;
}
template <typename T>
bool DeSerialize(std::vector<T> &data) {
uint32_t size;
if (!DeSerialize(&size)) {
return false;
} else if (size == 0) {
data.clear();
} else if (size > 50000000) {
// Arbitrarily limit the number of elements to protect against bad data.
return false;
} else if constexpr (std::is_same<T, std::string>::value) {
// Deserialize a string.
// TODO: optimize.
data.resize(size);
for (auto &item : data) {
if (!DeSerialize(item)) {
return false;
}
}
} else if constexpr (std::is_class<T>::value) {
// Deserialize a tesseract class.
// TODO: optimize.
data.resize(size);
for (auto &item : data) {
if (!item.DeSerialize(this)) {
return false;
}
}
} else if constexpr (std::is_pointer<T>::value) {
// Deserialize pointers.
// TODO: optimize.
data.resize(size);
for (uint32_t i = 0; i < size; i++) {
uint8_t non_null;
if (!DeSerialize(&non_null)) {
return false;
}
if (non_null) {
typedef typename std::remove_pointer<T>::type ST;
auto item = new ST;
if (!item->DeSerialize(this)) {
delete item;
return false;
}
data[i] = item;
}
}
} else {
// Deserialize a non-class.
// TODO: optimize.
data.resize(size);
return DeSerialize(&data[0], size);
}
return true;
}
// Serialize data.
bool Serialize(const std::string &data);
bool Serialize(const std::vector<char> &data);
template <typename T>
bool Serialize(const T *data, size_t count = 1) {
return FWrite(data, sizeof(T), count) == count;
}
template <typename T>
bool Serialize(const std::vector<T> &data) {
// Serialize number of elements first.
uint32_t size = data.size();
if (!Serialize(&size)) {
return false;
} else if constexpr (std::is_same<T, std::string>::value) {
// Serialize strings.
for (auto &&string : data) {
if (!Serialize(string)) {
return false;
}
}
} else if constexpr (std::is_class<T>::value) {
// Serialize a tesseract class.
for (auto &item : data) {
if (!item.Serialize(this)) {
return false;
}
}
} else if constexpr (std::is_pointer<T>::value) {
// Serialize pointers.
for (auto &item : data) {
uint8_t non_null = (item != nullptr);
if (!Serialize(&non_null)) {
return false;
}
if (non_null) {
if (!item->Serialize(this)) {
return false;
}
}
}
} else if (size > 0) {
// Serialize a non-class.
return Serialize(&data[0], size);
}
return true;
}
// Skip data.
bool Skip(size_t count);
// Reads a line like fgets. Returns nullptr on EOF, otherwise buffer.
// Reads at most buffer_size bytes, including '\0' terminator, even if
// the line is longer. Does nothing if buffer_size <= 0.
char *FGets(char *buffer, int buffer_size);
// Replicates fread, followed by a swap of the bytes if needed, returning the
// number of items read. If swap_ is true then the count items will each have
// size bytes reversed.
size_t FReadEndian(void *buffer, size_t size, size_t count);
// Replicates fread, returning the number of items read.
size_t FRead(void *buffer, size_t size, size_t count);
// Resets the TFile as if it has been Opened, but nothing read.
// Only allowed while reading!
void Rewind();
// Open for writing. Either supply a non-nullptr data with OpenWrite before
// calling FWrite, (no close required), or supply a nullptr data to OpenWrite
// and call CloseWrite to write to a file after the FWrites.
void OpenWrite(std::vector<char> *data);
bool CloseWrite(const char *filename, FileWriter writer);
// Replicates fwrite, returning the number of items written.
// To use fprintf, use snprintf and FWrite.
size_t FWrite(const void *buffer, size_t size, size_t count);
private:
// The buffered data from the file.
std::vector<char> *data_ = nullptr;
// The number of bytes used so far.
unsigned offset_ = 0;
// True if the data_ pointer is owned by *this.
bool data_is_owned_ = false;
// True if the TFile is open for writing.
bool is_writing_ = false;
// True if bytes need to be swapped in FReadEndian.
bool swap_ = false;
};
} // namespace tesseract.
#endif
|