An Ostream is an abstract base class for all output systems (streams, files, token lists, etc). More...
Public Member Functions | |
Ostream (const Ostream &)=default | |
Copy construct. More... | |
virtual | ~Ostream ()=default |
Destructor. More... | |
Ostream (IOstreamOption streamOpt=IOstreamOption()) | |
Ostream (IOstreamOption::streamFormat fmt, IOstreamOption::versionNumber ver=IOstreamOption::currentVersion, IOstreamOption::compressionType cmp=IOstreamOption::UNCOMPRESSED) | |
Construct with format, version (compression) More... | |
virtual bool | write (const token &tok)=0 |
Write token to stream or otherwise handle it. More... | |
virtual Ostream & | write (const char c)=0 |
Write character. More... | |
virtual Ostream & | write (const char *str)=0 |
Write character string. More... | |
virtual Ostream & | write (const word &str)=0 |
Write word. More... | |
virtual Ostream & | write (const keyType &kw) |
Write keyType. More... | |
virtual Ostream & | write (const string &str)=0 |
Write string. More... | |
virtual Ostream & | writeQuoted (const std::string &str, const bool quoted=true)=0 |
Write std::string surrounded by quotes. More... | |
virtual Ostream & | write (const int32_t val)=0 |
Write int32_t. More... | |
virtual Ostream & | write (const int64_t val)=0 |
Write int64_t. More... | |
virtual Ostream & | write (const floatScalar val)=0 |
Write floatScalar. More... | |
virtual Ostream & | write (const doubleScalar val)=0 |
Write doubleScalar. More... | |
virtual Ostream & | write (const char *data, std::streamsize count)=0 |
Write binary block. More... | |
virtual Ostream & | writeRaw (const char *data, std::streamsize count)=0 |
Low-level raw binary output. More... | |
virtual bool | beginRawWrite (std::streamsize count)=0 |
Emit begin marker for low-level raw binary output. More... | |
virtual bool | endRawWrite ()=0 |
Emit end marker for low-level raw binary output. More... | |
virtual void | indent ()=0 |
Add indentation characters. More... | |
unsigned short | indentSize () const noexcept |
Return indent size (spaces per level) More... | |
unsigned short | indentSize (unsigned short val) noexcept |
Change indent size (spaces per level), return old value. More... | |
unsigned short | indentLevel () const noexcept |
Return the indent level. More... | |
unsigned short | indentLevel (unsigned short val) noexcept |
Change the indent level, return old value. More... | |
void | incrIndent () noexcept |
Increment the indent level. More... | |
void | decrIndent () |
Decrement the indent level. More... | |
virtual Ostream & | writeKeyword (const keyType &kw) |
Write the keyword followed by an appropriate indentation. More... | |
virtual Ostream & | beginBlock (const keyType &kw) |
Write begin block group with the given name. More... | |
virtual Ostream & | beginBlock () |
Write begin block group without a name. More... | |
virtual Ostream & | endBlock () |
Write end block group. More... | |
virtual Ostream & | endEntry () |
Write end entry (';') followed by newline. More... | |
template<class T > | |
Ostream & | writeEntry (const keyType &key, const T &value) |
Write a keyword/value entry. More... | |
template<class T > | |
Ostream & | writeEntryIfDifferent (const word &key, const T &value1, const T &value2) |
Write a keyword/value entry only when the two values differ. More... | |
virtual void | flush ()=0 |
Flush stream. More... | |
virtual void | endl ()=0 |
Add newline and flush stream. More... | |
virtual char | fill () const =0 |
Get padding character. More... | |
virtual char | fill (const char fillch)=0 |
Set padding character for formatted field up to field width. More... | |
virtual int | width () const =0 |
Get width of output field. More... | |
virtual int | width (const int w)=0 |
Set width of output field (and return old width) More... | |
virtual int | precision () const =0 |
Get precision of output field. More... | |
virtual int | precision (const int p)=0 |
Set precision of output field (and return old precision) More... | |
Ostream & | operator() () const |
Return a non-const reference to const Ostream. More... | |
unsigned short & | indentLevel () noexcept |
Access to indent level. More... | |
unsigned short & | indentSize () noexcept |
Access to indent size. More... | |
![]() | |
IOstream (const IOstream &)=default | |
Copy construct. More... | |
virtual | ~IOstream ()=default |
Destructor. More... | |
IOstream (IOstreamOption streamOpt=IOstreamOption()) | |
IOstream (IOstreamOption::streamFormat fmt, IOstreamOption::versionNumber ver, IOstreamOption::compressionType cmp=IOstreamOption::UNCOMPRESSED) | |
Construct with format, version (compression) More... | |
virtual const fileName & | name () const |
Return the name of the stream. More... | |
virtual fileName & | name () |
Return stream name for modification. More... | |
fileName | relativeName () const |
Return the name of the stream relative to the current case. More... | |
virtual bool | check (const char *operation) const |
Check IOstream status for given operation. More... | |
bool | fatalCheck (const char *operation) const |
Check IOstream status for given operation. More... | |
bool | opened () const noexcept |
True if stream has been opened. More... | |
bool | closed () const noexcept |
True if stream is closed. More... | |
bool | good () const noexcept |
True if next operation might succeed. More... | |
bool | eof () const noexcept |
True if end of input seen. More... | |
bool | fail () const noexcept |
True if next operation will fail. More... | |
bool | bad () const noexcept |
True if stream is corrupted. More... | |
operator bool () const noexcept | |
Return true if the stream has not failed. More... | |
bool | operator! () const noexcept |
Return true if the stream has failed. More... | |
unsigned | labelByteSize () const noexcept |
The sizeof (label) in bytes associated with the stream. More... | |
unsigned | scalarByteSize () const noexcept |
The sizeof (scalar) in bytes associated with the stream. More... | |
void | setLabelByteSize (unsigned nbytes) noexcept |
Set the sizeof (label) in bytes associated with the stream. More... | |
void | setScalarByteSize (unsigned nbytes) noexcept |
Set the sizeof (scalar) in bytes associated with the stream. More... | |
template<class T = label> | |
std::enable_if< std::is_integral< T >::value, bool >::type | checkLabelSize () const noexcept |
template<class T = scalar> | |
std::enable_if< std::is_floating_point< T >::value, bool >::type | checkScalarSize () const noexcept |
label | lineNumber () const noexcept |
Const access to the current stream line number. More... | |
label & | lineNumber () noexcept |
Non-const access to the current stream line number. More... | |
label | lineNumber (const label num) noexcept |
Set the stream line number. More... | |
virtual ios_base::fmtflags | flags () const =0 |
Return flags of stream. More... | |
void | setEof () noexcept |
Set stream state as reached 'eof'. More... | |
void | setFail () noexcept |
Set stream state as 'failed'. More... | |
void | setBad () |
Set stream state 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 f) |
Unset flags of stream. More... | |
virtual void | print (Ostream &os) const |
Print stream description to Ostream. More... | |
void | print (Ostream &os, const int streamState) const |
Print information about the stream state bits. More... | |
InfoProxy< IOstream > | info () const |
Return info proxy. More... | |
![]() | |
constexpr | IOstreamOption (streamFormat fmt=streamFormat::ASCII, compressionType comp=compressionType::UNCOMPRESSED) noexcept |
constexpr | IOstreamOption (streamFormat fmt, compressionType comp, versionNumber ver) noexcept |
Construct from components (format, compression, version) More... | |
constexpr | IOstreamOption (streamFormat fmt, versionNumber ver, compressionType comp=compressionType::UNCOMPRESSED) noexcept |
Construct from components (format, version, compression) More... | |
IOstreamOption (const IOstreamOption &opt, streamFormat fmt) noexcept | |
Copy construct with change of format. More... | |
streamFormat | format () const noexcept |
Get the current stream format. More... | |
streamFormat | format (const streamFormat fmt) noexcept |
Set the stream format. More... | |
streamFormat | format (const word &formatName) |
Set the stream format from string value. More... | |
compressionType | compression () const noexcept |
Get the stream compression. More... | |
compressionType | compression (const compressionType comp) noexcept |
Set the stream compression. More... | |
compressionType | compression (const word &compName) |
Set the stream compression from string value. More... | |
versionNumber | version () const noexcept |
Get the stream version. More... | |
versionNumber | version (const versionNumber ver) noexcept |
Set the stream version. More... | |
versionNumber | version (const token &tok) |
Set the stream version from token. More... | |
Protected Attributes | |
unsigned short | indentSize_ = 4 |
Number of spaces per indent level. More... | |
unsigned short | indentLevel_ = 0 |
Current indent level. More... | |
![]() | |
std::ios_base::iostate | ioState_ |
Mirror of internal stream io state. More... | |
streamAccess | openClosed_ |
The stream open/closed state. More... | |
unsigned char | sizeofLabel_ |
The sizeof (label), possibly read from the header. More... | |
unsigned char | sizeofScalar_ |
The sizeof (scalar), possibly read from the header. More... | |
label | lineNumber_ |
The file line. More... | |
Static Protected Attributes | |
static constexpr const unsigned short | entryIndentation_ = 16 |
Indentation of the entry from the start of the keyword. More... | |
![]() | |
static fileName | staticName_ |
Name for any generic stream - normally treat as readonly. More... | |
Additional Inherited Members | |
![]() | |
enum | streamAccess : char { CLOSED = 0 , OPENED } |
Enumeration for stream open/closed state. More... | |
![]() | |
enum | streamFormat : char { ASCII = 0 , BINARY } |
Data format (ascii | binary) More... | |
enum | compressionType : char { UNCOMPRESSED = 0 , COMPRESSED } |
Compression treatment (UNCOMPRESSED | COMPRESSED) More... | |
![]() | |
static unsigned int | defaultPrecision () noexcept |
Return the default precision. More... | |
static unsigned int | defaultPrecision (unsigned int prec) noexcept |
Reset the default precision. More... | |
![]() | |
static streamFormat | formatEnum (const word &formatName, const streamFormat deflt=streamFormat::ASCII) |
static streamFormat | formatEnum (const word &key, const dictionary &dict, const streamFormat deflt=streamFormat::ASCII) |
Failsafe construct streamFormat from optional dictionary lookup. More... | |
static compressionType | compressionEnum (const word &compName, const compressionType deflt=compressionType::UNCOMPRESSED) |
The compression enum corresponding to the string. More... | |
static compressionType | compressionEnum (const word &key, const dictionary &dict, const compressionType deflt=compressionType::UNCOMPRESSED) |
Failsafe construct compressionType from optional dictionary lookup. More... | |
![]() | |
static unsigned int | precision_ |
Default precision. More... | |
![]() | |
static const Enum< streamFormat > | formatNames |
Stream format names (ascii, binary) More... | |
static const versionNumber | currentVersion |
The current version number (2.0) More... | |
![]() | |
void | setOpened () noexcept |
Set stream opened. More... | |
void | setClosed () noexcept |
Set stream closed. More... | |
void | setState (std::ios_base::iostate state) noexcept |
Set stream state. More... | |
void | setGood () noexcept |
Set stream state to be good. More... | |
An Ostream is an abstract base class for all output systems (streams, files, token lists, etc).
|
virtualdefault |
Destructor.
|
inlineexplicit |
|
inlineexplicit |
Write token to stream or otherwise handle it.
Implemented in ensightFile, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
Referenced by snappyLayerDriver::addLayers(), interRegionHeatTransferModel::addSup(), distanceSurface::createGeometry(), snappySnapDriver::doSnap(), if(), interpolationTable< scalar >::interpolateValues(), ensightCase::newCloud(), ensightCase::newCloudData(), ensightCase::newData(), Foam::operator<<(), refinementIterator::setRefinement(), snappySnapDriver::smoothDisplacement(), trackingInverseDistance::update(), ObukhovLength::write(), derivedFields::write(), extractEulerianParticles::write(), XiReactionRate::write(), forces::write(), electricPotential::write(), fixedNormalInletOutletVelocityFvPatchVectorField::write(), freestreamFvPatchField< Type >::write(), scaledFixedValueFvPatchField< Type >::write(), cyclicAMIPolyPatch::write(), cyclicPolyPatch::write(), sixDoFRigidBodyMotion::write(), scene::write(), mappedPatchBase::write(), FallOffReactionRate< ReactionRate, FallOffFunction >::write(), NonEquilibriumReversibleReaction< ReactionType, ReactionThermo, ReactionRate >::write(), UniformDimensionedField< Type >::writeData(), profiling::writeData(), OSstream::writeRaw(), and vtkWriter::writeTemplate().
|
pure virtual |
Write character.
Implemented in OBJstream, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, OBJstream, and ensightFile.
|
pure virtual |
Write character string.
Implemented in ensightFile, OBJstream, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
Write word.
Implemented in ensightFile, OBJstream, UOPstreamBase, UOPstream, UOPBstream, OSstream, OTstream, OBJstream, and prefixOSstream.
|
virtual |
Write keyType.
A plain word is written unquoted. A regular expression is written as a quoted string.
Reimplemented in OBJstream.
Definition at line 51 of file Ostream.C.
References keyType::isPattern(), and writeQuoted().
Write string.
Implemented in ensightFile, OBJstream, OSHA1stream, UOPstreamBase, UOPstream, UOPBstream, OSstream, OTstream, OBJstream, and prefixOSstream.
Write std::string surrounded by quotes.
Optional write without quotes.
Implemented in OBJstream, UOPstreamBase, OSstream, OTstream, and prefixOSstream.
|
pure virtual |
Write int32_t.
Implemented in ensightFile, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
|
pure virtual |
Write int64_t.
Implemented in ensightFile, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
|
pure virtual |
Write floatScalar.
Implemented in ensightFile, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
|
pure virtual |
Write doubleScalar.
Implemented in ensightFile, UOPstreamBase, UOPstream, UOPBstream, OSstream, prefixOSstream, OTstream, and OBJstream.
|
pure virtual |
Write binary block.
Implemented in ensightFile, prefixOSstream, UOPstreamBase, UOPstream, UOPBstream, OSstream, OTstream, and OBJstream.
|
pure virtual |
Low-level raw binary output.
Implemented in UOPstreamBase, OSstream, and OTstream.
|
pure virtual |
Emit begin marker for low-level raw binary output.
The count indicates the number of bytes for subsequent writeRaw calls.
Implemented in UOPstreamBase, OSstream, and OTstream.
|
pure virtual |
Emit end marker for low-level raw binary output.
Implemented in UOPstreamBase, OSstream, and OTstream.
|
pure virtual |
Add indentation characters.
Implemented in UOPstreamBase, OSstream, prefixOSstream, and OTstream.
|
inlinenoexcept |
Return indent size (spaces per level)
Definition at line 177 of file Ostream.H.
References Ostream::indentSize_.
|
inlinenoexcept |
Change indent size (spaces per level), return old value.
Definition at line 183 of file Ostream.H.
References Ostream::indentSize_.
|
inlinenoexcept |
Return the indent level.
Definition at line 191 of file Ostream.H.
References Ostream::indentLevel_.
|
inlinenoexcept |
Change the indent level, return old value.
Definition at line 197 of file Ostream.H.
References Ostream::indentLevel_.
|
inlinenoexcept |
Increment the indent level.
Definition at line 205 of file Ostream.H.
References Ostream::indentLevel_.
Referenced by Foam::incrIndent(), and ensightMesh::options::print().
void decrIndent | ( | ) |
Decrement the indent level.
Definition at line 37 of file Ostream.C.
References Ostream::indentLevel_.
Referenced by Foam::decrIndent(), and ensightMesh::options::print().
|
virtual |
Write the keyword followed by an appropriate indentation.
Reimplemented in ensightFile, and ensightGeoFile.
Definition at line 57 of file Ostream.C.
References Foam::indent(), keyType::isPattern(), token::SPACE, write(), and writeQuoted().
Referenced by ensightMesh::options::print(), patchIdentifier::write(), zoneIdentifier::write(), JanevReactionRate::write(), LangmuirHinshelwoodReactionRate::write(), primitiveEntry::write(), UniformDimensionedField< Type >::writeData(), Function1< Type >::writeData(), ensightCells::writeDict(), ensightFaces::writeDict(), Ostream::writeEntry(), Field< Type >::writeEntry(), and Foam::writeTrackField().
|
virtual |
Write begin block group with the given name.
Increments indentation, adds newline.
Definition at line 87 of file Ostream.C.
References Foam::beginBlock(), Foam::indent(), keyType::isPattern(), write(), and writeQuoted().
Referenced by PDRblock::blockMeshDict(), Foam::operator<<(), Foam::printDOT(), fieldsDistributor::readFields(), fixedNormalInletOutletVelocityFvPatchVectorField::write(), freestreamFvPatchField< Type >::write(), outletMappedUniformInletFvPatchField< Type >::write(), scaledFixedValueFvPatchField< Type >::write(), alphatWallBoilingWallFunctionFvPatchScalarField::write(), sixDoFRigidBodyMotion::write(), surfZone::write(), surfacePatch::write(), constAnIsoSolidTransport< Thermo >::write(), constIsoSolidTransport< Thermo >::write(), exponentialSolidTransport< Thermo >::write(), polynomialSolidTransport< Thermo, PolySize >::write(), tabulatedAnIsoSolidTransport< Thermo >::write(), tabulatedSolidTransport< Thermo >::write(), adiabaticPerfectFluid< Specie >::write(), Boussinesq< Specie >::write(), icoPolynomial< Specie, PolySize >::write(), icoTabulated< Specie >::write(), incompressiblePerfectGas< Specie >::write(), linear< Type >::write(), perfectFluid< Specie >::write(), rhoConst< Specie >::write(), rPolynomial< Specie >::write(), FallOffReactionRate< ReactionRate, FallOffFunction >::write(), NonEquilibriumReversibleReaction< ReactionType, ReactionThermo, ReactionRate >::write(), ReactionList< ThermoType >::write(), specie::write(), eConstThermo< EquationOfState >::write(), hConstThermo< EquationOfState >::write(), hPolynomialThermo< EquationOfState, PolySize >::write(), hTabulatedThermo< EquationOfState >::write(), janafThermo< EquationOfState >::write(), constTransport< Thermo >::write(), logPolynomialTransport< Thermo, PolySize >::write(), polynomialTransport< Thermo, PolySize >::write(), sutherlandTransport< Thermo >::write(), tabulatedTransport< Thermo >::write(), WLFTransport< Thermo >::write(), profilingInformation::write(), dictionary::write(), mapDistributePolyMesh::writeCellMapEntries(), faBoundaryMesh::writeData(), MRFZone::writeData(), MappedFile< Type >::writeData(), profiling::writeData(), polyBoundaryMesh::writeData(), attachDetach::writeDict(), perfectInterface::writeDict(), setUpdater::writeDict(), slidingInterface::writeDict(), colourTable::writeDict(), cellZone::writeDict(), faceZone::writeDict(), pointZone::writeDict(), plane::writeDict(), ensightCells::writeDict(), ensightFaces::writeDict(), PDRblock::gridControl::writeDict(), GeometricBoundaryField< Type, PatchField, GeoMesh >::writeEntries(), mapDistribute::writeEntries(), mapDistributeBase::writeEntries(), GeometricBoundaryField< Type, PatchField, GeoMesh >::writeEntry(), coordinateSystem::writeEntry(), dictionary::writeEntry(), mapDistributePolyMesh::writeFaceMapEntries(), Foam::writeFuncsImpl(), option::writeHeader(), IOobject::writeHeader(), decomposedBlockData::writeHeader(), mapDistributePolyMesh::writePatchMapEntries(), and mapDistributePolyMesh::writePointMapEntries().
|
virtual |
Write begin block group without a name.
Increments indentation, adds newline.
Definition at line 96 of file Ostream.C.
References token::BEGIN_BLOCK, Foam::incrIndent(), Foam::indent(), and write().
|
virtual |
Write end block group.
Decrements indentation, adds newline.
Definition at line 105 of file Ostream.C.
References Foam::decrIndent(), token::END_BLOCK, Foam::indent(), and write().
Referenced by PDRblock::blockMeshDict(), Foam::operator<<(), Foam::printDOT(), fieldsDistributor::readFields(), fixedNormalInletOutletVelocityFvPatchVectorField::write(), freestreamFvPatchField< Type >::write(), outletMappedUniformInletFvPatchField< Type >::write(), scaledFixedValueFvPatchField< Type >::write(), alphatWallBoilingWallFunctionFvPatchScalarField::write(), sixDoFRigidBodyMotion::write(), surfZone::write(), surfacePatch::write(), constAnIsoSolidTransport< Thermo >::write(), constIsoSolidTransport< Thermo >::write(), exponentialSolidTransport< Thermo >::write(), polynomialSolidTransport< Thermo, PolySize >::write(), tabulatedAnIsoSolidTransport< Thermo >::write(), tabulatedSolidTransport< Thermo >::write(), adiabaticPerfectFluid< Specie >::write(), Boussinesq< Specie >::write(), icoPolynomial< Specie, PolySize >::write(), icoTabulated< Specie >::write(), incompressiblePerfectGas< Specie >::write(), linear< Type >::write(), perfectFluid< Specie >::write(), rhoConst< Specie >::write(), rPolynomial< Specie >::write(), FallOffReactionRate< ReactionRate, FallOffFunction >::write(), NonEquilibriumReversibleReaction< ReactionType, ReactionThermo, ReactionRate >::write(), specie::write(), eConstThermo< EquationOfState >::write(), hConstThermo< EquationOfState >::write(), hPolynomialThermo< EquationOfState, PolySize >::write(), hTabulatedThermo< EquationOfState >::write(), janafThermo< EquationOfState >::write(), constTransport< Thermo >::write(), logPolynomialTransport< Thermo, PolySize >::write(), polynomialTransport< Thermo, PolySize >::write(), sutherlandTransport< Thermo >::write(), tabulatedTransport< Thermo >::write(), WLFTransport< Thermo >::write(), profilingInformation::write(), dictionary::write(), mapDistributePolyMesh::writeCellMapEntries(), faBoundaryMesh::writeData(), MRFZone::writeData(), profiling::writeData(), polyBoundaryMesh::writeData(), attachDetach::writeDict(), perfectInterface::writeDict(), setUpdater::writeDict(), slidingInterface::writeDict(), colourTable::writeDict(), cellZone::writeDict(), faceZone::writeDict(), pointZone::writeDict(), plane::writeDict(), ensightCells::writeDict(), ensightFaces::writeDict(), PDRblock::gridControl::writeDict(), GeometricBoundaryField< Type, PatchField, GeoMesh >::writeEntries(), mapDistribute::writeEntries(), mapDistributeBase::writeEntries(), GeometricBoundaryField< Type, PatchField, GeoMesh >::writeEntry(), coordinateSystem::writeEntry(), dictionary::writeEntry(), mapDistributePolyMesh::writeFaceMapEntries(), Foam::writeFuncsImpl(), IOobject::writeHeader(), decomposedBlockData::writeHeader(), mapDistributePolyMesh::writePatchMapEntries(), and mapDistributePolyMesh::writePointMapEntries().
|
virtual |
Write end entry (';') followed by newline.
Definition at line 114 of file Ostream.C.
References token::END_STATEMENT, and write().
Referenced by Foam::endEntry(), and Ostream::writeEntry().
Write a keyword/value entry.
The following two are functionally equivalent:
Definition at line 239 of file Ostream.H.
References Ostream::endEntry(), and Ostream::writeKeyword().
Referenced by PDRblock::blockMeshDict(), Foam::operator<<(), atmBoundaryLayer::write(), atmTurbulentHeatFluxTemperatureFvPatchScalarField::write(), solidBodyMotionDisplacementPointPatchVectorField::write(), faPatch::write(), faPatchField< Type >::write(), SRFFreestreamVelocityFvPatchVectorField::write(), SRFVelocityFvPatchVectorField::write(), acousticWaveTransmissiveFvPatchField< Type >::write(), activeBaffleVelocityFvPatchVectorField::write(), activePressureForceBaffleVelocityFvPatchVectorField::write(), advectiveFvPatchField< Type >::write(), codedFixedValueFvPatchField< Type >::write(), codedMixedFvPatchField< Type >::write(), cylindricalInletVelocityFvPatchVectorField::write(), electrostaticDepositionFvPatchScalarField::write(), fixedJumpFvPatchField< Type >::write(), fixedJumpAMIFvPatchField< Type >::write(), fixedNormalInletOutletVelocityFvPatchVectorField::write(), fixedNormalSlipFvPatchField< Type >::write(), fixedProfileFvPatchField< Type >::write(), flowRateInletVelocityFvPatchVectorField::write(), freestreamFvPatchField< Type >::write(), inletOutletTotalTemperatureFvPatchScalarField::write(), mappedFlowRateFvPatchVectorField::write(), matchedFlowRateOutletVelocityFvPatchVectorField::write(), outletMappedUniformInletFvPatchField< Type >::write(), outletPhaseMeanVelocityFvPatchVectorField::write(), partialSlipFvPatchField< Type >::write(), phaseHydrostaticPressureFvPatchScalarField::write(), plenumPressureFvPatchScalarField::write(), pressureNormalInletOutletVelocityFvPatchVectorField::write(), pressurePIDControlInletVelocityFvPatchVectorField::write(), rotatingPressureInletOutletVelocityFvPatchVectorField::write(), rotatingWallVelocityFvPatchVectorField::write(), supersonicFreestreamFvPatchVectorField::write(), swirlFlowRateInletVelocityFvPatchVectorField::write(), swirlInletVelocityFvPatchVectorField::write(), syringePressureFvPatchScalarField::write(), totalPressureFvPatchScalarField::write(), totalTemperatureFvPatchScalarField::write(), turbulentDFSEMInletFvPatchVectorField::write(), turbulentInletFvPatchField< Type >::write(), turbulentIntensityKineticEnergyInletFvPatchScalarField::write(), uniformDensityHydrostaticPressureFvPatchScalarField::write(), uniformTotalPressureFvPatchScalarField::write(), variableHeightFlowRateFvPatchScalarField::write(), variableHeightFlowRateInletVelocityFvPatchVectorField::write(), waveTransmissiveFvPatchField< Type >::write(), fvPatchField< Type >::write(), angularOscillatingDisplacementPointPatchVectorField::write(), angularOscillatingVelocityPointPatchVectorField::write(), oscillatingDisplacementPointPatchVectorField::write(), oscillatingVelocityPointPatchVectorField::write(), surfaceDisplacementPointPatchVectorField::write(), surfaceSlipDisplacementPointPatchVectorField::write(), uniformInterpolatedDisplacementPointPatchVectorField::write(), waveDisplacementPointPatchVectorField::write(), cyclicACMIPolyPatch::write(), cyclicAMIPolyPatch::write(), mappedVariableThicknessWallPolyPatch::write(), codedFixedValuePointPatchField< Type >::write(), fixedNormalSlipPointPatchField< Type >::write(), pointPatchField< Type >::write(), genericPolyPatch::write(), cyclicPolyPatch::write(), oldCyclicPolyPatch::write(), processorPolyPatch::write(), processorCyclicPolyPatch::write(), adjointFarFieldPressureFvPatchScalarField::write(), adjointFarFieldVelocityFvPatchVectorField::write(), adjointInletVelocityFvPatchVectorField::write(), adjointOutletPressureFvPatchScalarField::write(), adjointOutletVelocityFvPatchVectorField::write(), adjointOutletVelocityFluxFvPatchVectorField::write(), adjointRotatingWallVelocityFvPatchVectorField::write(), adjointWallVelocityFvPatchVectorField::write(), adjointWallVelocityLowReFvPatchVectorField::write(), adjointFarFieldNuaTildaFvPatchScalarField::write(), adjointFarFieldTMVar1FvPatchScalarField::write(), adjointFarFieldTMVar2FvPatchScalarField::write(), adjointInletNuaTildaFvPatchScalarField::write(), adjointOutletKaFvPatchScalarField::write(), adjointOutletNuaTildaFvPatchScalarField::write(), adjointOutletNuaTildaFluxFvPatchScalarField::write(), adjointOutletWaFvPatchScalarField::write(), kaqRWallFunctionFvPatchScalarField::write(), alphaContactAngleFvPatchScalarField::write(), timeVaryingMassSorptionFvPatchScalarField::write(), alphatFixedDmdtWallBoilingWallFunctionFvPatchScalarField::write(), alphatPhaseChangeJayatillekeWallFunctionFvPatchScalarField::write(), alphatWallBoilingWallFunctionFvPatchScalarField::write(), copiedFixedValueFvPatchScalarField::write(), fixedMultiPhaseHeatFluxFvPatchScalarField::write(), JohnsonJacksonParticleSlipFvPatchVectorField::write(), JohnsonJacksonParticleThetaFvPatchScalarField::write(), filmPyrolysisRadiativeCoupledMixedFvPatchScalarField::write(), thermalBaffleFvPatchScalarField::write(), subBody::write(), sixDoFRigidBodyDisplacementPointPatchVectorField::write(), sixDoFRigidBodyMotion::write(), enthalpySorptionFvPatchScalarField::write(), speciesSorptionFvPatchScalarField::write(), convectiveHeatTransferFvPatchScalarField::write(), externalWallHeatFluxTemperatureFvPatchScalarField::write(), humidityTemperatureCoupledMixedFvPatchScalarField::write(), lumpedMassWallTemperatureFvPatchScalarField::write(), outletMappedUniformInletHeatAdditionFvPatchField::write(), totalFlowRateAdvectiveDiffusiveFvPatchScalarField::write(), constantAlphaContactAngleFvPatchScalarField::write(), dynamicAlphaContactAngleFvPatchScalarField::write(), timeVaryingAlphaContactAngleFvPatchScalarField::write(), alphatJayatillekeWallFunctionFvPatchScalarField::write(), fixedShearStressFvPatchVectorField::write(), porousBafflePressureFvPatchField< Type >::write(), turbulentMixingLengthDissipationRateInletFvPatchScalarField::write(), turbulentMixingLengthFrequencyInletFvPatchScalarField::write(), waveAlphaFvPatchScalarField::write(), waveVelocityFvPatchVectorField::write(), waveMakerPointPatchVectorField::write(), interpolationLookUpTable< Type >::write(), boundaryPatch::write(), processorFaPatch::write(), fanFvPatchField< Type >::write(), fanPressureFvPatchScalarField::write(), mappedPatchFieldBase< Type >::write(), swirlFanVelocityFvPatchField::write(), externalCoupledTemperatureMixedFvPatchScalarField::write(), CloudSubModelBase< CloudType >::write(), DispersionRASModel< CloudType >::write(), lumpedPointDisplacementPointPatchVectorField::write(), AMIInterpolation::write(), faceAreaWeightAMI::write(), mappedPatchBase::write(), profilingSysInfo::write(), interpolation2DTable< Type >::write(), csvTableReader< Type >::write(), coupleGroupIdentifier::write(), patchIdentifier::write(), geometricSurfacePatch::write(), surfZoneIdentifier::write(), zoneIdentifier::write(), coupledPolyPatch::write(), polyPatch::write(), cpuInfo::write(), memInfo::write(), sixDoFRigidBodyMotionState::write(), surfZone::write(), surfacePatch::write(), solidArrheniusReactionRate::write(), solidReaction< ReactionThermo >::write(), constAnIsoSolidTransport< Thermo >::write(), constIsoSolidTransport< Thermo >::write(), exponentialSolidTransport< Thermo >::write(), polynomialSolidTransport< Thermo, PolySize >::write(), tabulatedSolidTransport< Thermo >::write(), adiabaticPerfectFluid< Specie >::write(), Boussinesq< Specie >::write(), icoPolynomial< Specie, PolySize >::write(), icoTabulated< Specie >::write(), incompressiblePerfectGas< Specie >::write(), linear< Type >::write(), perfectFluid< Specie >::write(), rhoConst< Specie >::write(), rPolynomial< Specie >::write(), ArrheniusReactionRate::write(), SRIFallOffFunction::write(), TroeFallOffFunction::write(), LandauTellerReactionRate::write(), powerSeriesReactionRate::write(), thirdBodyEfficiencies::write(), Reaction< ReactionThermo >::write(), ReactionList< ThermoType >::write(), specie::write(), eConstThermo< EquationOfState >::write(), hConstThermo< EquationOfState >::write(), hPolynomialThermo< EquationOfState, PolySize >::write(), hTabulatedThermo< EquationOfState >::write(), janafThermo< EquationOfState >::write(), constTransport< Thermo >::write(), logPolynomialTransport< Thermo, PolySize >::write(), polynomialTransport< Thermo, PolySize >::write(), sutherlandTransport< Thermo >::write(), tabulatedTransport< Thermo >::write(), WLFTransport< Thermo >::write(), outletMachNumberPressureFvPatchScalarField::write(), temperatureCoupledBase::write(), turbulentTemperatureCoupledBaffleMixedFvPatchScalarField::write(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::write(), alphaContactAngleTwoPhaseFvPatchScalarField::write(), profilingInformation::write(), mapDistributePolyMesh::writeCellMapEntries(), UniformDimensionedField< Type >::writeData(), MRFZone::writeData(), profiling::writeData(), objective::writeData(), adjointSimple::writeData(), RASTurbulenceModel::writeData(), simple::writeData(), DimensionedField< Type, GeoMesh >::writeData(), attachDetach::writeDict(), perfectInterface::writeDict(), setUpdater::writeDict(), slidingInterface::writeDict(), colourTable::writeDict(), lumpedPointState::writeDict(), cellZone::writeDict(), faceZone::writeDict(), pointZone::writeDict(), plane::writeDict(), ensightCells::writeDict(), ensightFaces::writeDict(), wallFunctionBlenders::writeEntries(), mapDistribute::writeEntries(), mapDistributeBase::writeEntries(), coordinateSystem::writeEntry(), orientedType::writeEntry(), Ostream::writeEntryIfDifferent(), Foam::writeEntryIfPresent(), mapDistributePolyMesh::writeFaceMapEntries(), genericPatchFieldBase::writeGeneric(), nutUTabulatedWallFunctionFvPatchScalarField::writeLocalEntries(), Foam::writeMaps(), mapDistributePolyMesh::writePatchMapEntries(), and mapDistributePolyMesh::writePointMapEntries().
Write a keyword/value entry only when the two values differ.
key | the name of the entry |
value1 | the reference value |
value2 | the value to write if it differs from value1 |
Definition at line 250 of file Ostream.H.
References Ostream::writeEntry().
Referenced by atmBoundaryLayerInletEpsilonFvPatchScalarField::write(), atmBoundaryLayerInletKFvPatchScalarField::write(), atmBoundaryLayerInletOmegaFvPatchScalarField::write(), atmBoundaryLayerInletVelocityFvPatchVectorField::write(), inletOutletFaPatchField< Type >::write(), activeBaffleVelocityFvPatchVectorField::write(), activePressureForceBaffleVelocityFvPatchVectorField::write(), advectiveFvPatchField< Type >::write(), electrostaticDepositionFvPatchScalarField::write(), fixedNormalInletOutletVelocityFvPatchVectorField::write(), fixedPressureCompressibleDensityFvPatchScalarField::write(), flowRateInletVelocityFvPatchVectorField::write(), flowRateOutletVelocityFvPatchVectorField::write(), fluxCorrectedVelocityFvPatchVectorField::write(), freestreamFvPatchField< Type >::write(), freestreamPressureFvPatchScalarField::write(), inletOutletFvPatchField< Type >::write(), inletOutletTotalTemperatureFvPatchScalarField::write(), interstitialInletVelocityFvPatchVectorField::write(), mappedMixedFieldFvPatchField< Type >::write(), mappedFlowRateFvPatchVectorField::write(), mappedMixedFvPatchField< Type >::write(), mappedVelocityFluxFixedValueFvPatchField::write(), matchedFlowRateOutletVelocityFvPatchVectorField::write(), outletInletFvPatchField< Type >::write(), outletMappedUniformInletFvPatchField< Type >::write(), phaseHydrostaticPressureFvPatchScalarField::write(), plenumPressureFvPatchScalarField::write(), pressureDirectedInletOutletVelocityFvPatchVectorField::write(), pressureDirectedInletVelocityFvPatchVectorField::write(), pressureInletOutletParSlipVelocityFvPatchVectorField::write(), pressureInletOutletVelocityFvPatchVectorField::write(), pressureInletVelocityFvPatchVectorField::write(), pressurePermeableAlphaInletOutletVelocityFvPatchVectorField::write(), pressurePIDControlInletVelocityFvPatchVectorField::write(), prghPermeableAlphaTotalPressureFvPatchScalarField::write(), prghPressureFvPatchScalarField::write(), prghTotalHydrostaticPressureFvPatchScalarField::write(), prghTotalPressureFvPatchScalarField::write(), supersonicFreestreamFvPatchVectorField::write(), swirlFlowRateInletVelocityFvPatchVectorField::write(), syringePressureFvPatchScalarField::write(), totalPressureFvPatchScalarField::write(), totalTemperatureFvPatchScalarField::write(), turbulentDFSEMInletFvPatchVectorField::write(), turbulentIntensityKineticEnergyInletFvPatchScalarField::write(), uniformInletOutletFvPatchField< Type >::write(), uniformTotalPressureFvPatchScalarField::write(), variableHeightFlowRateFvPatchScalarField::write(), waveSurfacePressureFvPatchScalarField::write(), waveTransmissiveFvPatchField< Type >::write(), surfaceDisplacementPointPatchVectorField::write(), surfaceSlipDisplacementPointPatchVectorField::write(), timeVaryingMappedFixedValuePointPatchField< Type >::write(), cyclicAMIPolyPatch::write(), cyclicPeriodicAMIPolyPatch::write(), processorCyclicPolyPatch::write(), timeVaryingMassSorptionFvPatchScalarField::write(), filmPyrolysisRadiativeCoupledMixedFvPatchScalarField::write(), filmPyrolysisTemperatureCoupledFvPatchScalarField::write(), filmPyrolysisVelocityCoupledFvPatchVectorField::write(), filmHeightInletVelocityFvPatchVectorField::write(), inclinedFilmNusseltHeightFvPatchScalarField::write(), inclinedFilmNusseltInletVelocityFvPatchVectorField::write(), alphatFilmWallFunctionFvPatchScalarField::write(), thermalBaffleFvPatchScalarField::write(), enthalpySorptionFvPatchScalarField::write(), speciesSorptionFvPatchScalarField::write(), humidityTemperatureCoupledMixedFvPatchScalarField::write(), outletMappedUniformInletHeatAdditionFvPatchField::write(), semiPermeableBaffleMassFractionFvPatchScalarField::write(), semiPermeableBaffleVelocityFvPatchVectorField::write(), alphatJayatillekeWallFunctionFvPatchScalarField::write(), alphatWallFunctionFvPatchScalarField::write(), temperatureDependentAlphaContactAngleFvPatchScalarField::write(), porousBafflePressureFvPatchField< Type >::write(), fanFvPatchField< Type >::write(), mappedPatchFieldBase< Type >::write(), swirlFanVelocityFvPatchField::write(), advancingFrontAMI::write(), faceAreaWeightAMI2D::write(), nearestFaceAMI::write(), mappedPatchBase::write(), cpuInfo::write(), specie::write(), eConstThermo< EquationOfState >::write(), hConstThermo< EquationOfState >::write(), outletMachNumberPressureFvPatchScalarField::write(), turbulentTemperatureRadCoupledMixedFvPatchScalarField::write(), profilingInformation::write(), wallFunctionCoefficients::writeEntries(), atmAlphatkWallFunctionFvPatchScalarField::writeLocalEntries(), atmEpsilonWallFunctionFvPatchScalarField::writeLocalEntries(), atmNutkWallFunctionFvPatchScalarField::writeLocalEntries(), atmNutUWallFunctionFvPatchScalarField::writeLocalEntries(), atmNutWallFunctionFvPatchScalarField::writeLocalEntries(), nutkFilmWallFunctionFvPatchScalarField::writeLocalEntries(), epsilonWallFunctionFvPatchScalarField::writeLocalEntries(), kLowReWallFunctionFvPatchScalarField::writeLocalEntries(), nutUBlendedWallFunctionFvPatchScalarField::writeLocalEntries(), nutUSpaldingWallFunctionFvPatchScalarField::writeLocalEntries(), nutWallFunctionFvPatchScalarField::writeLocalEntries(), and omegaWallFunctionFvPatchScalarField::writeLocalEntries().
|
pure virtual |
Flush stream.
Implemented in UOPstreamBase, OSstream, and OTstream.
|
pure virtual |
Add newline and flush stream.
Implemented in UOPstreamBase, OSstream, and OTstream.
|
pure virtual |
Get padding character.
Implemented in UOPstreamBase, OSstream, and OTstream.
Referenced by trackingInverseDistance::markBoundaries(), and Foam::setfill().
|
pure virtual |
Set padding character for formatted field up to field width.
Implemented in OSstream, UOPstreamBase, and OTstream.
|
pure virtual |
Get width of output field.
Implemented in UOPstreamBase, OSstream, and OTstream.
Referenced by Foam::setw().
|
pure virtual |
Set width of output field (and return old width)
Implemented in OSstream, UOPstreamBase, and OTstream.
|
pure virtual |
Get precision of output field.
Implemented in UOPstreamBase, OSstream, and OTstream.
Referenced by Foam::setprecision().
|
pure virtual |
Set precision of output field (and return old precision)
Implemented in OSstream, UOPstreamBase, and OTstream.
|
inline |
|
inlinenoexcept |
|
inlinenoexcept |
|
staticconstexprprotected |
|
protected |
Number of spaces per indent level.
Definition at line 71 of file Ostream.H.
Referenced by Ostream::indentSize().
|
protected |
Current indent level.
Definition at line 74 of file Ostream.H.
Referenced by Ostream::decrIndent(), Ostream::incrIndent(), and Ostream::indentLevel().