kvdb.ino 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. Key Value database
  3. This is a file system based database
  4. that uses foldername as table name,
  5. filename as key and content as value
  6. Folder name and filename are limited to
  7. 5 characters as SDFS requirements.
  8. */
  9. //Root of the db on SD card, **must have tailing slash**
  10. const String DB_root = "/db/";
  11. //Clean the input for any input string
  12. String DBCleanInput(const String& inputString) {
  13. String trimmedString = inputString;
  14. //Replae all the slash that might breaks the file system
  15. trimmedString.replace("/", "");
  16. //Trim off the space before and after the string
  17. trimmedString.trim();
  18. return trimmedString;
  19. }
  20. //Database init create all the required table for basic system operations
  21. void DBInit() {
  22. DBNewTable("auth");
  23. DBNewTable("pref");
  24. DBNewTable("user");
  25. }
  26. //Create a new Database table
  27. void DBNewTable(String tableName) {
  28. tableName = DBCleanInput(tableName);
  29. if (!SD.exists(DB_root + tableName)) {
  30. SD.mkdir(DB_root + tableName);
  31. }
  32. }
  33. //Check if a database table exists
  34. bool DBTableExists(String tableName) {
  35. tableName = DBCleanInput(tableName);
  36. return SD.exists(DB_root + tableName);
  37. }
  38. //Write a key to a table, return true if succ
  39. bool DBWrite(String tableName, String key, String value) {
  40. if (!DBTableExists(tableName)) {
  41. return false;
  42. }
  43. tableName = DBCleanInput(tableName);
  44. key = DBCleanInput(key);
  45. String fsDataPath = DB_root + tableName + "/" + key;
  46. if (SD.exists(fsDataPath)) {
  47. //Entry already exists. Delete it
  48. SD.remove(fsDataPath);
  49. }
  50. //Write new data to it
  51. File targetEntry = SD.open(fsDataPath, FILE_WRITE);
  52. targetEntry.print(value);
  53. targetEntry.close();
  54. return true;
  55. }
  56. //Read from database, require table name and key
  57. String DBRead(String tableName, String key) {
  58. if (!DBTableExists(tableName)) {
  59. return "";
  60. }
  61. tableName = DBCleanInput(tableName);
  62. key = DBCleanInput(key);
  63. String fsDataPath = DB_root + tableName + "/" + key;
  64. if (!SD.exists(fsDataPath)) {
  65. //Target not exists. Return empty string
  66. return "";
  67. }
  68. String value = "";
  69. File targetEntry = SD.open(fsDataPath, FILE_READ);
  70. while (targetEntry.available()) {
  71. value = value + targetEntry.readString();
  72. }
  73. targetEntry.close();
  74. return value;
  75. }
  76. //Check if a given key exists in the database
  77. bool DBKeyExists(String tableName, String key) {
  78. if (!DBTableExists(tableName)) {
  79. return false;
  80. }
  81. tableName = DBCleanInput(tableName);
  82. key = DBCleanInput(key);
  83. String fsDataPath = DB_root + tableName + "/" + key;
  84. return SD.exists(fsDataPath);
  85. }
  86. //Remove the key-value item from db, return true if succ
  87. bool DBRemove(String tableName, String key) {
  88. if (!DBKeyExists(tableName, key)){
  89. return false;
  90. }
  91. tableName = DBCleanInput(tableName);
  92. key = DBCleanInput(key);
  93. String fsDataPath = DB_root + tableName + "/" + key;
  94. SD.remove(fsDataPath);
  95. return true;
  96. }