platform_config.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #pragma once
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include "nvs.h"
  5. #include "assert.h"
  6. #include "cJSON.h"
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #define PARSE_WITH_FUNC 1
  11. #ifdef PARSE_WITH_FUNC
  12. #define PARSE_PARAM(S,P,C,V) config_parse_param_int(S,P,C,(int*)&V)
  13. #define PARSE_PARAM_STR(S,P,C,V,I) config_parse_param_str(S,P,C,V,I)
  14. #define PARSE_PARAM_FLOAT(S,P,C,V) config_parse_param_float(S,P,C,&V)
  15. #else
  16. #define PARSE_PARAM(S,P,C,V) do { \
  17. char *__p; \
  18. if ((__p = strcasestr(S, P)) && (__p = strchr(__p, C))) V = atoi(__p+1); \
  19. } while (0)
  20. #define PARSE_PARAM_FLOAT(S,P,C,V) do { \
  21. char *__p; \
  22. if ((__p = strcasestr(S, P)) && (__p = strchr(__p, C))) V = atof(__p+1); \
  23. } while (0)
  24. #define PARSE_PARAM_STR(S,P,C,V,I) do { \
  25. char *__p; \
  26. if ((__p = strstr(S, P)) && (__p = strchr(__p, C))) { \
  27. while (*++__p == ' '); \
  28. sscanf(__p,"%" #I "[^,]", V); \
  29. } \
  30. } while (0)
  31. #endif
  32. #define DECLARE_SET_DEFAULT(t) void config_set_default_## t (const char *key, t value);
  33. #define DECLARE_GET_NUM(t) esp_err_t config_get_## t (const char *key, t * value);
  34. #ifndef FREE_RESET
  35. #define FREE_RESET(p) if(p!=NULL) { free(p); p=NULL; }
  36. #endif
  37. DECLARE_SET_DEFAULT(uint8_t);
  38. DECLARE_SET_DEFAULT(uint16_t);
  39. DECLARE_SET_DEFAULT(uint32_t);
  40. DECLARE_SET_DEFAULT(int8_t);
  41. DECLARE_SET_DEFAULT(int16_t);
  42. DECLARE_SET_DEFAULT(int32_t);
  43. DECLARE_GET_NUM(uint8_t);
  44. DECLARE_GET_NUM(uint16_t);
  45. DECLARE_GET_NUM(uint32_t);
  46. DECLARE_GET_NUM(int8_t);
  47. DECLARE_GET_NUM(int16_t);
  48. DECLARE_GET_NUM(int32_t);
  49. bool config_has_changes();
  50. void config_commit_to_nvs();
  51. void config_start_timer();
  52. void config_init();
  53. bool config_parse_param_int(const char * config,const char * param, char delimiter,int * value);
  54. bool config_parse_param_float(const char * config,const char * param, char delimiter,double * value);
  55. bool config_parse_param_str(const char *source, const char *param, char delimiter, char *value, size_t value_size);
  56. void * config_alloc_get_default(nvs_type_t type, const char *key, void * default_value, size_t blob_size);
  57. void * config_alloc_get_str(const char *key, char *lead, char *fallback);
  58. cJSON * config_alloc_get_cjson(const char *key);
  59. esp_err_t config_set_cjson_str_and_free(const char *key, cJSON *value);
  60. esp_err_t config_set_cjson(const char *key, cJSON *value, bool free_cjson);
  61. void config_get_uint16t_from_str(const char *key, uint16_t *value, uint16_t default_value);
  62. void config_delete_key(const char *key);
  63. void config_set_default(nvs_type_t type, const char *key, void * default_value, size_t blob_size);
  64. void * config_alloc_get(nvs_type_t nvs_type, const char *key) ;
  65. bool wait_for_commit();
  66. char * config_alloc_get_json(bool bFormatted);
  67. esp_err_t config_set_value(nvs_type_t nvs_type, const char *key, const void * value);
  68. nvs_type_t config_get_item_type(cJSON * entry);
  69. void * config_safe_alloc_get_entry_value(nvs_type_t nvs_type, cJSON * entry);
  70. cJSON* cjson_update_number(cJSON** root, const char* key, int value);
  71. cJSON* cjson_update_string(cJSON** root, const char* key, const char* value);
  72. #ifdef __cplusplus
  73. }
  74. #endif