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 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
|
#include "stdafx.h"
#include "Serialization.h"
#include "Str.h"
#include "StrBuf.h"
#include "Exception.h"
namespace storm {
/**
* Object descriptions.
*/
static void checkCtor(Type *t, FnBase *ctor) {
if (!runtime::isValue(t) && t != StormInfo<Str>::type(ctor->engine())) {
// We assume that the ctor is an actual ctor, otherwise we can not handle cycles
// properly (= we need to create the allocation and put it in a hash table before
// calling the ctor). Ask the FnBase about the situation!
if (!ctor->rawCtor()) {
throw new (ctor) InternalError(S("Function pointers passed to the serialization system must refer to constructors."));
}
}
// TODO: Check!
}
SerializedType::SerializedType(Type *t, FnBase *ctor)
: type(t), readCtor(ctor), mySuper(null) {
init();
}
SerializedType::SerializedType(Type *t, FnBase *ctor, Type *super)
: type(t), readCtor(ctor), mySuper(super) {
init();
}
void SerializedType::init() {
checkCtor(type, readCtor);
types = new (this) Array<TObject *>();
}
typeInfo::TypeInfo SerializedType::info() const {
typeInfo::TypeInfo r = baseInfo();
if (!runtime::isValue(type))
r |= typeInfo::classType;
return r;
}
typeInfo::TypeInfo SerializedType::baseInfo() const {
return typeInfo::custom;
}
void SerializedType::toS(StrBuf *to) const {
*to << S("Serialization info for ") << runtime::typeName(type) << S(":");
if (mySuper) {
*to << S("\n super: ") << runtime::typeName(mySuper);
}
*to << S("\n constructor: ") << readCtor;
}
SerializedType::Cursor::Cursor() : type(null), pos(1) {}
SerializedType::Cursor::Cursor(SerializedType *type) : type(type), pos(0) {
if (!type->super())
pos++;
}
void SerializedType::Cursor::next() {
if (!any())
return;
if (++pos == type->types->count() + 1)
pos = type->typesRepeat + 1;
}
SerializedMember::SerializedMember(Str *name, Type *type)
: name(name), type(type), init(null) {}
SerializedMember::SerializedMember(Str *name, Type *type, MAYBE(FnBase *) init)
: name(name), type(type), init(init) {}
SerializedStdType::SerializedStdType(Type *t, FnBase *ctor)
: SerializedType(t, ctor),
names(new (engine()) Array<Str *>()),
inits(new (engine()) Array<FnBase *>()) {}
SerializedStdType::SerializedStdType(Type *t, FnBase *ctor, Type *parent)
: SerializedType(t, ctor, parent),
names(new (engine()) Array<Str *>()),
inits(new (engine()) Array<FnBase *>()) {}
void SerializedStdType::add(Str *name, Type *type) {
typeAdd(type);
names->push(name);
inits->push(null);
typeRepeat(typeCount());
}
void SerializedStdType::add(Str *name, Type *type, MAYBE(FnBase *) init) {
typeAdd(type);
names->push(name);
inits->push(init);
typeRepeat(typeCount());
}
void SerializedStdType::add(const wchar *name, Type *type) {
add(new (this) Str(name), type);
}
SerializedMember SerializedStdType::at(Nat i) const {
return SerializedMember(names->at(i), typeAt(i), inits->at(i));
}
typeInfo::TypeInfo SerializedStdType::baseInfo() const {
return typeInfo::none;
}
void SerializedStdType::toS(StrBuf *to) const {
SerializedType::toS(to);
for (Nat i = 0; i < names->count(); i++)
*to << S("\n ") << names->at(i) << S(": ") << runtime::typeName(typeAt(i));
}
SerializedTuples::SerializedTuples(Type *t, FnBase *ctor) : SerializedType(t, ctor) {
typeAdd(StormInfo<Nat>::type(engine()));
typeRepeat(typeCount());
}
SerializedTuples::SerializedTuples(Type *t, FnBase *ctor, Type *super) : SerializedType(t, ctor) {
typeAdd(StormInfo<Nat>::type(engine()));
typeRepeat(typeCount());
}
typeInfo::TypeInfo SerializedTuples::baseInfo() const {
return typeInfo::tuple;
}
void SerializedTuples::toS(StrBuf *to) const {
SerializedType::toS(to);
for (Nat i = 0; i < count(); i++)
*to << S("\n tuple ") << i << S(": ") << runtime::typeName(at(i));
}
SerializedMaybe::SerializedMaybe(Type *t, FnBase *ctor, Type *contained) : SerializedType(t, ctor) {
typeAdd(StormInfo<Bool>::type(engine()));
typeAdd(contained);
typeRepeat(1);
}
void SerializedMaybe::toS(StrBuf *to) const {
SerializedType::toS(to);
*to << S("\n maybe: ") << runtime::typeName(contained());
}
typeInfo::TypeInfo SerializedMaybe::baseInfo() const {
return typeInfo::maybe;
}
/**
* ObjIStream
*/
ObjIStream::Member::Member(Str *name, Nat type) : type(type), read(0), data(name) {}
ObjIStream::Member::Member(FnBase *init) : type(0), read(-1), data(init) {}
ObjIStream::Member::Member(const Member &o, Int read) : data(o.data), type(o.type), read(read) {}
ObjIStream::Desc::Desc(Byte flags, Nat parent, Str *name) : data(Nat(flags) << 24), parent(parent) {
members = new (this) Array<Member>();
// If we want backwards compatibility with the old HttpProtocol we can do something like this:
// if (*name == S("core\x01io\x01HttpProtocol\x01"))
// name = new (name) Str(S("http\x01HttpProtocol\x01"));
Type *t = runtime::fromIdentifier(name);
if (!t)
throw new (this) SerializationFormatError(TO_S(this, S("Unknown type: ") << demangleName(name)));
const Handle &h = runtime::typeHandle(t);
if (!h.serializedTypeFn)
throw new (this) SerializationFormatError(TO_S(this, S("The type ") << demangleName(name) << S(" is not serializable.")));
info = (*h.serializedTypeFn)();
}
ObjIStream::Desc::Desc(Byte flags, Type *type, FnBase *ctor) : data(Nat(flags) << 24), parent(0) {
members = null;
info = new (this) SerializedType(type, ctor);
}
Nat ObjIStream::Desc::findMember(Str *name) const {
for (Nat i = 0; i < members->count(); i++) {
Str *mName = members->at(i).name();
if (mName && *mName == *name)
return i;
}
return members->count();
}
ObjIStream::Cursor::Cursor() : desc(null), tmp(null), pos(0) {}
ObjIStream::Cursor::Cursor(Desc *desc) : desc(desc), tmp(null), pos(0) {
Nat entries = desc->storage();
if (entries > 0) {
// TODO: Maybe cache the array type somewhere?
Engine &e = desc->engine();
tmp = runtime::allocArray<Variant>(e, StormInfo<Variant>::handle(e).gcArrayType, entries);
}
}
const ObjIStream::Member &ObjIStream::Cursor::current() const {
return desc->members->at(pos);
}
void ObjIStream::Cursor::next() {
if (!any())
return;
pos++;
// Repeat if we're a tuple!
if (desc->isTuple() && pos == desc->members->count())
pos = 1;
}
void ObjIStream::Cursor::pushTemporary(const Variant &v) {
tmp->v[tmp->filled++] = v;
}
/**
* Size limits.
*/
// Check if 'base + add' would be larger than 'limit'. Updates 'base' to reflect the addition,
// but caps it at 'limit' to avoid overflows.
static bool addSize(Nat &base, Nat add, Nat limit) {
// Note: It is safe to rely on overflow here since unsigned types are defined to behave as
// modular arithmetics.
Nat original = base;
base += add;
if (base > limit || base < original) {
base = limit;
return true;
}
return false;
}
static void throwLimitError(Engine &e, Nat limit) {
throw new (e) SizeLimitReached(S("type metadata"), 0, limit);
}
void ObjIStream::maxTypeDescSize(Nat limit) {
typeDescLimit = limit;
if (typeDescCurrent >= limit)
throwLimitError(engine(), limit);
}
void ObjIStream::checkTypeDescSize(Nat add) {
if (addSize(typeDescCurrent, add, typeDescLimit))
throwLimitError(engine(), typeDescLimit);
}
static void throwSizeError(Engine &e, Nat alloc, Nat limit) {
throw new (e) SizeLimitReached(S("an object"), alloc, limit);
}
void ObjIStream::checkAllocSize(Nat add) {
if (add > readSizeBudget)
throwSizeError(engine(), add, readSizeBudget);
readSizeBudget -= add;
}
static void throwArraySizeError(Engine &e, Nat alloc, Nat limit) {
throw new (e) SizeLimitReached(S("an array"), alloc, limit);
}
void ObjIStream::checkArrayAlloc(Nat elemSize, Nat count) {
Word totalSizeW = Word(elemSize) * Word(count);
if (totalSizeW > maxArraySize)
throwArraySizeError(engine(), Nat(min(Word(0xFFFFFFFF), totalSizeW)), maxArraySize);
Nat totalSize = Nat(totalSizeW);
if (totalSize > readSizeBudget)
throwArraySizeError(engine(), Nat(totalSize), readSizeBudget);
readSizeBudget -= totalSize;
}
/**
* IStream.
*/
template <class T, T (IStream::* readFn)()>
static T CODECALL read(ObjIStream *from) {
T tmp = (from->from->*readFn)();
from->end();
return tmp;
}
static Str *CODECALL readStr(ObjIStream *from) {
return new (from) Str(from);
}
ObjIStream::ObjIStream(IStream *src)
: from(src),
maxReadSize(0xFFFFFFFF),
maxArraySize(0xFFFFFFFF),
typeDescLimit(0xFFFFFFFF),
typeDescCurrent(0),
readSizeBudget(0) {
clearObjects();
depth = new (this) Array<Cursor>();
typeIds = new (this) Map<Nat, Desc *>();
#define ADD_BUILTIN(id, t) \
typeIds->put(id, new (this) Desc( \
typeInfo::none, \
StormInfo<t>::type(e), \
fnPtr(e, &read<t, &IStream::read ## t>, null)));
// Add built-in types here to avoid special cases later on.
Engine &e = engine();
ADD_BUILTIN(boolId, Bool);
ADD_BUILTIN(byteId, Byte);
ADD_BUILTIN(intId, Int);
ADD_BUILTIN(natId, Nat);
ADD_BUILTIN(longId, Long);
ADD_BUILTIN(wordId, Word);
ADD_BUILTIN(floatId, Float);
ADD_BUILTIN(doubleId, Double);
#undef ADD_BUILTIN
// String is a special case.
typeIds->put(strId, new (this) Desc(
typeInfo::classType,
StormInfo<Str>::type(e),
fnPtr(e, &readStr, null)));
}
void ObjIStream::readValue(Type *type, PTR_GC out) {
Info info = start(out);
// Default initialized?
if (info.expectedType == endId)
return;
// Read from storage?
if (info.result.any()) {
// TODO: Check type!
info.result.moveValue(out);
return;
}
Desc *expected = findInfo(info.expectedType);
if (!expected->isValue())
throw new (this) SerializationFormatError(S("Expected a value type, but got a class type."));
if (expected->info->type != type) {
Str *msg = TO_S(this, S("Type mismatch. Expected ") << runtime::typeName(expected->info->type)
<< S(" but got ") << runtime::typeName(type) << S("."));
throw new (this) SerializationFormatError(msg);
}
readValueI(expected, out, false);
}
Object *ObjIStream::readClass(Type *type) {
// Note: the type represented by 'expectedId' may not always exactly match that of 'type'
// since the types used at the root of deserialization do not need to be equal. However,
// 'type' needs to be a parent of whatever we find as 'actual' later on, which is a subclass
// of 'expected'.
Info info = start(null);
// Read from cache? Note: we don't have to care about special cases here like in 'readValue'.
if (info.result.any()) {
RootObject *result = info.result.getObject();
if (!runtime::isA(result, type)) {
StrBuf *msg = new (this) StrBuf();
*msg << S("Attempted to read an object of type: ")
<< runtime::typeName(type)
<< S(" but received an object of type ")
<< runtime::typeName(runtime::typeOf(result))
<< S(".");
throw new (this) SerializationFormatError(msg->toS());
}
return (Object *)result;
}
Desc *expected = findInfo(info.expectedType);
if (expected->isValue()) {
// If this type has turned into a class type, just go ahead. There is no problem with
// this as long as the members match.
Object *created = null;
readValueI(expected, &created, true);
return created;
}
return readClassI(expected, type);
}
void ObjIStream::readPrimitiveValue(StoredId id, PTR_GC out) {
Info info = start(out);
// Using default initialization? If so, we are already done.
if (info.expectedType == endId)
return;
// Stored value?
if (info.result.any()) {
info.result.moveValue(out);
return;
}
Desc *expected = findInfo(info.expectedType);
if (!expected->isValue())
throw new (this) SerializationFormatError(S("Expected a value type, but got a class type."));
if (id != info.expectedType)
throw new (this) SerializationFormatError(S("Mismatch of built-in types!"));
if (info.result.any()) {
// TODO: Check type!
info.result.moveValue(out);
return;
}
readValueI(expected, out, false);
}
Object *ObjIStream::readPrimitiveObject(StoredId id) {
Info info = start(null);
// Default initialization, or reading duplicates?
if (info.result.any()) {
// TODO: Check type?
return (Object *)info.result.getObject();
}
Desc *expected = findInfo(info.expectedType);
if (expected->isValue())
throw new (this) SerializationFormatError(S("Expected a class type, but got a value type."));
if (id != info.expectedType)
throw new (this) SerializationFormatError(S("Mismatch of built-in types!"));
Object *created = null;
readValueI(expected, &created, true);
return created;
}
Variant ObjIStream::readObject(Nat typeId) {
Desc *type = findInfo(typeId);
if (type->isValue()) {
Type *t = type->info->type;
if (runtime::isValue(t)) {
Variant v = Variant::uninitializedValue(t);
readValueI(type, v.getValue(), false);
v.valueInitialized();
return v;
} else {
// We support turning values into classes.
Object *created = null;
readValueI(type, &created, true);
return Variant(created);
}
} else {
// Note: Primitives are never de-duplicated, so we need to check if it is a user-type or
// a primitive type. This likely means that we don't de-duplicate strings. It is fine
// since strings are immutable, but it could be a bit wasteful.
if (typeId < firstCustomId) {
Object *created = null;
readValueI(type, &created, true);
return Variant(created);
} else {
return Variant(readClassI(type, type->info->type));
}
}
}
void ObjIStream::readValueI(Desc *type, void *out, Bool objectPtr) {
// Find the parent classes and push them on the stack to keep track of what we're doing.
Desc *d = type;
while (d != null) {
depth->push(Cursor(d));
if (d->parent)
d = findInfo(d->parent);
else
d = null;
}
// Call the constructor!
FnBase *readCtor = type->info->readCtor;
// Try to call the constructor directly if that is possible. This only works if the
// underlying function was already a constructor.
if (!objectPtr) {
typedef void (*CtorPtr)(void *, ObjIStream *);
CtorPtr ctor = (CtorPtr)readCtor->rawCtor();
if (ctor) {
(*ctor)(out, this);
return;
}
}
// Fallback, this always works:
ObjIStream *me = this;
void *params[2] = { &me };
type->info->readCtor->rawCall().call(type->info->readCtor, out, params);
}
Object *ObjIStream::readClassI(Desc *expected, Type *t) {
// Did we encounter this instance before?
Nat objId = from->readNat();
if (Object *old = objIds->get(objId, null)) {
if (!runtime::isA(old, t))
throw new (this) SerializationFormatError(S("Wrong type found during deserialization."));
return old;
}
// Read the actual type.
Nat actualId = from->readNat();
Desc *actual = findInfo(actualId);
// Make sure the type we're about to create is appropriate.
if (!runtime::isA(actual->info->type, t))
throw new (this) SerializationFormatError(S("Wrong type found during deserialization."));
// Check so that we are not over capacity.
Type *type = actual->info->type;
checkAllocSize(Nat(runtime::typeGc(type)->stride));
// Call the constructor. Here, we call the "raw" constructor to be able to keep track of cycles properly.
// Find the parent classes and push them on the stack to keep track of what we're doing.
{
// Note: Needs to be kept in sync with readValueI
Desc *d = actual;
while (d != null) {
depth->push(Cursor(d));
if (d->parent)
d = findInfo(d->parent);
else
d = null;
}
}
Object *created = (Object *)runtime::allocObject(0, actual->info->type);
objIds->put(objId, created);
typedef void (*CtorFn)(void *, ObjIStream *);
CtorFn ctor = (CtorFn)actual->info->readCtor->rawCtor();
(*ctor)(created, this);
return created;
}
ObjIStream::Info ObjIStream::start(PTR_GC valueOut) {
Info r = { 0, Variant() };
if (depth->empty()) {
// First type.
// Reset current size limit.
readSizeBudget = maxReadSize;
// Read its id from the stream.
if (!from->more())
throw new (this) EndOfStream();
// Check so that we have some data. "more" might turn "false" first when we try to read stuff.
GcPreArray<Byte, 1> d;
Buffer b = from->peek(emptyBuffer(d));
if (b.empty())
throw new (this) EndOfStream();
r.expectedType = from->readNat();
return r;
}
// Some other type. Examine what we expect to read.
Cursor &at = depth->last();
if (at.customDesc())
throw new (this) SerializationFormatError(S("Can not use 'start' when serializing custom types."));
// Process objects until we find something we can return!
while (true) {
if (!at.any())
throw new (this) SerializationFormatError(S("Trying to deserialize too many members."));
const Member &expected = at.current();
at.next();
if (expected.read == 0) {
// Read it now!
r.expectedType = expected.type;
return r;
} else if (FnBase *init = expected.init()) { // 'read' is -1
// Indicate that we should use the default value. Return expected type = 0 to
// indicate this, put the result either in 'valueOut' or in the variant.
r.expectedType = endId;
if (valueOut) {
void *params[1] = {};
init->rawCall().call(init, valueOut, params);
} else {
os::FnCall<Object *, 1> params = os::fnCall();
r.result = Variant(init->callRaw(params, 0, null));
}
return r;
} else if (expected.read == -2) {
// Read one object into temporary storage and continue.
at.pushTemporary(readObject(expected.type));
} else if (expected.read < -2) {
// Read one object, and ignore it.
readObject(expected.type);
} else /* if (expected.read > 0) */ {
// Retrieve a value from temporary storage.
r.expectedType = expected.type;
r.result = at.temporary(Nat(expected.read - 1));
return r;
}
}
}
void ObjIStream::end() {
if (depth->empty())
throw new (this) SerializationFormatError(S("Mismatched calls to startX during dedeserialization!"));
Cursor &at = depth->last();
// It is possible that there are things we should ignore at the end of the current data.
while (!at.atEnd()) {
const Member &member = at.current();
at.next();
if (member.read >= -2)
throw new (this) SerializationFormatError(S("Missing fields in the read constructor during serialization!"));
// Now, member.read is equal to -3, so ignore whatever we find.
readObject(member.type);
}
depth->pop();
if (depth->empty()) {
// Last one, clear the object cache.
clearObjects();
}
}
ObjIStream::Desc *ObjIStream::findInfo(Nat id) {
Desc *result = typeIds->get(id, null);
if (result)
return result;
Byte flags = from->readByte();
Str *name = Str::read(from, typeDescLimit - typeDescCurrent);
Nat parent = from->readNat();
checkTypeDescSize(sizeof(Desc) + name->peekLength()*sizeof(wchar));
result = new (this) Desc(flags, parent, name);
if (flags & typeInfo::tuple) {
// Tuple.
checkTypeDescSize(sizeof(Member));
result->members->push(Member((Str *)null, natId));
for (Nat type = from->readNat(); type != endId; type = from->readNat()) {
checkTypeDescSize(sizeof(Member));
result->members->push(Member(null, type));
}
validateTuple(result);
} else if (flags & typeInfo::maybe) {
// Maybe-type.
checkTypeDescSize(sizeof(Member)*2);
result->members->push(Member((Str *)null, boolId));
result->members->push(Member((Str *)null, from->readNat()));
validateMaybe(result);
} else if (flags & typeInfo::custom) {
// Nothing to read for custom types. Indicate the absence of known serialization by
// setting 'members' to 'null'.
result->members = null;
} else {
// Members.
for (Nat type = from->readNat(); type != endId; type = from->readNat()) {
Str *name = Str::read(from, typeDescLimit - typeDescCurrent);
checkTypeDescSize(sizeof(Member) + name->peekLength()*sizeof(wchar));
result->members->push(Member(name, type));
}
validateMembers(result);
}
typeIds->put(id, result);
return result;
}
void ObjIStream::validateMembers(Desc *stream) {
SerializedStdType *our = as<SerializedStdType>(stream->info);
if (!our)
throw new (this) SerializationFormatError(S("Trying to deserialize a standard type into a non-compatible type!"));
// Note: We check the parent type when reading objects. Otherwise, we need quite a bit of
// bookkeeping to know when to validate parents of all types unless we want to check all
// types every time a new type is found in the stream.
// Note: We can not check the types of members here, as all member types are not necessarily
// known at this point. This is instead done when 'readXxx' is called.
// Note: If the stream contains a member that is not present in the type, it will be stored
// in temporary storage, but never used. This is fine, as we clear the temporary storage
// fairly quickly, and we expect this case to be fairly rare.
// Check the members we need to find, and match them to the members in the stream. During
// the process, figure out how to use the temporary storage to store some members there if
// necessary.
Nat streamPos = 0;
Map<Str *, Member> *tempPos = new (this) Map<Str *, Member>();
// Note: Original count, not updated when we grow the array. This is intentional in order to
// not catch the duplicate entries referring to temporary storage!
Nat memberCount = stream->members->count();
for (Nat i = 0; i < our->count(); i++) {
SerializedMember ourMember = our->at(i);
// Look until we find it in the stream, saving intermediate members to temporary storage.
while (streamPos < memberCount) {
Member &m = stream->members->at(streamPos);
Str *mName = m.name();
if (mName && *mName == *ourMember.name)
break;
// Store it in temporary storage and remember its location (indexed from 1).
// We could try to figure out which members can be ignored already, but that
// is probably excessive as we expect changes in the data format to be fairly
// rare, and the cost is not too large here. One potential problem is if the
// object is entirely empty, and we only have -3 values everywhere.
m.read = -2;
tempPos->put(mName, Member(m, tempPos->count() + 1));
streamPos++;
}
if (streamPos < memberCount) {
// If we do, we can read it without temporary storage.
stream->members->at(streamPos).read = 0;
streamPos++;
} else if (tempPos->has(ourMember.name)) {
// If we skipped it earlier, read it from temporary storage.
stream->members->push(tempPos->get(ourMember.name));
} else if (ourMember.init) {
// Use the initializer!
stream->members->push(Member(ourMember.init));
} else {
// Otherwise, we are out of luck.
StrBuf *msg = new (this) StrBuf();
*msg << S("The member ") << ourMember.name << S(", required for type ")
<< runtime::typeName(our->type) << S(", is not present in the stream ")
<< S("and has no default value in the source code.");
throw new (this) SerializationFormatError(msg->toS());
}
}
// Catch extra members that are present at the end of the stream, but not in our type.
for (; streamPos < memberCount; streamPos++) {
// Note: We need to use the special "ignore" flag at the end. Otherwise, deserialization
// will not work properly.
stream->members->at(streamPos).read = -3;
}
// Remember the number of bytes required in temporary storage.
stream->storage(tempPos->count());
// PLN(L"Members of " << runtime::typeName(our->type));
// for (Nat i = 0; i < stream->members->count(); i++) {
// Member t = stream->members->at(i);
// PLN(L" " << t.name() << L", " << t.type << L", " << t.read);
// }
// PLN(L" (" << stream->storage() << L" temporary entries required)");
}
void ObjIStream::validateTuple(Desc *stream) {
SerializedTuples *our = as<SerializedTuples>(stream->info);
if (!our)
throw new (this) SerializationFormatError(S("Trying to deserialize a type type into a non-compatible type!"));
// We don't try to do anything intelligent here. We just check so that the number of
// elements in each tuple match.
Nat tupleCount = stream->members->count() - 1;
if (our->count() != tupleCount) {
Str *msg = TO_S(this, S("Tuple size mismatch. Stream: ") << tupleCount
<< S(", here: ") << our->count() << S("."));
throw new (msg) SerializationFormatError(msg);
}
}
void ObjIStream::validateMaybe(Desc *stream) {
SerializedMaybe *our = as<SerializedMaybe>(stream->info);
if (!our)
throw new (this) SerializationFormatError(S("Trying to deserialize a type into a non-compatible type!"));
// Nothing more to verify.
}
void ObjIStream::clearObjects() {
objIds = new (this) Map<Nat, Object *>();
}
/**
* ObjOStream
*/
static const Nat typeMask = 0x80000000;
ObjOStream::ObjOStream(OStream *to) : to(to) {
clearObjects();
depth = new (this) Array<SerializedType::Cursor>();
typeIds = new (this) Map<TObject *, Nat>();
nextId = firstCustomId;
serializedTypes = new (this) Map<TObject *, SerializedType *>();
// Insert the standard types inside 'ids', so we don't have to bother with them later.
Engine &e = engine();
typeIds->put((TObject *)StormInfo<Bool>::type(e), boolId);
typeIds->put((TObject *)StormInfo<Byte>::type(e), byteId);
typeIds->put((TObject *)StormInfo<Int>::type(e), intId);
typeIds->put((TObject *)StormInfo<Nat>::type(e), natId);
typeIds->put((TObject *)StormInfo<Long>::type(e), longId);
typeIds->put((TObject *)StormInfo<Word>::type(e), wordId);
typeIds->put((TObject *)StormInfo<Float>::type(e), floatId);
typeIds->put((TObject *)StormInfo<Double>::type(e), doubleId);
typeIds->put((TObject *)StormInfo<Str>::type(e), strId);
}
void ObjOStream::clearObjects() {
MapBase *t = new (this) MapBase(StormInfo<TObject>::handle(engine()), StormInfo<Nat>::handle(engine()));
objIds = (Map<Object *, Nat> *)t;
}
Nat ObjOStream::typeId(Type *type) {
// TODO: We need to deal with containers somehow.
TObject *t = (TObject *)type;
Nat id = typeIds->get(t, nextId);
if (id == nextId) {
nextId++;
id |= typeMask;
typeIds->put(t, id);
}
return id;
}
Bool ObjOStream::startValue(Type *type) {
return startValue(findSerialized(type));
}
Bool ObjOStream::startClass(Type *type, const Object *obj) {
return startClass(findSerialized(type), obj);
}
SerializedType *ObjOStream::findSerialized(Type *type) {
// For convenience in other parts of the implementation.
if (!type)
return null;
Map<TObject *, SerializedType *>::Iter found = serializedTypes->find((TObject *)type);
if (found != serializedTypes->end())
return found.v();
const Handle &h = runtime::typeHandle(type);
if (!h.serializedTypeFn)
throw new (this) SerializationFormatError(TO_S(this, S("The type ") << runtime::typeName(type) << S(" is not serializable.")));
SerializedType *info = (*h.serializedTypeFn)();
serializedTypes->put((TObject *)type, info);
return info;
}
Bool ObjOStream::startValue(SerializedType *type) {
Type *expected = start(type);
if (expected && expected != type->type) {
// We can assume that the actual type is exactly what we're expecting since value types
// are sliced. Therefore, we don't need to search for the proper type as we need to do
// for classes.
// PVAR(runtime::typeName(expected));
Str *msg = TO_S(this, S("Unexpected value type during serialization. Expected: ") << runtime::typeName(expected));
throw new (this) SerializationFormatError(msg);
}
if (type->info() & typeInfo::classType)
throw new (this) SerializationFormatError(S("Expected a class type, but a value type was provided!"));
writeInfo(type);
return true;
}
Bool ObjOStream::startClass(SerializedType *type, const Object *v) {
Type *expected = start(type);
if (expected) {
// This is the start of a new type.
// Find the expected type from the description. It should be a direct or indirect parent!
SerializedType *expectedDesc = type;
while (expectedDesc && expectedDesc->type != expected)
expectedDesc = findSerialized(expectedDesc->super());
if (!expectedDesc)
throw new (this) SerializationFormatError(S("The provided type description does not match the serialized object."));
writeInfo(expectedDesc);
// Now, the reader knows what we're talking about. Now we can bother with references...
Nat objId = objIds->get((Object *)v, objIds->count());
to->writeNat(objId);
if (objId != objIds->count()) {
// Already existing object?
// Discard the serialization step for that. If we call 'end', an exception will be thrown.
depth->pop();
return false;
}
// New object. Write its actual type.
to->writeNat(typeId(type->type) & ~typeMask);
objIds->put((Object *)v, objId);
} else {
// This is the parent of an object we're already serializing. We don't need any
// additional headers for that, just possibly the class description.
}
if ((type->info() & typeInfo::classType) != typeInfo::classType)
throw new (this) SerializationFormatError(S("Expected a value type, but a class type was provided."));
writeInfo(type);
return true;
}
void ObjOStream::startPrimitive(StoredId id) {
if (depth->empty()) {
to->writeNat(id & ~typeMask);
} else {
depth->last().next();
}
depth->push(SerializedType::Cursor());
}
Type *ObjOStream::start(SerializedType *type) {
Type *r = type->type;
if (depth->empty()) {
// We're the root object, write a header.
to->writeNat(typeId(type->type) & ~typeMask);
} else {
SerializedType::Cursor &at = depth->last();
if (!at.any())
throw new (this) SerializationFormatError(S("Trying to serialize too many fields."));
if (at.isParent())
r = null;
else
r = at.current();
at.next();
}
// Add a cursor to 'depth' to keep track of what we're doing!
depth->push(SerializedType::Cursor(type));
return r;
}
void ObjOStream::end() {
if (depth->empty())
throw new (this) SerializationFormatError(S("Mismatched calls to startX during serialization!"));
SerializedType::Cursor end = depth->last();
if (!end.atEnd())
throw new (this) SerializationFormatError(S("Missing fields during serialization!"));
depth->pop();
if (depth->empty()) {
// Last one, clear the object cache.
clearObjects();
}
}
void ObjOStream::writeInfo(SerializedType *t) {
// Already written?
Nat id = typeId(t->type);
if ((id & typeMask) == 0)
return;
typeIds->put((TObject *)t->type, id & ~typeMask);
to->writeByte(Byte(t->info()));
runtime::typeIdentifier(t->type)->write(to);
if (t->super()) {
to->writeNat(typeId(t->super()) & ~typeMask);
} else {
to->writeNat(endId);
}
if (SerializedStdType *s = as<SerializedStdType>(t)) {
// Members.
for (Nat i = 0; i < s->count(); i++) {
const SerializedMember &member = s->at(i);
Nat id = typeId(member.type);
to->writeNat(id & ~typeMask);
member.name->write(to);
}
// End of members.
to->writeNat(endId);
} else if (SerializedTuples *tuples = as<SerializedTuples>(t)) {
// Types.
for (Nat i = 0; i < tuples->count(); i++) {
Nat id = typeId(tuples->at(i));
to->writeNat(id & ~typeMask);
}
// End.
to->writeNat(endId);
} else if (SerializedMaybe *maybe = as<SerializedMaybe>(t)) {
to->writeNat(typeId(maybe->contained()) & ~typeMask);
} else {
// This is an unsupported type. We don't need to write that description.
}
}
Str *demangleName(Str *name) {
StrBuf *to = new (name) StrBuf();
Bool addComma = false;
Bool addDot = false;
for (Str::Iter i = name->begin(); i != name->end(); ++i) {
Char ch = i.v();
Bool comma = false;
Bool dot = false;
if (ch == Char(1u)) {
dot = true;
} else if (ch == Char(2u)) {
*to << S("(");
} else if (ch == Char(3u)) {
*to << S(")");
} else if (ch == Char(4u)) {
comma = true;
} else if (ch == Char(5u)) {
*to << S(" &");
comma = true;
} else {
if (addComma)
*to << S(", ");
if (addDot)
*to << S(".");
*to << ch;
}
addComma = comma;
addDot = dot;
}
return to->toS();
}
}
|