2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +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
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-22 05:27:40 +08:00
|
|
|
#include <osg/Notify>
|
2009-03-23 21:51:46 +08:00
|
|
|
#include <osg/ApplicationUsage>
|
2009-05-18 20:04:07 +08:00
|
|
|
#include <osg/ref_ptr>
|
2001-01-11 00:32:10 +08:00
|
|
|
#include <string>
|
2007-12-24 23:19:52 +08:00
|
|
|
#include <stdlib.h>
|
2009-05-18 20:04:07 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sstream>
|
2004-03-03 21:27:21 +08:00
|
|
|
#include <iostream>
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2009-11-17 22:06:07 +08:00
|
|
|
#include <ctype.h>
|
|
|
|
|
2012-06-23 00:21:08 +08:00
|
|
|
#define OSG_INIT_SINGLETON_PROXY(ProxyName, Func) static struct ProxyName{ ProxyName() { Func; } } s_##ProxyName;
|
|
|
|
|
2009-05-18 20:04:07 +08:00
|
|
|
namespace osg
|
|
|
|
{
|
|
|
|
|
|
|
|
class NullStreamBuffer : public std::streambuf
|
|
|
|
{
|
|
|
|
private:
|
2014-05-15 22:57:28 +08:00
|
|
|
std::streamsize xsputn(const std::streambuf::char_type * /*str*/, std::streamsize n)
|
2009-05-18 20:04:07 +08:00
|
|
|
{
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NullStream : public std::ostream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NullStream():
|
2009-05-25 18:46:37 +08:00
|
|
|
std::ostream(new NullStreamBuffer)
|
|
|
|
{ _buffer = dynamic_cast<NullStreamBuffer *>(rdbuf()); }
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-05-25 18:46:37 +08:00
|
|
|
~NullStream()
|
|
|
|
{
|
|
|
|
rdbuf(0);
|
|
|
|
delete _buffer;
|
|
|
|
}
|
2009-05-18 20:04:07 +08:00
|
|
|
|
|
|
|
protected:
|
2009-05-25 18:46:37 +08:00
|
|
|
NullStreamBuffer* _buffer;
|
2009-05-18 20:04:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Stream buffer calling notify handler when buffer is synchronized (usually on std::endl).
|
|
|
|
* Stream stores last notification severity to pass it to handler call.
|
|
|
|
*/
|
|
|
|
struct NotifyStreamBuffer : public std::stringbuf
|
|
|
|
{
|
|
|
|
NotifyStreamBuffer() : _severity(osg::NOTICE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void setNotifyHandler(osg::NotifyHandler *handler) { _handler = handler; }
|
|
|
|
osg::NotifyHandler *getNotifyHandler() const { return _handler.get(); }
|
|
|
|
|
|
|
|
/** Sets severity for next call of notify handler */
|
2013-05-15 00:23:53 +08:00
|
|
|
void setCurrentSeverity(osg::NotifySeverity severity)
|
|
|
|
{
|
|
|
|
if (_severity != severity)
|
|
|
|
{
|
|
|
|
sync();
|
|
|
|
_severity = severity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 20:04:07 +08:00
|
|
|
osg::NotifySeverity getCurrentSeverity() const { return _severity; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
int sync()
|
|
|
|
{
|
|
|
|
sputc(0); // string termination
|
|
|
|
if (_handler.valid())
|
|
|
|
_handler->notify(_severity, pbase());
|
|
|
|
pubseekpos(0, std::ios_base::out); // or str(std::string())
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::NotifyHandler> _handler;
|
|
|
|
osg::NotifySeverity _severity;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NotifyStream : public std::ostream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NotifyStream():
|
2009-05-25 18:46:37 +08:00
|
|
|
std::ostream(new NotifyStreamBuffer)
|
|
|
|
{ _buffer = dynamic_cast<NotifyStreamBuffer *>(rdbuf()); }
|
2009-05-18 20:04:07 +08:00
|
|
|
|
|
|
|
void setCurrentSeverity(osg::NotifySeverity severity)
|
|
|
|
{
|
2009-05-25 18:46:37 +08:00
|
|
|
_buffer->setCurrentSeverity(severity);
|
2009-05-18 20:04:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
osg::NotifySeverity getCurrentSeverity() const
|
|
|
|
{
|
2009-05-25 18:46:37 +08:00
|
|
|
return _buffer->getCurrentSeverity();
|
|
|
|
}
|
2012-03-22 01:36:20 +08:00
|
|
|
|
2009-05-25 18:46:37 +08:00
|
|
|
~NotifyStream()
|
|
|
|
{
|
|
|
|
rdbuf(0);
|
|
|
|
delete _buffer;
|
2009-05-18 20:04:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2009-05-25 18:46:37 +08:00
|
|
|
NotifyStreamBuffer* _buffer;
|
2009-05-18 20:04:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
using namespace osg;
|
2002-02-03 19:35:24 +08:00
|
|
|
|
2009-03-23 21:51:46 +08:00
|
|
|
static osg::ApplicationUsageProxy Notify_e0(osg::ApplicationUsage::ENVIRONMENTAL_VARIABLE, "OSG_NOTIFY_LEVEL <mode>", "FATAL | WARN | NOTICE | DEBUG_INFO | DEBUG_FP | DEBUG | INFO | ALWAYS");
|
|
|
|
|
2012-06-23 00:21:08 +08:00
|
|
|
struct NotifySingleton
|
|
|
|
{
|
|
|
|
NotifySingleton()
|
|
|
|
{
|
|
|
|
// _notifyLevel
|
|
|
|
// =============
|
|
|
|
|
|
|
|
_notifyLevel = osg::NOTICE; // Default value
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2012-06-23 00:21:08 +08:00
|
|
|
char* OSGNOTIFYLEVEL=getenv("OSG_NOTIFY_LEVEL");
|
|
|
|
if (!OSGNOTIFYLEVEL) OSGNOTIFYLEVEL=getenv("OSGNOTIFYLEVEL");
|
|
|
|
if(OSGNOTIFYLEVEL)
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string stringOSGNOTIFYLEVEL(OSGNOTIFYLEVEL);
|
|
|
|
|
|
|
|
// Convert to upper case
|
|
|
|
for(std::string::iterator i=stringOSGNOTIFYLEVEL.begin();
|
|
|
|
i!=stringOSGNOTIFYLEVEL.end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
*i=toupper(*i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(stringOSGNOTIFYLEVEL.find("ALWAYS")!=std::string::npos) _notifyLevel=osg::ALWAYS;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("FATAL")!=std::string::npos) _notifyLevel=osg::FATAL;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("WARN")!=std::string::npos) _notifyLevel=osg::WARN;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("NOTICE")!=std::string::npos) _notifyLevel=osg::NOTICE;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("DEBUG_INFO")!=std::string::npos) _notifyLevel=osg::DEBUG_INFO;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("DEBUG_FP")!=std::string::npos) _notifyLevel=osg::DEBUG_FP;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("DEBUG")!=std::string::npos) _notifyLevel=osg::DEBUG_INFO;
|
|
|
|
else if(stringOSGNOTIFYLEVEL.find("INFO")!=std::string::npos) _notifyLevel=osg::INFO;
|
|
|
|
else std::cout << "Warning: invalid OSG_NOTIFY_LEVEL set ("<<stringOSGNOTIFYLEVEL<<")"<<std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup standard notify handler
|
|
|
|
osg::NotifyStreamBuffer *buffer = dynamic_cast<osg::NotifyStreamBuffer *>(_notifyStream.rdbuf());
|
|
|
|
if (buffer && !buffer->getNotifyHandler())
|
|
|
|
buffer->setNotifyHandler(new StandardNotifyHandler);
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::NotifySeverity _notifyLevel;
|
|
|
|
osg::NullStream _nullStream;
|
|
|
|
osg::NotifyStream _notifyStream;
|
|
|
|
};
|
|
|
|
|
|
|
|
static NotifySingleton& getNotifySingleton()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
static NotifySingleton s_NotifySingleton;
|
|
|
|
return s_NotifySingleton;
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
|
|
|
|
2012-06-23 00:21:08 +08:00
|
|
|
bool osg::initNotifyLevel()
|
|
|
|
{
|
|
|
|
getNotifySingleton();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-01 21:11:49 +08:00
|
|
|
// Use a proxy to force the initialization of the NotifySingleton during static initialization
|
2012-06-23 00:21:08 +08:00
|
|
|
OSG_INIT_SINGLETON_PROXY(NotifySingletonProxy, osg::initNotifyLevel())
|
|
|
|
|
|
|
|
void osg::setNotifyLevel(osg::NotifySeverity severity)
|
|
|
|
{
|
|
|
|
getNotifySingleton()._notifyLevel = severity;
|
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
osg::NotifySeverity osg::getNotifyLevel()
|
2001-01-11 00:32:10 +08:00
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
return getNotifySingleton()._notifyLevel;
|
2001-01-11 00:32:10 +08:00
|
|
|
}
|
|
|
|
|
2009-05-18 20:04:07 +08:00
|
|
|
void osg::setNotifyHandler(osg::NotifyHandler *handler)
|
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
osg::NotifyStreamBuffer *buffer = static_cast<osg::NotifyStreamBuffer*>(getNotifySingleton()._notifyStream.rdbuf());
|
|
|
|
if (buffer) buffer->setNotifyHandler(handler);
|
2009-05-18 20:04:07 +08:00
|
|
|
}
|
|
|
|
|
2009-05-25 18:46:37 +08:00
|
|
|
osg::NotifyHandler* osg::getNotifyHandler()
|
2009-05-18 20:04:07 +08:00
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
osg::NotifyStreamBuffer *buffer = static_cast<osg::NotifyStreamBuffer *>(getNotifySingleton()._notifyStream.rdbuf());
|
2009-05-18 20:04:07 +08:00
|
|
|
return buffer ? buffer->getNotifyHandler() : 0;
|
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-06-12 02:41:57 +08:00
|
|
|
|
2010-02-12 19:45:00 +08:00
|
|
|
#ifndef OSG_NOTIFY_DISABLED
|
2005-07-14 18:27:00 +08:00
|
|
|
bool osg::isNotifyEnabled( osg::NotifySeverity severity )
|
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
return severity<=getNotifySingleton()._notifyLevel;
|
2005-07-14 18:27:00 +08:00
|
|
|
}
|
2010-02-12 19:45:00 +08:00
|
|
|
#endif
|
2005-07-14 18:27:00 +08:00
|
|
|
|
2002-06-16 04:57:50 +08:00
|
|
|
std::ostream& osg::notify(const osg::NotifySeverity severity)
|
|
|
|
{
|
2010-02-12 19:45:00 +08:00
|
|
|
if (osg::isNotifyEnabled(severity))
|
2002-06-12 02:41:57 +08:00
|
|
|
{
|
2012-06-23 00:21:08 +08:00
|
|
|
getNotifySingleton()._notifyStream.setCurrentSeverity(severity);
|
|
|
|
return getNotifySingleton()._notifyStream;
|
2002-06-12 02:41:57 +08:00
|
|
|
}
|
2012-06-23 00:21:08 +08:00
|
|
|
return getNotifySingleton()._nullStream;
|
2002-06-12 02:41:57 +08:00
|
|
|
}
|
2009-05-18 20:04:07 +08:00
|
|
|
|
|
|
|
void osg::StandardNotifyHandler::notify(osg::NotifySeverity severity, const char *message)
|
|
|
|
{
|
2012-03-22 01:36:20 +08:00
|
|
|
if (severity <= osg::WARN)
|
2009-05-18 20:04:07 +08:00
|
|
|
fputs(message, stderr);
|
|
|
|
else
|
|
|
|
fputs(message, stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
|
|
|
2010-05-15 03:47:50 +08:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#endif
|
2009-05-18 20:04:07 +08:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
void osg::WinDebugNotifyHandler::notify(osg::NotifySeverity severity, const char *message)
|
|
|
|
{
|
|
|
|
OutputDebugStringA(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|