monitor.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #define LOG_LOCAL_LEVEL ESP_LOG_INFO
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <unistd.h>
  11. #include <string.h>
  12. #include "freertos/FreeRTOS.h"
  13. #include "freertos/timers.h"
  14. #include "esp_system.h"
  15. #include "esp_log.h"
  16. #include "esp_task.h"
  17. #include "monitor.h"
  18. #include "driver/gpio.h"
  19. #include "buttons.h"
  20. #include "led.h"
  21. #include "globdefs.h"
  22. #include "accessors.h"
  23. #include "messaging.h"
  24. #include "cJSON.h"
  25. #include "tools.h"
  26. #define PSEUDO_IDLE_STACK_SIZE (6*1024)
  27. #define MONITOR_TIMER (10*1000)
  28. #define SCRATCH_SIZE 256
  29. static const char *TAG = "monitor";
  30. void (*pseudo_idle_svc)(uint32_t now);
  31. void (*jack_handler_svc)(bool inserted);
  32. bool jack_inserted_svc(void);
  33. void (*spkfault_handler_svc)(bool inserted);
  34. bool spkfault_svc(void);
  35. static bool monitor_stats;
  36. /****************************************************************************************
  37. *
  38. */
  39. static void task_stats( cJSON* top ) {
  40. #ifdef CONFIG_FREERTOS_USE_TRACE_FACILITY
  41. #pragma message("Compiled with trace facility")
  42. static struct {
  43. TaskStatus_t *tasks;
  44. uint32_t total, n;
  45. } current, previous;
  46. cJSON * tlist=cJSON_CreateArray();
  47. current.n = uxTaskGetNumberOfTasks();
  48. current.tasks = malloc_init_external( current.n * sizeof( TaskStatus_t ) );
  49. current.n = uxTaskGetSystemState( current.tasks, current.n, &current.total );
  50. cJSON_AddNumberToObject(top,"ntasks",current.n);
  51. char scratch[SCRATCH_SIZE] = { };
  52. #ifdef CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS
  53. #pragma message("Compiled with runtime stats")
  54. uint32_t elapsed = current.total - previous.total;
  55. for(int i = 0, n = 0; i < current.n; i++ ) {
  56. for (int j = 0; j < previous.n; j++) {
  57. if (current.tasks[i].xTaskNumber == previous.tasks[j].xTaskNumber) {
  58. n += snprintf(scratch + n, SCRATCH_SIZE - n, "%16s (%u) %2u%% s:%5u", current.tasks[i].pcTaskName,
  59. current.tasks[i].eCurrentState,
  60. 100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed,
  61. current.tasks[i].usStackHighWaterMark);
  62. cJSON * t=cJSON_CreateObject();
  63. cJSON_AddNumberToObject(t,"cpu",100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed);
  64. cJSON_AddNumberToObject(t,"minstk",current.tasks[i].usStackHighWaterMark);
  65. cJSON_AddNumberToObject(t,"bprio",current.tasks[i].uxBasePriority);
  66. cJSON_AddNumberToObject(t,"cprio",current.tasks[i].uxCurrentPriority);
  67. cJSON_AddStringToObject(t,"nme",current.tasks[i].pcTaskName);
  68. cJSON_AddNumberToObject(t,"st",current.tasks[i].eCurrentState);
  69. cJSON_AddNumberToObject(t,"num",current.tasks[i].xTaskNumber);
  70. cJSON_AddItemToArray(tlist,t);
  71. if (i % 3 == 2 || i == current.n - 1) {
  72. ESP_LOGI(TAG, "%s", scratch);
  73. n = 0;
  74. }
  75. break;
  76. }
  77. }
  78. }
  79. #else
  80. #pragma message("Compiled WITHOUT runtime stats")
  81. for (int i = 0, n = 0; i < current.n; i ++) {
  82. n += sprintf(scratch + n, "%16s s:%5u\t", current.tasks[i].pcTaskName, current.tasks[i].usStackHighWaterMark);
  83. cJSON * t=cJSON_CreateObject();
  84. cJSON_AddNumberToObject(t,"minstk",current.tasks[i].usStackHighWaterMark);
  85. cJSON_AddNumberToObject(t,"bprio",current.tasks[i].uxBasePriority);
  86. cJSON_AddNumberToObject(t,"cprio",current.tasks[i].uxCurrentPriority);
  87. cJSON_AddStringToObject(t,"nme",current.tasks[i].pcTaskName);
  88. cJSON_AddNumberToObject(t,"st",current.tasks[i].eCurrentState);
  89. cJSON_AddNumberToObject(t,"num",current.tasks[i].xTaskNumber);
  90. cJSON_AddItemToArray(tlist,t);
  91. if (i % 3 == 2 || i == current.n - 1) {
  92. ESP_LOGI(TAG, "%s", scratch);
  93. n = 0;
  94. }
  95. }
  96. #endif
  97. cJSON_AddItemToObject(top,"tasks",tlist);
  98. if (previous.tasks) free(previous.tasks);
  99. previous = current;
  100. #else
  101. #pragma message("Compiled WITHOUT trace facility")
  102. #endif
  103. }
  104. /****************************************************************************************
  105. *
  106. */
  107. static void monitor_trace(uint32_t now) {
  108. static uint32_t last;
  109. if (now < last + MONITOR_TIMER) return;
  110. last = now;
  111. cJSON * top=cJSON_CreateObject();
  112. cJSON_AddNumberToObject(top,"free_iram",heap_caps_get_free_size(MALLOC_CAP_INTERNAL));
  113. cJSON_AddNumberToObject(top,"min_free_iram",heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL));
  114. cJSON_AddNumberToObject(top,"free_spiram",heap_caps_get_free_size(MALLOC_CAP_SPIRAM));
  115. cJSON_AddNumberToObject(top,"min_free_spiram",heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  116. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu) dma:%zu (min:%zu)",
  117. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  118. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  119. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  120. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM),
  121. heap_caps_get_free_size(MALLOC_CAP_DMA),
  122. heap_caps_get_minimum_free_size(MALLOC_CAP_DMA));
  123. task_stats(top);
  124. char * top_a= cJSON_PrintUnformatted(top);
  125. if(top_a){
  126. messaging_post_message(MESSAGING_INFO, MESSAGING_CLASS_STATS,top_a);
  127. FREE_AND_NULL(top_a);
  128. }
  129. cJSON_Delete(top);
  130. }
  131. /****************************************************************************************
  132. *
  133. */
  134. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  135. ESP_LOGI(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  136. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  137. }
  138. /****************************************************************************************
  139. *
  140. */
  141. bool jack_inserted_svc (void) {
  142. sys_gpio_config * jack=NULL;
  143. if(SYS_GPIOS_NAME(jack,jack)){
  144. return button_is_pressed(jack->pin, NULL);
  145. }
  146. return false;
  147. }
  148. /****************************************************************************************
  149. *
  150. */
  151. static void spkfault_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  152. ESP_LOGD(TAG, "Speaker status %s", event == BUTTON_PRESSED ? "faulty" : "normal");
  153. if (event == BUTTON_PRESSED) led_on(LED_RED);
  154. else led_off(LED_RED);
  155. if (spkfault_handler_svc) (*spkfault_handler_svc)(event == BUTTON_PRESSED);
  156. }
  157. /****************************************************************************************
  158. *
  159. */
  160. bool spkfault_svc (void) {
  161. sys_gpio_config * spkfault=NULL;
  162. if(SYS_GPIOS_NAME(spkfault,spkfault)){
  163. return button_is_pressed(spkfault->pin, NULL);
  164. }
  165. return false;
  166. }
  167. /****************************************************************************************
  168. *
  169. */
  170. static void pseudo_idle(void *arg) {
  171. while (1) {
  172. vTaskDelay(pdMS_TO_TICKS(1000));
  173. uint32_t now = pdTICKS_TO_MS(xTaskGetTickCount());
  174. if (monitor_stats) monitor_trace(now);
  175. if (pseudo_idle_svc) pseudo_idle_svc(now);
  176. }
  177. }
  178. /****************************************************************************************
  179. *
  180. */
  181. void monitor_svc_init(void) {
  182. ESP_LOGI(TAG, "Initializing monitoring");
  183. sys_services_config * services = NULL;
  184. sys_gpio_config * gpio=NULL;
  185. if(SYS_GPIOS_NAME(jack,gpio) && gpio->pin>=0){
  186. ESP_LOGI(TAG,"Adding jack (%s) detection GPIO %d", sys_gpio_lvl_name(gpio->level), gpio->pin);
  187. button_create(NULL, gpio->pin, gpio->level ? BUTTON_HIGH : BUTTON_LOW, false, 250, jack_handler_default, 0, -1);
  188. }
  189. if(SYS_GPIOS_NAME(spkfault,gpio) && gpio->pin>=0){
  190. ESP_LOGI(TAG,"Adding speaker fault (%s) detection GPIO %d", gpio->level ? "high" : "low", gpio->pin);
  191. button_create(NULL, gpio->pin, gpio->level ? BUTTON_HIGH : BUTTON_LOW, false, 0, spkfault_handler_default, 0, -1);
  192. }
  193. // do we want stats
  194. monitor_stats = sys_services_config(services) && services->statistics;
  195. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu) dma:%zu (min:%zu)",
  196. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  197. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  198. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  199. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM),
  200. heap_caps_get_free_size(MALLOC_CAP_DMA),
  201. heap_caps_get_minimum_free_size(MALLOC_CAP_DMA));
  202. // pseudo-idle callback => don't use FreeRTOS idle callbacks so we can block (should not but ...)
  203. StaticTask_t* xTaskBuffer = (StaticTask_t*) heap_caps_malloc(sizeof(StaticTask_t), MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
  204. static EXT_RAM_ATTR StackType_t xStack[PSEUDO_IDLE_STACK_SIZE] __attribute__ ((aligned (4)));
  205. xTaskCreateStatic( (TaskFunction_t) pseudo_idle, "pseudo_idle", PSEUDO_IDLE_STACK_SIZE,
  206. NULL, ESP_TASK_PRIO_MIN, xStack, xTaskBuffer );
  207. }