/usr/include/OGRE/OgreDataStream.h is in libogre-1.8-dev 1.8.0+dfsg1-7+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/
Copyright (c) 2000-2012 Torus Knot Software Ltd
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-----------------------------------------------------------------------------
*/
#ifndef __DataStream_H__
#define __DataStream_H__
#include "OgrePrerequisites.h"
#include "OgreString.h"
#include "OgreSharedPtr.h"
#include <istream>
namespace Ogre {
/** Template version of cache based on static array.
'cacheSize' defines size of cache in bytes. */
template <size_t cacheSize>
class StaticCache
{
protected:
/// Static buffer
char mBuffer[cacheSize];
/// Number of bytes valid in cache (written from the beginning of static buffer)
size_t mValidBytes;
/// Current read position
size_t mPos;
public:
/// Constructor
StaticCache()
{
mValidBytes = 0;
mPos = 0;
}
/** Cache data pointed by 'buf'. If 'count' is greater than cache size, we cache only last bytes.
Returns number of bytes written to cache. */
size_t cacheData(const void* buf, size_t count)
{
assert(avail() == 0 && "It is assumed that you cache data only after you have read everything.");
if (count < cacheSize)
{
// number of bytes written is less than total size of cache
if (count + mValidBytes <= cacheSize)
{
// just append
memcpy(mBuffer + mValidBytes, buf, count);
mValidBytes += count;
}
else
{
size_t begOff = count - (cacheSize - mValidBytes);
// override old cache content in the beginning
memmove(mBuffer, mBuffer + begOff, mValidBytes - begOff);
// append new data
memcpy(mBuffer + cacheSize - count, buf, count);
mValidBytes = cacheSize;
}
mPos = mValidBytes;
return count;
}
else
{
// discard all
memcpy(mBuffer, (const char*)buf + count - cacheSize, cacheSize);
mValidBytes = mPos = cacheSize;
return cacheSize;
}
}
/** Read data from cache to 'buf' (maximum 'count' bytes). Returns number of bytes read from cache. */
size_t read(void* buf, size_t count)
{
size_t rb = avail();
rb = (rb < count) ? rb : count;
memcpy(buf, mBuffer + mPos, rb);
mPos += rb;
return rb;
}
/** Step back in cached stream by 'count' bytes. Returns 'true' if cache contains resulting position. */
bool rewind(size_t count)
{
if (mPos < count)
{
clear();
return false;
}
else
{
mPos -= count;
return true;
}
}
/** Step forward in cached stream by 'count' bytes. Returns 'true' if cache contains resulting position. */
bool ff(size_t count)
{
if (avail() < count)
{
clear();
return false;
}
else
{
mPos += count;
return true;
}
}
/** Returns number of bytes available for reading in cache after rewinding. */
size_t avail() const
{
return mValidBytes - mPos;
}
/** Clear the cache */
void clear()
{
mValidBytes = 0;
mPos = 0;
}
};
/** \addtogroup Core
* @{
*/
/** \addtogroup Resources
* @{
*/
/** General purpose class used for encapsulating the reading and writing of data.
@remarks
This class performs basically the same tasks as std::basic_istream,
except that it does not have any formatting capabilities, and is
designed to be subclassed to receive data from multiple sources,
including libraries which have no compatibility with the STL's
stream interfaces. As such, this is an abstraction of a set of
wrapper classes which pretend to be standard stream classes but
can actually be implemented quite differently.
@par
Generally, if a plugin or application provides an ArchiveFactory,
it should also provide a DataStream subclass which will be used
to stream data out of that Archive implementation, unless it can
use one of the common implementations included.
@note
Ogre makes no guarantees about thread safety, for performance reasons.
If you wish to access stream data asynchronously then you should
organise your own mutexes to avoid race conditions.
*/
class _OgreExport DataStream : public StreamAlloc
{
public:
enum AccessMode
{
READ = 1,
WRITE = 2
};
protected:
/// The name (e.g. resource name) that can be used to identify the source fot his data (optional)
String mName;
/// Size of the data in the stream (may be 0 if size cannot be determined)
size_t mSize;
/// What type of access is allowed (AccessMode)
uint16 mAccess;
#define OGRE_STREAM_TEMP_SIZE 128
public:
/// Constructor for creating unnamed streams
DataStream(uint16 accessMode = READ) : mSize(0), mAccess(accessMode) {}
/// Constructor for creating named streams
DataStream(const String& name, uint16 accessMode = READ)
: mName(name), mSize(0), mAccess(accessMode) {}
/// Returns the name of the stream, if it has one.
const String& getName(void) { return mName; }
/// Gets the access mode of the stream
uint16 getAccessMode() const { return mAccess; }
/** Reports whether this stream is readable. */
virtual bool isReadable() const { return (mAccess & READ) != 0; }
/** Reports whether this stream is writeable. */
virtual bool isWriteable() const { return (mAccess & WRITE) != 0; }
virtual ~DataStream() {}
// Streaming operators
template<typename T> DataStream& operator>>(T& val);
/** Read the requisite number of bytes from the stream,
stopping at the end of the file.
@param buf Reference to a buffer pointer
@param count Number of bytes to read
@return The number of bytes read
*/
virtual size_t read(void* buf, size_t count) = 0;
/** Write the requisite number of bytes from the stream (only applicable to
streams that are not read-only)
@param buf Pointer to a buffer containing the bytes to write
@param count Number of bytes to write
@return The number of bytes written
*/
virtual size_t write(const void* buf, size_t count)
{
(void)buf;
(void)count;
// default to not supported
return 0;
}
/** Get a single line from the stream.
@remarks
The delimiter character is not included in the data
returned, and it is skipped over so the next read will occur
after it. The buffer contents will include a
terminating character.
@note
If you used this function, you <b>must</b> open the stream in <b>binary mode</b>,
otherwise, it'll produce unexpected results.
@param buf Reference to a buffer pointer
@param maxCount The maximum length of data to be read, excluding the terminating character
@param delim The delimiter to stop at
@return The number of bytes read, excluding the terminating character
*/
virtual size_t readLine(char* buf, size_t maxCount, const String& delim = "\n");
/** Returns a String containing the next line of data, optionally
trimmed for whitespace.
@remarks
This is a convenience method for text streams only, allowing you to
retrieve a String object containing the next line of data. The data
is read up to the next newline character and the result trimmed if
required.
@note
If you used this function, you <b>must</b> open the stream in <b>binary mode</b>,
otherwise, it'll produce unexpected results.
@param
trimAfter If true, the line is trimmed for whitespace (as in
String.trim(true,true))
*/
virtual String getLine( bool trimAfter = true );
/** Returns a String containing the entire stream.
@remarks
This is a convenience method for text streams only, allowing you to
retrieve a String object containing all the data in the stream.
*/
virtual String getAsString(void);
/** Skip a single line from the stream.
@note
If you used this function, you <b>must</b> open the stream in <b>binary mode</b>,
otherwise, it'll produce unexpected results.
@param delim The delimiter(s) to stop at
@return The number of bytes skipped
*/
virtual size_t skipLine(const String& delim = "\n");
/** Skip a defined number of bytes. This can also be a negative value, in which case
the file pointer rewinds a defined number of bytes. */
virtual void skip(long count) = 0;
/** Repositions the read point to a specified byte.
*/
virtual void seek( size_t pos ) = 0;
/** Returns the current byte offset from beginning */
virtual size_t tell(void) const = 0;
/** Returns true if the stream has reached the end.
*/
virtual bool eof(void) const = 0;
/** Returns the total size of the data to be read from the stream,
or 0 if this is indeterminate for this stream.
*/
size_t size(void) const { return mSize; }
/** Close the stream; this makes further operations invalid. */
virtual void close(void) = 0;
};
/** Shared pointer to allow data streams to be passed around without
worrying about deallocation
*/
typedef SharedPtr<DataStream> DataStreamPtr;
/// List of DataStream items
typedef list<DataStreamPtr>::type DataStreamList;
/// Shared pointer to list of DataStream items
typedef SharedPtr<DataStreamList> DataStreamListPtr;
/** Common subclass of DataStream for handling data from chunks of memory.
*/
class _OgreExport MemoryDataStream : public DataStream
{
protected:
/// Pointer to the start of the data area
uchar* mData;
/// Pointer to the current position in the memory
uchar* mPos;
/// Pointer to the end of the memory
uchar* mEnd;
/// Do we delete the memory on close
bool mFreeOnClose;
public:
/** Wrap an existing memory chunk in a stream.
@param pMem Pointer to the existing memory
@param size The size of the memory chunk in bytes
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed. Note: it's important that if you set
this option to true, that you allocated the memory using OGRE_ALLOC_T
with a category of MEMCATEGORY_GENERAL ensure the freeing of memory
matches up.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(void* pMem, size_t size, bool freeOnClose = false, bool readOnly = false);
/** Wrap an existing memory chunk in a named stream.
@param name The name to give the stream
@param pMem Pointer to the existing memory
@param size The size of the memory chunk in bytes
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed. Note: it's important that if you set
this option to true, that you allocated the memory using OGRE_ALLOC_T
with a category of MEMCATEGORY_GENERAL ensure the freeing of memory
matches up.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(const String& name, void* pMem, size_t size,
bool freeOnClose = false, bool readOnly = false);
/** Create a stream which pre-buffers the contents of another stream.
@remarks
This constructor can be used to intentionally read in the entire
contents of another stream, copying them to the internal buffer
and thus making them available in memory as a single unit.
@param sourceStream Another DataStream which will provide the source
of data
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(DataStream& sourceStream,
bool freeOnClose = true, bool readOnly = false);
/** Create a stream which pre-buffers the contents of another stream.
@remarks
This constructor can be used to intentionally read in the entire
contents of another stream, copying them to the internal buffer
and thus making them available in memory as a single unit.
@param sourceStream Weak reference to another DataStream which will provide the source
of data
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(DataStreamPtr& sourceStream,
bool freeOnClose = true, bool readOnly = false);
/** Create a named stream which pre-buffers the contents of
another stream.
@remarks
This constructor can be used to intentionally read in the entire
contents of another stream, copying them to the internal buffer
and thus making them available in memory as a single unit.
@param name The name to give the stream
@param sourceStream Another DataStream which will provide the source
of data
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(const String& name, DataStream& sourceStream,
bool freeOnClose = true, bool readOnly = false);
/** Create a named stream which pre-buffers the contents of
another stream.
@remarks
This constructor can be used to intentionally read in the entire
contents of another stream, copying them to the internal buffer
and thus making them available in memory as a single unit.
@param name The name to give the stream
@param sourceStream Another DataStream which will provide the source
of data
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(const String& name, const DataStreamPtr& sourceStream,
bool freeOnClose = true, bool readOnly = false);
/** Create a stream with a brand new empty memory chunk.
@param size The size of the memory chunk to create in bytes
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(size_t size, bool freeOnClose = true, bool readOnly = false);
/** Create a named stream with a brand new empty memory chunk.
@param name The name to give the stream
@param size The size of the memory chunk to create in bytes
@param freeOnClose If true, the memory associated will be destroyed
when the stream is destroyed.
@param readOnly Whether to make the stream on this memory read-only once created
*/
MemoryDataStream(const String& name, size_t size,
bool freeOnClose = true, bool readOnly = false);
~MemoryDataStream();
/** Get a pointer to the start of the memory block this stream holds. */
uchar* getPtr(void) { return mData; }
/** Get a pointer to the current position in the memory block this stream holds. */
uchar* getCurrentPtr(void) { return mPos; }
/** @copydoc DataStream::read
*/
size_t read(void* buf, size_t count);
/** @copydoc DataStream::write
*/
size_t write(const void* buf, size_t count);
/** @copydoc DataStream::readLine
*/
size_t readLine(char* buf, size_t maxCount, const String& delim = "\n");
/** @copydoc DataStream::skipLine
*/
size_t skipLine(const String& delim = "\n");
/** @copydoc DataStream::skip
*/
void skip(long count);
/** @copydoc DataStream::seek
*/
void seek( size_t pos );
/** @copydoc DataStream::tell
*/
size_t tell(void) const;
/** @copydoc DataStream::eof
*/
bool eof(void) const;
/** @copydoc DataStream::close
*/
void close(void);
/** Sets whether or not to free the encapsulated memory on close. */
void setFreeOnClose(bool free) { mFreeOnClose = free; }
};
/** Shared pointer to allow memory data streams to be passed around without
worrying about deallocation
*/
typedef SharedPtr<MemoryDataStream> MemoryDataStreamPtr;
/** Common subclass of DataStream for handling data from
std::basic_istream.
*/
class _OgreExport FileStreamDataStream : public DataStream
{
protected:
/// Reference to source stream (read)
std::istream* mInStream;
/// Reference to source file stream (read-only)
std::ifstream* mFStreamRO;
/// Reference to source file stream (read-write)
std::fstream* mFStream;
bool mFreeOnClose;
void determineAccess();
public:
/** Construct a read-only stream from an STL stream
@param s Pointer to source stream
@param freeOnClose Whether to delete the underlying stream on
destruction of this class
*/
FileStreamDataStream(std::ifstream* s,
bool freeOnClose = true);
/** Construct a read-write stream from an STL stream
@param s Pointer to source stream
@param freeOnClose Whether to delete the underlying stream on
destruction of this class
*/
FileStreamDataStream(std::fstream* s,
bool freeOnClose = true);
/** Construct named read-only stream from an STL stream
@param name The name to give this stream
@param s Pointer to source stream
@param freeOnClose Whether to delete the underlying stream on
destruction of this class
*/
FileStreamDataStream(const String& name,
std::ifstream* s,
bool freeOnClose = true);
/** Construct named read-write stream from an STL stream
@param name The name to give this stream
@param s Pointer to source stream
@param freeOnClose Whether to delete the underlying stream on
destruction of this class
*/
FileStreamDataStream(const String& name,
std::fstream* s,
bool freeOnClose = true);
/** Construct named read-only stream from an STL stream, and tell it the size
@remarks
This variant tells the class the size of the stream too, which
means this class does not need to seek to the end of the stream
to determine the size up-front. This can be beneficial if you have
metadata about the contents of the stream already.
@param name The name to give this stream
@param s Pointer to source stream
@param size Size of the stream contents in bytes
@param freeOnClose Whether to delete the underlying stream on
destruction of this class. If you specify 'true' for this you
must ensure that the stream was allocated using OGRE_NEW_T with
MEMCATEGRORY_GENERAL.
*/
FileStreamDataStream(const String& name,
std::ifstream* s,
size_t size,
bool freeOnClose = true);
/** Construct named read-write stream from an STL stream, and tell it the size
@remarks
This variant tells the class the size of the stream too, which
means this class does not need to seek to the end of the stream
to determine the size up-front. This can be beneficial if you have
metadata about the contents of the stream already.
@param name The name to give this stream
@param s Pointer to source stream
@param size Size of the stream contents in bytes
@param freeOnClose Whether to delete the underlying stream on
destruction of this class. If you specify 'true' for this you
must ensure that the stream was allocated using OGRE_NEW_T with
MEMCATEGRORY_GENERAL.
*/
FileStreamDataStream(const String& name,
std::fstream* s,
size_t size,
bool freeOnClose = true);
~FileStreamDataStream();
/** @copydoc DataStream::read
*/
size_t read(void* buf, size_t count);
/** @copydoc DataStream::write
*/
size_t write(const void* buf, size_t count);
/** @copydoc DataStream::readLine
*/
size_t readLine(char* buf, size_t maxCount, const String& delim = "\n");
/** @copydoc DataStream::skip
*/
void skip(long count);
/** @copydoc DataStream::seek
*/
void seek( size_t pos );
/** @copydoc DataStream::tell
*/
size_t tell(void) const;
/** @copydoc DataStream::eof
*/
bool eof(void) const;
/** @copydoc DataStream::close
*/
void close(void);
};
/** Common subclass of DataStream for handling data from C-style file
handles.
@remarks
Use of this class is generally discouraged; if you want to wrap file
access in a DataStream, you should definitely be using the C++ friendly
FileStreamDataStream. However, since there are quite a few applications
and libraries still wedded to the old FILE handle access, this stream
wrapper provides some backwards compatibility.
*/
class _OgreExport FileHandleDataStream : public DataStream
{
protected:
FILE* mFileHandle;
public:
/// Create stream from a C file handle
FileHandleDataStream(FILE* handle, uint16 accessMode = READ);
/// Create named stream from a C file handle
FileHandleDataStream(const String& name, FILE* handle, uint16 accessMode = READ);
~FileHandleDataStream();
/** @copydoc DataStream::read
*/
size_t read(void* buf, size_t count);
/** @copydoc DataStream::write
*/
size_t write(const void* buf, size_t count);
/** @copydoc DataStream::skip
*/
void skip(long count);
/** @copydoc DataStream::seek
*/
void seek( size_t pos );
/** @copydoc DataStream::tell
*/
size_t tell(void) const;
/** @copydoc DataStream::eof
*/
bool eof(void) const;
/** @copydoc DataStream::close
*/
void close(void);
};
/** @} */
/** @} */
}
#endif
|