ua_util.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #ifndef UA_UTIL_H_
  2. #define UA_UTIL_H_
  3. #include <stdio.h> // printf
  4. #include <stdlib.h> // malloc, free
  5. #include <string.h> // memcpy
  6. #include <assert.h> // assert
  7. #include "ua_config.h"
  8. #include <stddef.h> /* Needed for sys/queue.h */
  9. #ifndef MSVC
  10. #include <sys/queue.h>
  11. #else
  12. #include "queue.h"
  13. #endif
  14. #include "ua_types.h"
  15. /* Debug macros */
  16. #define DBG_VERBOSE(expression) // omit debug code
  17. #define DBG_ERR(expression) // omit debug code
  18. #define DBG(expression) // omit debug code
  19. #if defined(DEBUG) // --enable-debug=(yes|verbose)
  20. # undef DBG
  21. # define DBG(expression) expression
  22. # undef DBG_ERR
  23. # define DBG_ERR(expression) expression
  24. # if defined(VERBOSE) // --enable-debug=verbose
  25. # undef DBG_VERBOSE
  26. # define DBG_VERBOSE(expression) expression
  27. # endif
  28. #endif
  29. #ifdef DEBUG
  30. #define UA_assert(ignore) assert(ignore)
  31. #else
  32. #define UA_assert(ignore)
  33. #endif
  34. /* Heap memory functions */
  35. #define UA_free(ptr) _UA_free(ptr, # ptr, __FILE__, __LINE__)
  36. INLINE UA_Int32 _UA_free(void *ptr, char *pname, char *f, UA_Int32 l) {
  37. DBG_VERBOSE(printf("UA_free;%p;;%s;;%s;%d\n", ptr, pname, f, l); fflush(stdout));
  38. free(ptr); // checks if ptr != NULL in the background
  39. return UA_SUCCESS;
  40. }
  41. #ifdef DEBUG
  42. #define UA_alloc(size) _UA_alloc(size, __FILE__, __LINE__)
  43. INLINE void * _UA_alloc(UA_Int32 size, char *file, UA_Int32 line) {
  44. DBG_VERBOSE(printf("UA_alloc - %d;%s;%d\n", size, file, line); fflush(stdout));
  45. return malloc(size);
  46. }
  47. #else
  48. #define UA_alloc(size) _UA_alloc(size)
  49. INLINE void * _UA_alloc(UA_Int32 size) {
  50. return malloc(size);
  51. }
  52. #endif
  53. INLINE void UA_memcpy(void *dst, void const *src, UA_Int32 size) {
  54. DBG_VERBOSE(printf("UA_memcpy - %p;%p;%d\n", dst, src, size));
  55. memcpy(dst, src, size);
  56. }
  57. #endif /* UA_UTIL_H_ */