ensightFile Class Reference

Ensight output with specialised write() for strings, integers and floats. Correctly handles binary write as well. More...

Inheritance diagram for ensightFile:
Collaboration diagram for ensightFile:

Public Member Functions

 ensightFile (const fileName &filePath, IOstream::streamFormat format=IOstream::BINARY)
 Construct from filePath. More...
 
 ensightFile (const ensightFile &)
 Disallow default bitwise copy construction. More...
 
 ~ensightFile ()
 Destructor. More...
 
virtual Ostreamwrite (const char *buf, std::streamsize count)
 Binary write. More...
 
virtual OstreamwriteKeyword (const string &key)
 Write element keyword with trailing newline, optionally with undef. More...
 
OstreamwriteBinaryHeader ()
 Write "C Binary" for binary files (eg, geometry/measured) More...
 
OstreamwriteUndef ()
 Write undef value. More...
 
Ostreamwrite (const char *value)
 Write C-string as "%80s" or as binary. More...
 
Ostreamwrite (const string &value)
 Write string as "%80s" or as binary. More...
 
Ostreamwrite (const label value)
 Write integer as "%10d" or as binary. More...
 
Ostreamwrite (const label value, const label fieldWidth)
 Write integer with specified width or as binary. More...
 
Ostreamwrite (const scalar value)
 Write float as "%12.5e" or as binary. More...
 
void newline ()
 Add carriage return to ascii stream. More...
 
void operator= (const ensightFile &)=delete
 Disallow default bitwise assignment. More...
 
virtual Ostreamwrite (const char)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const char *)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const word &)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const string &)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const verbatimString &)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const int32_t)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const int64_t)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const floatScalar)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const doubleScalar)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const longDoubleScalar)=0
 Inherit write from Ostream. More...
 
virtual Ostreamwrite (const char *, std::streamsize)=0
 Inherit write from Ostream. More...
 
- Public Member Functions inherited from OFstream
 ClassName ("OFstream")
 
 OFstream (const fileName &filePath, streamFormat format=ASCII, versionNumber version=currentVersion, compressionType compression=UNCOMPRESSED, const bool append=false)
 Construct from filePath. More...
 
 ~OFstream ()
 Destructor. More...
 
const fileNamename () const
 Return the name of the stream. More...
 
fileNamename ()
 Return non-const access to the name of the stream. More...
 
virtual ostream & stdStream ()
 Access to underlying std::ostream. More...
 
virtual const ostream & stdStream () const
 Const access to underlying std::ostream. More...
 
void print (Ostream &) const
 Print description of IOstream to Ostream. More...
 
- Public Member Functions inherited from OSstream
 OSstream (ostream &os, const string &name, streamFormat format=ASCII, versionNumber version=currentVersion, compressionType compression=UNCOMPRESSED)
 Set stream status. More...
 
 OSstream (const OSstream &)=default
 Copy construct. More...
 
virtual ios_base::fmtflags flags () const
 Return flags of output stream. More...
 
virtual Ostreamwrite (const char)
 Write character. More...
 
virtual Ostreamwrite (const word &)
 Write word. More...
 
virtual Ostreamwrite (const verbatimString &)
 Write verbatimString with #{ }#. More...
 
virtual OstreamwriteQuoted (const std::string &, const bool quoted=true)
 Write std::string with optional double quotes. More...
 
virtual Ostreamwrite (const int32_t)
 Write int32_t. More...
 
virtual Ostreamwrite (const int64_t)
 Write int64_t. More...
 
virtual Ostreamwrite (const floatScalar)
 Write floatScalar. More...
 
virtual Ostreamwrite (const doubleScalar)
 Write doubleScalar. More...
 
virtual Ostreamwrite (const longDoubleScalar)
 Write longDoubleScalar. More...
 
virtual void indent ()
 Add indentation characters. More...
 
virtual ios_base::fmtflags flags (const ios_base::fmtflags flags)
 Set flags of output stream. More...
 
virtual void flush ()
 Flush stream. More...
 
virtual void endl ()
 Add newline and flush stream. More...
 
virtual int width () const
 Get width of output field. More...
 
virtual int width (const int)
 Set width of output field (and return old width) More...
 
virtual int precision () const
 Get precision of output field. More...
 
virtual int precision (const int)
 Set precision of output field (and return old precision) More...
 
void operator= (const OSstream &)=delete
 Disallow default bitwise assignment. More...
 
- Public Member Functions inherited from Ostream
 Ostream (streamFormat format=ASCII, versionNumber version=currentVersion, compressionType compression=UNCOMPRESSED)
 Set stream status. More...
 
virtual ~Ostream ()
 Destructor. More...
 
unsigned short indentLevel () const
 Return indent level. More...
 
unsigned short & indentLevel ()
 Access to indent level. More...
 
void incrIndent ()
 Incrememt the indent level. More...
 
void decrIndent ()
 Decrememt the indent level. More...
 
OstreamwriteKeyword (const keyType &)
 Write the keyword followed by an appropriate indentation. More...
 
Ostreamoperator() () const
 Return a non-const reference to const Ostream. More...
 
- Public Member Functions inherited from IOstream
 IOstream (streamFormat format, versionNumber version, compressionType compression=UNCOMPRESSED)
 Construct setting format and version. More...
 
virtual ~IOstream ()
 Destructor. 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...
 
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...
 
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...
 
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 bool allowUndef ()
 Return setting for whether 'undef' values are allowed in results. More...
 
static string mask ()
 The '*' mask appropriate for subDir. More...
 
static string subDir (const label)
 Consistent zero-padded numbers for subdirectories. More...
 
static void subDirWidth (const label)
 Set width of subDir and mask. Default width is 8 digits. More...
 
static label subDirWidth ()
 Return current width of subDir and mask. More...
 
static bool allowUndef (bool)
 
static scalar undefValue (const scalar)
 Assign the value to represent undef in the results. More...
 
- Static Public Member Functions inherited from IOstream
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...
 

Additional Inherited Members

- Public Types inherited from IOstream
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...
 
- Static Public Attributes inherited from IOstream
static const versionNumber currentVersion
 Current version number. More...
 
static unsigned int precision_
 Default precision. More...
 
- Protected Member Functions inherited from IOstream
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 inherited from Ostream
unsigned short indentLevel_
 Current indent level. More...
 
- Protected Attributes inherited from IOstream
label lineNumber_
 
- Static Protected Attributes inherited from Ostream
static const unsigned short indentSize_ = 4
 Number of spaces per indent level. More...
 

Detailed Description

Ensight output with specialised write() for strings, integers and floats. Correctly handles binary write as well.

Definition at line 47 of file ensightFile.H.

Constructor & Destructor Documentation

◆ ensightFile() [1/2]

ensightFile ( const fileName filePath,
IOstream::streamFormat  format = IOstream::BINARY 
)

Construct from filePath.

Definition at line 84 of file ensightFile.C.

References OSstream::precision(), Foam::scientific(), and IOstream::setf().

Here is the call graph for this function:

◆ ensightFile() [2/2]

ensightFile ( const ensightFile )

Disallow default bitwise copy construction.

◆ ~ensightFile()

Destructor.

Definition at line 104 of file ensightFile.C.

Member Function Documentation

◆ allowUndef() [1/2]

bool allowUndef ( )
static

Return setting for whether 'undef' values are allowed in results.

Definition at line 110 of file ensightFile.C.

Referenced by ensightPart::writeScalarField(), and ensightPart::writeVectorField().

Here is the caller graph for this function:

◆ mask()

Foam::string mask ( )
static

The '*' mask appropriate for subDir.

Definition at line 43 of file ensightFile.C.

◆ subDir()

Foam::string subDir ( const label  n)
static

Consistent zero-padded numbers for subdirectories.

Definition at line 49 of file ensightFile.C.

References n.

◆ subDirWidth() [1/2]

void subDirWidth ( const label  n)
static

Set width of subDir and mask. Default width is 8 digits.

Max width is 31 digits.

Definition at line 58 of file ensightFile.C.

References n.

◆ subDirWidth() [2/2]

Foam::label subDirWidth ( )
static

Return current width of subDir and mask.

