Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

512 lines
14 KiB

6 years ago
6 years ago
6 years ago
8 years ago
8 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. /*
  2. SETTINGS MODULE
  3. Copyright (C) 2016-2018 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include <EEPROM_Rotate.h>
  6. #include <vector>
  7. #include "libs/EmbedisWrap.h"
  8. #include <Stream.h>
  9. #include "libs/StreamInjector.h"
  10. StreamInjector _serial = StreamInjector(TERMINAL_BUFFER_SIZE);
  11. EmbedisWrap embedis(_serial, TERMINAL_BUFFER_SIZE);
  12. #if TERMINAL_SUPPORT
  13. #if SERIAL_RX_ENABLED
  14. char _serial_rx_buffer[TERMINAL_BUFFER_SIZE];
  15. static unsigned char _serial_rx_pointer = 0;
  16. #endif // SERIAL_RX_ENABLED
  17. #endif // TERMINAL_SUPPORT
  18. // -----------------------------------------------------------------------------
  19. // Reverse engineering EEPROM storage format
  20. // -----------------------------------------------------------------------------
  21. unsigned long settingsSize() {
  22. unsigned pos = SPI_FLASH_SEC_SIZE - 1;
  23. while (size_t len = EEPROMr.read(pos)) {
  24. if (0xFF == len) break;
  25. pos = pos - len - 2;
  26. }
  27. return SPI_FLASH_SEC_SIZE - pos + EEPROM_DATA_END;
  28. }
  29. // -----------------------------------------------------------------------------
  30. unsigned int settingsKeyCount() {
  31. unsigned count = 0;
  32. unsigned pos = SPI_FLASH_SEC_SIZE - 1;
  33. while (size_t len = EEPROMr.read(pos)) {
  34. if (0xFF == len) break;
  35. pos = pos - len - 2;
  36. len = EEPROMr.read(pos);
  37. pos = pos - len - 2;
  38. count ++;
  39. }
  40. return count;
  41. }
  42. String settingsKeyName(unsigned int index) {
  43. String s;
  44. unsigned count = 0;
  45. unsigned pos = SPI_FLASH_SEC_SIZE - 1;
  46. while (size_t len = EEPROMr.read(pos)) {
  47. if (0xFF == len) break;
  48. pos = pos - len - 2;
  49. if (count == index) {
  50. s.reserve(len);
  51. for (unsigned char i = 0 ; i < len; i++) {
  52. s += (char) EEPROMr.read(pos + i + 1);
  53. }
  54. break;
  55. }
  56. count++;
  57. len = EEPROMr.read(pos);
  58. pos = pos - len - 2;
  59. }
  60. return s;
  61. }
  62. std::vector<String> _settingsKeys() {
  63. // Get sorted list of keys
  64. std::vector<String> keys;
  65. //unsigned int size = settingsKeyCount();
  66. unsigned int size = settingsKeyCount();
  67. for (unsigned int i=0; i<size; i++) {
  68. //String key = settingsKeyName(i);
  69. String key = settingsKeyName(i);
  70. bool inserted = false;
  71. for (unsigned char j=0; j<keys.size(); j++) {
  72. // Check if we have to insert it before the current element
  73. if (keys[j].compareTo(key) > 0) {
  74. keys.insert(keys.begin() + j, key);
  75. inserted = true;
  76. break;
  77. }
  78. }
  79. // If we could not insert it, just push it at the end
  80. if (!inserted) keys.push_back(key);
  81. }
  82. return keys;
  83. }
  84. // -----------------------------------------------------------------------------
  85. // Commands
  86. // -----------------------------------------------------------------------------
  87. void _settingsHelpCommand() {
  88. // Get sorted list of commands
  89. std::vector<String> commands;
  90. unsigned char size = embedis.getCommandCount();
  91. for (unsigned int i=0; i<size; i++) {
  92. String command = embedis.getCommandName(i);
  93. bool inserted = false;
  94. for (unsigned char j=0; j<commands.size(); j++) {
  95. // Check if we have to insert it before the current element
  96. if (commands[j].compareTo(command) > 0) {
  97. commands.insert(commands.begin() + j, command);
  98. inserted = true;
  99. break;
  100. }
  101. }
  102. // If we could not insert it, just push it at the end
  103. if (!inserted) commands.push_back(command);
  104. }
  105. // Output the list
  106. DEBUG_MSG_P(PSTR("Available commands:\n"));
  107. for (unsigned char i=0; i<commands.size(); i++) {
  108. DEBUG_MSG_P(PSTR("> %s\n"), (commands[i]).c_str());
  109. }
  110. }
  111. void _settingsKeysCommand() {
  112. // Get sorted list of keys
  113. std::vector<String> keys = _settingsKeys();
  114. // Write key-values
  115. DEBUG_MSG_P(PSTR("Current settings:\n"));
  116. for (unsigned int i=0; i<keys.size(); i++) {
  117. String value = getSetting(keys[i]);
  118. DEBUG_MSG_P(PSTR("> %s => \"%s\"\n"), (keys[i]).c_str(), value.c_str());
  119. }
  120. unsigned long freeEEPROM = SPI_FLASH_SEC_SIZE - settingsSize();
  121. DEBUG_MSG_P(PSTR("Number of keys: %d\n"), keys.size());
  122. DEBUG_MSG_P(PSTR("Current EEPROM sector: %u\n"), EEPROMr.current());
  123. DEBUG_MSG_P(PSTR("Free EEPROM: %d bytes (%d%%)\n"), freeEEPROM, 100 * freeEEPROM / SPI_FLASH_SEC_SIZE);
  124. }
  125. void _settingsFactoryResetCommand() {
  126. for (unsigned int i = 0; i < SPI_FLASH_SEC_SIZE; i++) {
  127. EEPROMr.write(i, 0xFF);
  128. }
  129. EEPROMr.commit();
  130. }
  131. void _settingsInitCommands() {
  132. #if DEBUG_SUPPORT
  133. settingsRegisterCommand(F("CRASH"), [](Embedis* e) {
  134. debugDumpCrashInfo();
  135. debugClearCrashInfo();
  136. DEBUG_MSG_P(PSTR("+OK\n"));
  137. });
  138. #endif
  139. settingsRegisterCommand(F("COMMANDS"), [](Embedis* e) {
  140. _settingsHelpCommand();
  141. DEBUG_MSG_P(PSTR("+OK\n"));
  142. });
  143. settingsRegisterCommand(F("ERASE.CONFIG"), [](Embedis* e) {
  144. DEBUG_MSG_P(PSTR("+OK\n"));
  145. resetReason(CUSTOM_RESET_TERMINAL);
  146. _eepromCommit();
  147. ESP.eraseConfig();
  148. *((int*) 0) = 0; // see https://github.com/esp8266/Arduino/issues/1494
  149. });
  150. #if I2C_SUPPORT
  151. settingsRegisterCommand(F("I2C.SCAN"), [](Embedis* e) {
  152. i2cScan();
  153. DEBUG_MSG_P(PSTR("+OK\n"));
  154. });
  155. settingsRegisterCommand(F("I2C.CLEAR"), [](Embedis* e) {
  156. i2cClearBus();
  157. DEBUG_MSG_P(PSTR("+OK\n"));
  158. });
  159. #endif
  160. settingsRegisterCommand(F("FACTORY.RESET"), [](Embedis* e) {
  161. _settingsFactoryResetCommand();
  162. DEBUG_MSG_P(PSTR("+OK\n"));
  163. });
  164. settingsRegisterCommand(F("GPIO"), [](Embedis* e) {
  165. if (e->argc < 2) {
  166. DEBUG_MSG_P(PSTR("-ERROR: Wrong arguments\n"));
  167. return;
  168. }
  169. int pin = String(e->argv[1]).toInt();
  170. //if (!gpioValid(pin)) {
  171. // DEBUG_MSG_P(PSTR("-ERROR: Invalid GPIO\n"));
  172. // return;
  173. //}
  174. if (e->argc > 2) {
  175. bool state = String(e->argv[2]).toInt() == 1;
  176. digitalWrite(pin, state);
  177. }
  178. DEBUG_MSG_P(PSTR("GPIO %d is %s\n"), pin, digitalRead(pin) == HIGH ? "HIGH" : "LOW");
  179. DEBUG_MSG_P(PSTR("+OK\n"));
  180. });
  181. settingsRegisterCommand(F("HEAP"), [](Embedis* e) {
  182. infoMemory("Heap", getInitialFreeHeap(), getFreeHeap());
  183. DEBUG_MSG_P(PSTR("+OK\n"));
  184. });
  185. settingsRegisterCommand(F("STACK"), [](Embedis* e) {
  186. infoMemory("Stack", 4096, getFreeStack());
  187. DEBUG_MSG_P(PSTR("+OK\n"));
  188. });
  189. settingsRegisterCommand(F("HELP"), [](Embedis* e) {
  190. _settingsHelpCommand();
  191. DEBUG_MSG_P(PSTR("+OK\n"));
  192. });
  193. settingsRegisterCommand(F("INFO"), [](Embedis* e) {
  194. info();
  195. DEBUG_MSG_P(PSTR("+OK\n"));
  196. });
  197. settingsRegisterCommand(F("KEYS"), [](Embedis* e) {
  198. _settingsKeysCommand();
  199. DEBUG_MSG_P(PSTR("+OK\n"));
  200. });
  201. settingsRegisterCommand(F("GET"), [](Embedis* e) {
  202. if (e->argc < 2) {
  203. DEBUG_MSG_P(PSTR("-ERROR: Wrong arguments\n"));
  204. return;
  205. }
  206. for (unsigned char i = 1; i < e->argc; i++) {
  207. String key = String(e->argv[i]);
  208. String value;
  209. if (!Embedis::get(key, value)) {
  210. DEBUG_MSG_P(PSTR("> %s =>\n"), key.c_str());
  211. continue;
  212. }
  213. DEBUG_MSG_P(PSTR("> %s => \"%s\"\n"), key.c_str(), value.c_str());
  214. }
  215. DEBUG_MSG_P(PSTR("+OK\n"));
  216. });
  217. #if WEB_SUPPORT
  218. settingsRegisterCommand(F("RELOAD"), [](Embedis* e) {
  219. espurnaReload();
  220. DEBUG_MSG_P(PSTR("+OK\n"));
  221. });
  222. #endif
  223. settingsRegisterCommand(F("RESET"), [](Embedis* e) {
  224. DEBUG_MSG_P(PSTR("+OK\n"));
  225. deferredReset(100, CUSTOM_RESET_TERMINAL);
  226. });
  227. settingsRegisterCommand(F("RESET.SAFE"), [](Embedis* e) {
  228. EEPROMr.write(EEPROM_CRASH_COUNTER, SYSTEM_CHECK_MAX);
  229. DEBUG_MSG_P(PSTR("+OK\n"));
  230. deferredReset(100, CUSTOM_RESET_TERMINAL);
  231. });
  232. settingsRegisterCommand(F("UPTIME"), [](Embedis* e) {
  233. DEBUG_MSG_P(PSTR("Uptime: %d seconds\n"), getUptime());
  234. DEBUG_MSG_P(PSTR("+OK\n"));
  235. });
  236. settingsRegisterCommand(F("CONFIG"), [](Embedis* e) {
  237. DynamicJsonBuffer jsonBuffer;
  238. JsonObject& root = jsonBuffer.createObject();
  239. settingsGetJson(root);
  240. String output;
  241. root.printTo(output);
  242. DEBUG_MSG(output.c_str());
  243. DEBUG_MSG_P(PSTR("\n+OK\n"));
  244. });
  245. #if not SETTINGS_AUTOSAVE
  246. settingsRegisterCommand(F("SAVE"), [](Embedis* e) {
  247. eepromCommit();
  248. DEBUG_MSG_P(PSTR("\n+OK\n"));
  249. });
  250. #endif
  251. }
  252. // -----------------------------------------------------------------------------
  253. // Key-value API
  254. // -----------------------------------------------------------------------------
  255. void moveSetting(const char * from, const char * to) {
  256. String value = getSetting(from);
  257. if (value.length() > 0) setSetting(to, value);
  258. delSetting(from);
  259. }
  260. template<typename T> String getSetting(const String& key, T defaultValue) {
  261. String value;
  262. if (!Embedis::get(key, value)) value = String(defaultValue);
  263. return value;
  264. }
  265. template<typename T> String getSetting(const String& key, unsigned int index, T defaultValue) {
  266. return getSetting(key + String(index), defaultValue);
  267. }
  268. String getSetting(const String& key) {
  269. return getSetting(key, "");
  270. }
  271. template<typename T> bool setSetting(const String& key, T value) {
  272. return Embedis::set(key, String(value));
  273. }
  274. template<typename T> bool setSetting(const String& key, unsigned int index, T value) {
  275. return setSetting(key + String(index), value);
  276. }
  277. bool delSetting(const String& key) {
  278. return Embedis::del(key);
  279. }
  280. bool delSetting(const String& key, unsigned int index) {
  281. return delSetting(key + String(index));
  282. }
  283. bool hasSetting(const String& key) {
  284. return getSetting(key).length() != 0;
  285. }
  286. bool hasSetting(const String& key, unsigned int index) {
  287. return getSetting(key, index, "").length() != 0;
  288. }
  289. void saveSettings() {
  290. #if not SETTINGS_AUTOSAVE
  291. eepromCommit();
  292. #endif
  293. }
  294. void resetSettings() {
  295. _settingsFactoryResetCommand();
  296. }
  297. // -----------------------------------------------------------------------------
  298. // Settings
  299. // -----------------------------------------------------------------------------
  300. void settingsInject(void *data, size_t len) {
  301. _serial.inject((char *) data, len);
  302. }
  303. Stream & settingsSerial() {
  304. return (Stream &) _serial;
  305. }
  306. size_t settingsMaxSize() {
  307. size_t size = EEPROM_SIZE;
  308. if (size > SPI_FLASH_SEC_SIZE) size = SPI_FLASH_SEC_SIZE;
  309. size = (size + 3) & (~3);
  310. return size;
  311. }
  312. bool settingsRestoreJson(JsonObject& data) {
  313. // Check this is an ESPurna configuration file (must have "app":"ESPURNA")
  314. const char* app = data["app"];
  315. if (!app || strcmp(app, APP_NAME) != 0) {
  316. DEBUG_MSG_P(PSTR("[SETTING] Wrong or missing 'app' key\n"));
  317. return false;
  318. }
  319. // Clear settings
  320. bool is_backup = data["backup"];
  321. if (is_backup) {
  322. for (unsigned int i = EEPROM_DATA_END; i < SPI_FLASH_SEC_SIZE; i++) {
  323. EEPROMr.write(i, 0xFF);
  324. }
  325. }
  326. // Dump settings to memory buffer
  327. for (auto element : data) {
  328. if (strcmp(element.key, "app") == 0) continue;
  329. if (strcmp(element.key, "version") == 0) continue;
  330. if (strcmp(element.key, "backup") == 0) continue;
  331. setSetting(element.key, element.value.as<char*>());
  332. }
  333. // Persist to EEPROM
  334. saveSettings();
  335. DEBUG_MSG_P(PSTR("[SETTINGS] Settings restored successfully\n"));
  336. return true;
  337. }
  338. void settingsGetJson(JsonObject& root) {
  339. // Get sorted list of keys
  340. std::vector<String> keys = _settingsKeys();
  341. // Add the key-values to the json object
  342. for (unsigned int i=0; i<keys.size(); i++) {
  343. String value = getSetting(keys[i]);
  344. root[keys[i]] = value;
  345. }
  346. }
  347. void settingsRegisterCommand(const String& name, void (*call)(Embedis*)) {
  348. Embedis::command(name, call);
  349. };
  350. // -----------------------------------------------------------------------------
  351. // Initialization
  352. // -----------------------------------------------------------------------------
  353. void settingsSetup() {
  354. _serial.callback([](uint8_t ch) {
  355. #if TELNET_SUPPORT
  356. telnetWrite(ch);
  357. #endif
  358. #if DEBUG_SERIAL_SUPPORT
  359. DEBUG_PORT.write(ch);
  360. #endif
  361. });
  362. Embedis::dictionary( F("EEPROM"),
  363. SPI_FLASH_SEC_SIZE,
  364. [](size_t pos) -> char { return EEPROMr.read(pos); },
  365. [](size_t pos, char value) { EEPROMr.write(pos, value); },
  366. #if SETTINGS_AUTOSAVE
  367. []() { eepromCommit(); }
  368. #else
  369. []() {}
  370. #endif
  371. );
  372. _settingsInitCommands();
  373. #if TERMINAL_SUPPORT
  374. #if SERIAL_RX_ENABLED
  375. SERIAL_RX_PORT.begin(SERIAL_RX_BAUDRATE);
  376. #endif // SERIAL_RX_ENABLED
  377. #endif // TERMINAL_SUPPORT
  378. // Register loop
  379. espurnaRegisterLoop(settingsLoop);
  380. }
  381. void settingsLoop() {
  382. #if TERMINAL_SUPPORT
  383. #if DEBUG_SERIAL_SUPPORT
  384. while (DEBUG_PORT.available()) {
  385. _serial.inject(DEBUG_PORT.read());
  386. }
  387. #endif
  388. embedis.process();
  389. #if SERIAL_RX_ENABLED
  390. while (SERIAL_RX_PORT.available() > 0) {
  391. char rc = Serial.read();
  392. _serial_rx_buffer[_serial_rx_pointer++] = rc;
  393. if ((_serial_rx_pointer == TERMINAL_BUFFER_SIZE) || (rc == 10)) {
  394. settingsInject(_serial_rx_buffer, (size_t) _serial_rx_pointer);
  395. _serial_rx_pointer = 0;
  396. }
  397. }
  398. #endif // SERIAL_RX_ENABLED
  399. #endif // TERMINAL_SUPPORT
  400. }