📄 streamsource.cpp
字号:
//****************************************************************************//// streamsource.h //// Copyright (C) 2001-2003 Bruno 'Beosil' Heidelberger ////****************************************************************************//// This library is free software; you can redistribute it and/or modify it //// under the terms of the GNU Lesser General Public License as published by //// the Free Software Foundation; either version 2.1 of the License, or (at //// your option) any later version. ////****************************************************************************//#ifdef HAVE_CONFIG_H#include "config.h"#endif//****************************************************************************//// Includes ////****************************************************************************//#include "cal3d/streamsource.h"#include "cal3d/error.h"#include "cal3d/platform.h" /*****************************************************************************//** Constructs a stream source instance from an existing istream. * * This function is the only constructor of the stream source. * * @param inputStream The input stream to use, which should be set up and * ready to be read from before making the stream source. *****************************************************************************/CalStreamSource::CalStreamSource(std::istream& inputStream) : mInputStream(&inputStream){}/** * Destruct the CalStreamSource. Note that input stream is not closed here; * this should be handled externally. */CalStreamSource::~CalStreamSource(){} /*****************************************************************************//** Checks whether the data source is in a good state. * * This function checks if the istream can be used. * * @return One of the following values: * \li \b true if data source is in a good state * \li \b false if not *****************************************************************************/bool CalStreamSource::ok() const{ if (!mInputStream) return false; return true;} /*****************************************************************************//** Sets the error code and message related to a streaming source. * *****************************************************************************/void CalStreamSource::setError() const{ CalError::setLastError(CalError::INVALID_HANDLE, __FILE__, __LINE__);} /*****************************************************************************//** Reads a number of bytes. * * This function reads a given number of bytes from this data source. * * @param pBuffer A pointer to the buffer where the bytes are stored into. * @param length The number of bytes that should be read. * * @return One of the following values: * \li \b true if successful * \li \b false if an error happend *****************************************************************************/bool CalStreamSource::readBytes(void* pBuffer, int length){ //Check that the stream is usable if (!ok()) return false; return CalPlatform::readBytes( *mInputStream, pBuffer, length );} /*****************************************************************************//** Reads a float. * * This function reads a float from this data source. * * @param value A reference to the float into which the data is read. * * @return One of the following values: * \li \b true if successful * \li \b false if an error happend *****************************************************************************/bool CalStreamSource::readFloat(float& value){ //Check that the stream is usable if (!ok()) return false; return CalPlatform::readFloat( *mInputStream, value );} /*****************************************************************************//** Reads an integer. * * This function reads an integer from this data source. * * @param value A reference to the integer into which the data is read. * * @return One of the following values: * \li \b true if successful * \li \b false if an error happend *****************************************************************************/bool CalStreamSource::readInteger(int& value){ //Check that the stream is usable if (!ok()) return false; return CalPlatform::readInteger( *mInputStream, value );} /*****************************************************************************//** Reads a string. * * This function reads a string from this data source. * * @param value A reference to the string into which the data is read. * * @return One of the following values: * \li \b true if successful * \li \b false if an error happend *****************************************************************************/bool CalStreamSource::readString(std::string& strValue){ //Check that the stream is usable if (!ok()) return false; return CalPlatform::readString( *mInputStream, strValue );}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -