mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
124 lines
3.1 KiB
C
124 lines
3.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2015 OpenFOAM Foundation
|
|
Copyright (C) 2022 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "IOmapDistributePolyMesh.H"
|
|
|
|
/* * * * * * * * * * * * * * * Static Member Data * * * * * * * * * * * * * */
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(IOmapDistributePolyMesh, 0);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
bool Foam::IOmapDistributePolyMesh::readContents()
|
|
{
|
|
if
|
|
(
|
|
(
|
|
readOpt() == IOobject::MUST_READ
|
|
|| readOpt() == IOobject::MUST_READ_IF_MODIFIED
|
|
)
|
|
|| (readOpt() == IOobject::READ_IF_PRESENT && headerOk())
|
|
)
|
|
{
|
|
readStream(typeName) >> *this;
|
|
close();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::IOmapDistributePolyMesh::IOmapDistributePolyMesh(const IOobject& io)
|
|
:
|
|
regIOobject(io)
|
|
{
|
|
// Warn for MUST_READ_IF_MODIFIED
|
|
warnNoRereading<IOmapDistributePolyMesh>();
|
|
|
|
readContents();
|
|
}
|
|
|
|
|
|
Foam::IOmapDistributePolyMesh::IOmapDistributePolyMesh
|
|
(
|
|
const IOobject& io,
|
|
const mapDistributePolyMesh& map
|
|
)
|
|
:
|
|
regIOobject(io)
|
|
{
|
|
// Warn for MUST_READ_IF_MODIFIED
|
|
warnNoRereading<IOmapDistributePolyMesh>();
|
|
|
|
if (!readContents())
|
|
{
|
|
mapDistributePolyMesh::operator=(map);
|
|
}
|
|
}
|
|
|
|
|
|
Foam::IOmapDistributePolyMesh::IOmapDistributePolyMesh
|
|
(
|
|
const IOobject& io,
|
|
mapDistributePolyMesh&& map
|
|
)
|
|
:
|
|
regIOobject(io)
|
|
{
|
|
// Warn for MUST_READ_IF_MODIFIED
|
|
warnNoRereading<IOmapDistributePolyMesh>();
|
|
|
|
mapDistributePolyMesh::transfer(map);
|
|
|
|
readContents();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
bool Foam::IOmapDistributePolyMesh::readData(Istream& is)
|
|
{
|
|
return (is >> *this).good();
|
|
}
|
|
|
|
|
|
bool Foam::IOmapDistributePolyMesh::writeData(Ostream& os) const
|
|
{
|
|
return (os << *this).good();
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|