audio_controls.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. /*
  2. * audio control callbacks
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #define LOG_LOCAL_LEVEL ESP_LOG_DEBUG
  12. #include "audio_controls.h"
  13. #include "Config.h"
  14. #include "accessors.h"
  15. #include "buttons.h"
  16. #include "cJSON.h"
  17. #include "esp_log.h"
  18. #include "esp_system.h"
  19. #include "freertos/FreeRTOS.h"
  20. #include "freertos/timers.h"
  21. #include "services.h"
  22. #include <stdlib.h>
  23. #include <string.h>
  24. #include <unistd.h>
  25. typedef esp_err_t(actrls_config_map_handler)(const cJSON* member, actrls_config_t* cur_config, uint32_t offset);
  26. typedef struct {
  27. char* member;
  28. uint32_t offset;
  29. actrls_config_map_handler* handler;
  30. } actrls_config_map_t;
  31. static void actrls_parse_action(const char* name);
  32. static esp_err_t actrls_init_profile(const char* profile_name, bool create);
  33. static esp_err_t actrls_process_press(const sys_btns_press* action, sys_btns_press* cur_config_press);
  34. static esp_err_t actrls_process_button(const sys_btns_btn* button, actrls_config_t* cur_config);
  35. static void control_rotary_handler(void* client, rotary_event_e event, bool long_press);
  36. static void rotary_timer(TimerHandle_t xTimer);
  37. static const char* TAG = "audio controls";
  38. static actrls_config_t* json_config;
  39. cJSON* control_profiles = NULL;
  40. static EXT_RAM_ATTR actrls_t default_controls, current_controls;
  41. static actrls_hook_t *default_hook, *current_hook;
  42. static bool default_raw_controls, current_raw_controls;
  43. static actrls_ir_handler_t *default_ir_handler, *current_ir_handler;
  44. static EXT_RAM_ATTR struct {
  45. bool long_state;
  46. bool volume_lock;
  47. TimerHandle_t timer;
  48. bool click_pending;
  49. int left_count;
  50. } rotary;
  51. static const struct ir_action_map_s {
  52. uint32_t code;
  53. sys_btns_actions action;
  54. } ir_action_map[] = {
  55. {0x7689b04f, sys_btns_actions_B_DOWN},
  56. {0x7689906f, sys_btns_actions_B_LEFT},
  57. {0x7689d02f, sys_btns_actions_B_RIGHT},
  58. {0x7689e01f, sys_btns_actions_B_UP},
  59. {0x768900ff, sys_btns_actions_A_VOLDOWN},
  60. {0x7689807f, sys_btns_actions_A_VOLUP},
  61. {0x7689c03f, sys_btns_actions_A_PREV},
  62. {0x7689a05f, sys_btns_actions_A_NEXT},
  63. {0x768920df, sys_btns_actions_A_PAUSE},
  64. {0x768910ef, sys_btns_actions_A_PLAY},
  65. {0x00, 0x00},
  66. };
  67. /****************************************************************************************
  68. * This function can be called to map IR codes to default actions
  69. */
  70. bool actrls_ir_action(uint16_t addr, uint16_t cmd) {
  71. uint32_t code = (addr << 16) | cmd;
  72. struct ir_action_map_s const* map = ir_action_map;
  73. while (map->code && map->code != code)
  74. map++;
  75. if (map->code && current_controls[map->action]) {
  76. current_controls[map->action](true);
  77. return true;
  78. } else {
  79. return false;
  80. }
  81. }
  82. /****************************************************************************************
  83. *
  84. */
  85. static void ir_handler(uint16_t addr, uint16_t cmd) {
  86. ESP_LOGD(TAG, "recaived IR %04hx:%04hx", addr, cmd);
  87. if (current_ir_handler) current_ir_handler(addr, cmd);
  88. }
  89. /****************************************************************************************
  90. *
  91. */
  92. esp_err_t actrls_init(const char* profile_name) {
  93. esp_err_t err = ESP_OK;
  94. sys_dev_ir* ir = NULL;
  95. sys_btns_rotary* dev_config = NULL;
  96. if (!SYS_DEV_ROTARY(dev_config)) {
  97. ESP_LOGD(TAG, "Rotary not configured");
  98. return ESP_OK;
  99. }
  100. char* p;
  101. int A = -1, B = -1, SW = -1, longpress = 0;
  102. A = dev_config->A;
  103. B = dev_config->B;
  104. SW = dev_config->SW;
  105. if (A >= 0 && B >= 0) {
  106. if (dev_config->has_knobonly && dev_config->knobonly.enable) {
  107. p = strchr(p, '=');
  108. int double_press = dev_config->knobonly.delay_ms > 0 ? dev_config->knobonly.delay_ms : 350;
  109. rotary.timer = xTimerCreate("knobTimer", double_press / portTICK_RATE_MS, pdFALSE, NULL, rotary_timer);
  110. longpress = 500;
  111. ESP_LOGI(TAG, "single knob navigation %d", double_press);
  112. } else {
  113. if (dev_config->volume) rotary.volume_lock = true;
  114. if (dev_config->longpress) longpress = 1000;
  115. }
  116. // create rotary (no handling of long press)
  117. err = create_rotary(NULL, A, B, SW, longpress, control_rotary_handler) ? ESP_OK : ESP_FAIL;
  118. } else {
  119. ESP_LOGI(TAG, "Rotary control not configured.");
  120. }
  121. if (SYS_DEV_IR(ir) && ir->gpio >= 0 && ir->type != sys_dev_ir_types_IR_UNKNOWN) {
  122. ESP_LOGD(TAG, "Infrared config found on pin %d, protocol: %s", ir->gpio, sys_dev_ir_types_name(ir->type));
  123. if (ir->type == sys_dev_ir_types_IR_NEC) {
  124. create_infrared(ir->gpio, ir_handler, IR_RC5);
  125. } else {
  126. create_infrared(ir->gpio, ir_handler, IR_NEC);
  127. }
  128. }
  129. if (!err)
  130. return actrls_init_profile(profile_name, true);
  131. else
  132. return err;
  133. return err;
  134. }
  135. /****************************************************************************************
  136. *
  137. */
  138. static const char* get_action_desc(sys_btns_action* action_detail) {
  139. if (action_detail->type != sys_btns_actions_REMAP) {
  140. return sys_btns_actions_name(action_detail->type);
  141. }
  142. return STR_OR_ALT(action_detail->profile_name, "");
  143. }
  144. /****************************************************************************************
  145. *
  146. */
  147. static void control_handler(void* client, button_event_e event, button_press_e press, bool long_press) {
  148. actrls_config_t* key = (actrls_config_t*)client;
  149. sys_btns_action* action_detail;
  150. static sys_btns_action actionNone = sys_btns_action_init_default;
  151. switch (press) {
  152. case BUTTON_NORMAL:
  153. if (long_press)
  154. action_detail = (event == BUTTON_PRESSED ? &key->longpress.pressed : &key->longpress.released);
  155. else
  156. action_detail = (event == BUTTON_PRESSED ? &key->normal.pressed : &key->normal.released);
  157. break;
  158. case BUTTON_SHIFTED:
  159. if (long_press)
  160. action_detail = (event == BUTTON_PRESSED ? &key->longshifted.pressed : &key->longshifted.released);
  161. else
  162. action_detail = (event == BUTTON_PRESSED ? &key->shifted.pressed : &key->shifted.released);
  163. break;
  164. default:
  165. action_detail = &actionNone;
  166. break;
  167. }
  168. ESP_LOGD(TAG, "control gpio:%u press:%u long:%u event:%u action:%s", key->gpio, press, long_press, event, get_action_desc(action_detail));
  169. // stop here if control hook served the request
  170. if (current_hook && (*current_hook)(key->gpio, action_detail, event, press, long_press)) return;
  171. // in raw mode, we just do normal action press *and* release, there is no longpress nor shift
  172. if (current_raw_controls && action_detail->type != sys_btns_actions_A_SLEEP) {
  173. sys_btns_actions action =
  174. key->normal.has_pressed && key->normal.pressed.type != sys_btns_actions_A_NONE ? key->normal.pressed.type : key->normal.released.type;
  175. ESP_LOGD(TAG, "calling action %s in raw mode", sys_btns_actions_name(action));
  176. if (action != sys_btns_actions_A_NONE && current_controls[action]) current_controls[action](event == BUTTON_PRESSED);
  177. return;
  178. }
  179. // otherwise process using configuration
  180. if (action_detail->type == sys_btns_actions_REMAP) {
  181. // remap requested
  182. ESP_LOGD(TAG, "remapping buttons to profile %s", action_detail->profile_name);
  183. cJSON* profile_obj = cJSON_GetObjectItem(control_profiles, action_detail->profile_name);
  184. if (profile_obj) {
  185. actrls_config_t* cur_config = (actrls_config_t*)cJSON_GetStringValue(profile_obj);
  186. if (cur_config) {
  187. ESP_LOGD(TAG, "Remapping all the buttons that are found in the new profile");
  188. while (cur_config->gpio != -1) {
  189. ESP_LOGD(TAG, "Remapping button with gpio %u", cur_config->gpio);
  190. button_remap((void*)cur_config, cur_config->gpio, control_handler, cur_config->long_press, cur_config->shifter_gpio);
  191. cur_config++;
  192. }
  193. } else {
  194. ESP_LOGE(TAG, "Profile %s exists, but is empty. Cannot remap buttons", action_detail->profile_name);
  195. }
  196. } else {
  197. ESP_LOGE(TAG, "Invalid profile name %s. Cannot remap buttons", action_detail->profile_name);
  198. }
  199. } else if (action_detail->type == sys_btns_actions_A_SLEEP) {
  200. ESP_LOGI(TAG, "special sleep button pressed");
  201. services_sleep_activate(SLEEP_ONKEY);
  202. } else if (action_detail->type != sys_btns_actions_A_NONE) {
  203. ESP_LOGD(TAG, "calling action %s", sys_btns_actions_name(action_detail->type));
  204. if (current_controls[action_detail->type]) (*current_controls[action_detail->type])(event == BUTTON_PRESSED);
  205. }
  206. }
  207. /****************************************************************************************
  208. *
  209. */
  210. static void control_rotary_handler(void* client, rotary_event_e event, bool long_press) {
  211. sys_btns_actions action = sys_btns_actions_A_NONE;
  212. bool pressed = true;
  213. // in raw mode, we just pass rotary events
  214. if (current_raw_controls) {
  215. if (event == ROTARY_LEFT)
  216. (*current_controls[sys_btns_actions_KNOB_LEFT])(true);
  217. else if (event == ROTARY_RIGHT)
  218. (*current_controls[sys_btns_actions_KNOB_RIGHT])(true);
  219. else
  220. (*current_controls[sys_btns_actions_KNOB_PUSH])(event == ROTARY_PRESSED);
  221. return;
  222. }
  223. switch (event) {
  224. case ROTARY_LEFT:
  225. if (rotary.timer) {
  226. if (rotary.left_count) {
  227. action = sys_btns_actions_KNOB_LEFT;
  228. // need to add a left button the first time
  229. if (rotary.left_count == 1) (*current_controls[sys_btns_actions_KNOB_LEFT])(true);
  230. }
  231. xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  232. rotary.left_count++;
  233. } else if (rotary.long_state)
  234. action = sys_btns_actions_A_PREV;
  235. else if (rotary.volume_lock)
  236. action = sys_btns_actions_A_VOLDOWN;
  237. else
  238. action = sys_btns_actions_KNOB_LEFT;
  239. break;
  240. case ROTARY_RIGHT:
  241. if (rotary.timer) {
  242. if (rotary.left_count == 1) {
  243. action = sys_btns_actions_A_PAUSE;
  244. rotary.left_count = 0;
  245. xTimerStop(rotary.timer, 0);
  246. } else
  247. action = sys_btns_actions_KNOB_RIGHT;
  248. } else if (rotary.long_state)
  249. action = sys_btns_actions_A_NEXT;
  250. else if (rotary.volume_lock)
  251. action = sys_btns_actions_A_VOLUP;
  252. else
  253. action = sys_btns_actions_KNOB_RIGHT;
  254. break;
  255. case ROTARY_PRESSED:
  256. if (rotary.timer) {
  257. if (long_press)
  258. action = sys_btns_actions_A_PLAY;
  259. else if (rotary.click_pending) {
  260. action = sys_btns_actions_B_LEFT;
  261. xTimerStop(rotary.timer, 0);
  262. } else
  263. xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  264. rotary.click_pending = !rotary.click_pending;
  265. } else if (long_press)
  266. rotary.long_state = !rotary.long_state;
  267. else if (rotary.volume_lock)
  268. action = sys_btns_actions_A_TOGGLE;
  269. else
  270. action = sys_btns_actions_KNOB_PUSH;
  271. break;
  272. default:
  273. break;
  274. }
  275. if (action != sys_btns_actions_A_NONE) (*current_controls[action])(pressed);
  276. }
  277. /****************************************************************************************
  278. *
  279. */
  280. static void rotary_timer(TimerHandle_t xTimer) {
  281. if (rotary.click_pending) {
  282. (*current_controls[sys_btns_actions_KNOB_PUSH])(true);
  283. rotary.click_pending = false;
  284. } else if (rotary.left_count) {
  285. if (rotary.left_count == 1) (*current_controls[sys_btns_actions_KNOB_LEFT])(true);
  286. rotary.left_count = 0;
  287. }
  288. }
  289. /****************************************************************************************
  290. *
  291. */
  292. static void actrls_parse_action(const char* name) {
  293. // Check if there is a profile name that has a match
  294. ESP_LOGD(TAG, "unknown action %s, trying to find matching profile ", name);
  295. cJSON* existing = cJSON_GetObjectItem(control_profiles, name);
  296. if (!existing) {
  297. ESP_LOGD(TAG, "Loading new audio control profile with name: %s", name);
  298. actrls_init_profile(name, false);
  299. } else {
  300. ESP_LOGD(TAG, "Existing profile %s was referenced", name);
  301. }
  302. }
  303. /****************************************************************************************
  304. *
  305. */
  306. static esp_err_t actrls_process_action(const sys_btns_action* action, sys_btns_action* cur_config_act) {
  307. bool valid_name = action->profile_name && strlen(action->profile_name) > 0;
  308. cur_config_act->type = action->type;
  309. if (valid_name) {
  310. cur_config_act->profile_name = strdup_psram(action->profile_name);
  311. if (!cur_config_act->profile_name) {
  312. ESP_LOGE(TAG, "Error allocating memory for action profile name %s", action->profile_name);
  313. return ESP_ERR_NO_MEM;
  314. }
  315. }
  316. if (action->type == sys_btns_actions_REMAP) {
  317. if (!valid_name) {
  318. ESP_LOGE(TAG, "Missing name for action %s", sys_btns_actions_name(action->type));
  319. return ESP_ERR_INVALID_ARG;
  320. }
  321. actrls_parse_action(action->profile_name);
  322. }
  323. return ESP_OK;
  324. }
  325. static esp_err_t actrls_process_press(const sys_btns_press* press, sys_btns_press* cur_config_press) {
  326. esp_err_t err = ESP_OK;
  327. if (press->has_pressed) {
  328. cur_config_press->has_pressed = true;
  329. err = actrls_process_action(&press->pressed, &cur_config_press->pressed);
  330. }
  331. if (err == ESP_OK && press->has_released) {
  332. cur_config_press->has_released = true;
  333. err = actrls_process_action(&press->released, &cur_config_press->released);
  334. }
  335. return err;
  336. }
  337. /****************************************************************************************
  338. *
  339. */
  340. static esp_err_t actrls_process_button(const sys_btns_btn* button, actrls_config_t* cur_config) {
  341. esp_err_t err = ESP_OK;
  342. if (button->has_gpio && button->gpio.pin >= 0) {
  343. cur_config->type = button->gpio.level == sys_gpio_lvl_LOW ? BUTTON_LOW : BUTTON_HIGH;
  344. cur_config->gpio = button->gpio.pin;
  345. }
  346. cur_config->pull = button->pull;
  347. cur_config->debounce = button->debounce;
  348. cur_config->long_press = button->longduration;
  349. err = actrls_process_press(&button->normal, &cur_config->normal);
  350. if (err == ESP_OK) err = actrls_process_press(&button->longpress, &cur_config->longpress);
  351. if (err == ESP_OK) err = actrls_process_press(&button->shifted, &cur_config->shifted);
  352. if (err == ESP_OK) err = actrls_process_press(&button->longshifted, &cur_config->longshifted);
  353. cur_config->shifter_gpio = button->shifter;
  354. return err;
  355. }
  356. /****************************************************************************************
  357. *
  358. */
  359. static actrls_config_t* actrls_init_alloc_structure(const sys_btns_profile* buttons, const char* name) {
  360. actrls_config_t* json_config = NULL;
  361. // Check if the main profiles array was created
  362. if (!control_profiles) {
  363. control_profiles = cJSON_CreateObject();
  364. }
  365. ESP_LOGD(TAG, "config contains %u button definitions", buttons->buttons_count);
  366. if (buttons->buttons_count != 0) {
  367. json_config = calloc(sizeof(actrls_config_t) * (buttons->buttons_count + 1), 1);
  368. if (json_config) {
  369. json_config[buttons->buttons_count].gpio = -1;
  370. } else {
  371. ESP_LOGE(TAG, "Unable to allocate memory to hold configuration for %u buttons ", buttons->buttons_count);
  372. }
  373. } else {
  374. ESP_LOGE(TAG, "No button found in configuration structure");
  375. }
  376. // we're cheating here; we're going to store the control profile
  377. // pointer as a string reference; this will prevent cJSON
  378. // from trying to free the structure if we ever want to free the object
  379. cJSON* new_profile = cJSON_CreateStringReference((const char*)json_config);
  380. cJSON_AddItemToObject(control_profiles, name, new_profile);
  381. return json_config;
  382. }
  383. /****************************************************************************************
  384. *
  385. */
  386. static void actrls_defaults(actrls_config_t* config) {
  387. sys_btns_press PressDefault = sys_btns_press_init_default;
  388. config->type = BUTTON_LOW;
  389. config->pull = false;
  390. config->debounce = 0;
  391. config->long_press = 0;
  392. config->shifter_gpio = -1;
  393. config->normal = PressDefault;
  394. config->longpress = PressDefault;
  395. config->shifted = PressDefault;
  396. config->longshifted = PressDefault;
  397. }
  398. /****************************************************************************************
  399. *
  400. */
  401. static sys_btns_profile* get_profile(const char* profile_name) {
  402. ESP_LOGD(TAG, "Looking for profile name %s in %d profile(s)", profile_name, platform->dev.buttons_profiles_count);
  403. for (int i = 0; i < platform->dev.buttons_profiles_count; i++) {
  404. if (strcasecmp(platform->dev.buttons_profiles[i].profile_name, profile_name) == 0) {
  405. ESP_LOGD(TAG, "Found profile name %s", platform->dev.buttons_profiles[i].profile_name);
  406. return &platform->dev.buttons_profiles[i];
  407. } else {
  408. ESP_LOGD(TAG, "Profile name %s doesn't match %s", platform->dev.buttons_profiles[i].profile_name, profile_name);
  409. }
  410. }
  411. ESP_LOGW(TAG, "Button control profile %s not found", profile_name);
  412. return NULL;
  413. }
  414. /****************************************************************************************
  415. *
  416. */
  417. static esp_err_t actrls_init_profile(const char* profile_name, bool create) {
  418. esp_err_t err = ESP_OK;
  419. actrls_config_t* cur_config = NULL;
  420. actrls_config_t* config_root = NULL;
  421. sys_btns_profile* config;
  422. if (!profile_name || strlen(profile_name) == 0) {
  423. ESP_LOGI(TAG, "No control button configured");
  424. return ESP_OK;
  425. }
  426. ESP_LOGI(TAG, "Initializing button control profile %s", profile_name);
  427. config = get_profile(profile_name);
  428. if (!config) {
  429. ESP_LOGE(TAG, "Invalid button control profile %s", profile_name);
  430. goto exit;
  431. }
  432. if (config->buttons_count == 0) {
  433. ESP_LOGE(TAG, "No button found %s", profile_name);
  434. err = ESP_FAIL;
  435. } else {
  436. ESP_LOGD(TAG, "Number of buttons: %d", config->buttons_count);
  437. cur_config = config_root = actrls_init_alloc_structure(config, profile_name);
  438. if (!cur_config) {
  439. ESP_LOGE(TAG, "Config buffer was empty. ");
  440. err = ESP_FAIL;
  441. goto exit;
  442. }
  443. ESP_LOGD(TAG, "Processing button definitions. ");
  444. for (int i = 0; i < config->buttons_count; i++) {
  445. ESP_LOGD(TAG, "Processing button %d of %d for profile %s. ", i + 1, config->buttons_count, profile_name);
  446. actrls_defaults(cur_config);
  447. esp_err_t loc_err = actrls_process_button(&config->buttons[i], cur_config);
  448. err = (err == ESP_OK) ? loc_err : err;
  449. if (loc_err == ESP_OK) {
  450. if (create)
  451. button_create((void*)cur_config, cur_config->gpio, cur_config->type, cur_config->pull, cur_config->debounce, control_handler,
  452. cur_config->long_press, cur_config->shifter_gpio);
  453. } else {
  454. ESP_LOGE(TAG, "Error parsing button structure. Button will not be registered.");
  455. }
  456. cur_config++;
  457. }
  458. }
  459. // Now update the global json_config object. If we are recursively processing menu structures,
  460. // the last init that completes will assigh the first json config object found, which will match
  461. // the default config from nvs.
  462. json_config = config_root;
  463. exit:
  464. return err;
  465. }
  466. /****************************************************************************************
  467. *
  468. */
  469. void actrls_set_default(const actrls_t controls, bool raw_controls, actrls_hook_t* hook, actrls_ir_handler_t* ir_handler) {
  470. memcpy(default_controls, controls, sizeof(actrls_t));
  471. memcpy(current_controls, default_controls, sizeof(actrls_t));
  472. default_hook = current_hook = hook;
  473. default_raw_controls = current_raw_controls = raw_controls;
  474. default_ir_handler = current_ir_handler = ir_handler;
  475. }
  476. /****************************************************************************************
  477. *
  478. */
  479. void actrls_set(const actrls_t controls, bool raw_controls, actrls_hook_t* hook, actrls_ir_handler_t* ir_handler) {
  480. memcpy(current_controls, controls, sizeof(actrls_t));
  481. current_hook = hook;
  482. current_raw_controls = raw_controls;
  483. current_ir_handler = ir_handler;
  484. }
  485. /****************************************************************************************
  486. *
  487. */
  488. void actrls_unset(void) {
  489. memcpy(current_controls, default_controls, sizeof(actrls_t));
  490. current_hook = default_hook;
  491. current_raw_controls = default_raw_controls;
  492. current_ir_handler = default_ir_handler;
  493. }