Classes | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Protected Attributes | Friends | List of all members
IOstream Class Referenceabstract

An IOstream is an abstract base class for all input/output systems; be they streams, files, token lists etc. More...

Inheritance diagram for IOstream:
Inheritance graph
[legend]
Collaboration diagram for IOstream:
Collaboration graph
[legend]

Classes

class  versionNumber
 Version number type. More...
 

Public Types

enum  streamAccess { OPENED, CLOSED }
 Enumeration for whether the stream open or closed. More...
 
enum  streamFormat { ASCII, BINARY }
 Enumeration for the format of data in the stream. More...
 
enum  compressionType { UNCOMPRESSED, COMPRESSED }
 Enumeration for the format of data in the stream. More...
 

Public Member Functions

 IOstream (streamFormat format, versionNumber version, compressionType compression=UNCOMPRESSED)
 Construct setting format and version. More...
 
virtual ~IOstream ()
 Destructor. More...
 
virtual const fileNamename () const
 Return the name of the stream. More...
 
virtual fileNamename ()
 Return non-const access to the name of the stream. More...
 
virtual bool check (const char *operation) const
 Check IOstream status for given operation. More...
 
void fatalCheck (const char *operation) const
 Check IOstream status for given operation. More...
 
bool opened () const
 Return true if stream has been opened. More...
 
bool closed () const
 Return true if stream is closed. More...
 
bool good () const
 Return true if next operation might succeed. More...
 
bool eof () const
 Return true if end of input seen. More...
 
bool fail () const
 Return true if next operation will fail. More...
 
bool bad () const
 Return true if stream is corrupted. More...
 
 operator void * () const
 Return non-zero if the stream has not failed. More...
 
bool operator! () const
 Return true if the stream has failed. More...
 
streamFormat format () const
 Return current stream format. More...
 
streamFormat format (const streamFormat fmt)
 Set the stream format. More...
 
streamFormat format (const word &fmt)
 Set the stream format from word. More...
 
versionNumber version () const
 Return the stream version. More...
 
versionNumber version (const versionNumber ver)
 Set the stream version. More...
 
compressionType compression () const
 Return the stream compression. More...
 
compressionType compression (const compressionType cmp)
 Set the stream compression. More...
 
compressionType compression (const word &cmp)
 Set the stream compression from word. More...
 
label lineNumber () const
 Return current stream line number. More...
 
labellineNumber ()
 Return current stream line number. More...
 
label lineNumber (const label ln)
 Set the stream line number. More...
 
virtual ios_base::fmtflags flags () const =0
 Return flags of stream. More...
 
void setEof ()
 Set stream to have reached eof. More...
 
void setFail ()
 Set stream to have failed. More...
 
void setBad ()
 Set stream to be bad. More...
 
virtual ios_base::fmtflags flags (const ios_base::fmtflags f)=0
 Set flags of stream. More...
 
ios_base::fmtflags setf (const ios_base::fmtflags f)
 Set flags of stream. More...
 
ios_base::fmtflags setf (const ios_base::fmtflags f, const ios_base::fmtflags mask)
 Set flags of given field of stream. More...
 
void unsetf (const ios_base::fmtflags uf)
 Unset flags of stream. More...
 
virtual void print (Ostream &) const
 Print description of IOstream to Ostream. More...
 
void print (Ostream &, const int streamState) const
 Check given stream state bits. More...
 
InfoProxy< IOstreaminfo () const
 Return info proxy. More...
 

Static Public Member Functions

static streamFormat formatEnum (const word &)
 Return stream format of given format name. More...
 
static compressionType compressionEnum (const word &)
 Return compression of given compression name. More...
 
static unsigned int defaultPrecision ()
 Return the default precision. More...
 
static unsigned int defaultPrecision (unsigned int p)
 Reset the default precision (and return old precision) More...
 

Static Public Attributes

static const versionNumber originalVersion
 Original version number. More...
 
static const versionNumber currentVersion
 Current version number. More...
 
