From 4b095722c703cbe68008f79e2282e6f8b2385cea Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Thu, 26 Apr 2007 20:40:27 +0000 Subject: [PATCH] new debug header for media kit git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20846 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/media/MediaDebug.h | 52 ++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 headers/private/media/MediaDebug.h diff --git a/headers/private/media/MediaDebug.h b/headers/private/media/MediaDebug.h new file mode 100644 index 0000000000..b1fabab569 --- /dev/null +++ b/headers/private/media/MediaDebug.h @@ -0,0 +1,52 @@ +#ifndef _MEDIA_DEBUG_OLD_H_ +#define _MEDIA_DEBUG_OLD_H_ + +#ifndef DEBUG + #define DEBUG 1 +#endif + +#include +#include + +#undef TRACE +#undef PRINT + +#if DEBUG > 0 + + #define UNIMPLEMENTED() printf("UNIMPLEMENTED %s\n",__PRETTY_FUNCTION__) + inline void ERROR(const char *fmt, ...) { va_list ap; va_start(ap, fmt); printf("### ERROR: "); vprintf(fmt, ap); va_end(ap); } + inline void PRINT(int level, const char *fmt, ...) { va_list ap; if (level > DEBUG) return; va_start(ap, fmt); vprintf(fmt, ap); va_end(ap); } + + #define PRINT_FORMAT(_text, _fmt) do { char _buf[300]; string_for_format((_fmt), _buf, sizeof(_buf)); printf("%s %s\n", (_text), (_buf)); } while (0) + #define PRINT_INPUT(_text, _in) do { char _buf[300]; string_for_format((_in).format, _buf, sizeof(_buf)); printf("%s node(node %ld, port %ld); source(port %ld, id %ld); dest(port %ld, id %ld); fmt(%s); name(%s)\n", (_text), (_in).node.node, (_in).node.port, (_in).source.port, (_in).source.id, (_in).destination.port, (_in).destination.id, _buf, (_in).name); } while (0) + #define PRINT_OUTPUT(_text, _out) do { char _buf[300]; string_for_format((_out).format, _buf, sizeof(_buf)); printf("%s node(node %ld, port %ld); source(port %ld, id %ld); dest(port %ld, id %ld); fmt(%s); name(%s)\n", (_text), (_out).node.node, (_out).node.port, (_out).source.port, (_out).source.id, (_out).destination.port, (_out).destination.id, _buf, (_out).name); } while (0) + + #if DEBUG >= 2 + #define BROKEN() printf("BROKEN %s\n",__PRETTY_FUNCTION__) + #define TRACE printf + #else + #define BROKEN() ((void)0) + #define TRACE(a...) ((void)0) + #endif + + #if DEBUG >= 3 + #define CALLED() printf("CALLED %s\n",__PRETTY_FUNCTION__) + #else + #define CALLED() ((void)0) + #endif + +#else + + #define PRINT_FORMAT(_text, _fmt) ((void)0) + #define PRINT_INPUT(_text, _in) ((void)0) + #define PRINT_OUTPUT(_text, _out) ((void)0) + #define UNIMPLEMENTED() ((void)0) + #define BROKEN() ((void)0) + #define CALLED() ((void)0) + #define PRINT(l, a...) ((void)0) + #define ERROR(a...) ((void)0) + #define TRACE(a...) ((void)0) + +#endif + +#endif /* _MEDIA_DEBUG_H_ */