Definition at line 76 of file ensightFile.C.

◆ allowUndef() [2/2]

bool allowUndef ( bool  value)
static

Definition at line 116 of file ensightFile.C.

◆ undefValue()

Foam::scalar undefValue ( const scalar  value)
static

Assign the value to represent undef in the results.

Returns the previous value NB: do not use values larger than floatScalarvGreat

Definition at line 124 of file ensightFile.C.

◆ write() [1/17]

Foam::Ostream & write ( const char *  buf,
std::streamsize  count 
)
virtual

Binary write.

Reimplemented from OSstream.

Definition at line 135 of file ensightFile.C.

References Foam::count(), and Ostream::write().

Referenced by ensightPartFaces::writeConnectivity(), ensightPart::writeFieldList(), ensightPart::writeGeometry(), and ensightPart::writeHeader().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ writeKeyword()

Foam::Ostream & writeKeyword ( const string key)
virtual

Write element keyword with trailing newline, optionally with undef.

Reimplemented in ensightGeoFile.

Definition at line 275 of file ensightFile.C.

References Foam::vtkWriteOps::write().

Referenced by ensightPart::writeField(), ensightPart::writeScalarField(), and ensightPart::writeVectorField().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ writeBinaryHeader()

Foam::Ostream & writeBinaryHeader ( )

Write "C Binary" for binary files (eg, geometry/measured)

Definition at line 293 of file ensightFile.C.

References IOstream::BINARY, format(), and Foam::vtkWriteOps::write().

Referenced by ensightGeoFile::ensightGeoFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ writeUndef()

Foam::Ostream & writeUndef ( )

Write undef value.

Definition at line 268 of file ensightFile.C.

References Foam::vtkWriteOps::write().

Referenced by ensightPart::writeFieldList().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ write() [2/17]

Foam::Ostream & write ( const char *  value)
virtual

Write C-string as "%80s" or as binary.

Reimplemented from OSstream.

Definition at line 146 of file ensightFile.C.

References Foam::vtkWriteOps::write().

Here is the call graph for this function:

◆ write() [3/17]

Foam::Ostream & write ( const string value)
virtual

Write string as "%80s" or as binary.

Reimplemented from OSstream.

Definition at line 152 of file ensightFile.C.

References IOstream::BINARY, format(), n, and Foam::vtkWriteOps::write().

Here is the call graph for this function:

◆ write() [4/17]

Foam::Ostream & write ( const label  value)

Write integer as "%10d" or as binary.

Definition at line 189 of file ensightFile.C.

References IOstream::BINARY, format(), and Foam::vtkWriteOps::write().

Here is the call graph for this function:

◆ write() [5/17]

Foam::Ostream & write ( const label  value,
const label  fieldWidth 
)

Write integer with specified width or as binary.

Definition at line 211 of file ensightFile.C.

References IOstream::BINARY, format(), and Foam::vtkWriteOps::write().

Here is the call graph for this function:

◆ write() [6/17]

Foam::Ostream & write ( const scalar  value)

Write float as "%12.5e" or as binary.

Definition at line 237 of file ensightFile.C.

References IOstream::BINARY, format(), and Foam::vtkWriteOps::write().

Here is the call graph for this function:

◆ newline()

void newline ( )

Add carriage return to ascii stream.

Definition at line 259 of file ensightFile.C.

References IOstream::ASCII, format(), and Foam::nl.

Referenced by ensightGeoFile::ensightGeoFile(), ensightPartFaces::writeConnectivity(), ensightPart::writeFieldList(), ensightPart::writeGeometry(), and ensightPart::writeHeader().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator=()

void operator= ( const ensightFile )
delete

Disallow default bitwise assignment.

◆ write() [7/17]

virtual Ostream& write

Inherit write from Ostream.

Referenced by ensightGeoFile::ensightGeoFile().

Here is the caller graph for this function:

◆ write() [8/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [9/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [10/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [11/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [12/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [13/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [14/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [15/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [16/17]

virtual Ostream& write

Inherit write from Ostream.

◆ write() [17/17]

virtual Ostream& write

Inherit write from Ostream.


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