static unsigned int precision_
 Default precision. More...
 

Protected Member Functions

void setOpened ()
 Set stream opened. More...
 
void setClosed ()
 Set stream closed. More...
 
void setState (ios_base::iostate state)
 Set stream state. More...
 
void setGood ()
 Set stream to be good. More...
 

Protected Attributes

label lineNumber_
 

Friends

Ostreamoperator<< (Ostream &os, const streamFormat &sf)
 Ostream operator. More...
 

Detailed Description

An IOstream is an abstract base class for all input/output systems; be they streams, files, token lists etc.

The basic operations are construct, close, read token, read primitive and read binary block. In addition version control and line number counting is incorporated. Usually one would use the read primitive member functions, but if one were reading a stream on unknown data sequence one can read token by token, and then analyse.

Source files

Definition at line 71 of file IOstream.H.

Member Enumeration Documentation

Enumeration for whether the stream open or closed.

Enumerator
OPENED 
CLOSED 

Definition at line 79 of file IOstream.H.

Enumeration for the format of data in the stream.

Enumerator
ASCII 
BINARY 

Definition at line 86 of file IOstream.H.

Enumeration for the format of data in the stream.

Enumerator
UNCOMPRESSED 
COMPRESSED 

Definition at line 193 of file IOstream.H.

Constructor & Destructor Documentation

IOstream ( streamFormat  format,
versionNumber  version,
compressionType  compression = UNCOMPRESSED 
)
inline

Construct setting format and version.

Definition at line 269 of file IOstream.H.

References IOstream::setBad().

Referenced by IOstream::setGood().

Here is the call graph for this function:

Here is the caller graph for this function:

virtual ~IOstream ( )
inlinevirtual

Destructor.

Definition at line 287 of file IOstream.H.

References IOstream::check(), IOstream::fatalCheck(), and IOstream::name().

Here is the call graph for this function:

Member Function Documentation

void setOpened ( )
inlineprotected

Set stream opened.

Definition at line 239 of file IOstream.H.

References IOstream::OPENED.

Referenced by ITstream::ITstream(), OFstream::OFstream(), and UOPstream::UOPstream().

Here is the caller graph for this function:

void setClosed ( )
inlineprotected

Set stream closed.

Definition at line 245 of file IOstream.H.

References IOstream::CLOSED.

Referenced by OFstream::OFstream().

Here is the caller graph for this function:

void setState ( ios_base::iostate  state)
inlineprotected

Set stream state.

Definition at line 251 of file IOstream.H.

Referenced by ISstream::get(), ISstream::getLine(), OFstream::OFstream(), ISstream::putback(), ISstream::read(), OSstream::write(), and OSstream::writeQuoted().

Here is the caller graph for this function:

void setGood ( )
inlineprotected

Set stream to be good.

Definition at line 257 of file IOstream.H.

References IOstream::IOstream().

Referenced by ITstream::ITstream(), ITstream::rewind(), and UOPstream::UOPstream().

Here is the call graph for this function:

Here is the caller graph for this function:

virtual const fileName& name ( ) const
inlinevirtual
virtual fileName& name ( )
inlinevirtual

Return non-const access to the name of the stream.

Useful to alter the stream name

Reimplemented in primitiveEntry, ITstream, OFstream, IFstream, ISstream, and OSstream.

Definition at line 304 of file IOstream.H.

bool check ( const char *  operation) const
virtual

Check IOstream status for given operation.

print IOstream state if error has occured

Definition at line 92 of file IOstream.C.

References IOstream::bad(), Foam::exit(), Foam::FatalIOError, FatalIOErrorInFunction, and IOstream::name().

