openfoam/src/OpenFOAM/db/error/IOerror.C
Mark Olesen c9333a5ac8 ENH: improve flexibility of error, messageStream output
- provide a plain stream() method on messageStream to reduce reliance
  on casting operators and slightly opaque operator()() calls etc

- support alternative stream for messageStream serial output.
  This can be used to support local redirection of output.
  For example,

     refPtr<OFstream> logging;   // or autoPtr, unique_ptr etc

     // Later...
     Info.stream(logging.get())
        << "Detailed output ..." << endl;

  This will use the stdout semantics in the normal case, or allow
  redirection to an output file if a target output stream is defined,
  but still effectively use /dev/null on non-master processes.

  This is mostly the same as this ternary

      (logging ? *logging : Info())

  except that the ternary could be incorrect on sub-processes,
  requires more typing etc.

ENH: use case-relative names of dictionary, IOstream for FatalIOError

- normally yields more easily understandable information
2021-11-03 11:46:13 +01:00

332 lines
7.9 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
Copyright (C) 2015-2021 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 "error.H"
#include "argList.H"
#include "StringStream.H"
#include "fileName.H"
#include "dictionary.H"
#include "JobInfo.H"
#include "Pstream.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::IOerror::IOerror(const string& title)
:
error(title),
ioFileName_("unknown"),
ioStartLineNumber_(-1),
ioEndLineNumber_(-1)
{}
Foam::IOerror::IOerror(const dictionary& errDict)
:
error(errDict),
ioFileName_(errDict.get<string>("ioFileName")),
ioStartLineNumber_(errDict.get<label>("ioStartLineNumber")),
ioEndLineNumber_(errDict.get<label>("ioEndLineNumber"))
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
Foam::IOerror::~IOerror() noexcept
{}
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
Foam::OSstream& Foam::IOerror::operator()
(
const char* functionName,
const char* sourceFileName,
const int sourceFileLineNumber,
const string& ioFileName,
const label ioStartLineNumber,
const label ioEndLineNumber
)
{
OSstream& os = error::operator()
(
functionName,
sourceFileName,
sourceFileLineNumber
);
ioFileName_ = ioFileName;
ioStartLineNumber_ = ioStartLineNumber;
ioEndLineNumber_ = ioEndLineNumber;
return os;
}
Foam::OSstream& Foam::IOerror::operator()
(
const char* functionName,
const char* sourceFileName,
const int sourceFileLineNumber,
const IOstream& ioStream
)
{
return operator()
(
functionName,
sourceFileName,
sourceFileLineNumber,
argList::envRelativePath(ioStream.name()),
ioStream.lineNumber(),
-1 // No known endLineNumber
);
}
Foam::OSstream& Foam::IOerror::operator()
(
const char* functionName,
const char* sourceFileName,
const int sourceFileLineNumber,
const dictionary& dict
)
{
return operator()
(
functionName,
sourceFileName,
sourceFileLineNumber,
dict.relativeName(),
dict.startLineNumber(),
dict.endLineNumber()
);
}
Foam::OSstream& Foam::IOerror::operator()
(
const std::string& where,
const IOstream& ioStream
)
{
return operator()
(
where.c_str(),
"", // No source file
1, // Non-zero to ensure that 'where' is reported
argList::envRelativePath(ioStream.name()),
ioStream.lineNumber(),
-1 // No known endLineNumber
);
}
Foam::OSstream& Foam::IOerror::operator()
(
const std::string& where,
const dictionary& dict
)
{
return operator()
(
where.c_str(),
"", // No source file
1, // Non-zero to ensure that 'where' is reported
dict.relativeName(),
dict.startLineNumber(),
dict.endLineNumber()
);
}
void Foam::IOerror::SafeFatalIOError
(
const char* functionName,
const char* sourceFileName,
const int sourceFileLineNumber,
const IOstream& ioStream,
const string& msg
)
{
if (JobInfo::constructed)
{
FatalIOError
(
functionName,
sourceFileName,
sourceFileLineNumber,
ioStream
) << msg << Foam::exit(FatalIOError);
}
else
{
std::cerr
<< nl
<< "--> FOAM FATAL IO ERROR:" << nl
<< msg << nl
<< "file: " << ioStream.name()
<< " at line " << ioStream.lineNumber() << '.' << nl << nl
<< " From " << functionName << nl
<< " in file " << sourceFileName
<< " at line " << sourceFileLineNumber << '.' << std::endl;
std::exit(1);
}
}
Foam::IOerror::operator Foam::dictionary() const
{
dictionary errDict(error::operator dictionary());
errDict.add("type", word("Foam::IOerror"), true); // overwrite
errDict.add("ioFileName", ioFileName());
errDict.add("ioStartLineNumber", ioStartLineNumber());
errDict.add("ioEndLineNumber", ioEndLineNumber());
return errDict;
}
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
void Foam::IOerror::exiting(const int errNo, const bool isAbort)
{
if (throwing_)
{
if (!isAbort)
{
// Make a copy of the error to throw
IOerror errorException(*this);
// Reset the message buffer for the next error message
messageStreamPtr_->reset();
throw errorException;
return;
}
}
else if (JobInfo::constructed)
{
jobInfo.add("FatalIOError", operator dictionary());
JobInfo::shutdown(isAbort || error::useAbort());
}
simpleExit(errNo, isAbort);
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
void Foam::IOerror::exit(const int)
{
exiting(1, false);
}
void Foam::IOerror::abort()
{
exiting(1, true);
}
void Foam::IOerror::write(Ostream& os, const bool includeTitle) const
{
if (os.bad())
{
return;
}
os << nl;
if (includeTitle && !title().empty())
{
os << title().c_str()
<< "(openfoam-" << foamVersion::api;
if (foamVersion::patched())
{
// Patch-level, when defined
os << " patch=" << foamVersion::patch.c_str();
}
os << ')' << nl;
}
os << message().c_str();
if (!ioFileName().empty())
{
os << nl << nl
<< "file: " << ioFileName().c_str();
if (ioStartLineNumber() >= 0)
{
os << " at line " << ioStartLineNumber();
if (ioStartLineNumber() < ioEndLineNumber())
{
os << " to " << ioEndLineNumber();
}
os << '.';
}
}
const label lineNo = sourceFileLineNumber();
if (IOerror::level >= 2 && lineNo && !functionName().empty())
{
os << nl << nl
<< " From " << functionName().c_str() << nl;
if (!sourceFileName().empty())
{
os << " in file " << sourceFileName().c_str();
if (lineNo > 0)
{
os << " at line " << lineNo << '.';
}
}
}
}
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
Foam::Ostream& Foam::operator<<(Ostream& os, const IOerror& err)
{
err.write(os);
return os;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Global error definitions
Foam::IOerror Foam::FatalIOError("--> FOAM FATAL IO ERROR: ");
// ************************************************************************* //