Events.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #pragma once
  2. #ifdef __cplusplus
  3. #include "esp_log.h"
  4. #include "tools.h"
  5. #include <cJSON.h>
  6. #include <ctime>
  7. #include <list>
  8. #include <map>
  9. #include <stdio.h>
  10. #include <string.h>
  11. #include <string>
  12. #include <time.h>
  13. namespace Metrics {
  14. struct StrCompare {
  15. bool operator()(const char* a, const char* b) const { return strcmp(a, b) < 0; }
  16. };
  17. class Event {
  18. public:
  19. std::map<char*, char*, StrCompare> properties;
  20. Event& add_property(const char* name, const char* value);
  21. bool has_property_value(const char* name, const char* value) const;
  22. void remove_property(const char* name, const char* value);
  23. cJSON* properties_to_json();
  24. cJSON* to_json(const char* distinct_id);
  25. void free_json();
  26. void update_time();
  27. explicit Event(const char* name) {
  28. _name = strdup_psram(name);
  29. memset(&_time, 0x00, sizeof(_time));
  30. }
  31. const char* get_name() const { return _name; }
  32. ~Event() {
  33. FREE_AND_NULL(_name);
  34. // Iterate through the map and free the elements
  35. for (auto& kv : properties) {
  36. free((void*)kv.first);
  37. free(kv.second);
  38. }
  39. properties.clear(); // Clear the map after freeing memory
  40. FREE_AND_NULL(_json);
  41. }
  42. private:
  43. char* _name = nullptr;
  44. std::time_t _time;
  45. cJSON* _json = nullptr;
  46. };
  47. } // namespace Metrics
  48. #endif