Referenced by adiabaticPerfectFluid< Specie >::adiabaticPerfectFluid(), Boussinesq< Specie >::Boussinesq(), Foam::checkMethod(), CollidingParcel< ParcelType >::CollidingParcel(), CollisionRecordList< PairType, WallType >::CollisionRecordList(), constTransport< Thermo >::constTransport(), Keyed< T >::createList(), DSMCParcel< ParcelType >::DSMCParcel(), eConstThermo< EquationOfState >::eConstThermo(), fieldAverageItem::fieldAverageItem(), findCellParticle::findCellParticle(), hConstThermo< EquationOfState >::hConstThermo(), hPowerThermo< EquationOfState >::hPowerThermo(), hRefConstThermo< EquationOfState >::hRefConstThermo(), ignitionSite::ignitionSite(), incompressiblePerfectGas< Specie >::incompressiblePerfectGas(), janafThermo< EquationOfState >::janafThermo(), KinematicParcel< ParcelType >::KinematicParcel(), kinematicParcelInjectionData::kinematicParcelInjectionData(), linear< Type >::linear(), molecule::molecule(), MPPICParcel< ParcelType >::MPPICParcel(), line< Point, PointRef >::nearestDist(), objectMap::objectMap(), Foam::operator!=(), WallSiteData< Type >::operator!=(), Istream::operator()(), dimensioned< Type >::operator/=(), Foam::operator<<(), Foam::RBD::operator<<(), Foam::functionObjects::operator<<(), fvPatchField< Type >::operator==(), Foam::operator>>(), Foam::RBD::operator>>(), Foam::functionObjects::operator>>(), PairCollisionRecord< Type >::PairCollisionRecord(), particle< Type >::particle(), PengRobinsonGas< Specie >::PengRobinsonGas(), perfectFluid< Specie >::perfectFluid(), perfectGas< Specie >::perfectGas(), phaseProperties::phaseProperties(), polyBoundaryMesh::polyBoundaryMesh(), pyramid< Point, PointRef, polygonRef >::pyramid(), ReactingMultiphaseParcel< ParcelType >::ReactingMultiphaseParcel(), reactingMultiphaseParcelInjectionData::reactingMultiphaseParcelInjectionData(), ReactingParcel< ParcelType >::ReactingParcel(), reactingParcelInjectionData::reactingParcelInjectionData(), dimensioned< Type >::read(), dimensionSet::read(), IOPosition< CloudType >::readData(), ensightPart::reconstruct(), rhoConst< Specie >::rhoConst(), PackedList< nBits >::setPair(), solidParticle::solidParticle(), LduMatrix< Type, DType, LUType >::source(), specie::specie(), SprayParcel< ParcelType >::SprayParcel(), streamLineParticle::streamLineParticle(), surfacePatchIOList::surfacePatchIOList(), surfZoneIOList::surfZoneIOList(), sutherlandTransport< Thermo >::sutherlandTransport(), thermo< Thermo, Type >::thermo(), ThermoParcel< ParcelType >::ThermoParcel(), thermoParcelInjectionData::thermoParcelInjectionData(), trackedParticle::trackedParticle(), VectorSpace< Form, Cmpt, Ncmpts >::VectorSpace(), wallBoundedParticle::wallBoundedParticle(), wallBoundedStreamLineParticle::wallBoundedStreamLineParticle(), WallCollisionRecord< Type >::WallCollisionRecord(), SHA1Digest::write(), edgeMeshFormat::write(), OFSsurfaceFormat< Face >::write(), perfectGas< Specie >::write(), janafThermo< EquationOfState >::write(), dimensionSet::write(), thermo< Thermo, Type >::write(), triSurface::write(), ensightParts::writeData(), Function1< Type >::writeData(), polyBoundaryMesh::writeData(), DimensionedField< Type, GeoMesh >::writeData(), FixedList< T, Size >::writeEntry(), GeometricField< Type, PatchField, GeoMesh >::Boundary::writeEntry(), Cloud< ParticleType >::writeObject(), particle< Type >::writePosition(), and IOstream::~IOstream().

Here is the call graph for this function:

void fatalCheck ( const char *  operation) const
bool opened ( ) const
inline

Return true if stream has been opened.

Definition at line 321 of file IOstream.H.

