audio_controls.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  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. #include <stdlib.h>
  12. #include <string.h>
  13. #include <unistd.h>
  14. #include "esp_system.h"
  15. #include "esp_log.h"
  16. #include "cJSON.h"
  17. #include "buttons.h"
  18. #include "platform_config.h"
  19. #include "accessors.h"
  20. #include "audio_controls.h"
  21. typedef esp_err_t (actrls_config_map_handler) (const cJSON * member, actrls_config_t *cur_config,uint32_t offset);
  22. typedef struct {
  23. char * member;
  24. uint32_t offset;
  25. actrls_config_map_handler * handler;
  26. } actrls_config_map_t;
  27. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config);
  28. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config);
  29. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  30. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  31. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  32. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  33. static esp_err_t actrls_init_json(const char *profile_name, bool create);
  34. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press);
  35. static const actrls_config_map_t actrls_config_map[] =
  36. {
  37. {"gpio", offsetof(actrls_config_t,gpio), actrls_process_int},
  38. {"debounce", offsetof(actrls_config_t,debounce), actrls_process_int},
  39. {"type", offsetof(actrls_config_t,type), actrls_process_type},
  40. {"pull", offsetof(actrls_config_t,pull), actrls_process_bool},
  41. {"long_press", offsetof(actrls_config_t,long_press),actrls_process_int},
  42. {"shifter_gpio", offsetof(actrls_config_t,shifter_gpio), actrls_process_int},
  43. {"normal", offsetof(actrls_config_t,normal), actrls_process_action},
  44. {"shifted", offsetof(actrls_config_t,shifted), actrls_process_action},
  45. {"longpress", offsetof(actrls_config_t,longpress), actrls_process_action},
  46. {"longshifted", offsetof(actrls_config_t,longshifted), actrls_process_action},
  47. {"", 0, NULL}
  48. };
  49. // BEWARE: the actions below need to stay aligned with the corresponding enum to properly support json parsing
  50. #define EP(x) [x] = #x /* ENUM PRINT */
  51. static const char * actrls_action_s[ ] = { EP(ACTRLS_VOLUP),EP(ACTRLS_VOLDOWN),EP(ACTRLS_TOGGLE),EP(ACTRLS_PLAY),
  52. EP(ACTRLS_PAUSE),EP(ACTRLS_STOP),EP(ACTRLS_REW),EP(ACTRLS_FWD),EP(ACTRLS_PREV),EP(ACTRLS_NEXT),
  53. EP(BCTRLS_UP),EP(BCTRLS_DOWN),EP(BCTRLS_LEFT),EP(BCTRLS_RIGHT),
  54. EP(KNOB_LEFT),EP(KNOB_RIGHT),EP(KNOB_PUSH),
  55. ""} ;
  56. static const char * TAG = "audio controls";
  57. static actrls_config_t *json_config;
  58. cJSON * control_profiles = NULL;
  59. static actrls_t default_controls, current_controls;
  60. static actrls_hook_t *default_hook, *current_hook;
  61. static bool default_raw_controls, current_raw_controls;
  62. static actrls_ir_handler_t *default_ir_handler, *current_ir_handler;
  63. static struct {
  64. bool long_state;
  65. bool volume_lock;
  66. } rotary;
  67. static const struct ir_action_map_s{
  68. uint32_t code;
  69. actrls_action_e action;
  70. } ir_action_map[] = {
  71. {0x7689b04f, BCTRLS_DOWN}, {0x7689906f, BCTRLS_LEFT}, {0x7689d02f, BCTRLS_RIGHT}, {0x7689e01f, BCTRLS_UP},
  72. {0x768900ff, ACTRLS_VOLDOWN}, {0x7689807f, ACTRLS_VOLUP},
  73. {0x7689c03f, ACTRLS_PREV}, {0x7689a05f, ACTRLS_NEXT},
  74. {0x768920df, ACTRLS_PAUSE}, {0x768910ef, ACTRLS_PLAY},
  75. {0x00, 0x00},
  76. };
  77. /****************************************************************************************
  78. * This function can be called to map IR codes to default actions
  79. */
  80. bool actrls_ir_action(uint16_t addr, uint16_t cmd) {
  81. uint32_t code = (addr << 16) | cmd;
  82. struct ir_action_map_s const *map = ir_action_map;
  83. while (map->code && map->code != code) map++;
  84. if (map->code && current_controls[map->action]) {
  85. current_controls[map->action](true);
  86. return true;
  87. } else {
  88. return false;
  89. }
  90. }
  91. /****************************************************************************************
  92. *
  93. */
  94. static void ir_handler(uint16_t addr, uint16_t cmd) {
  95. ESP_LOGD(TAG, "recaived IR %04hx:%04hx", addr, cmd);
  96. if (current_ir_handler) current_ir_handler(addr, cmd);
  97. }
  98. /****************************************************************************************
  99. *
  100. */
  101. static void set_ir_gpio(int gpio, char *value) {
  102. if (!strcasecmp(value, "ir") ) {
  103. create_infrared(gpio, ir_handler);
  104. }
  105. }
  106. /****************************************************************************************
  107. *
  108. */
  109. esp_err_t actrls_init(const char *profile_name) {
  110. esp_err_t err = ESP_OK;
  111. char *config = config_alloc_get_default(NVS_TYPE_STR, "rotary_config", NULL, 0);
  112. if (config && *config) {
  113. char *p;
  114. int A = -1, B = -1, SW = -1, longpress = 0;
  115. // parse config
  116. if ((p = strcasestr(config, "A")) != NULL) A = atoi(strchr(p, '=') + 1);
  117. if ((p = strcasestr(config, "B")) != NULL) B = atoi(strchr(p, '=') + 1);
  118. if ((p = strcasestr(config, "SW")) != NULL) SW = atoi(strchr(p, '=') + 1);
  119. if ((p = strcasestr(config, "volume")) != NULL) rotary.volume_lock = true;
  120. if ((p = strcasestr(config, "longpress")) != NULL) longpress = 1000;
  121. // create rotary (no handling of long press)
  122. err = create_rotary(NULL, A, B, SW, longpress, control_rotary_handler) ? ESP_OK : ESP_FAIL;
  123. }
  124. // set infrared GPIO if any
  125. parse_set_GPIO(set_ir_gpio);
  126. if (!err) return actrls_init_json(profile_name, true);
  127. else return err;
  128. }
  129. /****************************************************************************************
  130. *
  131. */
  132. static void control_handler(void *client, button_event_e event, button_press_e press, bool long_press) {
  133. actrls_config_t *key = (actrls_config_t*) client;
  134. actrls_action_detail_t action_detail;
  135. // in raw mode, we just do normal action press *and* release, there is no longpress nor shift
  136. if (current_raw_controls) {
  137. ESP_LOGD(TAG, "calling action %u in raw mode", key->normal[0].action);
  138. if (current_controls[key->normal[0].action]) (*current_controls[key->normal[0].action])(event == BUTTON_PRESSED);
  139. return;
  140. }
  141. switch(press) {
  142. case BUTTON_NORMAL:
  143. if (long_press) action_detail = key->longpress[event == BUTTON_PRESSED ? 0 : 1];
  144. else action_detail = key->normal[event == BUTTON_PRESSED ? 0 : 1];
  145. break;
  146. case BUTTON_SHIFTED:
  147. if (long_press) action_detail = key->longshifted[event == BUTTON_PRESSED ? 0 : 1];
  148. else action_detail = key->shifted[event == BUTTON_PRESSED ? 0 : 1];
  149. break;
  150. default:
  151. action_detail.action = ACTRLS_NONE;
  152. break;
  153. }
  154. ESP_LOGD(TAG, "control gpio:%u press:%u long:%u event:%u action:%u", key->gpio, press, long_press, event, action_detail.action);
  155. // stop here if control hook served the request
  156. if (current_hook && (*current_hook)(key->gpio, action_detail.action, event, press, long_press)) return;
  157. // otherwise process using configuration
  158. if (action_detail.action == ACTRLS_REMAP) {
  159. // remap requested
  160. ESP_LOGD(TAG, "remapping buttons to profile %s",action_detail.name);
  161. cJSON * profile_obj = cJSON_GetObjectItem(control_profiles,action_detail.name);
  162. if (profile_obj) {
  163. actrls_config_t *cur_config = (actrls_config_t *) cJSON_GetStringValue(profile_obj);
  164. if (cur_config) {
  165. ESP_LOGD(TAG,"Remapping all the buttons that are found in the new profile");
  166. while (cur_config->gpio != -1) {
  167. ESP_LOGD(TAG,"Remapping button with gpio %u", cur_config->gpio);
  168. button_remap((void*) cur_config, cur_config->gpio, control_handler, cur_config->long_press, cur_config->shifter_gpio);
  169. cur_config++;
  170. }
  171. } else {
  172. ESP_LOGE(TAG,"Profile %s exists, but is empty. Cannot remap buttons",action_detail.name);
  173. }
  174. } else {
  175. ESP_LOGE(TAG,"Invalid profile name %s. Cannot remap buttons",action_detail.name);
  176. }
  177. } else if (action_detail.action != ACTRLS_NONE) {
  178. ESP_LOGD(TAG, "calling action %u", action_detail.action);
  179. if (current_controls[action_detail.action]) (*current_controls[action_detail.action])(event == BUTTON_PRESSED);
  180. }
  181. }
  182. /****************************************************************************************
  183. *
  184. */
  185. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press) {
  186. actrls_action_e action = ACTRLS_NONE;
  187. bool pressed = true;
  188. // in raw mode, we just pass rotary events
  189. if (current_raw_controls) {
  190. if (event == ROTARY_LEFT) (*current_controls[KNOB_LEFT])(true);
  191. else if (event == ROTARY_RIGHT) (*current_controls[KNOB_RIGHT])(true);
  192. else (*current_controls[KNOB_PUSH])(event == ROTARY_PRESSED);
  193. return;
  194. }
  195. switch(event) {
  196. case ROTARY_LEFT:
  197. if (rotary.long_state) action = ACTRLS_PREV;
  198. else if (rotary.volume_lock) action = ACTRLS_VOLDOWN;
  199. else action = KNOB_LEFT;
  200. break;
  201. case ROTARY_RIGHT:
  202. if (rotary.long_state) action = ACTRLS_NEXT;
  203. else if (rotary.volume_lock) action = ACTRLS_VOLUP;
  204. else action = KNOB_RIGHT;
  205. break;
  206. case ROTARY_PRESSED:
  207. if (long_press) rotary.long_state = !rotary.long_state;
  208. else if (rotary.volume_lock) action = ACTRLS_TOGGLE;
  209. else action = KNOB_PUSH;
  210. break;
  211. default:
  212. break;
  213. }
  214. if (action != ACTRLS_NONE) (*current_controls[action])(pressed);
  215. }
  216. /****************************************************************************************
  217. *
  218. */
  219. static actrls_action_e actrls_parse_action_json(const char * name){
  220. actrls_action_e action = ACTRLS_NONE;
  221. if(!strcasecmp("ACTRLS_NONE",name)) return ACTRLS_NONE;
  222. for(int i=0;i<ACTRLS_MAX && actrls_action_s[i][0]!='\0' ;i++){
  223. if(!strcmp(actrls_action_s[i], name)){
  224. return (actrls_action_e) i;
  225. }
  226. }
  227. // Action name wasn't recognized.
  228. // Check if this is a profile name that has a match in nvs
  229. ESP_LOGD(TAG,"unknown action %s, trying to find matching profile ", name);
  230. cJSON * existing = cJSON_GetObjectItem(control_profiles, name);
  231. if (!existing) {
  232. ESP_LOGD(TAG,"Loading new audio control profile with name: %s", name);
  233. if (actrls_init_json(name, false) == ESP_OK) {
  234. action = ACTRLS_REMAP;
  235. }
  236. } else {
  237. ESP_LOGD(TAG,"Existing profile %s was referenced", name);
  238. action = ACTRLS_REMAP;
  239. }
  240. return action;
  241. }
  242. /****************************************************************************************
  243. *
  244. */
  245. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config,uint32_t offset){
  246. esp_err_t err = ESP_OK;
  247. ESP_LOGD(TAG,"Processing int member");
  248. int *value = (int*)((char*) cur_config + offset);
  249. *value = member->valueint;
  250. return err;
  251. }
  252. /****************************************************************************************
  253. *
  254. */
  255. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  256. esp_err_t err = ESP_OK;
  257. ESP_LOGD(TAG,"Processing type member");
  258. int *value = (int *)((char*) cur_config + offset);
  259. if (member->type == cJSON_String) {
  260. *value =
  261. !strcmp(member->valuestring,
  262. "BUTTON_LOW") ?
  263. BUTTON_LOW : BUTTON_HIGH;
  264. } else {
  265. ESP_LOGE(TAG,
  266. "Button type value expected string value of BUTTON_LOW or BUTTON_HIGH, none found");
  267. err=ESP_FAIL;
  268. }
  269. return err;
  270. }
  271. /****************************************************************************************
  272. *
  273. */
  274. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  275. esp_err_t err = ESP_OK;
  276. if (!member) {
  277. ESP_LOGE(TAG,"Null json member pointer!");
  278. err = ESP_FAIL;
  279. } else {
  280. ESP_LOGD(TAG,"Processing bool member ");
  281. if (cJSON_IsBool(member)) {
  282. bool*value = (bool*)((char*) cur_config + offset);
  283. *value = cJSON_IsTrue(member);
  284. } else {
  285. ESP_LOGE(TAG,"Member %s is not a boolean", member->string?member->string:"unknown");
  286. err = ESP_FAIL;
  287. }
  288. }
  289. return err;
  290. }
  291. /****************************************************************************************
  292. *
  293. */
  294. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  295. esp_err_t err = ESP_OK;
  296. cJSON * button_action= cJSON_GetObjectItemCaseSensitive(member, "pressed");
  297. actrls_action_detail_t*value = (actrls_action_detail_t*)((char *)cur_config + offset);
  298. if (button_action != NULL) {
  299. value[0].action = actrls_parse_action_json( button_action->valuestring);
  300. if(value[0].action == ACTRLS_REMAP){
  301. value[0].name = strdup(button_action->valuestring);
  302. }
  303. }
  304. button_action = cJSON_GetObjectItemCaseSensitive(member, "released");
  305. if (button_action != NULL) {
  306. value[1].action = actrls_parse_action_json( button_action->valuestring);
  307. if (value[1].action == ACTRLS_REMAP){
  308. value[1].name = strdup(button_action->valuestring);
  309. }
  310. }
  311. return err;
  312. }
  313. /****************************************************************************************
  314. *
  315. */
  316. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config) {
  317. esp_err_t err = ESP_OK;
  318. const actrls_config_map_t * h=actrls_config_map;
  319. char * str = cJSON_Print(member);
  320. while (h->handler && strcmp(member->string, h->member)) { h++; }
  321. if (h->handler) {
  322. ESP_LOGD(TAG,"found handler for member %s, json value %s", h->member,str?str:"");
  323. err = h->handler(member, cur_config, h->offset);
  324. } else {
  325. err = ESP_FAIL;
  326. ESP_LOGE(TAG, "Unknown json structure member : %s", str?str:"");
  327. }
  328. if (str) free(str);
  329. return err;
  330. }
  331. /****************************************************************************************
  332. *
  333. */
  334. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config) {
  335. esp_err_t err= ESP_OK;
  336. const cJSON *member;
  337. cJSON_ArrayForEach(member, button)
  338. {
  339. ESP_LOGD(TAG,"Processing member %s. ", member->string);
  340. esp_err_t loc_err = actrls_process_member(member, cur_config);
  341. err = (err == ESP_OK) ? loc_err : err;
  342. }
  343. return err;
  344. }
  345. /****************************************************************************************
  346. *
  347. */
  348. static actrls_config_t * actrls_init_alloc_structure(const cJSON *buttons, const char * name){
  349. int member_count = 0;
  350. const cJSON *button;
  351. actrls_config_t * json_config=NULL;
  352. // Check if the main profiles array was created
  353. if(!control_profiles){
  354. control_profiles = cJSON_CreateObject();
  355. }
  356. ESP_LOGD(TAG,"Counting the number of buttons definition");
  357. cJSON_ArrayForEach(button, buttons) {
  358. member_count++;
  359. }
  360. ESP_LOGD(TAG, "config contains %u button definitions", member_count);
  361. if (member_count != 0) {
  362. json_config = calloc(sizeof(actrls_config_t) * (member_count + 1), 1);
  363. if (json_config){
  364. json_config[member_count].gpio = -1;
  365. } else {
  366. ESP_LOGE(TAG,"Unable to allocate memory to hold configuration for %u buttons ",member_count);
  367. }
  368. } else {
  369. ESP_LOGE(TAG,"No button found in configuration structure");
  370. }
  371. // we're cheating here; we're going to store the control profile
  372. // pointer as a string reference; this will prevent cJSON
  373. // from trying to free the structure if we ever want to free the object
  374. cJSON * new_profile = cJSON_CreateStringReference((const char *)json_config);
  375. cJSON_AddItemToObject(control_profiles, name, new_profile);
  376. return json_config;
  377. }
  378. /****************************************************************************************
  379. *
  380. */
  381. static void actrls_defaults(actrls_config_t *config) {
  382. config->type = BUTTON_LOW;
  383. config->pull = false;
  384. config->debounce = 0;
  385. config->long_press = 0;
  386. config->shifter_gpio = -1;
  387. config->normal[0].action = config->normal[1].action = ACTRLS_NONE;
  388. config->longpress[0].action = config->longpress[1].action = ACTRLS_NONE;
  389. config->shifted[0].action = config->shifted[1].action = ACTRLS_NONE;
  390. config->longshifted[0].action = config->longshifted[1].action = ACTRLS_NONE;
  391. }
  392. /****************************************************************************************
  393. *
  394. */
  395. static esp_err_t actrls_init_json(const char *profile_name, bool create) {
  396. esp_err_t err = ESP_OK;
  397. actrls_config_t *cur_config = NULL;
  398. actrls_config_t *config_root = NULL;
  399. char *config;
  400. const cJSON *button;
  401. if (!profile_name || !*profile_name) return ESP_OK;
  402. config = config_alloc_get_default(NVS_TYPE_STR, profile_name, NULL, 0);
  403. if(!config) return ESP_FAIL;
  404. ESP_LOGD(TAG,"Parsing JSON structure %s", config);
  405. cJSON *buttons = cJSON_Parse(config);
  406. if (buttons == NULL) {
  407. ESP_LOGE(TAG,"JSON Parsing failed for %s", config);
  408. err = ESP_FAIL;
  409. } else {
  410. ESP_LOGD(TAG,"Json parsing completed");
  411. if (cJSON_IsArray(buttons)) {
  412. ESP_LOGD(TAG,"configuration is an array as expected");
  413. cur_config =config_root= actrls_init_alloc_structure(buttons, profile_name);
  414. if(!cur_config) {
  415. ESP_LOGE(TAG,"Config buffer was empty. ");
  416. cJSON_Delete(buttons);
  417. return ESP_FAIL;
  418. }
  419. ESP_LOGD(TAG,"Processing button definitions. ");
  420. cJSON_ArrayForEach(button, buttons){
  421. char * str = cJSON_Print(button);
  422. ESP_LOGD(TAG,"Processing %s. ", str?str:"");
  423. if(str){
  424. free(str);
  425. }
  426. actrls_defaults(cur_config);
  427. esp_err_t loc_err = actrls_process_button(button, cur_config);
  428. err = (err == ESP_OK) ? loc_err : err;
  429. if (loc_err == ESP_OK) {
  430. if (create) button_create((void*) cur_config, cur_config->gpio,cur_config->type,
  431. cur_config->pull,cur_config->debounce, control_handler,
  432. cur_config->long_press, cur_config->shifter_gpio);
  433. } else {
  434. ESP_LOGE(TAG,"Error parsing button structure. Button will not be registered.");
  435. }
  436. cur_config++;
  437. }
  438. } else {
  439. ESP_LOGE(TAG,"Invalid configuration; array is expected and none received in %s ", config);
  440. }
  441. cJSON_Delete(buttons);
  442. }
  443. // Now update the global json_config object. If we are recursively processing menu structures,
  444. // the last init that completes will assigh the first json config object found, which will match
  445. // the default config from nvs.
  446. json_config = config_root;
  447. return err;
  448. }
  449. /****************************************************************************************
  450. *
  451. */
  452. void actrls_set_default(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  453. memcpy(default_controls, controls, sizeof(actrls_t));
  454. memcpy(current_controls, default_controls, sizeof(actrls_t));
  455. default_hook = current_hook = hook;
  456. default_raw_controls = current_raw_controls = raw_controls;
  457. default_ir_handler = current_ir_handler = ir_handler;
  458. }
  459. /****************************************************************************************
  460. *
  461. */
  462. void actrls_set(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  463. memcpy(current_controls, controls, sizeof(actrls_t));
  464. current_hook = hook;
  465. current_raw_controls = raw_controls;
  466. current_ir_handler = ir_handler;
  467. }
  468. /****************************************************************************************
  469. *
  470. */
  471. void actrls_unset(void) {
  472. memcpy(current_controls, default_controls, sizeof(actrls_t));
  473. current_hook = default_hook;
  474. current_raw_controls = default_raw_controls;
  475. current_ir_handler = default_ir_handler;
  476. }