2
0

audio_controls.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  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 void control_handler(void *client, button_event_e event, button_press_e press, bool long_press) {
  70. actrls_config_t *key = (actrls_config_t*) client;
  71. actrls_action_detail_t action_detail;
  72. switch(press) {
  73. case BUTTON_NORMAL:
  74. if (long_press) action_detail = key->longpress[event == BUTTON_PRESSED ? 0 : 1];
  75. else action_detail = key->normal[event == BUTTON_PRESSED ? 0 : 1];
  76. break;
  77. case BUTTON_SHIFTED:
  78. if (long_press) action_detail = key->longshifted[event == BUTTON_PRESSED ? 0 : 1];
  79. else action_detail = key->shifted[event == BUTTON_PRESSED ? 0 : 1];
  80. break;
  81. default:
  82. action_detail.action = ACTRLS_NONE;
  83. break;
  84. }
  85. ESP_LOGD(TAG, "control gpio:%u press:%u long:%u event:%u action:%u", key->gpio, press, long_press, event,action_detail.action);
  86. // stop here if control hook served the request
  87. if (current_hook && (*current_hook)(key->gpio, action_detail.action, event, press, long_press)) return;
  88. // otherwise process using configuration
  89. if (action_detail.action == ACTRLS_REMAP) {
  90. // remap requested
  91. ESP_LOGD(TAG, "remapping buttons to profile %s",action_detail.name);
  92. cJSON * profile_obj = cJSON_GetObjectItem(control_profiles,action_detail.name);
  93. if (profile_obj) {
  94. actrls_config_t *cur_config = (actrls_config_t *) cJSON_GetStringValue(profile_obj);
  95. if (cur_config) {
  96. ESP_LOGD(TAG,"Remapping all the buttons that are found in the new profile");
  97. while (cur_config->gpio != -1) {
  98. ESP_LOGD(TAG,"Remapping button with gpio %u", cur_config->gpio);
  99. button_remap((void*) cur_config, cur_config->gpio, control_handler, cur_config->long_press, cur_config->shifter_gpio);
  100. cur_config++;
  101. }
  102. } else {
  103. ESP_LOGE(TAG,"Profile %s exists, but is empty. Cannot remap buttons",action_detail.name);
  104. }
  105. } else {
  106. ESP_LOGE(TAG,"Invalid profile name %s. Cannot remap buttons",action_detail.name);
  107. }
  108. } else if (action_detail.action != ACTRLS_NONE) {
  109. ESP_LOGD(TAG, "calling action %u", action_detail.action);
  110. if (current_controls[action_detail.action]) (*current_controls[action_detail.action])();
  111. }
  112. }
  113. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press) {
  114. actrls_action_e action;
  115. switch(event) {
  116. case ROTARY_LEFT:
  117. action = KNOB_LEFT;
  118. break;
  119. case ROTARY_RIGHT:
  120. action = KNOB_RIGHT;
  121. break;
  122. case ROTARY_PRESSED:
  123. // no handling of rotary long press
  124. action = KNOB_PUSH;
  125. break;
  126. default:
  127. action = ACTRLS_NONE;
  128. break;
  129. }
  130. if (action != ACTRLS_NONE) (*current_controls[action])();
  131. }
  132. /*
  133. void up(void *id, button_event_e event, button_press_e press, bool longpress) {
  134. if (press == BUTTON_NORMAL) {
  135. if (longpress) ESP_LOGI(TAG, "up long %u", event);
  136. else ESP_LOGI(TAG, "up %u", event);
  137. } else if (press == BUTTON_SHIFTED) {
  138. if (longpress) ESP_LOGI(TAG, "up shifted long %u", event);
  139. else ESP_LOGI(TAG, "up shifted %u", event);
  140. } else {
  141. ESP_LOGI(TAG, "don't know what we are doing here %u", event);
  142. }
  143. }
  144. void down(void *id, button_event_e event, button_press_e press, bool longpress) {
  145. if (press == BUTTON_NORMAL) {
  146. if (longpress) ESP_LOGI(TAG, "down long %u", event);
  147. else ESP_LOGI(TAG, "down %u", event);
  148. } else if (press == BUTTON_SHIFTED) {
  149. if (longpress) ESP_LOGI(TAG, "down shifted long %u", event);
  150. else ESP_LOGI(TAG, "down shifted %u", event);
  151. } else {
  152. ESP_LOGI(TAG, "don't know what we are doing here %u", event);
  153. }
  154. }
  155. */
  156. /****************************************************************************************
  157. *
  158. */
  159. esp_err_t actrls_init(int n, const actrls_config_t *config) {
  160. for (int i = 0; i < n; i++) {
  161. 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);
  162. }
  163. return ESP_OK;
  164. }
  165. /****************************************************************************************
  166. *
  167. */
  168. static actrls_action_e actrls_parse_action_json(const char * name){
  169. actrls_action_e action = ACTRLS_NONE;
  170. if(!strcasecmp("ACTRLS_NONE",name)) return ACTRLS_NONE;
  171. for(int i=0;i<ACTRLS_MAX && actrls_action_s[i][0]!='\0' ;i++){
  172. if(!strcmp(actrls_action_s[i], name)){
  173. return (actrls_action_e) i;
  174. }
  175. }
  176. // Action name wasn't recognized.
  177. // Check if this is a profile name that has a match in nvs
  178. ESP_LOGD(TAG,"unknown action %s, trying to find matching profile ", name);
  179. cJSON * existing = cJSON_GetObjectItem(control_profiles, name);
  180. if (!existing) {
  181. ESP_LOGD(TAG,"Loading new audio control profile with name: %s", name);
  182. if (actrls_init_json(name, false) == ESP_OK) {
  183. action = ACTRLS_REMAP;
  184. }
  185. } else {
  186. ESP_LOGD(TAG,"Existing profile %s was referenced", name);
  187. action = ACTRLS_REMAP;
  188. }
  189. return action;
  190. }
  191. /****************************************************************************************
  192. *
  193. */
  194. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config,uint32_t offset){
  195. esp_err_t err = ESP_OK;
  196. ESP_LOGD(TAG,"Processing int member");
  197. int *value = (int*)((char*) cur_config + offset);
  198. *value = member->valueint;
  199. return err;
  200. }
  201. /****************************************************************************************
  202. *
  203. */
  204. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  205. esp_err_t err = ESP_OK;
  206. ESP_LOGD(TAG,"Processing type member");
  207. int *value = (int *)((char*) cur_config + offset);
  208. if (member->type == cJSON_String) {
  209. *value =
  210. !strcmp(member->valuestring,
  211. "BUTTON_LOW") ?
  212. BUTTON_LOW : BUTTON_HIGH;
  213. } else {
  214. ESP_LOGE(TAG,
  215. "Button type value expected string value of BUTTON_LOW or BUTTON_HIGH, none found");
  216. err=ESP_FAIL;
  217. }
  218. return err;
  219. }
  220. /****************************************************************************************
  221. *
  222. */
  223. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  224. esp_err_t err = ESP_OK;
  225. if (!member) {
  226. ESP_LOGE(TAG,"Null json member pointer!");
  227. err = ESP_FAIL;
  228. } else {
  229. ESP_LOGD(TAG,"Processing bool member ");
  230. if (cJSON_IsBool(member)) {
  231. bool*value = (bool*)((char*) cur_config + offset);
  232. *value = cJSON_IsTrue(member);
  233. } else {
  234. ESP_LOGE(TAG,"Member %s is not a boolean", member->string?member->string:"unknown");
  235. err = ESP_FAIL;
  236. }
  237. }
  238. return err;
  239. }
  240. /****************************************************************************************
  241. *
  242. */
  243. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  244. esp_err_t err = ESP_OK;
  245. cJSON * button_action= cJSON_GetObjectItemCaseSensitive(member, "pressed");
  246. actrls_action_detail_t*value = (actrls_action_detail_t*)((char *)cur_config + offset);
  247. if (button_action != NULL) {
  248. value[0].action = actrls_parse_action_json( button_action->valuestring);
  249. if(value[0].action == ACTRLS_REMAP){
  250. value[0].name = strdup(button_action->valuestring);
  251. }
  252. }
  253. button_action = cJSON_GetObjectItemCaseSensitive(member, "released");
  254. if (button_action != NULL) {
  255. value[1].action = actrls_parse_action_json( button_action->valuestring);
  256. if (value[1].action == ACTRLS_REMAP){
  257. value[1].name = strdup(button_action->valuestring);
  258. }
  259. }
  260. return err;
  261. }
  262. /****************************************************************************************
  263. *
  264. */
  265. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config) {
  266. esp_err_t err = ESP_OK;
  267. const actrls_config_map_t * h=actrls_config_map;
  268. char * str = cJSON_Print(member);
  269. while (h->handler && strcmp(member->string, h->member)) { h++; }
  270. if (h->handler) {
  271. ESP_LOGD(TAG,"found handler for member %s, json value %s", h->member,str?str:"");
  272. err = h->handler(member, cur_config, h->offset);
  273. } else {
  274. err = ESP_FAIL;
  275. ESP_LOGE(TAG, "Unknown json structure member : %s", str?str:"");
  276. }
  277. if (str) free(str);
  278. return err;
  279. }
  280. /****************************************************************************************
  281. *
  282. */
  283. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config) {
  284. esp_err_t err= ESP_OK;
  285. const cJSON *member;
  286. cJSON_ArrayForEach(member, button)
  287. {
  288. ESP_LOGD(TAG,"Processing member %s. ", member->string);
  289. esp_err_t loc_err = actrls_process_member(member, cur_config);
  290. err = (err == ESP_OK) ? loc_err : err;
  291. }
  292. return err;
  293. }
  294. /****************************************************************************************
  295. *
  296. */
  297. static actrls_config_t * actrls_init_alloc_structure(const cJSON *buttons, const char * name){
  298. int member_count = 0;
  299. const cJSON *button;
  300. actrls_config_t * json_config=NULL;
  301. // Check if the main profiles array was created
  302. if(!control_profiles){
  303. control_profiles = cJSON_CreateObject();
  304. }
  305. ESP_LOGD(TAG,"Counting the number of buttons definition");
  306. cJSON_ArrayForEach(button, buttons) {
  307. member_count++;
  308. }
  309. ESP_LOGD(TAG, "config contains %u button definitions", member_count);
  310. if (member_count != 0) {
  311. json_config = calloc(sizeof(actrls_config_t) * (member_count + 1), 1);
  312. if (json_config){
  313. json_config[member_count].gpio = -1;
  314. } else {
  315. ESP_LOGE(TAG,"Unable to allocate memory to hold configuration for %u buttons ",member_count);
  316. }
  317. } else {
  318. ESP_LOGE(TAG,"No button found in configuration structure");
  319. }
  320. // we're cheating here; we're going to store the control profile
  321. // pointer as a string reference; this will prevent cJSON
  322. // from trying to free the structure if we ever want to free the object
  323. cJSON * new_profile = cJSON_CreateStringReference((const char *)json_config);
  324. cJSON_AddItemToObject(control_profiles, name, new_profile);
  325. return json_config;
  326. }
  327. /****************************************************************************************
  328. *
  329. */
  330. static void actrls_defaults(actrls_config_t *config) {
  331. config->type = BUTTON_LOW;
  332. config->pull = false;
  333. config->debounce = 0;
  334. config->long_press = 0;
  335. config->shifter_gpio = -1;
  336. config->normal[0].action = config->normal[1].action = ACTRLS_NONE;
  337. config->longpress[0].action = config->longpress[1].action = ACTRLS_NONE;
  338. config->shifted[0].action = config->shifted[1].action = ACTRLS_NONE;
  339. config->longshifted[0].action = config->longshifted[1].action = ACTRLS_NONE;
  340. }
  341. /****************************************************************************************
  342. *
  343. */
  344. esp_err_t actrls_init_json(const char *profile_name, bool create) {
  345. esp_err_t err = ESP_OK;
  346. actrls_config_t *cur_config = NULL;
  347. actrls_config_t *config_root = NULL;
  348. const cJSON *button;
  349. char *config = config_alloc_get_default(NVS_TYPE_STR, "rotary_config", NULL, 0);
  350. if (config && *config) {
  351. char *p;
  352. int A = -1, B = -1, SW = -1;
  353. // parse config
  354. if ((p = strcasestr(config, "A")) != NULL) A = atoi(strchr(p, '=') + 1);
  355. if ((p = strcasestr(config, "B")) != NULL) B = atoi(strchr(p, '=') + 1);
  356. if ((p = strcasestr(config, "SW")) != NULL) SW = atoi(strchr(p, '=') + 1);
  357. // create rotary (no handling of long press)
  358. err = create_rotary(NULL, A, B, SW, 0, control_rotary_handler) ? ESP_OK : ESP_FAIL;
  359. }
  360. if (config) free(config);
  361. if (!profile_name || !*profile_name) return ESP_OK;
  362. config = config_alloc_get_default(NVS_TYPE_STR, profile_name, NULL, 0);
  363. if(!config) return ESP_FAIL;
  364. ESP_LOGD(TAG,"Parsing JSON structure %s", config);
  365. cJSON *buttons = cJSON_Parse(config);
  366. if (buttons == NULL) {
  367. ESP_LOGE(TAG,"JSON Parsing failed for %s", config);
  368. err = ESP_FAIL;
  369. } else {
  370. ESP_LOGD(TAG,"Json parsing completed");
  371. if (cJSON_IsArray(buttons)) {
  372. ESP_LOGD(TAG,"configuration is an array as expected");
  373. cur_config =config_root= actrls_init_alloc_structure(buttons, profile_name);
  374. if(!cur_config) {
  375. ESP_LOGE(TAG,"Config buffer was empty. ");
  376. cJSON_Delete(buttons);
  377. return ESP_FAIL;
  378. }
  379. ESP_LOGD(TAG,"Processing button definitions. ");
  380. cJSON_ArrayForEach(button, buttons){
  381. char * str = cJSON_Print(button);
  382. ESP_LOGD(TAG,"Processing %s. ", str?str:"");
  383. if(str){
  384. free(str);
  385. }
  386. actrls_defaults(cur_config);
  387. esp_err_t loc_err = actrls_process_button(button, cur_config);
  388. err = (err == ESP_OK) ? loc_err : err;
  389. if (loc_err == ESP_OK) {
  390. if (create) button_create((void*) cur_config, cur_config->gpio,cur_config->type, cur_config->pull,cur_config->debounce,
  391. control_handler, cur_config->long_press, cur_config->shifter_gpio);
  392. } else {
  393. ESP_LOGE(TAG,"Error parsing button structure. Button will not be registered.");
  394. }
  395. cur_config++;
  396. }
  397. } else {
  398. ESP_LOGE(TAG,"Invalid configuration; array is expected and none received in %s ", config);
  399. }
  400. cJSON_Delete(buttons);
  401. }
  402. // Now update the global json_config object. If we are recursively processing menu structures,
  403. // the last init that completes will assigh the first json config object found, which will match
  404. // the default config from nvs.
  405. json_config = config_root;
  406. return err;
  407. }
  408. /****************************************************************************************
  409. *
  410. */
  411. void actrls_set_default(const actrls_t controls, actrls_hook_t *hook) {
  412. memcpy(default_controls, controls, sizeof(actrls_t));
  413. memcpy(current_controls, default_controls, sizeof(actrls_t));
  414. default_hook = current_hook = hook;
  415. }
  416. /****************************************************************************************
  417. *
  418. */
  419. void actrls_set(const actrls_t controls, actrls_hook_t *hook) {
  420. memcpy(current_controls, controls, sizeof(actrls_t));
  421. current_hook = hook;
  422. }
  423. /****************************************************************************************
  424. *
  425. */
  426. void actrls_unset(void) {
  427. memcpy(current_controls, default_controls, sizeof(actrls_t));
  428. current_hook = default_hook;
  429. }