123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- /* Console example
- This example code is in the Public Domain (or CC0 licensed, at your option.)
- Unless required by applicable law or agreed to in writing, this
- software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
- CONDITIONS OF ANY KIND, either express or implied.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "esp_system.h"
- #include "esp_log.h"
- #include "esp_console.h"
- #include "esp_vfs_dev.h"
- #include "driver/uart.h"
- #include "linenoise/linenoise.h"
- #include "argtable3/argtable3.h"
- #include "esp_vfs_fat.h"
- #include "nvs.h"
- #include "nvs_flash.h"
- #include "pthread.h"
- #include "platform_esp32.h"
- #include "esp_pthread.h"
- #include "cmd_decl.h"
- #include "console.h"
- #include "wifi_manager.h"
- #include "cmd_squeezelite.h"
- #include "nvs_utilities.h"
- pthread_t thread_console;
- static void * console_thread();
- void console_start();
- static const char * TAG = "console";
- #if RECOVERY_APPLICATION ==1
- extern void start_ota(const char * bin_url);
- #endif
- /* Prompt to be printed before each line.
- * This can be customized, made dynamic, etc.
- */
- const char* prompt = LOG_COLOR_I "squeezelite-esp32> " LOG_RESET_COLOR;
- /* Console command history can be stored to and loaded from a file.
- * The easiest way to do this is to use FATFS filesystem on top of
- * wear_levelling library.
- */
- #define MOUNT_PATH "/data"
- #define HISTORY_PATH MOUNT_PATH "/history.txt"
- void run_command(char * line);
- //optListStruct * getOptionByName(char * option){
- // optListStruct * curOpt=&optList[0];
- // while(curOpt->optName !=NULL){
- // if(!strcmp(curOpt->optName, option)){
- // return curOpt;
- // }
- // curOpt++;
- // }
- // return NULL;
- //}
- //
- //static int list_options(int argc, char **argv)
- //{
- // nvs_handle nvs;
- // esp_err_t err;
- //
- // err = nvs_open(current_namespace, NVS_READONLY, &nvs);
- // if (err != ESP_OK) {
- // return err;
- // }
- // //
- // optListStruct * curOpt=&optList[0];
- // printf("System Configuration Options.\n");
- // while(curOpt->optName!=NULL){
- // printf("Option: %s\n"
- // " Description: %20s\n"
- // " Default Value: %20s\n"
- // " Current Value: ",curOpt->optName, curOpt->description, curOpt->defaultValue);
- // size_t len;
- // if ( (nvs_get_str(nvs, curOpt->optName, NULL, &len)) == ESP_OK) {
- // char *str = (char *)malloc(len);
- // if ( (nvs_get_str(nvs, curOpt->optName, str, &len)) == ESP_OK) {
- // printf("%20s\n", str);
- // }
- // free(str);
- // }
- // else
- // {
- // if(store_nvs_value(NVS_TYPE_STR, curOpt->optName,curOpt->defaultValue, strlen(curOpt->defaultValue))==ESP_OK)
- // {
- // printf("%20s\n", curOpt->defaultValue);
- // }
- // else
- // {
- // printf("Error. Invalid key\n");
- // }
- // }
- // curOpt++;
- // }
- // printf("\n");
- // nvs_close(nvs);
- // return 0;
- //}
- //void register_list_options(){
- // const esp_console_cmd_t config_list = {
- // .command = "config-list",
- // .help = "Lists available configuration options.",
- // .hint = NULL,
- // .func = &list_options,
- // .argtable = NULL
- // };
- //
- // ESP_ERROR_CHECK( esp_console_cmd_register(&config_list) );
- //
- //}
- void process_autoexec(){
- int i=1;
- char autoexec_name[21]={0};
- char * autoexec_value=NULL;
- uint8_t * autoexec_flag=NULL;
- autoexec_flag = get_nvs_value_alloc(NVS_TYPE_U8, "autoexec");
- if(autoexec_flag!=NULL ){
- ESP_LOGI(TAG,"autoexec flag value found with value %u", *autoexec_flag);
- if(*autoexec_flag == 1) {
- do {
- snprintf(autoexec_name,sizeof(autoexec_name)-1,"autoexec%u",i++);
- ESP_LOGD(TAG,"Getting command name %s", autoexec_name);
- autoexec_value= get_nvs_value_alloc(NVS_TYPE_STR, autoexec_name);
- if(autoexec_value!=NULL ){
- ESP_LOGI(TAG,"Running command %s = %s", autoexec_name, autoexec_value);
- run_command(autoexec_value);
- ESP_LOGD(TAG,"Freeing memory for command %s name", autoexec_name);
- free(autoexec_value);
- }
- else {
- ESP_LOGD(TAG,"No matching command found for name %s", autoexec_name);
- break;
- }
- } while(1);
- }
- free(autoexec_flag);
- }
- else
- {
- ESP_LOGD(TAG,"No matching command found for name autoexec. Adding default entries");
- uint8_t autoexec_dft=0;
- char autoexec1_dft[256]="squeezelite -o I2S -b 500:2000 -d all=info -M esp32";
- store_nvs_value(NVS_TYPE_U8,"autoexec",&autoexec_dft);
- store_nvs_value(NVS_TYPE_STR,"autoexec1",autoexec1_dft);
- }
- }
- static void initialize_filesystem() {
- static wl_handle_t wl_handle;
- const esp_vfs_fat_mount_config_t mount_config = {
- .max_files = 10,
- .format_if_mount_failed = true,
- .allocation_unit_size = 4096
- };
- esp_err_t err = esp_vfs_fat_spiflash_mount(MOUNT_PATH, "storage",
- &mount_config, &wl_handle);
- if (err != ESP_OK) {
- ESP_LOGE(TAG, "Failed to mount FATFS (%s)", esp_err_to_name(err));
- return;
- }
- }
- static void initialize_nvs() {
- esp_err_t err = nvs_flash_init();
- if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
- ESP_ERROR_CHECK(nvs_flash_erase());
- err = nvs_flash_init();
- }
- ESP_ERROR_CHECK(err);
- }
- void initialize_console() {
- /* Disable buffering on stdin */
- setvbuf(stdin, NULL, _IONBF, 0);
- /* Minicom, screen, idf_monitor send CR when ENTER key is pressed */
- esp_vfs_dev_uart_set_rx_line_endings(ESP_LINE_ENDINGS_CR);
- /* Move the caret to the beginning of the next line on '\n' */
- esp_vfs_dev_uart_set_tx_line_endings(ESP_LINE_ENDINGS_CRLF);
- /* Configure UART. Note that REF_TICK is used so that the baud rate remains
- * correct while APB frequency is changing in light sleep mode.
- */
- const uart_config_t uart_config = { .baud_rate =
- CONFIG_CONSOLE_UART_BAUDRATE, .data_bits = UART_DATA_8_BITS,
- .parity = UART_PARITY_DISABLE, .stop_bits = UART_STOP_BITS_1,
- .use_ref_tick = true };
- ESP_ERROR_CHECK(uart_param_config(CONFIG_CONSOLE_UART_NUM, &uart_config));
- /* Install UART driver for interrupt-driven reads and writes */
- ESP_ERROR_CHECK(
- uart_driver_install(CONFIG_CONSOLE_UART_NUM, 256, 0, 0, NULL, 0));
- /* Tell VFS to use UART driver */
- esp_vfs_dev_uart_use_driver(CONFIG_CONSOLE_UART_NUM);
- /* Initialize the console */
- esp_console_config_t console_config = { .max_cmdline_args = 22,
- .max_cmdline_length = 600,
- #if CONFIG_LOG_COLORS
- .hint_color = atoi(LOG_COLOR_CYAN)
- #endif
- };
- ESP_ERROR_CHECK(esp_console_init(&console_config));
- /* Configure linenoise line completion library */
- /* Enable multiline editing. If not set, long commands will scroll within
- * single line.
- */
- linenoiseSetMultiLine(1);
- /* Tell linenoise where to get command completions and hints */
- linenoiseSetCompletionCallback(&esp_console_get_completion);
- linenoiseSetHintsCallback((linenoiseHintsCallback*) &esp_console_get_hint);
- /* Set command history size */
- linenoiseHistorySetMaxLen(100);
- /* Load command history from filesystem */
- linenoiseHistoryLoad(HISTORY_PATH);
- }
- void console_start() {
- initialize_nvs();
- initialize_filesystem();
- initialize_console();
- /* Register commands */
- esp_console_register_help_command();
- register_system();
- register_nvs();
- #if RECOVERY_APPLICATION!=1
- #warning "compiling for squeezelite"
- register_squeezelite();
- #elif RECOVERY_APPLICATION==1
- #warning "compiling for recovery"
- register_ota_cmd();
- #else
- #error "Unknown build configuration"
- #endif
- register_i2ctools();
- printf("\n"
- "Type 'help' to get the list of commands.\n"
- "Use UP/DOWN arrows to navigate through command history.\n"
- "Press TAB when typing command name to auto-complete.\n"
- "\n"
- "To automatically execute lines at startup:\n"
- "\tSet NVS variable autoexec (U8) = 1 to enable, 0 to disable automatic execution.\n"
- "\tSet NVS variable autoexec[1~9] (string)to a command that should be executed automatically\n"
- "\n"
- "\n");
- /* Figure out if the terminal supports escape sequences */
- int probe_status = linenoiseProbe();
- if (probe_status) { /* zero indicates success */
- printf("\n****************************\n"
- "Your terminal application does not support escape sequences.\n"
- "Line editing and history features are disabled.\n"
- "On Windows, try using Putty instead.\n"
- "****************************\n");
- linenoiseSetDumbMode(1);
- #if CONFIG_LOG_COLORS
- /* Since the terminal doesn't support escape sequences,
- * don't use color codes in the prompt.
- */
- prompt = "squeezelite-esp32> ";
- #endif //CONFIG_LOG_COLORS
- }
- esp_pthread_cfg_t cfg = esp_pthread_get_default_config();
- cfg.thread_name= "console";
- cfg.inherit_cfg = true;
- esp_pthread_set_cfg(&cfg);
- pthread_attr_t attr;
- pthread_attr_init(&attr);
- pthread_create(&thread_console, &attr, console_thread, NULL);
- pthread_attr_destroy(&attr);
- }
- void run_command(char * line){
- /* Try to run the command */
- int ret;
- esp_err_t err = esp_console_run(line, &ret);
- if (err == ESP_ERR_NOT_FOUND) {
- printf("Unrecognized command\n");
- } else if (err == ESP_ERR_INVALID_ARG) {
- // command was empty
- } else if (err == ESP_OK && ret != ESP_OK) {
- printf("Command returned non-zero error code: 0x%x (%s)\n", ret,
- esp_err_to_name(err));
- } else if (err != ESP_OK) {
- printf("Internal error: %s\n", esp_err_to_name(err));
- }
- }
- static void * console_thread() {
- process_autoexec();
- /* Main loop */
- while (1) {
- /* Get a line using linenoise.
- * The line is returned when ENTER is pressed.
- */
- char* line = linenoise(prompt);
- if (line == NULL) { /* Ignore empty lines */
- continue;
- }
- /* Add the command to the history */
- linenoiseHistoryAdd(line);
- /* Save command history to filesystem */
- linenoiseHistorySave(HISTORY_PATH);
- printf("\n");
- run_command(line);
- /* linenoise allocates line buffer on the heap, so need to free it */
- linenoiseFree(line);
- }
- return NULL;
- }
|