References IOstream::OPENED.

Referenced by IOstream::print().

Here is the caller graph for this function:

bool closed ( ) const
inline

Return true if stream is closed.

Definition at line 327 of file IOstream.H.

References IOstream::CLOSED.

Referenced by IOstream::print().

Here is the caller graph for this function:

bool good ( ) const
inline

Return true if next operation might succeed.

Definition at line 333 of file IOstream.H.

Referenced by topoSetSource::checkIs(), Foam::debug::controlDict(), dynamicCode::copyAndFilter(), dynamicCode::copyOrCreateFiles(), writeFiles::createFiles(), AC3DsurfaceFormatCore::cueTo(), error::error(), edgeMeshFormatsCore::getLineNoComment(), surfaceFormatsCore::getLineNoComment(), meanVelocityForce::meanVelocityForce(), noiseFFT::noiseFFT(), IOobject::objectStream(), OFstream::OFstream(), csvTableReader< Type >::operator()(), error::operator()(), Istream::operator()(), Foam::operator>>(), argList::parse(), Foam::parseNASCoord(), IOstream::print(), extendedEdgeMeshFormat::read(), extendedFeatureEdgeMeshFormat::read(), NASedgeFormat::read(), OBJsurfaceFormat< Face >::read(), GTSsurfaceFormat< Face >::read(), NASsurfaceFormat< Face >::read(), OBJedgeFormat::read(), OFFsurfaceFormat< Face >::read(), VTKsurfaceFormat< Face >::read(), edgeMeshFormat::read(), AC3DsurfaceFormat< Face >::read(), tabulated6DoFAcceleration::read(), VTKedgeFormat::read(), STARCDsurfaceFormat< Face >::read(), tabulated6DoFMotion::read(), OFSsurfaceFormat< Face >::read(), STARCDedgeFormat::read(), dictionary::read(), STARCD::readBoundary(), Foam::readCmd(), AC3DsurfaceFormatCore::readCmd(), externalCoupledMixedFvPatchField< Type >::readData(), STARCDCore::readHeader(), STARCD::readHeader(), IOobject::readHeader(), STARCDsurfaceFormatCore::readInpCellTable(), STARCDCore::readPoints(), Foam::readUpto(), scalarRanges::scalarRanges(), Reaction< ReactionThermo >::setLRhs(), topoSet::topoSet(), triSurface::triSurfInstance(), memInfo::update(), vtkUnstructuredReader::vtkUnstructuredReader(), X3DsurfaceFormat< Face >::write(), WRLsurfaceFormat< Face >::write(), SMESHsurfaceFormat< Face >::write(), GTSsurfaceFormat< Face >::write(), OBJsurfaceFormat< Face >::write(), VTKsurfaceFormat< Face >::write(), AC3DsurfaceFormat< Face >::write(), OBJedgeFormat::write(), OFFsurfaceFormat< Face >::write(), TRIsurfaceFormat< Face >::write(), VTKedgeFormat::write(), edgeMeshFormat::write(), OFSsurfaceFormat< Face >::write(), graph::write(), dictionary::write(), dynamicIndexedOctree< Type >::write(), indexedOctree< Type >::write(), STLsurfaceFormat< Face >::writeAscii(), correlationFunction< Type >::writeAveraged(), fieldDictionary::writeData(), featureEdgeMesh::writeData(), IOPosition< CloudType >::writeData(), UniformDimensionedField< Type >::writeData(), surfZoneIOList::writeData(), surfacePatchIOList::writeData(), IOdictionary::writeData(), AverageIOField< Type >::writeData(), porosityModelList::writeData(), coordinateSystems::writeData(), extendedFeatureEdgeMesh::writeData(), polyTopoChanger::writeData(), cellModel::writeData(), AveragingMethod< Type >::writeData(), ZoneMesh< ZoneType, MeshType >::writeData(), MRFZoneList::writeData(), optionList::writeData(), polyBoundaryMesh::writeData(), DimensionedField< Type, GeoMesh >::writeData(), refinementHistory::writeData(), GeometricField< Type, PatchField, GeoMesh >::writeData(), pairPotential::writeEnergyAndForceTables(), IOobject::writeHeader(), regIOobject::writeObject(), JobInfo::~JobInfo(), and TRIsurfaceFormatCore::~TRIsurfaceFormatCore().

bool eof ( ) const
inline
bool fail ( ) const
inline

Return true if next operation will fail.

Definition at line 345 of file IOstream.H.

Referenced by IOstream::operator void *(), IOstream::operator!(), and IOstream::print().

Here is the caller graph for this function:

bool bad ( ) const
inline
operator void * ( ) const
inline

Return non-zero if the stream has not failed.

Definition at line 357 of file IOstream.H.

References IOstream::fail().

Here is the call graph for this function:

bool operator! ( ) const
inline

Return true if the stream has failed.

Definition at line 365 of file IOstream.H.

References IOstream::fail(), and IOstream::formatEnum().

Here is the call graph for this function:

Foam::IOstream::streamFormat formatEnum ( const word format)
static

Return stream format of given format name.

Definition at line 39 of file IOstream.C.

References IOstream::ASCII, IOstream::BINARY, Foam::endl(), and WarningInFunction.

Referenced by ensightSurfaceWriter::ensightSurfaceWriter(), IOstream::format(), IOstream::operator!(), and Time::readDict().

Here is the call graph for this function:

Here is the caller graph for this function:

streamFormat format ( ) const
inline
streamFormat format ( const streamFormat  fmt)
inline

Set the stream format.

Definition at line 383 of file IOstream.H.

streamFormat format ( const word fmt)
inline

Set the stream format from word.

Definition at line 391 of file IOstream.H.

References IOstream::formatEnum().

Here is the call graph for this function:

versionNumber version ( ) const
inline

Return the stream version.

Definition at line 399 of file IOstream.H.

Referenced by Field< Type >::Field(), Foam::operator>>(), IOobject::readHeader(), mappedPatchBase::readListOrField(), Foam::setversion(), and IOobject::writeHeader().

Here is the caller graph for this function:

versionNumber version ( const versionNumber  ver)
inline

Set the stream version.

Definition at line 405 of file IOstream.H.

References IOstream::compressionEnum().

Here is the call graph for this function:

Foam::IOstream::compressionType compressionEnum ( const word compression)
static

Return compression of given compression name.

Definition at line 61 of file IOstream.C.

References IOstream::COMPRESSED, Foam::endl(), IOstream::UNCOMPRESSED, Switch::valid(), and WarningInFunction.

Referenced by IOstream::compression(), rawSurfaceWriter::rawSurfaceWriter(), Time::readDict(), and IOstream::version().

Here is the call graph for this function:

Here is the caller graph for this function:

compressionType compression ( ) const
inline

Return the stream compression.

Definition at line 416 of file IOstream.H.

Referenced by Foam::setcompression().

Here is the caller graph for this function:

compressionType compression ( const compressionType  cmp)
inline

Set the stream compression.

Definition at line 422 of file IOstream.H.

compressionType compression ( const word cmp)
inline

Set the stream compression from word.

Definition at line 430 of file IOstream.H.

References IOstream::compressionEnum().

Here is the call graph for this function:

label lineNumber ( ) const
inline
label& lineNumber ( )
inline

Return current stream line number.

Definition at line 444 of file IOstream.H.

References IOstream::lineNumber_.

label lineNumber ( const label  ln)
inline

Set the stream line number.

Definition at line 450 of file IOstream.H.

References IOstream::flags(), IOstream::lineNumber_, and Foam::ln().

Here is the call graph for this function:

virtual ios_base::fmtflags flags ( ) const
pure virtual

Return flags of stream.

Implemented in ITstream, UIPstream, ISstream, UOPstream, and OSstream.

