2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
#ifndef OSG_NOTIFY
|
|
|
|
#define OSG_NOTIFY 1
|
|
|
|
|
|
|
|
#include <osg/Export>
|
|
|
|
|
2004-03-03 21:27:21 +08:00
|
|
|
#include <ostream>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
namespace osg {
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** Range of notify levels from DEBUG_FP through to FATAL, ALWAYS
|
|
|
|
* is reserved for forcing the absorption of all messages. The
|
|
|
|
* keywords are also used verbatim when specified by the environmental
|
|
|
|
* variable OSGNOTIFYLEVEL. See documentation on osg::notify() for
|
|
|
|
* further details.
|
|
|
|
*/
|
2001-01-11 00:32:10 +08:00
|
|
|
enum NotifySeverity {
|
|
|
|
ALWAYS=0,
|
|
|
|
FATAL=1,
|
|
|
|
WARN=2,
|
|
|
|
NOTICE=3,
|
|
|
|
INFO=4,
|
2001-09-20 05:08:56 +08:00
|
|
|
DEBUG_INFO=5,
|
|
|
|
DEBUG_FP=6
|
2001-01-11 00:32:10 +08:00
|
|
|
};
|
|
|
|
|
2004-09-03 03:10:33 +08:00
|
|
|
/** set the notify level, overriding the default or the value set by
|
2001-09-20 05:08:56 +08:00
|
|
|
* the environmental variable OSGNOTIFYLEVEL.
|
|
|
|
*/
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT void setNotifyLevel(NotifySeverity severity);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** get the notify level. */
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT NotifySeverity getNotifyLevel();
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2005-07-14 18:27:00 +08:00
|
|
|
/** is notification enabled, given the current setNotifyLevel() setting? */
|
|
|
|
extern OSG_EXPORT bool isNotifyEnabled(NotifySeverity severity);
|
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** initialize notify level. */
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT bool initNotifyLevel();
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-09-20 05:08:56 +08:00
|
|
|
/** notify messaging function for providing fatal through to verbose
|
|
|
|
* debugging messages. Level of messages sent to the console can
|
|
|
|
* be controlled by setting the NotifyLevel either within your
|
|
|
|
* application or via the an environmental variable. For instance
|
|
|
|
* setenv OSGNOTIFYLEVEL DEBUG (for tsh), export OSGNOTIFYLEVEL=DEBUG
|
|
|
|
* (for bourne shell) or set OSGNOTIFYLEVEL=DEBUG (for Windows) all
|
2004-09-03 03:10:33 +08:00
|
|
|
* tell the osg to redirect all debugging and more important messages
|
2001-09-20 05:08:56 +08:00
|
|
|
* to the console (useful for debugging :-) setting ALWAYS will force
|
|
|
|
* all messages to be absorbed, which might be appropriate for final
|
|
|
|
* applications. Default NotifyLevel is NOTICE. Check the enum
|
|
|
|
* NotifySeverity for full range of possibilities. To use the notify
|
|
|
|
* with your code simply use the notify function as a normal file
|
|
|
|
* stream (like cout) i.e osg::notify(osg::DEBUG) << "Hello Bugs!"<<endl;
|
|
|
|
*/
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT std::ostream& notify(const NotifySeverity severity);
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2001-12-15 05:49:04 +08:00
|
|
|
inline std::ostream& notify(void) { return notify(osg::INFO); }
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#endif
|