audio_controls.c 16 KB

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