Referenced by IOstream::lineNumber(), IOstream::setBad(), IOstream::setf(), and IOstream::unsetf().

Here is the caller graph for this function:

static unsigned int defaultPrecision ( )
inlinestatic

Return the default precision.

Definition at line 461 of file IOstream.H.

References IOstream::precision_.

Referenced by writeFile::charWidth(), isNotEqOp< T >::operator()(), probes::prepare(), Time::readDict(), and writeFile::valueWidth().

Here is the caller graph for this function:

static unsigned int defaultPrecision ( unsigned int  p)
inlinestatic

Reset the default precision (and return old precision)

Definition at line 467 of file IOstream.H.

References p, and IOstream::precision_.

void setEof ( )
inline

Set stream to have reached eof.

Definition at line 475 of file IOstream.H.

Referenced by ITstream::read().

Here is the caller graph for this function:

void setFail ( )
inline

Set stream to have failed.

Definition at line 481 of file IOstream.H.

void setBad ( )
inline

Set stream to be bad.

Definition at line 487 of file IOstream.H.

References f(), and IOstream::flags().

Referenced by IOstream::IOstream(), OFstream::OFstream(), Foam::operator>>(), ISstream::putback(), UIPstream::read(), ITstream::read(), Istream::readBegin(), Istream::readBeginList(), Istream::readEnd(), Istream::readEndList(), and UOPstream::write().

Here is the call graph for this function:

Here is the caller graph for this function:

virtual ios_base::fmtflags flags ( const ios_base::fmtflags  f)
pure virtual

Set flags of stream.

Implemented in UOPstream, ITstream, ISstream, UIPstream, and OSstream.

ios_base::fmtflags setf ( const ios_base::fmtflags  f)
inline

Set flags of stream.

Definition at line 496 of file IOstream.H.

References IOstream::flags().

Referenced by Foam::dec(), ensightAsciiStream::ensightAsciiStream(), ensightFile::ensightFile(), Foam::fixed(), Foam::hex(), writeFile::initStream(), NamedEnum< Enum, nEnum >::names(), Foam::oct(), Foam::scientific(), Foam::setf(), ensightSetWriter< Type >::write(), and STARCDCore::writePoints().

Here is the call graph for this function:

Here is the caller graph for this function:

ios_base::fmtflags setf ( const ios_base::fmtflags  f,
const ios_base::fmtflags  mask 
)
inline

Set flags of given field of stream.

Definition at line 503 of file IOstream.H.

References IOstream::flags().

Here is the call graph for this function:

void unsetf ( const ios_base::fmtflags  uf)
inline

Unset flags of stream.

Definition at line 512 of file IOstream.H.

References IOstream::flags(), IOstream::info(), IOstream::versionNumber::operator<<, IOstream::print(), and sf().

Referenced by NamedEnum< Enum, nEnum >::names().

Here is the call graph for this function:

Here is the caller graph for this function:

void print ( Ostream os) const
virtual
void print ( Ostream os,
const int  streamState 
) const

Check given stream state bits.

Definition at line 177 of file IOstream.C.

References Foam::endl().

Here is the call graph for this function:

InfoProxy<IOstream> info ( ) const
inline

Return info proxy.

Used to print IOstream information to a stream

Definition at line 531 of file IOstream.H.

Referenced by OFstream::OFstream(), dimensionSet::read(), IOstream::unsetf(), and IOobject::writeHeader().

Here is the caller graph for this function:

Friends And Related Function Documentation

Ostream& operator<< ( Ostream os,
const streamFormat sf 
)
friend

Ostream operator.

Member Data Documentation

const IOstream::versionNumber originalVersion
static

Original version number.

Definition at line 203 of file IOstream.H.

Referenced by Foam::operator>>().

const IOstream::versionNumber currentVersion
static
unsigned int precision_
static

Default precision.

Definition at line 209 of file IOstream.H.

Referenced by IOstream::defaultPrecision().

label lineNumber_
protected

The documentation for this class was generated from the following files: