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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef ICE_BASIC_STREAM_H
#define ICE_BASIC_STREAM_H
#include <Ice/InstanceF.h>
#include <Ice/ObjectF.h>
#include <Ice/ProxyF.h>
#include <Ice/ObjectFactoryF.h>
#include <Ice/Buffer.h>
#include <Ice/Protocol.h>
#include <Ice/StringConverter.h>
#include <IceUtil/Unicode.h>
namespace Ice
{
class UserException;
}
namespace IceInternal
{
class ICE_API BasicStream : public Buffer
{
public:
class StreamUTF8BufferI : public Ice::UTF8Buffer
{
public:
StreamUTF8BufferI(BasicStream& stream) :
_stream(stream)
{
}
Ice::Byte*
getMoreBytes(size_t howMany, Ice::Byte* firstUnused)
{
assert(howMany > 0);
if(firstUnused != 0)
{
//
// Return unused bytes
//
_stream.b.resize(firstUnused - _stream.b.begin());
}
//
// Index of first unused byte
//
Container::size_type pos = _stream.b.size();
//
// Since resize may reallocate the buffer, when firstUnused != 0, the
// return value can be != firstUnused
//
_stream.resize(pos + howMany);
return &_stream.b[pos];
}
private:
BasicStream& _stream;
};
typedef void (*PatchFunc)(void*, Ice::ObjectPtr&);
BasicStream(Instance*, bool = false);
~BasicStream()
{
// Inlined for performance reasons.
if(_currentReadEncaps != &_preAllocatedReadEncaps ||
_currentWriteEncaps != &_preAllocatedWriteEncaps ||
_seqDataStack || _objectList)
{
clear(); // Not inlined.
}
}
void clear();
//
// Must return Instance*, because we don't hold an InstancePtr for
// optimization reasons (see comments below).
//
Instance* instance() const { return _instance; } // Inlined for performance reasons.
void* closure() const;
void* closure(void*);
void swap(BasicStream&);
void resize(Container::size_type sz)
{
//
// Check memory limit if stream is not unlimited.
//
if(!_unlimited && sz > _messageSizeMax)
{
throwMemoryLimitException(__FILE__, __LINE__);
}
b.resize(sz);
}
void startSeq(int, int);
void checkSeq()
{
checkSeq(static_cast<int>(b.end() - i));
}
void checkSeq(int bytesLeft)
{
//
// Check, given the number of elements requested for this sequence,
// that this sequence, plus the sum of the sizes of the remaining
// number of elements of all enclosing sequences, would still fit
// within the message.
//
int size = 0;
SeqData* sd = _seqDataStack;
do
{
size += (sd->numElements - 1) * sd->minSize;
sd = sd->previous;
}
while(sd);
if(size > bytesLeft)
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
}
void checkFixedSeq(int, int); // For sequences of fixed-size types.
void endElement()
{
assert(_seqDataStack);
--_seqDataStack->numElements;
}
void endSeq(int);
void startWriteEncaps()
{
WriteEncaps* oldEncaps = _currentWriteEncaps;
if(!oldEncaps) // First allocated encaps?
{
_currentWriteEncaps = &_preAllocatedWriteEncaps;
}
else
{
_currentWriteEncaps = new WriteEncaps();
_currentWriteEncaps->previous = oldEncaps;
}
_currentWriteEncaps->start = b.size();
write(Ice::Int(0)); // Placeholder for the encapsulation length.
write(encodingMajor);
write(encodingMinor);
}
void endWriteEncaps()
{
assert(_currentWriteEncaps);
Container::size_type start = _currentWriteEncaps->start;
Ice::Int sz = static_cast<Ice::Int>(b.size() - start); // Size includes size and version.
Ice::Byte* dest = &(*(b.begin() + start));
#ifdef ICE_BIG_ENDIAN
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&sz) + sizeof(Ice::Int) - 1;
*dest++ = *src--;
*dest++ = *src--;
*dest++ = *src--;
*dest = *src;
#else
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&sz);
*dest++ = *src++;
*dest++ = *src++;
*dest++ = *src++;
*dest = *src;
#endif
WriteEncaps* oldEncaps = _currentWriteEncaps;
_currentWriteEncaps = _currentWriteEncaps->previous;
if(oldEncaps == &_preAllocatedWriteEncaps)
{
oldEncaps->reset();
}
else
{
delete oldEncaps;
}
}
void endWriteEncapsChecked(); // Used by public stream API.
void startReadEncaps()
{
ReadEncaps* oldEncaps = _currentReadEncaps;
if(!oldEncaps) // First allocated encaps?
{
_currentReadEncaps = &_preAllocatedReadEncaps;
}
else
{
_currentReadEncaps = new ReadEncaps();
_currentReadEncaps->previous = oldEncaps;
}
_currentReadEncaps->start = i - b.begin();
//
// I don't use readSize() and writeSize() for encapsulations,
// because when creating an encapsulation, I must know in advance
// how many bytes the size information will require in the data
// stream. If I use an Int, it is always 4 bytes. For
// readSize()/writeSize(), it could be 1 or 5 bytes.
//
Ice::Int sz;
read(sz);
if(sz < 0)
{
throwNegativeSizeException(__FILE__, __LINE__);
}
if(i - sizeof(Ice::Int) + sz > b.end())
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
_currentReadEncaps->sz = sz;
Ice::Byte eMajor;
Ice::Byte eMinor;
read(eMajor);
read(eMinor);
if(eMajor != encodingMajor
|| static_cast<unsigned char>(eMinor) > static_cast<unsigned char>(encodingMinor))
{
throwUnsupportedEncodingException(__FILE__, __LINE__, eMajor, eMinor);
}
_currentReadEncaps->encodingMajor = eMajor;
_currentReadEncaps->encodingMinor = eMinor;
}
void endReadEncaps()
{
assert(_currentReadEncaps);
Container::size_type start = _currentReadEncaps->start;
Ice::Int sz = _currentReadEncaps->sz;
if(i != b.begin() + start + sz)
{
if(i + 1 != b.begin() + start + sz)
{
throwEncapsulationException(__FILE__, __LINE__);
}
//
// Ice version < 3.3 had a bug where user exceptions with
// class members could be encoded with a trailing byte
// when dispatched with AMD. So we tolerate an extra byte
// in the encapsulation.
//
++i;
}
ReadEncaps* oldEncaps = _currentReadEncaps;
_currentReadEncaps = _currentReadEncaps->previous;
if(oldEncaps == &_preAllocatedReadEncaps)
{
oldEncaps->reset();
}
else
{
delete oldEncaps;
}
}
void skipEmptyEncaps()
{
Ice::Int sz;
read(sz);
if(sz < 0)
{
throwNegativeSizeException(__FILE__, __LINE__);
}
if(sz != static_cast<Ice::Int>(sizeof(Ice::Int)) + 2)
{
throwEncapsulationException(__FILE__, __LINE__);
}
if(i + 2 > b.end())
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
i += 2;
}
void endReadEncapsChecked(); // Used by public stream API.
Ice::Int getReadEncapsSize();
void skipEncaps();
void startWriteSlice();
void endWriteSlice();
void startReadSlice();
void endReadSlice();
void skipSlice();
void writeSize(Ice::Int v) // Inlined for performance reasons.
{
assert(v >= 0);
if(v > 254)
{
write(Ice::Byte(255));
write(v);
}
else
{
write(static_cast<Ice::Byte>(v));
}
}
void rewriteSize(Ice::Int v, Container::iterator dest)
{
assert(v >= 0);
if(v > 254)
{
*dest++ = Ice::Byte(255);
#ifdef ICE_BIG_ENDIAN
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&v) + sizeof(Ice::Int) - 1;
*dest++ = *src--;
*dest++ = *src--;
*dest++ = *src--;
*dest = *src;
#else
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&v);
*dest++ = *src++;
*dest++ = *src++;
*dest++ = *src++;
*dest = *src;
#endif
}
else
{
*dest = static_cast<Ice::Byte>(v);
}
}
void readSize(Ice::Int& v) // Inlined for performance reasons.
{
Ice::Byte byte;
read(byte);
unsigned val = static_cast<unsigned char>(byte);
if(val == 255)
{
read(v);
if(v < 0)
{
throwNegativeSizeException(__FILE__, __LINE__);
}
}
else
{
v = static_cast<Ice::Int>(static_cast<unsigned char>(byte));
}
}
void writeTypeId(const std::string&);
void readTypeId(std::string&);
void writeBlob(const std::vector<Ice::Byte>&);
void readBlob(std::vector<Ice::Byte>&, Ice::Int);
void writeBlob(const Ice::Byte* v, Container::size_type sz)
{
if(sz > 0)
{
Container::size_type pos = b.size();
resize(pos + sz);
memcpy(&b[pos], &v[0], sz);
}
}
void readBlob(const Ice::Byte*& v, Container::size_type sz)
{
if(sz > 0)
{
v = i;
if(static_cast<Container::size_type>(b.end() - i) < sz)
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
i += sz;
}
else
{
v = i;
}
}
void write(Ice::Byte v)
{
b.push_back(v);
}
void write(Ice::Byte v, int limit);
void write(const Ice::Byte*, const Ice::Byte*);
void read(Ice::Byte& v)
{
if(i >= b.end())
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
v = *i++;
}
void read(Ice::Byte& v, int limit);
void read(std::pair<const Ice::Byte*, const Ice::Byte*>&);
void write(bool v)
{
b.push_back(static_cast<Ice::Byte>(v));
}
void write(const std::vector<bool>&);
void write(const bool*, const bool*);
void read(bool& v)
{
if(i >= b.end())
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
v = *i++;
}
void read(std::vector<bool>&);
bool* read(std::pair<const bool*, const bool*>&);
void write(Ice::Short);
void write(Ice::Short, int limit);
void write(const Ice::Short*, const Ice::Short*);
void read(Ice::Short&);
void read(Ice::Short&, int limit);
void read(std::vector<Ice::Short>&);
Ice::Short* read(std::pair<const Ice::Short*, const Ice::Short*>&);
void write(Ice::Int v) // Inlined for performance reasons.
{
Container::size_type pos = b.size();
resize(pos + sizeof(Ice::Int));
Ice::Byte* dest = &b[pos];
#ifdef ICE_BIG_ENDIAN
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&v) + sizeof(Ice::Int) - 1;
*dest++ = *src--;
*dest++ = *src--;
*dest++ = *src--;
*dest = *src;
#else
const Ice::Byte* src = reinterpret_cast<const Ice::Byte*>(&v);
*dest++ = *src++;
*dest++ = *src++;
*dest++ = *src++;
*dest = *src;
#endif
}
void write(Ice::Int, int limit);
void read(Ice::Int& v) // Inlined for performance reasons.
{
if(b.end() - i < static_cast<int>(sizeof(Ice::Int)))
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
const Ice::Byte* src = &(*i);
i += sizeof(Ice::Int);
#ifdef ICE_BIG_ENDIAN
Ice::Byte* dest = reinterpret_cast<Ice::Byte*>(&v) + sizeof(Ice::Int) - 1;
*dest-- = *src++;
*dest-- = *src++;
*dest-- = *src++;
*dest = *src;
#else
Ice::Byte* dest = reinterpret_cast<Ice::Byte*>(&v);
*dest++ = *src++;
*dest++ = *src++;
*dest++ = *src++;
*dest = *src;
#endif
}
void read(Ice::Int& v, int limit);
void write(const Ice::Int*, const Ice::Int*);
void read(std::vector<Ice::Int>&);
Ice::Int* read(std::pair<const Ice::Int*, const Ice::Int*>&);
void write(Ice::Long);
void write(const Ice::Long*, const Ice::Long*);
void read(Ice::Long&);
void read(std::vector<Ice::Long>&);
Ice::Long* read(std::pair<const Ice::Long*, const Ice::Long*>&);
void write(Ice::Float);
void write(const Ice::Float*, const Ice::Float*);
void read(Ice::Float&);
void read(std::vector<Ice::Float>&);
Ice::Float* read(std::pair<const Ice::Float*, const Ice::Float*>&);
void write(Ice::Double);
void write(const Ice::Double*, const Ice::Double*);
void read(Ice::Double&);
void read(std::vector<Ice::Double>&);
Ice::Double* read(std::pair<const Ice::Double*, const Ice::Double*>&);
//
// NOTE: This function is not implemented. It is declared here to
// catch programming errors that assume a call such as write("")
// will invoke write(const std::string&), when in fact the compiler
// will silently select a different overloading. A link error is the
// intended result.
//
void write(const char*);
void writeConverted(const std::string& v);
void write(const std::string& v, bool convert = true)
{
Ice::Int sz = static_cast<Ice::Int>(v.size());
if(convert && sz > 0 && _stringConverter != 0)
{
writeConverted(v);
}
else
{
writeSize(sz);
if(sz > 0)
{
Container::size_type pos = b.size();
resize(pos + sz);
memcpy(&b[pos], v.data(), sz);
}
}
}
void write(const std::string*, const std::string*, bool = true);
void read(std::string& v, bool convert = true)
{
Ice::Int sz;
readSize(sz);
if(sz > 0)
{
if(b.end() - i < sz)
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
if(convert && _stringConverter != 0)
{
_stringConverter->fromUTF8(i, i + sz, v);
}
else
{
std::string(reinterpret_cast<const char*>(&*i), reinterpret_cast<const char*>(&*i) + sz).swap(v);
}
i += sz;
}
else
{
v.clear();
}
}
void read(std::vector<std::string>&, bool = true);
void write(const std::wstring& v);
void write(const std::wstring*, const std::wstring*);
void read(std::wstring& v)
{
Ice::Int sz;
readSize(sz);
if(sz > 0)
{
if(b.end() - i < sz)
{
throwUnmarshalOutOfBoundsException(__FILE__, __LINE__);
}
_wstringConverter->fromUTF8(i, i + sz, v);
i += sz;
}
else
{
v.clear();
}
}
void read(std::vector<std::wstring>&);
void write(const Ice::ObjectPrx&);
void read(Ice::ObjectPrx&);
void write(const Ice::ObjectPtr&);
void read(PatchFunc, void*);
void write(const Ice::UserException&);
void throwException();
void writePendingObjects();
void readPendingObjects();
void sliceObjects(bool);
struct PatchEntry
{
PatchFunc patchFunc;
void* patchAddr;
};
typedef std::vector<PatchEntry> PatchList;
typedef std::map<Ice::Int, PatchList> PatchMap;
typedef std::map<Ice::Int, Ice::ObjectPtr> IndexToPtrMap;
typedef std::map<Ice::Int, std::string> TypeIdReadMap;
typedef std::map<Ice::ObjectPtr, Ice::Int> PtrToIndexMap;
typedef std::map<std::string, Ice::Int> TypeIdWriteMap;
typedef std::vector<Ice::ObjectPtr> ObjectList;
private:
//
// I can't throw these exception from inline functions from within
// this file, because I cannot include the header with the
// exceptions. Doing so would screw up the whole include file
// ordering.
//
void throwUnmarshalOutOfBoundsException(const char*, int);
void throwMemoryLimitException(const char*, int);
void throwNegativeSizeException(const char*, int);
void throwUnsupportedEncodingException(const char*, int, Ice::Byte, Ice::Byte);
void throwEncapsulationException(const char*, int);
//
// Optimization. The instance may not be deleted while a
// stack-allocated BasicStream still holds it.
//
Instance* _instance;
//
// The public stream API needs to attach data to a stream.
//
void* _closure;
class ICE_API ReadEncaps : private ::IceUtil::noncopyable
{
public:
ReadEncaps() : patchMap(0), unmarshaledMap(0), typeIdMap(0), typeIdIndex(0), previous(0)
{
// Inlined for performance reasons.
}
~ReadEncaps()
{
// Inlined for performance reasons.
delete patchMap;
delete unmarshaledMap;
delete typeIdMap;
}
void reset()
{
// Inlined for performance reasons.
delete patchMap;
delete unmarshaledMap;
delete typeIdMap;
patchMap = 0;
unmarshaledMap = 0;
typeIdMap = 0;
typeIdIndex = 0;
previous = 0;
}
void swap(ReadEncaps&);
Container::size_type start;
Ice::Int sz;
Ice::Byte encodingMajor;
Ice::Byte encodingMinor;
PatchMap* patchMap;
IndexToPtrMap* unmarshaledMap;
TypeIdReadMap* typeIdMap;
Ice::Int typeIdIndex;
ReadEncaps* previous;
};
class ICE_API WriteEncaps : private ::IceUtil::noncopyable
{
public:
WriteEncaps() : writeIndex(0), toBeMarshaledMap(0), marshaledMap(0), typeIdMap(0), typeIdIndex(0), previous(0)
{
// Inlined for performance reasons.
}
~WriteEncaps()
{
// Inlined for performance reasons.
delete toBeMarshaledMap;
delete marshaledMap;
delete typeIdMap;
}
void reset()
{
// Inlined for performance reasons.
delete toBeMarshaledMap;
delete marshaledMap;
delete typeIdMap;
writeIndex = 0;
toBeMarshaledMap = 0;
marshaledMap = 0;
typeIdMap = 0;
typeIdIndex = 0;
previous = 0;
}
void swap(WriteEncaps&);
Container::size_type start;
Ice::Int writeIndex;
PtrToIndexMap* toBeMarshaledMap;
PtrToIndexMap* marshaledMap;
TypeIdWriteMap* typeIdMap;
Ice::Int typeIdIndex;
WriteEncaps* previous;
};
ReadEncaps* _currentReadEncaps;
WriteEncaps* _currentWriteEncaps;
ReadEncaps _preAllocatedReadEncaps;
WriteEncaps _preAllocatedWriteEncaps;
Container::size_type _readSlice;
Container::size_type _writeSlice;
void writeInstance(const Ice::ObjectPtr&, Ice::Int);
void patchPointers(Ice::Int, IndexToPtrMap::const_iterator, PatchMap::iterator);
int _traceSlicing;
const char* _slicingCat;
bool _sliceObjects;
const Container::size_type _messageSizeMax;
bool _unlimited;
const Ice::StringConverterPtr& _stringConverter;
const Ice::WstringConverterPtr& _wstringConverter;
struct SeqData
{
SeqData(int, int);
int numElements;
int minSize;
SeqData* previous;
};
SeqData* _seqDataStack;
ObjectList* _objectList;
};
} // End namespace IceInternal
#endif
|