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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
|
/* M-runtime for c++
* Copyright (C) 2005-2008 Vladimir Menshakov
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _WINDOWS
# include <arpa/inet.h>
#else
# include <winsock2.h>
# ifndef snprintf
# define snprintf _snprintf
# endif
#endif
#include "serializator.h"
#include "chunk.h"
#include <assert.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "exception.h"
#ifdef _WINDOWS
# ifndef uint32_t
# define uint32_t unsigned __int32
# endif
# ifndef uint16_t
# define uint16_t unsigned __int16
# endif
#endif
#ifdef _WINDOWS
# include <float.h>
# include <limits>
# define isnan(f) _isnan(f)
# define isinf(f) ((_fpclass(f) == _FPCLASS_PINF)? 1: ((_fpclass(f) == _FPCLASS_NINF)? -1: 0))
# define INFINITY (std::numeric_limits<float>::infinity())
# define NAN (std::numeric_limits<float>::quiet_NaN())
#endif
//#define IEEE_754_SERIALIZATION
//define it to use machine/compiler specific binary format
#include <math.h>
using namespace mrt;
#ifdef DEBUG
#define ASSERT_POS(size) assert(_pos + (size) <= _data->get_size())
#else
#define ASSERT_POS(size) if (_pos + (size) > _data->get_size()) \
throw_ex(("buffer overrun %u + %u > %u", (unsigned)_pos, (unsigned)(size), (unsigned)_data->get_size()))
#endif
//ugly hackish trick, upcast const pointer to non-const variant.
Serializator::Serializator() : _data(new mrt::Chunk), _pos(0), _owns_data(true) {}
Serializator::Serializator(const mrt::Chunk *chunk) : _data((mrt::Chunk *)chunk), _pos(0), _owns_data(false) {}
Serializator::~Serializator() {
if (_owns_data) {
delete _data;
_data = NULL;
}
}
bool Serializator::end() const {
return _pos >= _data->get_size();
}
void Serializator::add(const int n) {
//LOG_DEBUG(("added int %d", n));
unsigned char buf[sizeof(unsigned long)];
unsigned int x = (n >= 0)?n:-n;
unsigned int len;
unsigned char mask = (n >= 0)?0: 0x80;
assert(x >= 0);
//compact serialization for small numbers
if (x <= 0x3f) {
unsigned char *ptr = (unsigned char *) _data->reserve(1) + _pos++;
*ptr = mask | x;
return;
}
mask |= 0x40;
if (x <= 255) {
buf[0] = x;
len = 1;
} else if (x <= 65535) {
* (uint16_t *)buf = htons(x);
len = 2;
} else if (x <= 2147483647) {
* (uint32_t *)buf = htonl(x); //defined as uint32 even on 64bit arch
len = 4;
} else throw_ex(("implement me (64bit values serialization)"));
unsigned char *ptr = (unsigned char *) _data->reserve(1 + len) + _pos;
*ptr++ = mask | len;
memcpy(ptr, buf, len);
_pos += len + 1;
}
void Serializator::add(const unsigned int n) {
add((int)n);
}
void Serializator::get(unsigned int &n) const {
int *p = (int *)&n;
get(*p);
}
void Serializator::add(const bool b) {
//LOG_DEBUG(("added bool %c", b?'t':'f'));
add(b?1:0);
}
void Serializator::add(const std::string &str) {
//LOG_DEBUG(("added string %s", str.c_str()));
int size = str.size();
add(size);
unsigned char *ptr = (unsigned char *) _data->reserve(size) + _pos;
memcpy(ptr, str.c_str(), size);
_pos += size;
}
void Serializator::add(const Chunk &c) {
int size = c.get_size();
add(size);
if (size == 0)
return;
unsigned char *ptr = (unsigned char *) _data->reserve(size) + _pos;
memcpy(ptr, c.get_ptr(), size);
_pos += size;
}
void Serializator::add(const void *raw, const int size) {
add(size);
if (size == 0)
return;
unsigned char *ptr = (unsigned char *) _data->reserve(size) + _pos;
memcpy(ptr, raw, size);
_pos += size;
}
void Serializator::add(const float f) {
#ifdef IEEE_754_SERIALIZATION
add(&f, sizeof(f));
#else
{
if (f == 0) {
add(0);
return;
} else if (f == 1) {
add(-4);
return;
} else if (f == -1) {
add(-5);
return;
} else if (isnan(f)) {
add(-1); //magic! :)
return;
}
int f_inf = isinf(f);
if (f_inf != 0) {
add(f_inf > 0? -2: -3);
return; //magic values for nan
}
}
char buf[32];
char num[8];
int len = snprintf(buf, sizeof(buf), "%g", f);
assert(len >= 0 && len < (int)sizeof(buf));
memset(num, 0, sizeof(num));
for(int i = 0; i < len; ++i) {
char c = buf[i];
int idx = -1;
if (c >= '0' && c <= '9') {
idx = 1 + c - '0';
} else if (c == '.') {
idx = 11;
} else if (c == 'e' || c == 'E') {
idx = 12;
} else if (c == '-') {
idx = 13;
}
assert(idx >= 0 && idx < 16);
assert(i / 2 < (int)sizeof(num));
num[i/2] |= (i & 1)?idx: idx << 4;
}
add(num, (len + 1) / 2);
#endif
}
void Serializator::get(int &n) const {
unsigned char * ptr = (unsigned char *) _data->get_ptr();
ASSERT_POS(1);
unsigned char type = *(ptr + _pos++);
if ((type & 0x40) == 0) {
n = type & 0x3f;
if (type & 0x80)
n = -n;
return;
}
unsigned char len = type & 0x3f;
ASSERT_POS(len);
if (len == 0) {
n = 0;
} else if(len == 1) {
n = *(ptr + _pos++);
} else if (len == 2) {
n = ntohs(*((uint16_t *)(ptr + _pos)));
_pos += 2;
} else if (len == 4) {
n = ntohl(*((uint32_t *)(ptr + _pos)));
_pos += 4;
#if defined _WIN64 || __WORDSIZE == 64
//temp hack for 64 bit arch
} else if (len == 8) {
long nh = ntohl(*((uint32_t *)(ptr + _pos)));
_pos += 4;
long nl = ntohl(*((uint32_t *)(ptr + _pos)));
_pos += 4;
n = (nh << 32) | nl;
#endif
} else
throw_ex(("control byte 0x%02x is unsupported. (corrupted data?) (position: %u, size: %u)", (unsigned)type, (unsigned)_pos, (unsigned)_data->get_size()));
if (type & 0x80)
n = -n;
}
void Serializator::get(bool &b) const {
int x;
get(x);
if (x != 0 && x != 1)
throw_ex(("invalid boolean value '%02x'", x));
b = x == 1;
}
void Serializator::get(float &f) const {
#ifdef IEEE_754_SERIALIZATION
int size;
get(size);
if (size != sizeof(f))
throw_ex(("failed to deserialize IEEE 754 float(size %d, need %u)", size, (unsigned)sizeof(float)));
get((void *)&f, size);
//LOG_DEBUG(("%g", f));
#else
int len;
get(len);
switch(len) {
case 0:
f = 0;
return;
case -1:
f = NAN;
return;
case -2:
f = INFINITY;
return;
case -3:
f = -INFINITY;
return;
case -4:
f = 1;
return;
case -5:
f = -1;
return;
}
unsigned char buf[32];
if (len >= (int)sizeof(buf))
throw_ex(("float number too long(%d)", len));
memset(buf, 0, sizeof(buf));
get(buf, len);
std::string num;
for(int i = 0; i < len * 2; ++i) {
int c = buf[i / 2];
int d = ((i & 1)? c: c >> 4) & 0x0f;
if (d == 0) {
break;
} else if (d >= 1 && d <= 10) {
num += ('0' + d - 1);
} else if (d == 11) {
num += '.';
} else if (d == 12) {
num += 'e';
} else if (d == 13) {
num += '-';
} else {
throw_ex(("unknown float character %d", d));
}
}
if (sscanf(num.c_str(), "%g", &f) != 1)
throw_ex(("failed to get float value from '%s'", num.c_str()));
#endif
}
void Serializator::get(std::string &str) const {
unsigned int size;
get(size);
ASSERT_POS(size);
const char * ptr = (const char *) _data->get_ptr() + _pos;
str = std::string(ptr, size);
_pos += size;
}
void Serializator::get(void *raw, const int size) const {
ASSERT_POS(size);
if (size == 0)
return;
const char * ptr = (const char *) _data->get_ptr() + _pos;
memcpy(raw, ptr, size);
_pos += size;
}
void Serializator::get(Chunk &c) const {
int size;
get(size);
ASSERT_POS(size);
c.set_size(size);
if (size == 0)
return;
const char * ptr = (const char *) _data->get_ptr() + _pos;
memcpy(c.get_ptr(), ptr, size);
_pos += size;
}
const Chunk & Serializator::getData() const {
return *_data;
}
void Serializator::finalize(mrt::Chunk &data) {
if (_data->empty()) {
data.free();
return;
}
data.set_data(_data->get_ptr(), _data->get_size(), true);
_data->unlink();
}
|