mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- this shifts responsibility away from caller to the individual writers for knowing which file formats are supported and which file ending is appropriate. When the writer receives the output format request, it can elect to downgrade or otherwise adjust it to what it can actually manage (eg, legacy vs xml vs xml-append). But currently still just with legacy format backends.
126 lines
3.4 KiB
C++
126 lines
3.4 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2016-2017 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::foamVtkOutput::appendRawFormatter
|
|
|
|
Description
|
|
Appended raw binary output.
|
|
|
|
SourceFiles
|
|
foamVtkAppendRawFormatter.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef foamVtkAppendRawFormatter_H
|
|
#define foamVtkAppendRawFormatter_H
|
|
|
|
#include "foamVtkFormatter.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace foamVtkOutput
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class appendRawFormatter Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class appendRawFormatter
|
|
:
|
|
public formatter
|
|
{
|
|
// Private Data Members
|
|
|
|
static const char* name_;
|
|
static const char* encoding_;
|
|
static const outputOptions opts_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
appendRawFormatter(const appendRawFormatter&) = delete;
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const appendRawFormatter&) = delete;
|
|
|
|
|
|
protected:
|
|
|
|
// Protected Member Functions
|
|
|
|
//- Write
|
|
void write(const char* s, std::streamsize n);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct and attach to an output stream
|
|
appendRawFormatter(std::ostream& os);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~appendRawFormatter();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- The output is APPEND_BINARY.
|
|
virtual const outputOptions& opts() const;
|
|
|
|
//- Output name for XML type ("append")
|
|
virtual const char* name() const;
|
|
|
|
//- Output name for append encoding type ("raw")
|
|
virtual const char* encoding() const;
|
|
|
|
|
|
//- Write leading size for binary output
|
|
virtual void writeSize(const uint64_t nBytes);
|
|
|
|
virtual void write(const uint8_t val);
|
|
virtual void write(const label val);
|
|
virtual void write(const float val);
|
|
virtual void write(const double val);
|
|
|
|
//- A no-op for this format
|
|
virtual void flush();
|
|
|
|
};
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace foamVtkOutput
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|