/usr/include/OpenImageIO/errorhandler.h is in libopenimageio-dev 1.6.17~dfsg0-1+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | /*
Copyright 2009 Larry Gritz and the other authors and contributors.
All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the software's owners nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(This is the Modified BSD License)
*/
#ifndef OPENIMAGEIO_ERRORMANAGER_H
#define OPENIMAGEIO_ERRORMANAGER_H
#include <cstdarg>
#include "export.h"
#include "oiioversion.h"
#include "strutil.h"
OIIO_NAMESPACE_BEGIN
/// ErrorHandler is a simple class that accepts error messages
/// (classified as errors, severe errors, warnings, info, messages, or
/// debug output) and handles them somehow. By default it just prints
/// the messages to stdout and/or stderr (and supresses some based on a
/// "verbosity" level).
///
/// The basic idea is that your library code has no idea whether some
/// application that will use it someday will want errors or other
/// output to be sent to the console, go to a log file, be intercepted
/// by the calling application, or something else. So you punt, by
/// having your library take a pointer to an ErrorHandler, passed in
/// from the calling app (and possibly subclassed to have arbitrarily
/// different behavior from the default console output) and make all
/// error-like output via the ErrorHandler*.
///
class OIIO_API ErrorHandler {
public:
/// Error categories. We use broad categories in the high order bits.
/// A library may just use these categories, or may create individual
/// error codes as long as they have the right high bits to designate
/// their category (file not found = ERROR + 1, etc.).
enum ErrCode {
EH_NO_ERROR = 0, // never sent to handler
EH_MESSAGE = 0 << 16,
EH_INFO = 1 << 16,
EH_WARNING = 2 << 16,
EH_ERROR = 3 << 16,
EH_SEVERE = 4 << 16,
EH_DEBUG = 5 << 16
};
/// VerbosityLevel controls how much detail the calling app wants.
///
enum VerbosityLevel {
QUIET = 0, ///< Show MESSAGE, SEVERE, ERROR only
NORMAL = 1, ///< Show MESSAGE, SEVERE, ERROR, WARNING
VERBOSE = 2 ///< Like NORMAL, but also show INFO
};
ErrorHandler () : m_verbosity(NORMAL) { }
virtual ~ErrorHandler () { }
/// The main (or "full detail") method -- takes a code (with high
/// bits being an ErrCode) and writes the message, with a prefix
/// indicating the error category (no prefix for "MESSAGE") and
/// error string.
virtual void operator () (int errcode, const std::string &msg);
/// Info message with printf-like formatted error message.
/// Will not print unless verbosity >= VERBOSE.
void info (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
/// Warning message with printf-like formatted error message.
/// Will not print unless verbosity >= NORMAL (i.e. will suppress
/// for QUIET).
void warning (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
/// Error message with printf-like formatted error message.
/// Will print regardless of verbosity.
void error (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
/// Severe error message with printf-like formatted error message.
/// Will print regardless of verbosity.
void severe (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
/// Prefix-less message with printf-like formatted error message.
/// Will not print if verbosity is QUIET. Also note that unlike
/// the other routines, message() will NOT append a newline.
void message (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
/// Debugging message with printf-like formatted error message.
/// This will not produce any output if not in DEBUG mode, or
/// if verbosity is QUIET.
#ifndef NDEBUG
void debug (const char *format, ...) OPENIMAGEIO_PRINTF_ARGS(2,3);
#else
void debug (const char * /*format*/, ...) OPENIMAGEIO_PRINTF_ARGS(2,3) { }
#endif
void vInfo (const char *format, va_list argptr);
void vWarning (const char *format, va_list argptr);
void vError (const char *format, va_list argptr);
void vSevere (const char *format, va_list argptr);
void vMessage (const char *format, va_list argptr);
#ifndef NDEBUG
void vDebug (const char *format, va_list argptr);
#else
void vDebug (const char *, va_list) { }
#endif
void info (const std::string &msg) { (*this)(EH_INFO, msg); }
void warning (const std::string &msg) { (*this)(EH_WARNING, msg); }
void error (const std::string &msg) { (*this)(EH_ERROR, msg); }
void severe (const std::string &msg) { (*this)(EH_SEVERE, msg); }
void message (const std::string &msg) { (*this)(EH_MESSAGE, msg); }
#ifndef NDEBUG
void debug (const std::string &msg) { (*this)(EH_DEBUG, msg); }
#else
void debug (const std::string &) { }
#endif
/// Set desired verbosity level.
///
void verbosity (int v) { m_verbosity = v; }
/// Return the current verbosity level.
///
int verbosity () const { return m_verbosity; }
/// One built-in handler that can always be counted on to be present
/// and just echoes the error messages to the console (stdout or
/// stderr, depending on the error category).
static ErrorHandler & default_handler ();
private:
int m_verbosity;
};
OIIO_NAMESPACE_END
#endif /* !defined(OPENIMAGEIO_ERRORMANAGER_H) */
|