mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
294 lines
8.3 KiB
C++
294 lines
8.3 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
|
\\/ 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::messageStream
|
|
|
|
Description
|
|
Class to handle messaging in a simple, consistent stream-based
|
|
manner.
|
|
|
|
The messageStream class is globaly instantiated with a title string a
|
|
given severity, which controls the program termination, and a number of
|
|
errors before termination. Errors, messages and other data are piped to
|
|
the messageStream class in the standard manner.
|
|
|
|
Usage
|
|
\code
|
|
messageStream
|
|
<< "message1" << "message2" << FoamDataType << endl;
|
|
\endcode
|
|
|
|
SourceFiles
|
|
messageStream.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef messageStream_H
|
|
#define messageStream_H
|
|
|
|
#include "label.H"
|
|
#include "string.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// Forward declaration of classes
|
|
class IOstream;
|
|
class Ostream;
|
|
class OSstream;
|
|
class OStringStream;
|
|
class dictionary;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class messageStream Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class messageStream
|
|
{
|
|
|
|
public:
|
|
|
|
//- Severity flags
|
|
enum errorSeverity
|
|
{
|
|
INFO, // Debugging information in event of error
|
|
WARNING, // Warning of possible problem
|
|
SERIOUS, // A serious problem (data corruption?)
|
|
FATAL // Oh bugger!
|
|
};
|
|
|
|
|
|
protected:
|
|
|
|
// Private data
|
|
|
|
string title_;
|
|
errorSeverity severity_;
|
|
int maxErrors_;
|
|
int errorCount_;
|
|
|
|
|
|
public:
|
|
|
|
// Debug switches
|
|
|
|
static int level;
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from components
|
|
messageStream
|
|
(
|
|
const string& title,
|
|
errorSeverity,
|
|
const int maxErrors = 0
|
|
);
|
|
|
|
|
|
//- Construct from dictionary
|
|
messageStream(const dictionary&);
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Return the title of this error type
|
|
const string& title() const
|
|
{
|
|
return title_;
|
|
}
|
|
|
|
//- Return the maximum number of errors before program termination
|
|
int maxErrors() const
|
|
{
|
|
return maxErrors_;
|
|
}
|
|
|
|
//- Return non-const access to the maximum number of errors before
|
|
// program termination to enable user to reset it
|
|
int& maxErrors()
|
|
{
|
|
return maxErrors_;
|
|
}
|
|
|
|
//- Convert to OSstream
|
|
// Prints basic message and returns OSstream for further info.
|
|
OSstream& operator()
|
|
(
|
|
const char* functionName,
|
|
const char* sourceFileName,
|
|
const int sourceFileLineNumber = 0
|
|
);
|
|
|
|
//- Convert to OSstream
|
|
// Prints basic message and returns OSstream for further info.
|
|
OSstream& operator()
|
|
(
|
|
const string& functionName,
|
|
const char* sourceFileName,
|
|
const int sourceFileLineNumber = 0
|
|
);
|
|
|
|
//- Convert to OSstream
|
|
// Prints basic message and returns OSstream for further info.
|
|
OSstream& operator()
|
|
(
|
|
const char* functionName,
|
|
const char* sourceFileName,
|
|
const int sourceFileLineNumber,
|
|
const string& ioFileName,
|
|
const label ioStartLineNumber = -1,
|
|
const label ioEndLineNumber = -1
|
|
);
|
|
|
|
//- Convert to OSstream
|
|
// Prints basic message and returns OSstream for further info.
|
|
OSstream& operator()
|
|
(
|
|
const char* functionName,
|
|
const char* sourceFileName,
|
|
const int sourceFileLineNumber,
|
|
const IOstream&
|
|
);
|
|
|
|
//- Convert to OSstream
|
|
// Prints basic message and returns OSstream for further info.
|
|
OSstream& operator()
|
|
(
|
|
const char* functionName,
|
|
const char* sourceFileName,
|
|
const int sourceFileLineNumber,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Convert to OSstream
|
|
// Use Info for default communicator, use Pout
|
|
// on master for non-default one.
|
|
OSstream& operator()(const label communicator);
|
|
|
|
//- Convert to OSstream for << operations
|
|
operator OSstream&();
|
|
|
|
//- Explicitly convert to OSstream for << operations
|
|
OSstream& operator()()
|
|
{
|
|
return operator OSstream&();
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
// Global error declarations: defined in messageStream.C
|
|
|
|
extern messageStream SeriousError;
|
|
extern messageStream Warning;
|
|
extern messageStream Info;
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#include "OSstream.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
// Convenience macros to add the file name and line number to the function name
|
|
|
|
/**
|
|
* \def SeriousErrorIn(functionName)
|
|
* Report an error message using Foam::SeriousError for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
*/
|
|
#define SeriousErrorIn(fn) \
|
|
::Foam::SeriousError((fn), __FILE__, __LINE__)
|
|
|
|
/**
|
|
* \def SeriousIOErrorIn(functionName, ios)
|
|
* Report an IO error message using Foam::SeriousError for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
* for a particular IOstream
|
|
*/
|
|
#define SeriousIOErrorIn(fn, ios) \
|
|
::Foam::SeriousError((fn), __FILE__, __LINE__, ios)
|
|
|
|
/**
|
|
* \def WarningIn(functionName)
|
|
* Report a warning using Foam::Warning for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
*/
|
|
#define WarningIn(fn) \
|
|
::Foam::Warning((fn), __FILE__, __LINE__)
|
|
|
|
/**
|
|
* \def IOWarningIn(functionName, ios)
|
|
* Report an IO warning using Foam::Warning for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
* for a particular IOstream
|
|
*/
|
|
#define IOWarningIn(fn, ios) \
|
|
::Foam::Warning((fn), __FILE__, __LINE__, (ios))
|
|
|
|
/**
|
|
* \def InfoIn(functionName)
|
|
* Report a information message using Foam::Info for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
*/
|
|
#define InfoIn(fn) \
|
|
::Foam::Info((fn), __FILE__, __LINE__)
|
|
|
|
/**
|
|
* \def IOInfoIn(functionName, ios)
|
|
* Report an IO information message using Foam::Info for functionName in
|
|
* file __FILE__ at line __LINE__
|
|
* for a particular IOstream
|
|
*/
|
|
#define IOInfoIn(fn, ios) \
|
|
::Foam::Info((fn), __FILE__, __LINE__, (ios))
|
|
|
|
/**
|
|
* \def Debug(variable)
|
|
* Report a variable name and value using Foam::Pout in
|
|
* file __FILE__ at line __LINE__
|
|
*/
|
|
#define Debug(var) \
|
|
::Foam::Pout<< "["<< __FILE__ << ":" << __LINE__ << "] " \
|
|
<< #var " = " << var << ::Foam::endl
|
|
|
|
/**
|
|
* \def IInfo
|
|
* Indented Info
|
|
*/
|
|
#define IInfo \
|
|
::Foam::Info<< indent
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|