audio_controls.c 16 KB

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