tools.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Tools
  3. *
  4. * Philippe G. 2019, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. */
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #ifndef QUOTE
  15. #define QUOTE(name) #name
  16. #endif
  17. #ifndef STR
  18. #define STR(macro) QUOTE(macro)
  19. #endif
  20. #ifndef STR_OR_ALT
  21. #define STR_OR_ALT(str,alt) (str?str:alt)
  22. #endif
  23. #ifndef STR_OR_BLANK
  24. #define STR_OR_BLANK(p) p == NULL ? "" : p
  25. #endif
  26. #define ESP_LOG_DEBUG_EVENT(tag,e) ESP_LOGD(tag,"evt: " e)
  27. #ifdef ENABLE_MEMTRACE
  28. void memtrace_print_delta(const char * msg, const char * tag, const char * function);
  29. #define MEMTRACE_PRINT_DELTA() memtrace_print_delta(NULL,TAG,__FUNCTION__);
  30. #define MEMTRACE_PRINT_DELTA_MESSAGE(x) memtrace_print_delta(x,TAG,__FUNCTION__);
  31. #else
  32. #define MEMTRACE_PRINT_DELTA()
  33. #define MEMTRACE_PRINT_DELTA_MESSAGE(x) ESP_LOGD(TAG,"%s",x);
  34. #endif
  35. #ifndef FREE_AND_NULL
  36. #define FREE_AND_NULL(x) if(x) { free(x); x=NULL; }
  37. #endif
  38. #ifndef CASE_TO_STR
  39. #define CASE_TO_STR(x) case x: return STR(x); break;
  40. #endif
  41. #define ENUM_TO_STRING(g) \
  42. case g: \
  43. return STR(g); \
  44. break;
  45. void utf8_decode(char *src);
  46. void url_decode(char *url);
  47. void* malloc_init_external(size_t sz);
  48. void* clone_obj_psram(void * source, size_t source_sz);
  49. char* strdup_psram(const char * source);
  50. const char* str_or_unknown(const char * str);
  51. const char* str_or_null(const char * str);
  52. extern const char unknown_string_placeholder[];
  53. #ifdef __cplusplus
  54. }
  55. #endif