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
|
/* -*- mode: C++; tab-width: 4 -*- */
// ===========================================================================
// PPStream.cpp 1993-1998 Metrowerks Inc. All rights reserved.
// ===========================================================================
//
// Abstract class for reading/writing an ordered sequence of bytes
#include "EmulatorCommon.h"
#include "PPStream.h"
// const uae_s32 length_NilBlock = -1;
#pragma mark --- Construction & Destruction ---
// ---------------------------------------------------------------------------
// PPStream
// ---------------------------------------------------------------------------
// Default Constructor
PPStream::PPStream()
{
mMarker = 0;
mLength = 0;
}
// ---------------------------------------------------------------------------
// ~PPStream
// ---------------------------------------------------------------------------
// Destructor
PPStream::~PPStream()
{
}
#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
PPStream::SetMarker(
uae_s32 inOffset,
StreamFromType inFromWhere)
{
uae_s32 newMarker = mMarker;
switch (inFromWhere) {
case kStreamFromStart:
newMarker = inOffset;
break;
case kStreamFromEnd:
newMarker = GetLength() - inOffset;
break;
case kStreamFromMarker:
newMarker += inOffset;
break;
}
if (newMarker < 0) { // marker must be between 0 and
newMarker = 0; // Length, inclusive
} else if (newMarker > GetLength()) {
newMarker = GetLength();
}
mMarker = newMarker;
}
// ---------------------------------------------------------------------------
// GetMarker
// ---------------------------------------------------------------------------
// Return the Read/Write Marker position
//
// Position is a byte offset from the start of the Stream
uae_s32
PPStream::GetMarker() const
{
return mMarker;
}
// ---------------------------------------------------------------------------
// SetLength
// ---------------------------------------------------------------------------
// Set the length, in bytes, of the Stream
void
PPStream::SetLength(
uae_s32 inLength)
{
uae_s32 oldLength = GetLength();
mLength = inLength;
// If making Stream shorter, call
// SetMarker to make sure that
if (oldLength > inLength) { // marker is not past the end
SetMarker(GetMarker(), kStreamFromStart);
}
}
// ---------------------------------------------------------------------------
// GetLength
// ---------------------------------------------------------------------------
// Return the length, in bytes, of the Stream
uae_s32
PPStream::GetLength() 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
PPStream::PutBytes(
const void* inBuffer,
uae_s32 ioByteCount)
{
UNUSED_PARAM(inBuffer)
UNUSED_PARAM(ioByteCount)
return 1;
}
// ---------------------------------------------------------------------------
// 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
PPStream::GetBytes(
void* outBuffer,
uae_s32 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
uae_s32
PPStream::PeekData(
void *outBuffer,
uae_s32 inByteCount)
{
uae_s32 currentMarker = GetMarker();
uae_s32 bytesToPeek = inByteCount;
GetBytes(outBuffer, bytesToPeek);
SetMarker(currentMarker, kStreamFromStart);
return bytesToPeek;
}
#pragma mark --- High-Level I/O ---
// ---------------------------------------------------------------------------
// WriteCString
// ---------------------------------------------------------------------------
// Write a C string to a Stream
//
// Returns the number of bytes written.
uae_s32
PPStream::WriteCString(
const char *inString)
{
assert (inString);
uae_s32 strLen = 0; // Find length of C string
const char *s = inString;
while (*s++ != 0) {
strLen++;
}
// Write C string as a 4-byte count followed by the characters.
// Do not write the null terminator.
*this << strLen;
PutBytes(inString, strLen);
return (strLen + (uae_s32) sizeof(strLen));
}
// ---------------------------------------------------------------------------
// ReadCString
// ---------------------------------------------------------------------------
// Read a C string from a Stream
//
// Returns the number of bytes read
uae_s32
PPStream::ReadCString(
char *outString)
{
assert (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.
uae_s32 strLen;
*this >> strLen;
GetBytes(outString, strLen);
outString[strLen] = '\0'; // Null terminator
return (strLen + (uae_s32) sizeof(uae_s32));
}
// ---------------------------------------------------------------------------
// WriteString
// ---------------------------------------------------------------------------
// Write a C string to a Stream
//
// Returns the number of bytes written.
uae_s32
PPStream::WriteString(
const string& inString)
{
return this->WriteCString (inString.c_str ());
}
// ---------------------------------------------------------------------------
// ReadString
// ---------------------------------------------------------------------------
// Read a C string from a Stream
//
// Returns the number of bytes read
uae_s32
PPStream::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.
uae_s32 strLen;
*this >> strLen;
outString.resize (strLen);
if (strLen > 0)
{
GetBytes(&outString[0], strLen);
}
return (strLen + (uae_s32) sizeof(uae_s32));
}
|