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
|
/* -*- mode: C++; tab-width: 4 -*- */
// ===========================================================================
// EmStream.cpp 1993-1998 Metrowerks Inc. All rights reserved.
// ===========================================================================
//
// Abstract class for reading/writing an ordered sequence of bytes
#include "EmCommon.h"
#include "EmStream.h"
#include "Byteswapping.h" // Canonical
#pragma mark --- Construction & Destruction ---
// ---------------------------------------------------------------------------
// EmStream
// ---------------------------------------------------------------------------
// Default Constructor
EmStream::EmStream (void) :
mMarker (0),
mLength (0)
{
}
// ---------------------------------------------------------------------------
// ~EmStream
// ---------------------------------------------------------------------------
// Destructor
EmStream::~EmStream (void)
{
}
#pragma mark --- Accessors ---
// ---------------------------------------------------------------------------
// SetMarker
// ---------------------------------------------------------------------------
// Place the Read/Write Marker at an offset from a specified position
//
// inFromWhere can be streamFrom_Start, streamFrom_End, or streamFrom_Marker
void
EmStream::SetMarker (
int32 inOffset,
StreamFromType inFromWhere)
{
int32 newMarker = mMarker;
switch (inFromWhere)
{
case kStreamFromStart:
newMarker = inOffset;
break;
case kStreamFromEnd:
newMarker = this->GetLength () - inOffset;
break;
case kStreamFromMarker:
newMarker += inOffset;
break;
}
if (newMarker < 0) // marker must be between 0 and Length, inclusive
{
newMarker = 0;
}
else if (newMarker > GetLength ())
{
newMarker = this->GetLength ();
}
mMarker = newMarker;
}
// ---------------------------------------------------------------------------
// GetMarker
// ---------------------------------------------------------------------------
// Return the Read/Write Marker position
//
// Position is a byte offset from the start of the Stream
int32
EmStream::GetMarker (void) const
{
return mMarker;
}
// ---------------------------------------------------------------------------
// SetLength
// ---------------------------------------------------------------------------
// Set the length, in bytes, of the Stream
void
EmStream::SetLength(
int32 inLength)
{
int32 oldLength = this->GetLength ();
mLength = inLength;
// If making Stream shorter, call
// SetMarker to make sure that
if (oldLength > inLength) // marker is not past the end
{
this->SetMarker (this->GetMarker (), kStreamFromStart);
}
}
// ---------------------------------------------------------------------------
// GetLength
// ---------------------------------------------------------------------------
// Return the length, in bytes, of the Stream
int32
EmStream::GetLength (void) const
{
return mLength;
}
#pragma mark --- Low-Level I/O ---
// ---------------------------------------------------------------------------
// PutBytes
// ---------------------------------------------------------------------------
// Write bytes from a buffer to a Stream
//
// Returns an error code and passes back the number of bytes actually
// written, which may be less than the number requested if an error occurred.
//
// Subclasses must override this function to support writing.
//
// NOTE: You should not throw an Exception out of this function.
ErrCode
EmStream::PutBytes (
const void* inBuffer,
int32 ioByteCount)
{
UNUSED_PARAM(inBuffer)
UNUSED_PARAM(ioByteCount)
return 1;
}
EmStream&
EmStream::operator << (const char* inString)
{
WriteCString (inString);
return (*this);
}
EmStream&
EmStream::operator << (const string& inString)
{
WriteString (inString);
return (*this);
}
EmStream&
EmStream::operator << (int8 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (uint8 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (char inChar)
{
Canonical (inChar);
PutBytes (&inChar, sizeof (inChar));
return (*this);
}
EmStream&
EmStream::operator << (int16 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (uint16 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (int32 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (uint32 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (int64 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (uint64 inNum)
{
Canonical (inNum);
PutBytes (&inNum, sizeof (inNum));
return (*this);
}
EmStream&
EmStream::operator << (bool inBool)
{
Canonical (inBool);
PutBytes (&inBool, sizeof (inBool));
return (*this);
}
// ---------------------------------------------------------------------------
// GetBytes
// ---------------------------------------------------------------------------
// Read bytes from a Stream to a buffer
//
// Returns an error code and passes back the number of bytes actually
// read, which may be less than the number requested if an error occurred.
//
// Subclasses must override this function to support reading.
//
// NOTE: You should not throw an Exception out of this function.
ErrCode
EmStream::GetBytes (
void* outBuffer,
int32 ioByteCount)
{
UNUSED_PARAM(outBuffer)
UNUSED_PARAM(ioByteCount)
return 1;
}
// ---------------------------------------------------------------------------
// PeekData
// ---------------------------------------------------------------------------
// Read data from a Stream to a buffer, without moving the Marker
//
// Return the number of bytes actually read, which may be less than the
// number requested if an error occurred
int32
EmStream::PeekData (
void* outBuffer,
int32 inByteCount)
{
int32 currentMarker = this->GetMarker ();
int32 bytesToPeek = inByteCount;
this->GetBytes (outBuffer, bytesToPeek);
this->SetMarker (currentMarker, kStreamFromStart);
return bytesToPeek;
}
EmStream&
EmStream::operator >> (char* outString)
{
ReadCString (outString);
return (*this);
}
EmStream&
EmStream::operator >> (string& outString)
{
ReadString (outString);
return (*this);
}
EmStream&
EmStream::operator >> (int8 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (uint8 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (char &outChar)
{
GetBytes (&outChar, sizeof (outChar));
Canonical (outChar);
return (*this);
}
EmStream&
EmStream::operator >> (int16 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (uint16 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (int32 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (uint32 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (int64 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (uint64 &outNum)
{
GetBytes (&outNum, sizeof (outNum));
Canonical (outNum);
return (*this);
}
EmStream&
EmStream::operator >> (bool &outBool)
{
GetBytes (&outBool, sizeof (outBool));
Canonical (outBool);
return (*this);
}
#pragma mark --- High-Level I/O ---
// ---------------------------------------------------------------------------
// WriteCString
// ---------------------------------------------------------------------------
// Write a C string to a Stream
//
// Returns the number of bytes written.
int32
EmStream::WriteCString (
const char* inString)
{
EmAssert (inString);
int32 strLen = strlen (inString);
// Write C string as a 4-byte count followed by the characters.
// Do not write the null terminator.
*this << strLen;
this->PutBytes (inString, strLen);
return (strLen + (int32) sizeof (strLen));
}
// ---------------------------------------------------------------------------
// ReadCString
// ---------------------------------------------------------------------------
// Read a C string from a Stream
//
// Returns the number of bytes read
int32
EmStream::ReadCString (
char* outString)
{
EmAssert (outString);
// C string is stored as a 4-byte count followed by the
// characters. The null terminator is not stored and must
// be added afterwards.
int32 strLen;
*this >> strLen;
this->GetBytes (outString, strLen);
outString[strLen] = '\0'; // Null terminator
return (strLen + (int32) sizeof (int32));
}
// ---------------------------------------------------------------------------
// WriteString
// ---------------------------------------------------------------------------
// Write a C string to a Stream
//
// Returns the number of bytes written.
int32
EmStream::WriteString (
const string& inString)
{
return this->WriteCString (inString.c_str ());
}
// ---------------------------------------------------------------------------
// ReadString
// ---------------------------------------------------------------------------
// Read a C string from a Stream
//
// Returns the number of bytes read
int32
EmStream::ReadString(
string& outString)
{
// C string is stored as a 4-byte count followed by the
// characters. The null terminator is not stored and must
// be added afterwards.
int32 strLen;
*this >> strLen;
outString.resize (strLen);
if (strLen > 0)
{
GetBytes(&outString[0], strLen);
}
return (strLen + (int32) sizeof (int32));
}
// ===========================================================================
// EmStreamBlock.cpp 1993-1998 Metrowerks Inc. All rights reserved.
// ===========================================================================
//
// A Stream whose bytes are in a Chunk
// ---------------------------------------------------------------------------
// EmStreamBlock(Handle) Parameterized Constructor [public]
// ---------------------------------------------------------------------------
// Construct from an existing Chunk
EmStreamBlock::EmStreamBlock(void* data, int32 length) :
EmStream (),
fData (data)
{
EmStream::SetLength (length);
}
// ---------------------------------------------------------------------------
// ~EmStreamBlock Destructor [public]
// ---------------------------------------------------------------------------
EmStreamBlock::~EmStreamBlock()
{
}
// ---------------------------------------------------------------------------
// SetLength [public]
// ---------------------------------------------------------------------------
// Set the length, in bytes, of the EmStreamBlock
void
EmStreamBlock::SetLength(
int32 /*inLength*/)
{
// Do nothing...can't change the length.
}
// ---------------------------------------------------------------------------
// PutBytes
// ---------------------------------------------------------------------------
// Write bytes from a buffer to a EmStreamBlock
//
// Returns an error code and passes back the number of bytes actually
// written, which may be less than the number requested if an error occurred.
//
// Grows data Chunk if necessary.
ErrCode
EmStreamBlock::PutBytes(
const void* inBuffer,
int32 ioByteCount)
{
ErrCode err = errNone;
int32 endOfWrite = this->GetMarker () + ioByteCount;
if (endOfWrite > this->GetLength ()) // Need to grow Chunk
{
this->SetLength (endOfWrite);
}
// Copy bytes into Chunk
if (ioByteCount > 0)
{
memmove ((char*) fData + this->GetMarker (), inBuffer, ioByteCount);
this->SetMarker (ioByteCount, kStreamFromMarker);
}
return err;
}
// ---------------------------------------------------------------------------
// GetBytes
// ---------------------------------------------------------------------------
// Read bytes from a EmStreamBlock to a buffer
//
// Returns an error code and passes back the number of bytes actually
// read, which may be less than the number requested if an error occurred.
//
// Errors:
// readErr Attempt to read past the end of the EmStreamBlock
ErrCode
EmStreamBlock::GetBytes(
void* outBuffer,
int32 ioByteCount)
{
ErrCode err = errNone;
// Upper bound is number of bytes from
// marker to end
if ((this->GetMarker () + ioByteCount) > this->GetLength ())
{
ioByteCount = this->GetLength () - this->GetMarker ();
err = 1;
}
// Copy bytes from Handle into buffer
memmove (outBuffer, (char*) fData + this->GetMarker (), ioByteCount);
this->SetMarker (ioByteCount, kStreamFromMarker);
return err;
}
|