| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655 |
- #include <iostream>
- #include <string>
- #include <vector>
- #include <regex>
- //#include "freertos/FreeRTOS.h"
- //#include "freertos/task.h"
- //#include "freertos/event_groups.h"
- //#include "driver/gpio.h"
- //#include "sdkconfig.h"
- //#include "esp_psram.h" // Comming in IDF 5.0, see https://docs.espressif.com/projects/esp-idf/en/v5.0-beta1/esp32/migration-guides/release-5.x/system.html?highlight=esp_psram_get_size
- //#include "spiram.h"
- #include "esp32/spiram.h"
- // SD-Card ////////////////////
- //#include "nvs_flash.h"
- #include "esp_vfs_fat.h"
- //#include "sdmmc_cmd.h"
- #include "driver/sdmmc_host.h"
- //#include "driver/sdmmc_defs.h"
- ///////////////////////////////
- #include "ClassLogFile.h"
- #include "connect_wlan.h"
- #include "read_wlanini.h"
- #include "server_main.h"
- #include "server_tflite.h"
- #include "server_file.h"
- #include "server_ota.h"
- #include "time_sntp.h"
- #include "configFile.h"
- //#include "ClassControllCamera.h"
- #include "server_main.h"
- #include "server_camera.h"
- #ifdef ENABLE_MQTT
- #include "server_mqtt.h"
- #endif //ENABLE_MQTT
- //#include "Helper.h"
- #include "../../include/defines.h"
- //#include "server_GPIO.h"
- #ifdef ENABLE_SOFTAP
- #include "softAP.h"
- #endif //ENABLE_SOFTAP
- #ifdef DISABLE_BROWNOUT_DETECTOR
- #include "soc/soc.h"
- #include "soc/rtc_cntl_reg.h"
- #endif
- #ifdef DEBUG_ENABLE_SYSINFO
- #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL( 4, 0, 0 )
- #include "esp_sys.h"
- #endif
- #endif //DEBUG_ENABLE_SYSINFO
- #ifdef USE_HIMEM_IF_AVAILABLE
- #include "esp32/himem.h"
- #ifdef DEBUG_HIMEM_MEMORY_CHECK
- #include "himem_memory_check.h"
- #endif
- #endif
- //#ifdef CONFIG_HEAP_TRACING_STANDALONE
- #if defined HEAP_TRACING_MAIN_WIFI || defined HEAP_TRACING_MAIN_START
- #include <esp_heap_trace.h>
- #define NUM_RECORDS 300
- static heap_trace_record_t trace_record[NUM_RECORDS]; // This buffer must be in internal RAM
- #endif
- extern const char* GIT_TAG;
- extern const char* GIT_REV;
- extern const char* GIT_BRANCH;
- extern const char* BUILD_TIME;
- extern std::string getFwVersion(void);
- extern std::string getHTMLversion(void);
- extern std::string getHTMLcommit(void);
- std::vector<std::string> splitString(const std::string& str);
- bool replace(std::string& s, std::string const& toReplace, std::string const& replaceWith);
- bool replace(std::string& s, std::string const& toReplace, std::string const& replaceWith, bool logIt);
- //bool replace_all(std::string& s, std::string const& toReplace, std::string const& replaceWith);
- bool isInString(std::string& s, std::string const& toFind);
- void migrateConfiguration(void);
- static const char *TAG = "MAIN";
- bool Init_NVS_SDCard()
- {
- esp_err_t ret = nvs_flash_init();
- if (ret == ESP_ERR_NVS_NO_FREE_PAGES) {
- ESP_ERROR_CHECK(nvs_flash_erase());
- ret = nvs_flash_init();
- }
- ////////////////////////////////////////////////
- ESP_LOGI(TAG, "Using SDMMC peripheral");
- sdmmc_host_t host = SDMMC_HOST_DEFAULT();
- // This initializes the slot without card detect (CD) and write protect (WP) signals.
- // Modify slot_config.gpio_cd and slot_config.gpio_wp if your board has these signals.
- sdmmc_slot_config_t slot_config = SDMMC_SLOT_CONFIG_DEFAULT();
- // To use 1-line SD mode, uncomment the following line:
- #ifdef __SD_USE_ONE_LINE_MODE__
- slot_config.width = 1;
- #endif
- // GPIOs 15, 2, 4, 12, 13 should have external 10k pull-ups.
- // Internal pull-ups are not sufficient. However, enabling internal pull-ups
- // does make a difference some boards, so we do that here.
- gpio_set_pull_mode(GPIO_NUM_15, GPIO_PULLUP_ONLY); // CMD, needed in 4- and 1- line modes
- gpio_set_pull_mode(GPIO_NUM_2, GPIO_PULLUP_ONLY); // D0, needed in 4- and 1-line modes
- #ifndef __SD_USE_ONE_LINE_MODE__
- gpio_set_pull_mode(GPIO_NUM_4, GPIO_PULLUP_ONLY); // D1, needed in 4-line mode only
- gpio_set_pull_mode(GPIO_NUM_12, GPIO_PULLUP_ONLY); // D2, needed in 4-line mode only
- #endif
- gpio_set_pull_mode(GPIO_NUM_13, GPIO_PULLUP_ONLY); // D3, needed in 4- and 1-line modes
- // Options for mounting the filesystem.
- // If format_if_mount_failed is set to true, SD card will be partitioned and
- // formatted in case when mounting fails.
- esp_vfs_fat_sdmmc_mount_config_t mount_config = {
- .format_if_mount_failed = false,
- .max_files = 12, // previously -> 2022-09-21: 5, 2023-01-02: 7
- .allocation_unit_size = 16 * 1024
- };
- // Use settings defined above to initialize SD card and mount FAT filesystem.
- // Note: esp_vfs_fat_sdmmc_mount is an all-in-one convenience function.
- // Please check its source code and implement error recovery when developing
- // production applications.
- sdmmc_card_t* card;
- ret = esp_vfs_fat_sdmmc_mount("/sdcard", &host, &slot_config, &mount_config, &card);
- if (ret != ESP_OK) {
- if (ret == ESP_FAIL) {
- ESP_LOGE(TAG, "Failed to mount filesystem. "
- "If you want the card to be formatted, set format_if_mount_failed = true.");
- } else {
- ESP_LOGE(TAG, "Failed to initialize the card (%s). "
- "Make sure SD card lines have pull-up resistors in place.", esp_err_to_name(ret));
- }
- return false;
- }
- sdmmc_card_print_info(stdout, card);
- SaveSDCardInfo(card);
- return true;
- }
- void task_MainInitError_blink(void *pvParameter)
- {
- gpio_pad_select_gpio(BLINK_GPIO);
- gpio_set_direction(BLINK_GPIO, GPIO_MODE_OUTPUT);
-
- TickType_t xDelay;
- xDelay = 100 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "SD-Card could not be inialized - STOP THE PROGRAMM HERE");
- while (1)
- {
- gpio_set_level(BLINK_GPIO, 1);
- vTaskDelay( xDelay );
- gpio_set_level(BLINK_GPIO, 0);
- vTaskDelay( xDelay );
- }
- vTaskDelete(NULL); //Delete this task if it exits from the loop above
- }
- extern "C" void app_main(void)
- {
-
- //#ifdef CONFIG_HEAP_TRACING_STANDALONE
- #if defined HEAP_TRACING_MAIN_WIFI || defined HEAP_TRACING_MAIN_START
- //register a buffer to record the memory trace
- ESP_ERROR_CHECK( heap_trace_init_standalone(trace_record, NUM_RECORDS) );
- #endif
-
- TickType_t xDelay;
-
- #ifdef DISABLE_BROWNOUT_DETECTOR
- WRITE_PERI_REG(RTC_CNTL_BROWN_OUT_REG, 0); //disable brownout detector
- #endif
-
- ESP_LOGI(TAG, "\n\n\n\n\n"); // Add mark on log to see when it restarted
-
- PowerResetCamera();
- esp_err_t camStatus = Camera.InitCam();
- Camera.LightOnOff(false);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
- if (!Init_NVS_SDCard())
- {
- xTaskCreate(&task_MainInitError_blink, "task_MainInitError_blink", configMINIMAL_STACK_SIZE * 64, NULL, tskIDLE_PRIORITY+1, NULL);
- return; // No way to continue without SD-Card!
- }
- migrateConfiguration();
- setupTime();
- string versionFormated = getFwVersion() + ", Date/Time: " + std::string(BUILD_TIME) + \
- ", Web UI: " + getHTMLversion();
- if (std::string(GIT_TAG) != "") { // We are on a tag, add it as prefix
- string versionFormated = "Tag: '" + std::string(GIT_TAG) + "', " + versionFormated;
- }
- LogFile.CreateLogDirectories();
- MakeDir("/sdcard/demo"); // needed for demo mode
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "==================== Startup ====================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, versionFormated);
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Reset reason: " + getResetReason());
-
- #ifdef DEBUG_ENABLE_SYSINFO
- #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL( 4, 0, 0 )
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Device Info : " + get_device_info() );
- ESP_LOGD(TAG, "Device infos %s", get_device_info().c_str());
- #endif
- #endif //DEBUG_ENABLE_SYSINFO
- #ifdef USE_HIMEM_IF_AVAILABLE
- #ifdef DEBUG_HIMEM_MEMORY_CHECK
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Himem mem check : " + himem_memory_check() );
- ESP_LOGD(TAG, "Himem mem check %s", himem_memory_check().c_str());
- #endif
- #endif
- CheckIsPlannedReboot();
- CheckOTAUpdate();
- CheckUpdate();
- #ifdef ENABLE_SOFTAP
- CheckStartAPMode(); // if no wlan.ini and/or config.ini --> AP ist startet and this function does not exit anymore until reboot
- #endif
- #ifdef HEAP_TRACING_MAIN_WIFI
- ESP_ERROR_CHECK( heap_trace_start(HEAP_TRACE_LEAKS) );
- #endif
-
- char *ssid = NULL, *passwd = NULL, *hostname = NULL, *ip = NULL, *gateway = NULL, *netmask = NULL, *dns = NULL; int rssithreshold = 0;
- LoadWlanFromFile(WLAN_CONFIG_FILE, ssid, passwd, hostname, ip, gateway, netmask, dns, rssithreshold);
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "WLAN-Settings - RSSI-Threshold: " + to_string(rssithreshold));
- if (ssid != NULL && passwd != NULL)
- #ifdef __HIDE_PASSWORD
- ESP_LOGD(TAG, "WLan: %s, XXXXXX", ssid);
- #else
- ESP_LOGD(TAG, "WLan: %s, %s", ssid, passwd);
- #endif
- else
- ESP_LOGD(TAG, "No SSID and PASSWORD set!!!");
- if (hostname != NULL)
- ESP_LOGD(TAG, "Hostname: %s", hostname);
- else
- ESP_LOGD(TAG, "Hostname not set");
- if (ip != NULL && gateway != NULL && netmask != NULL)
- ESP_LOGD(TAG, "Fixed IP: %s, Gateway %s, Netmask %s", ip, gateway, netmask);
- if (dns != NULL)
- ESP_LOGD(TAG, "DNS IP: %s", dns);
- wifi_init_sta(ssid, passwd, hostname, ip, gateway, netmask, dns, rssithreshold);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
-
- #ifdef HEAP_TRACING_MAIN_WIFI
- ESP_ERROR_CHECK( heap_trace_stop() );
- heap_trace_dump();
- #endif
- #ifdef HEAP_TRACING_MAIN_START
- ESP_ERROR_CHECK( heap_trace_start(HEAP_TRACE_LEAKS) );
- #endif
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "================== Main Started =================");
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "=================================================");
- if (getHTMLcommit().substr(0, 7) != std::string(GIT_REV).substr(0, 7)) { // Compare the first 7 characters of both hashes
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, std::string("Web UI version (") + getHTMLcommit() + ") does not match firmware version (" + std::string(GIT_REV) + ") !");
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Please make sure to setup the SD-Card properly (check the documentation) or re-install using the AI-on-the-edge-device__update__*.zip!");
- }
- std::string zw = getCurrentTimeString("%Y%m%d-%H%M%S");
- ESP_LOGD(TAG, "time %s", zw.c_str());
-
- #ifdef HEAP_TRACING_MAIN_START
- ESP_ERROR_CHECK( heap_trace_stop() );
- heap_trace_dump();
- #endif
- /* Check if PSRAM can be initalized */
- esp_err_t ret;
- ret = esp_spiram_init();
- if (ret == ESP_FAIL) { // Failed to init PSRAM, most likely not available or broken
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize PSRAM (" + std::to_string(ret) + ")!");
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Either your device misses the PSRAM chip or it is broken!");
- setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
- }
- else { // PSRAM init ok
- /* Check if PSRAM provides at least 4 MB */
- size_t psram_size = esp_spiram_get_size();
- // size_t psram_size = esp_psram_get_size(); // comming in IDF 5.0
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "The device has " + std::to_string(psram_size/1024/1024) + " MBytes of PSRAM");
- if (psram_size < (4*1024*1024)) { // PSRAM is below 4 MBytes
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "At least 4 MBytes are required!");
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Does the device really have a 4 Mbytes PSRAM?");
- setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
- }
- }
- /* Check available Heap memory */
- size_t _hsize = getESPHeapSize();
- if (_hsize < 4000000) { // Check available Heap memory for a bit less than 4 MB (a test on a good device showed 4187558 bytes to be available)
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Not enough Heap memory available. Expected around 4 MBytes, but only " + std::to_string(_hsize) + " Bytes are available! That is not enough for this firmware!");
- setSystemStatusFlag(SYSTEM_STATUS_HEAP_TOO_SMALL);
- } else { // Heap memory is ok
- if (camStatus != ESP_OK) {
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Failed to initialize camera module, retrying...");
- PowerResetCamera();
- esp_err_t camStatus = Camera.InitCam();
- Camera.LightOnOff(false);
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "After camera initialization: sleep for: %ldms", (long) xDelay);
- vTaskDelay( xDelay );
- if (camStatus != ESP_OK) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to initialize camera module!");
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Check that your camera module is working and connected properly!");
- setSystemStatusFlag(SYSTEM_STATUS_CAM_BAD);
- }
- } else { // Test Camera
- if (!Camera.testCamera()) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Camera Framebuffer cannot be initialized!");
- /* Easiest would be to simply restart here and try again,
- how ever there seem to be systems where it fails at startup but still work corectly later.
- Therefore we treat it still as successed! */
- setSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD);
- }
- else {
- Camera.LightOnOff(false);
- }
- }
- }
- xDelay = 2000 / portTICK_PERIOD_MS;
- ESP_LOGD(TAG, "main: sleep for: %ldms", (long) xDelay*10);
- vTaskDelay( xDelay );
- ESP_LOGD(TAG, "starting servers");
- server = start_webserver();
- register_server_camera_uri(server);
- register_server_tflite_uri(server);
- register_server_file_uri(server, "/sdcard");
- register_server_ota_sdcard_uri(server);
- #ifdef ENABLE_MQTT
- register_server_mqtt_uri(server);
- #endif //ENABLE_MQTT
- gpio_handler_create(server);
- ESP_LOGD(TAG, "Before reg server main");
- register_server_main_uri(server, "/sdcard");
- /* Testing */
- //setSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD);
- //setSystemStatusFlag(SYSTEM_STATUS_PSRAM_BAD);
- /* Main Init has successed or only an error which allows to continue operation */
- if (getSystemStatus() == 0) { // No error flag is set
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Initialization completed successfully!");
- ESP_LOGD(TAG, "Before do autostart");
- TFliteDoAutoStart();
- }
- else if (isSetSystemStatusFlag(SYSTEM_STATUS_CAM_FB_BAD) || // Non critical errors occured, we try to continue...
- isSetSystemStatusFlag(SYSTEM_STATUS_NTP_BAD)) {
- LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Initialization completed with errors, but trying to continue...");
- ESP_LOGD(TAG, "Before do autostart");
- TFliteDoAutoStart();
- }
- else { // Any other error is critical and makes running the flow impossible.
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Initialization failed. Not starting flows!");
- }
- }
- void migrateConfiguration(void) {
- bool migrated = false;
- if (!FileExists(CONFIG_FILE)) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Config file seems to be missing!");
- return;
- }
- std::string section = "";
- std::ifstream ifs(CONFIG_FILE);
- std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
-
- /* Split config file it array of lines */
- std::vector<std::string> configLines = splitString(content);
- /* Process each line */
- for (int i = 0; i < configLines.size(); i++) {
- //ESP_LOGI(TAG, "Line %d: %s", i, configLines[i].c_str());
- if (configLines[i].find("[") != std::string::npos) { // Start of new section
- section = configLines[i];
- replace(section, ";", "", false); // Remove possible semicolon (just for the string comparison)
- //ESP_LOGI(TAG, "New section: %s", section.c_str());
- }
- /* Migrate parameters as needed
- * For the boolean parameters, we make them enabled all the time now:
- * 1. If they where disabled, set them to their default value
- * 2. Enable them
- * Notes:
- * The migration has some simplifications:
- * - Case Sensitiveness must be like in the initial config.ini
- * - No Whitespace after a semicollon
- * - Only one whitespace before/after the equal sign
- */
- if (section == "[MakeImage]") {
- migrated = migrated | replace(configLines[i], "[MakeImage]", "[TakeImage]"); // Rename the section itself
- }
- if (section == "[MakeImage]" || section == "[TakeImage]") {
- migrated = migrated | replace(configLines[i], "LogImageLocation", "RawImagesLocation");
- migrated = migrated | replace(configLines[i], "LogfileRetentionInDays", "RawImagesRetention");
- migrated = migrated | replace(configLines[i], ";Demo = true", ";Demo = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";Demo", "Demo"); // Enable it
- migrated = migrated | replace(configLines[i], ";FixedExposure = true", ";FixedExposure = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";FixedExposure", "FixedExposure"); // Enable it
- }
- if (section == "[Alignment]") {
- migrated = migrated | replace(configLines[i], ";InitialMirror = true", ";InitialMirror = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";InitialMirror", "InitialMirror"); // Enable it
- migrated = migrated | replace(configLines[i], ";FlipImageSize = true", ";FlipImageSize = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";FlipImageSize", "FlipImageSize"); // Enable it
- }
- if (section == "[Digits]") {
- migrated = migrated | replace(configLines[i], "LogImageLocation", "ROIImagesLocation");
- migrated = migrated | replace(configLines[i], "LogfileRetentionInDays", "ROIImagesRetention");
- }
- if (section == "[Analog]") {
- migrated = migrated | replace(configLines[i], "LogImageLocation", "ROIImagesLocation");
- migrated = migrated | replace(configLines[i], "LogfileRetentionInDays", "ROIImagesRetention");
- migrated = migrated | replace(configLines[i], "ExtendedResolution", ";UNUSED_PARAMETER"); // This parameter is no longer used
- }
- if (section == "[PostProcessing]") {
- migrated = migrated | replace(configLines[i], ";PreValueUse = true", ";PreValueUse = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";PreValueUse", "PreValueUse"); // Enable it
- /* AllowNegativeRates has a <NUMBER> as prefix! */
- if (isInString(configLines[i], "AllowNegativeRates") && isInString(configLines[i], ";")) { // It is the parameter "AllowNegativeRates" and it is commented out
- migrated = migrated | replace(configLines[i], "true", "false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";", ""); // Enable it
- }
- /* IgnoreLeadingNaN has a <NUMBER> as prefix! */
- if (isInString(configLines[i], "IgnoreLeadingNaN") && isInString(configLines[i], ";")) { // It is the parameter "IgnoreLeadingNaN" and it is commented out
- migrated = migrated | replace(configLines[i], "true", "false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";", ""); // Enable it
- }
- /* ExtendedResolution has a <NUMBER> as prefix! */
- if (isInString(configLines[i], "ExtendedResolution") && isInString(configLines[i], ";")) { // It is the parameter "ExtendedResolution" and it is commented out
- migrated = migrated | replace(configLines[i], "true", "false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";", ""); // Enable it
- }
- migrated = migrated | replace(configLines[i], ";ErrorMessage = true", ";ErrorMessage = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";ErrorMessage", "ErrorMessage"); // Enable it
- migrated = migrated | replace(configLines[i], ";CheckDigitIncreaseConsistency = true", ";CheckDigitIncreaseConsistency = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";CheckDigitIncreaseConsistency", "CheckDigitIncreaseConsistency"); // Enable it
- }
- if (section == "[MQTT]") {
- migrated = migrated | replace(configLines[i], "SetRetainFlag", "RetainMessages"); // First rename it, enable it with its default value
- migrated = migrated | replace(configLines[i], ";RetainMessages = true", ";RetainMessages = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";RetainMessages", "RetainMessages"); // Enable it
- migrated = migrated | replace(configLines[i], ";HomeassistantDiscovery = true", ";HomeassistantDiscovery = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";HomeassistantDiscovery", "HomeassistantDiscovery"); // Enable it
- if (configLines[i].rfind("Topic", 0) != std::string::npos) // only if string starts with "Topic" (Was the naming in very old version)
- {
- migrated = migrated | replace(configLines[i], "Topic", "MainTopic");
- }
- }
- if (section == "[InfluxDB]") {
- }
- if (section == "[GPIO]") {
- }
- if (section == "[DataLogging]") {
- migrated = migrated | replace(configLines[i], "DataLogRetentionInDays", "DataFilesRetention");
- /* DataLogActive is true by default! */
- migrated = migrated | replace(configLines[i], ";DataLogActive = false", ";DataLogActive = true"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";DataLogActive", "DataLogActive"); // Enable it
- }
- if (section == "[AutoTimer]") {
- migrated = migrated | replace(configLines[i], "Intervall", "Interval");
- migrated = migrated | replace(configLines[i], ";AutoStart = true", ";AutoStart = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";AutoStart", "AutoStart"); // Enable it
- }
- if (section == "[Debug]") {
- migrated = migrated | replace(configLines[i], "Logfile ", "LogLevel "); // Whitespace needed so it does not match `LogfileRetentionInDays`
- /* LogLevel (resp. LogFile) was originally a boolean, but we switched it to an int
- * For both cases (true/false), we set it to level 2 (WARNING) */
- migrated = migrated | replace(configLines[i], "LogLevel = true", "LogLevel = 2");
- migrated = migrated | replace(configLines[i], "LogLevel = false", "LogLevel = 2");
- migrated = migrated | replace(configLines[i], "LogfileRetentionInDays", "LogfilesRetention");
- }
- if (section == "[System]") {
- migrated = migrated | replace(configLines[i], "RSSIThreashold", "RSSIThreshold");
- migrated = migrated | replace(configLines[i], "AutoAdjustSummertime", ";UNUSED_PARAMETER"); // This parameter is no longer used
- migrated = migrated | replace(configLines[i], ";SetupMode = true", ";SetupMode = false"); // Set it to its default value
- migrated = migrated | replace(configLines[i], ";SetupMode", "SetupMode"); // Enable it
- }
- }
- if (migrated) { // At least one replacement happened
- if (! RenameFile(CONFIG_FILE, CONFIG_FILE_BACKUP)) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Failed to create backup of Config file!");
- return;
- }
- FILE* pfile = fopen(CONFIG_FILE, "w");
- for (int i = 0; i < configLines.size(); i++) {
- fwrite(configLines[i].c_str() , configLines[i].length(), 1, pfile);
- fwrite("\n" , 1, 1, pfile);
- }
- fclose(pfile);
- LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Config file migrated. Saved backup to " + string(CONFIG_FILE_BACKUP));
- }
- }
- std::vector<std::string> splitString(const std::string& str) {
- std::vector<std::string> tokens;
-
- std::stringstream ss(str);
- std::string token;
- while (std::getline(ss, token, '\n')) {
- tokens.push_back(token);
- }
-
- return tokens;
- }
- /*bool replace_all(std::string& s, std::string const& toReplace, std::string const& replaceWith) {
- std::string buf;
- std::size_t pos = 0;
- std::size_t prevPos;
- bool found = false;
- // Reserves rough estimate of final size of string.
- buf.reserve(s.size());
- while (true) {
- prevPos = pos;
- pos = s.find(toReplace, pos);
- if (pos == std::string::npos) {
- break;
- }
- found = true;
- buf.append(s, prevPos, pos - prevPos);
- buf += replaceWith;
- pos += toReplace.size();
- }
- buf.append(s, prevPos, s.size() - prevPos);
- s.swap(buf);
- return found;
- }*/
- bool replace(std::string& s, std::string const& toReplace, std::string const& replaceWith) {
- return replace(s, toReplace, replaceWith, true);
- }
- bool replace(std::string& s, std::string const& toReplace, std::string const& replaceWith, bool logIt) {
- std::size_t pos = s.find(toReplace);
- if (pos == std::string::npos) { // Not found
- return false;
- }
- std::string old = s;
- s.replace(pos, toReplace.length(), replaceWith);
- if (logIt) {
- LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Migrated Configfile line '" + old + "' to '" + s + "'");
- }
- return true;
- }
- bool isInString(std::string& s, std::string const& toFind) {
- std::size_t pos = s.find(toFind);
- if (pos == std::string::npos) { // Not found
- return false;
- }
- return true;
- }
|