tools.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. #include "cJSON.h"
  12. #include "freertos/FreeRTOS.h"
  13. #include "freertos/task.h"
  14. #include "esp_spiffs.h"
  15. #include "stdio.h"
  16. #include "sys/stat.h"
  17. #include "pb_common.h" // Nanopb header for encoding (serialization)
  18. #include "pb_decode.h" // Nanopb header for decoding (deserialization)
  19. #include "pb_encode.h" // Nanopb header for encoding (serialization)
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #ifndef QUOTE
  24. #define QUOTE(name) #name
  25. #endif
  26. #ifndef STR
  27. #define STR(macro) QUOTE(macro)
  28. #endif
  29. #ifndef STR_OR_ALT
  30. #define STR_OR_ALT(str, alt) (str ? str : alt)
  31. #endif
  32. #ifndef STR_OR_BLANK
  33. #define STR_OR_BLANK(p) p == NULL ? "" : p
  34. #endif
  35. #define ESP_LOG_DEBUG_EVENT(tag, e) ESP_LOGD(tag, "evt: " e)
  36. #ifndef FREE_AND_NULL
  37. #define FREE_AND_NULL(x) \
  38. if (x) { \
  39. free(x); \
  40. x = NULL; \
  41. }
  42. #endif
  43. #ifndef CASE_TO_STR
  44. #define CASE_TO_STR(x) \
  45. case x: \
  46. return STR(x); \
  47. break;
  48. #endif
  49. #define ENUM_TO_STRING(g) \
  50. case g: \
  51. return STR(g); \
  52. break;
  53. void utf8_decode(char* src);
  54. void url_decode(char* url);
  55. void* malloc_init_external(size_t sz);
  56. void* clone_obj_psram(void* source, size_t source_sz);
  57. char* strdup_psram(const char* source);
  58. const char* str_or_unknown(const char* str);
  59. const char* str_or_null(const char* str);
  60. void dump_json_content(const char* prefix, cJSON* json, int level);
  61. void init_spiffs();
  62. char * alloc_get_string_with_mac(const char * val);
  63. const char * get_mac_str();
  64. #define alloc_join_path(base_path, ...) _alloc_join_path(base_path,__VA_ARGS__, NULL)
  65. char* _alloc_join_path(const char* base_path, ...);
  66. #define get_file_info(pfileInfo, ...) _get_file_info(pfileInfo,__VA_ARGS__, NULL)
  67. bool _get_file_info(struct stat* pfileInfo, ...);
  68. #define load_file(sz, ...) _load_file(MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT, sz, __VA_ARGS__, NULL)
  69. #define load_file_dma(sz, ...) _load_file(MALLOC_CAP_INTERNAL | MALLOC_CAP_DMA, sz, __VA_ARGS__, NULL)
  70. void* _load_file(uint32_t memflags, size_t* sz, ...);
  71. #define file_exists(pfileinfo,...) _file_exists(pfileInfo,__VA_ARGS__, NULL)
  72. bool _file_exists(struct stat *fileInfo, ...);
  73. #define open_file(mode,...) _open_file(mode,__VA_ARGS__, NULL)
  74. FILE* _open_file( const char* mode,...);
  75. bool in_file_binding(pb_istream_t* stream, pb_byte_t *buf, size_t count);
  76. bool out_file_binding(pb_ostream_t* stream, const uint8_t* buf, size_t count);
  77. bool out_http_binding(pb_ostream_t* stream, const uint8_t* buf, size_t count);
  78. #define write_file(data,sz,...) _write_file(data,sz,__VA_ARGS__, NULL)
  79. bool _write_file(uint8_t* data, size_t sz, ...);
  80. void listFiles(const char *path_requested);
  81. #ifndef gettime_ms
  82. // body is provided somewhere else...
  83. uint32_t _gettime_ms_(void);
  84. #define gettime_ms _gettime_ms_
  85. #endif
  86. typedef void (*http_download_cb_t)(uint8_t* data, size_t len, void* context);
  87. void http_download(char* url, size_t max, http_download_cb_t callback, void* context);
  88. /* Use these to dynamically create tasks whose stack is on EXTRAM. Be aware that it
  89. * requires configNUM_THREAD_LOCAL_STORAGE_POINTERS to bet set to 2 at least (index 0
  90. * is used by pthread and this uses index 1, obviously
  91. */
  92. BaseType_t xTaskCreateEXTRAM(TaskFunction_t pvTaskCode, const char* const pcName,
  93. configSTACK_DEPTH_TYPE usStackDepth, void* pvParameters, UBaseType_t uxPriority,
  94. TaskHandle_t* pxCreatedTask);
  95. void vTaskDeleteEXTRAM(TaskHandle_t xTask);
  96. extern const char unknown_string_placeholder[];
  97. #ifndef TRACE_DEBUG
  98. #define TRACE_DEBUG(msgformat, ... ) printf("%-30s%-5d" msgformat "\n", __FUNCTION__, __LINE__, ##__VA_ARGS__)
  99. #endif
  100. #ifdef __cplusplus
  101. }
  102. #endif