mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
124 lines
3.5 KiB
C
124 lines
3.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2015 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2016 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 "IOobject.H"
|
|
#include "Istream.H"
|
|
|
|
#include "IOstreams.H"
|
|
#include "Pstream.H"
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
bool Foam::IOobject::typeHeaderOk(const bool checkType)
|
|
{
|
|
bool ok = true;
|
|
|
|
// Everyone check or just master
|
|
bool masterOnly =
|
|
typeGlobal<Type>()
|
|
&& (
|
|
IOobject::fileModificationChecking == timeStampMaster
|
|
|| IOobject::fileModificationChecking == inotifyMaster
|
|
);
|
|
|
|
|
|
// Determine local status
|
|
if (!masterOnly || Pstream::master())
|
|
{
|
|
Istream* isPtr = objectStream(typeFilePath<Type>(*this));
|
|
|
|
// If the stream has failed return
|
|
if (!isPtr)
|
|
{
|
|
if (IOobject::debug)
|
|
{
|
|
InfoInFunction
|
|
<< "file " << objectPath() << " could not be opened"
|
|
<< endl;
|
|
}
|
|
|
|
ok = false;
|
|
}
|
|
else
|
|
{
|
|
// Try reading header
|
|
if (readHeader(*isPtr))
|
|
{
|
|
if (checkType && headerClassName_ != Type::typeName)
|
|
{
|
|
if (debug)
|
|
{
|
|
IOWarningInFunction(*isPtr)
|
|
<< "unexpected class name " << headerClassName_
|
|
<< " expected " << Type::typeName << endl;
|
|
}
|
|
|
|
ok = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (IOobject::debug)
|
|
{
|
|
IOWarningInFunction(*isPtr)
|
|
<< "failed to read header of file " << objectPath()
|
|
<< endl;
|
|
}
|
|
|
|
ok = false;
|
|
}
|
|
}
|
|
|
|
delete isPtr;
|
|
}
|
|
|
|
// If masterOnly make sure all processors know about it
|
|
if (masterOnly)
|
|
{
|
|
Pstream::scatter(ok);
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::IOobject::warnNoRereading() const
|
|
{
|
|
if (readOpt() == IOobject::MUST_READ_IF_MODIFIED)
|
|
{
|
|
WarningInFunction
|
|
<< Type::typeName << ' ' << name()
|
|
<< " constructed with IOobject::MUST_READ_IF_MODIFIED"
|
|
" but " << Type::typeName
|
|
<< " does not support automatic rereading."
|
|
<< endl;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|