debug.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * $Id: debug.h,v 1.5 2006/01/30 23:07:57 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. * Copyright (c) 2009 Hewlett-Packard Development Company, L.P.
  7. *
  8. * This library is free software; you can redistribute it and/or modify
  9. * it under the terms of the MIT license. See COPYING for details.
  10. *
  11. */
  12. #ifndef _DEBUG_H_
  13. #define _DEBUG_H_
  14. #include <stdlib.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. extern void mc_set_debug(int debug);
  19. extern int mc_get_debug(void);
  20. extern void mc_set_syslog(int syslog);
  21. extern void mc_debug(const char *msg, ...);
  22. extern void mc_error(const char *msg, ...);
  23. extern void mc_info(const char *msg, ...);
  24. #ifndef __STRING
  25. #define __STRING(x) #x
  26. #endif
  27. #ifndef PARSER_BROKEN_FIXED
  28. #define JASSERT(cond) do {} while(0)
  29. #else
  30. #define JASSERT(cond) do { \
  31. if (!(cond)) { \
  32. mc_error("cjson assert failure %s:%d : cond \"" __STRING(cond) "failed\n", __FILE__, __LINE__); \
  33. *(int *)0 = 1;\
  34. abort(); \
  35. }\
  36. } while(0)
  37. #endif
  38. #define MC_ERROR(x, ...) mc_error(x, ##__VA_ARGS__)
  39. #ifdef MC_MAINTAINER_MODE
  40. #define MC_SET_DEBUG(x) mc_set_debug(x)
  41. #define MC_GET_DEBUG() mc_get_debug()
  42. #define MC_SET_SYSLOG(x) mc_set_syslog(x)
  43. #define MC_DEBUG(x, ...) mc_debug(x, ##__VA_ARGS__)
  44. #define MC_INFO(x, ...) mc_info(x, ##__VA_ARGS__)
  45. #else
  46. #define MC_SET_DEBUG(x) if (0) mc_set_debug(x)
  47. #define MC_GET_DEBUG() (0)
  48. #define MC_SET_SYSLOG(x) if (0) mc_set_syslog(x)
  49. #define MC_DEBUG(x, ...) if (0) mc_debug(x, ##__VA_ARGS__)
  50. #define MC_INFO(x, ...) if (0) mc_info(x, ##__VA_ARGS__)
  51. #endif
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55. #endif