monitor.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <unistd.h>
  10. #include <string.h>
  11. #include "freertos/FreeRTOS.h"
  12. #include "freertos/timers.h"
  13. #include "esp_system.h"
  14. #include "esp_log.h"
  15. #include "monitor.h"
  16. #include "driver/gpio.h"
  17. #include "buttons.h"
  18. #include "led.h"
  19. #include "globdefs.h"
  20. #include "platform_config.h"
  21. #include "accessors.h"
  22. #include "messaging.h"
  23. #include "cJSON.h"
  24. #include "trace.h"
  25. #define MONITOR_TIMER (10*1000)
  26. #define SCRATCH_SIZE 256
  27. static const char *TAG = "monitor";
  28. static TimerHandle_t monitor_timer;
  29. static struct {
  30. int gpio;
  31. int active;
  32. } jack = { CONFIG_JACK_GPIO, 0 },
  33. spkfault = { CONFIG_SPKFAULT_GPIO, 0 };
  34. void (*jack_handler_svc)(bool inserted);
  35. bool jack_inserted_svc(void);
  36. void (*spkfault_handler_svc)(bool inserted);
  37. bool spkfault_svc(void);
  38. /****************************************************************************************
  39. *
  40. */
  41. static void task_stats( cJSON* top ) {
  42. #ifdef CONFIG_FREERTOS_USE_TRACE_FACILITY
  43. static struct {
  44. TaskStatus_t *tasks;
  45. uint32_t total, n;
  46. } current, previous;
  47. cJSON * tlist=cJSON_CreateArray();
  48. current.n = uxTaskGetNumberOfTasks();
  49. current.tasks = malloc( current.n * sizeof( TaskStatus_t ) );
  50. current.n = uxTaskGetSystemState( current.tasks, current.n, &current.total );
  51. cJSON_AddNumberToObject(top,"ntasks",current.n);
  52. static EXT_RAM_ATTR char scratch[SCRATCH_SIZE];
  53. *scratch = '\0';
  54. #ifdef CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS
  55. uint32_t elapsed = current.total - previous.total;
  56. for(int i = 0, n = 0; i < current.n; i++ ) {
  57. for (int j = 0; j < previous.n; j++) {
  58. if (current.tasks[i].xTaskNumber == previous.tasks[j].xTaskNumber) {
  59. n += snprintf(scratch + n, SCRATCH_SIZE - n, "%16s (%u) %2u%% s:%5u", current.tasks[i].pcTaskName,
  60. current.tasks[i].eCurrentState,
  61. 100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed,
  62. current.tasks[i].usStackHighWaterMark);
  63. cJSON * t=cJSON_CreateObject();
  64. cJSON_AddNumberToObject(t,"cpu",100 * (current.tasks[i].ulRunTimeCounter - previous.tasks[j].ulRunTimeCounter) / elapsed);
  65. cJSON_AddNumberToObject(t,"minstk",current.tasks[i].usStackHighWaterMark);
  66. cJSON_AddNumberToObject(t,"bprio",current.tasks[i].uxBasePriority);
  67. cJSON_AddNumberToObject(t,"cprio",current.tasks[i].uxCurrentPriority);
  68. cJSON_AddStringToObject(t,"nme",current.tasks[i].pcTaskName);
  69. cJSON_AddNumberToObject(t,"st",current.tasks[i].eCurrentState);
  70. cJSON_AddNumberToObject(t,"num",current.tasks[i].xTaskNumber);
  71. cJSON_AddItemToArray(tlist,t);
  72. if (i % 3 == 2 || i == current.n - 1) {
  73. ESP_LOGI(TAG, "%s", scratch);
  74. n = 0;
  75. }
  76. break;
  77. }
  78. }
  79. }
  80. #else
  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_AddStringToObject(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. #endif
  101. }
  102. /****************************************************************************************
  103. *
  104. */
  105. static void monitor_callback(TimerHandle_t xTimer) {
  106. cJSON * top=cJSON_CreateObject();
  107. cJSON_AddNumberToObject(top,"free_iram",heap_caps_get_free_size(MALLOC_CAP_INTERNAL));
  108. cJSON_AddNumberToObject(top,"min_free_iram",heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL));
  109. cJSON_AddNumberToObject(top,"free_spiram",heap_caps_get_free_size(MALLOC_CAP_SPIRAM));
  110. cJSON_AddNumberToObject(top,"min_free_spiram",heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  111. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  112. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  113. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  114. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  115. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  116. task_stats(top);
  117. char * top_a= cJSON_PrintUnformatted(top);
  118. if(top_a){
  119. messaging_post_message(MESSAGING_INFO, MESSAGING_CLASS_STATS,top_a);
  120. FREE_AND_NULL(top_a);
  121. }
  122. cJSON_free(top);
  123. }
  124. /****************************************************************************************
  125. *
  126. */
  127. static void jack_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  128. ESP_LOGD(TAG, "Jack %s", event == BUTTON_PRESSED ? "inserted" : "removed");
  129. messaging_post_message(MESSAGING_INFO, MESSAGING_CLASS_SYSTEM,"jack is %s",BUTTON_PRESSED ? "inserted" : "removed");
  130. if (jack_handler_svc) (*jack_handler_svc)(event == BUTTON_PRESSED);
  131. }
  132. /****************************************************************************************
  133. *
  134. */
  135. bool jack_inserted_svc (void) {
  136. if (jack.gpio != -1) return button_is_pressed(jack.gpio, NULL);
  137. else return true;
  138. }
  139. /****************************************************************************************
  140. *
  141. */
  142. static void spkfault_handler_default(void *id, button_event_e event, button_press_e mode, bool long_press) {
  143. ESP_LOGD(TAG, "Speaker status %s", event == BUTTON_PRESSED ? "faulty" : "normal");
  144. if (event == BUTTON_PRESSED) led_on(LED_RED);
  145. else led_off(LED_RED);
  146. if (spkfault_handler_svc) (*spkfault_handler_svc)(event == BUTTON_PRESSED);
  147. }
  148. /****************************************************************************************
  149. *
  150. */
  151. bool spkfault_svc (void) {
  152. return button_is_pressed(spkfault.gpio, NULL);
  153. }
  154. /****************************************************************************************
  155. *
  156. */
  157. void set_jack_gpio(int gpio, char *value) {
  158. if (strcasestr(value, "jack")) {
  159. char *p;
  160. jack.gpio = gpio;
  161. if ((p = strchr(value, ':')) != NULL) jack.active = atoi(p + 1);
  162. }
  163. }
  164. /****************************************************************************************
  165. *
  166. */
  167. void set_spkfault_gpio(int gpio, char *value) {
  168. if (strcasestr(value, "spkfault")) {
  169. char *p;
  170. spkfault.gpio = gpio;
  171. if ((p = strchr(value, ':')) != NULL) spkfault.active = atoi(p + 1);
  172. }
  173. }
  174. /****************************************************************************************
  175. *
  176. */
  177. void monitor_svc_init(void) {
  178. ESP_LOGI(TAG, "Initializing monitoring");
  179. #ifdef CONFIG_JACK_GPIO_LEVEL
  180. jack.active = CONFIG_JACK_GPIO_LEVEL;
  181. #endif
  182. #ifndef CONFIG_JACK_LOCKED
  183. parse_set_GPIO(set_jack_gpio);
  184. #endif
  185. // re-use button management for jack handler, it's a GPIO after all
  186. if (jack.gpio != -1) {
  187. ESP_LOGI(TAG,"Adding jack (%s) detection GPIO %d", jack.active ? "high" : "low", jack.gpio);
  188. button_create(NULL, jack.gpio, jack.active ? BUTTON_HIGH : BUTTON_LOW, false, 250, jack_handler_default, 0, -1);
  189. }
  190. #ifdef CONFIG_SPKFAULT_GPIO_LEVEL
  191. spkfault.active = CONFIG_SPKFAULT_GPIO_LEVEL;
  192. #endif
  193. #ifndef CONFIG_SPKFAULT_LOCKED
  194. parse_set_GPIO(set_spkfault_gpio);
  195. #endif
  196. // re-use button management for speaker fault handler, it's a GPIO after all
  197. if (spkfault.gpio != -1) {
  198. ESP_LOGI(TAG,"Adding speaker fault (%s) detection GPIO %d", spkfault.active ? "high" : "low", spkfault.gpio);
  199. button_create(NULL, spkfault.gpio, spkfault.active ? BUTTON_HIGH : BUTTON_LOW, false, 0, spkfault_handler_default, 0, -1);
  200. }
  201. // do we want stats
  202. char *p = config_alloc_get_default(NVS_TYPE_STR, "stats", "n", 0);
  203. if (p && (*p == '1' || *p == 'Y' || *p == 'y')) {
  204. monitor_timer = xTimerCreate("monitor", MONITOR_TIMER / portTICK_RATE_MS, pdTRUE, NULL, monitor_callback);
  205. xTimerStart(monitor_timer, portMAX_DELAY);
  206. }
  207. free(p);
  208. ESP_LOGI(TAG, "Heap internal:%zu (min:%zu) external:%zu (min:%zu)",
  209. heap_caps_get_free_size(MALLOC_CAP_INTERNAL),
  210. heap_caps_get_minimum_free_size(MALLOC_CAP_INTERNAL),
  211. heap_caps_get_free_size(MALLOC_CAP_SPIRAM),
  212. heap_caps_get_minimum_free_size(MALLOC_CAP_SPIRAM));
  213. }