perf_trace.h 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #include "sys/time.h"
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #define PERF_MAX LONG_MAX
  29. #define MIN_MAX_VAL(x) x==PERF_MAX?0:x
  30. #define CURR_SAMPLE_RATE output.current_sample_rate>0?output.current_sample_rate:1
  31. #define FRAMES_TO_MS(f) (uint32_t)f*(uint32_t)1000/(uint32_t)(CURR_SAMPLE_RATE)
  32. #ifdef BYTES_TO_FRAME
  33. #define BYTES_TO_MS(b) FRAMES_TO_MS(BYTES_TO_FRAME(b))
  34. #else
  35. #define BYTES_TO_MS(b) FRAMES_TO_MS(b/BYTES_PER_FRAME)
  36. #endif
  37. #define SET_MIN_MAX(val,var) var=val; if(var<min_##var) min_##var=var; if(var>max_##var) max_##var=var; count_##var++; avgtot_##var+= var
  38. #define SET_MIN_MAX_SIZED(val,var,siz) var=val; if(var<min_##var) min_##var=var; if(var>max_##var) max_##var=var; count_##var++; avgtot_##var+= var;size_##var=siz
  39. #define RESET_MIN_MAX(var) min_##var=PERF_MAX; max_##var=0; avgtot_##var=0;count_##var=0;var=0;size_##var=0
  40. #define RESET_MIN_MAX_DURATION(var) min_##var=PERF_MAX; max_##var=0; avgtot_##var=0;count_##var=0;var=0
  41. #define DECLARE_MIN_MAX(var) static uint32_t min_##var = PERF_MAX, max_##var = 0, size_##var = 0, count_##var=0;static uint64_t avgtot_##var = 0; static uint32_t var=0
  42. #define DECLARE_MIN_MAX_DURATION(var) static uint32_t min_##var = PERF_MAX, max_##var = 0, count_##var=0; uint64_t avgtot_##var = 0; uint32_t var=0
  43. #define LINE_MIN_MAX_AVG(var) (uint32_t)(count_##var>0?avgtot_##var/count_##var:0)
  44. #define LINE_MIN_MAX_FORMAT_HEAD1 " +----------+----------+----------------+-----+----------------+"
  45. #define LINE_MIN_MAX_FORMAT_HEAD2 " | max | min | average | | count |"
  46. #define LINE_MIN_MAX_FORMAT_HEAD3 " | (bytes) | (bytes) | (bytes) | | |"
  47. #define LINE_MIN_MAX_FORMAT_HEAD4 " +----------+----------+----------------+-----+----------------+"
  48. #define LINE_MIN_MAX_FORMAT_FOOTER " +----------+----------+----------------+-----+----------------+"
  49. #define LINE_MIN_MAX_FORMAT "%14s|%10u|%10u|%16u|%5u|%16u|"
  50. #define LINE_MIN_MAX(name,var) name,\
  51. MIN_MAX_VAL(max_##var),\
  52. MIN_MAX_VAL(min_##var),\
  53. LINE_MIN_MAX_AVG(var),\
  54. size_##var!=0?100*LINE_MIN_MAX_AVG(var)/size_##var:0,\
  55. count_##var
  56. #define LINE_MIN_MAX_FORMAT_STREAM "%14s|%10u|%10u|%16u|%5u|%16u|"
  57. #define LINE_MIN_MAX_STREAM(name,var) name,\
  58. MIN_MAX_VAL(max_##var),\
  59. MIN_MAX_VAL(min_##var),\
  60. LINE_MIN_MAX_AVG(var),\
  61. size_##var!=0?100*LINE_MIN_MAX_AVG(var)/size_##var:0,\
  62. count_##var
  63. #define LINE_MIN_MAX_DURATION_FORMAT "%14s%10u|%10u|%11u|%11u|"
  64. #define LINE_MIN_MAX_DURATION(name,var) name,MIN_MAX_VAL(max_##var),MIN_MAX_VAL(min_##var), LINE_MIN_MAX_AVG(var), count_##var
  65. #define TIME_MEASUREMENT_START(x) x=esp_timer_get_time()
  66. #define TIME_MEASUREMENT_GET(x) (esp_timer_get_time()-x)
  67. #define TIMED_SECTION_START_MS_FORCE(x,force) if(hasTimeElapsed(x,force)) {
  68. #define TIMED_SECTION_START_MS(x) if(hasTimeElapsed(x,false)){
  69. #define TIMED_SECTION_START_FORCE(x,force) TIMED_SECTION_START_MS(x * 1000UL,force)
  70. #define TIMED_SECTION_START(x) TIMED_SECTION_START_MS(x * 1000UL)
  71. #define TIMED_SECTION_END }
  72. static inline bool hasTimeElapsed(time_t delayMS, bool bforce)
  73. {
  74. static time_t lastTime=0;
  75. struct timeval tv;
  76. gettimeofday(&tv, NULL);
  77. if (lastTime <= tv.tv_sec * 1000 + tv.tv_usec / 1000 ||bforce)
  78. {
  79. lastTime = tv.tv_sec * 1000 + tv.tv_usec / 1000 + delayMS;
  80. return true;
  81. }
  82. else
  83. return false;
  84. }
  85. #ifdef __cplusplus
  86. }
  87. #endif