/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2004-2011 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 .
Class
Foam::errorManip
Description
Error stream manipulators for exit and abort which may terminate the
program or throw an exception depending if the exception
handling has been switched on (off by default).
Usage
\code
error << "message1" << "message2" << FoamDataType << exit(error, errNo);
error << "message1" << "message2" << FoamDataType << abort(error);
\endcode
\*---------------------------------------------------------------------------*/
#ifndef errorManip_H
#define errorManip_H
#include "error.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// Forward declaration of friend functions and operators
template class errorManip;
template Ostream& operator<<(Ostream&, errorManip);
template class errorManipArg;
template
Ostream& operator<<(Ostream&, errorManipArg);
/*---------------------------------------------------------------------------*\
Class errorManip Declaration
\*---------------------------------------------------------------------------*/
template
class errorManip
{
void (Err::*fPtr_)();
Err& err_;
public:
errorManip(void (Err::*fPtr)(), Err& t)
:
fPtr_(fPtr),
err_(t)
{}
friend Ostream& operator<< (Ostream& os, errorManip m);
};
template
inline Ostream& operator<<(Ostream& os, errorManip m)
{
(m.err_.*m.fPtr_)();
return os;
}
/*---------------------------------------------------------------------------*\
Class errorManipArg Declaration
\*---------------------------------------------------------------------------*/
//- errorManipArg
template
class errorManipArg
{
void (Err::*fPtr_)(const T);
Err& err_;
T arg_;
public:
errorManipArg(void (Err::*fPtr)(const T), Err& t, const T i)
:
fPtr_(fPtr),
err_(t),
arg_(i)
{}
friend Ostream& operator<< (Ostream& os, errorManipArg m);
};
template
inline Ostream& operator<<(Ostream& os, errorManipArg m)
{
(m.err_.*m.fPtr_)(m.arg_);
return os;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
inline errorManipArg
exit(error& err, const int errNo = 1)
{
return errorManipArg(&error::exit, err, errNo);
}
inline errorManip
abort(error& err)
{
return errorManip(&error::abort, err);
}
inline errorManipArg
exit(IOerror& err, const int errNo = 1)
{
return errorManipArg(&IOerror::exit, err, errNo);
}
inline errorManip
abort(IOerror& err)
{
return errorManip(&IOerror::abort, err);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //