Fixed recent books migration

This commit is contained in:
CaptainFrito 2026-02-03 06:24:47 +07:00
parent 8a82397a79
commit 111d4b8b16
3 changed files with 50 additions and 21 deletions

View File

@ -1,11 +1,15 @@
#include "RecentBooksStore.h" #include "RecentBooksStore.h"
#include <Epub.h>
#include <HardwareSerial.h> #include <HardwareSerial.h>
#include <SDCardManager.h> #include <SDCardManager.h>
#include <Serialization.h> #include <Serialization.h>
#include <Xtc.h>
#include <algorithm> #include <algorithm>
#include "util/StringUtils.h"
namespace { namespace {
constexpr uint8_t RECENT_BOOKS_FILE_VERSION = 3; constexpr uint8_t RECENT_BOOKS_FILE_VERSION = 3;
constexpr char RECENT_BOOKS_FILE[] = "/.crosspoint/recent.bin"; constexpr char RECENT_BOOKS_FILE[] = "/.crosspoint/recent.bin";
@ -59,6 +63,34 @@ bool RecentBooksStore::saveToFile() const {
return true; return true;
} }
RecentBook RecentBooksStore::getDataFromBook(std::string path) const {
std::string lastBookFileName = "";
const size_t lastSlash = path.find_last_of('/');
if (lastSlash != std::string::npos) {
lastBookFileName = path.substr(lastSlash + 1);
}
Serial.printf("Loading recent book: %s\n", path.c_str());
// If epub, try to load the metadata for title/author and cover
if (StringUtils::checkFileExtension(lastBookFileName, ".epub")) {
Epub epub(path, "/.crosspoint");
epub.load(false);
return RecentBook{path, epub.getTitle(), epub.getAuthor(), epub.getThumbBmpPath()};
} else if (StringUtils::checkFileExtension(lastBookFileName, ".xtch") ||
StringUtils::checkFileExtension(lastBookFileName, ".xtc")) {
// Handle XTC file
Xtc xtc(path, "/.crosspoint");
if (xtc.load()) {
return RecentBook{path, xtc.getTitle(), xtc.getAuthor(), xtc.getThumbBmpPath()};
}
} else if (StringUtils::checkFileExtension(lastBookFileName, ".txt") ||
StringUtils::checkFileExtension(lastBookFileName, ".md")) {
return RecentBook{path, lastBookFileName, "", ""};
}
return RecentBook{path, "", "", ""};
}
bool RecentBooksStore::loadFromFile() { bool RecentBooksStore::loadFromFile() {
FsFile inputFile; FsFile inputFile;
if (!SdMan.openFileForRead("RBS", RECENT_BOOKS_FILE, inputFile)) { if (!SdMan.openFileForRead("RBS", RECENT_BOOKS_FILE, inputFile)) {
@ -68,7 +100,7 @@ bool RecentBooksStore::loadFromFile() {
uint8_t version; uint8_t version;
serialization::readPod(inputFile, version); serialization::readPod(inputFile, version);
if (version != RECENT_BOOKS_FILE_VERSION) { if (version != RECENT_BOOKS_FILE_VERSION) {
if (version == 1) { if (version == 1 || version == 2) {
// Old version, just read paths // Old version, just read paths
uint8_t count; uint8_t count;
serialization::readPod(inputFile, count); serialization::readPod(inputFile, count);
@ -77,24 +109,18 @@ bool RecentBooksStore::loadFromFile() {
for (uint8_t i = 0; i < count; i++) { for (uint8_t i = 0; i < count; i++) {
std::string path; std::string path;
serialization::readString(inputFile, path); serialization::readString(inputFile, path);
// Title and author will be empty, they will be filled when the book is
// opened again // load book to get missing data
recentBooks.push_back({path, "", "", ""}); RecentBook book = getDataFromBook(path);
} if (book.title.empty() && book.author.empty() && version == 2) {
} else if (version == 2) { // Fall back to loading what we can from the store
// Old version, just read paths, titles and authors std::string title, author;
uint8_t count; serialization::readString(inputFile, title);
serialization::readPod(inputFile, count); serialization::readString(inputFile, author);
recentBooks.clear(); recentBooks.push_back({path, title, author, ""});
recentBooks.reserve(count); } else {
for (uint8_t i = 0; i < count; i++) { recentBooks.push_back(book);
std::string path, title, author; }
serialization::readString(inputFile, path);
serialization::readString(inputFile, title);
serialization::readString(inputFile, author);
// Title and author will be empty, they will be filled when the book is
// opened again
recentBooks.push_back({path, title, author, ""});
} }
} else { } else {
Serial.printf("[%lu] [RBS] Deserialization failed: Unknown version %u\n", millis(), version); Serial.printf("[%lu] [RBS] Deserialization failed: Unknown version %u\n", millis(), version);

View File

@ -36,6 +36,7 @@ class RecentBooksStore {
bool saveToFile() const; bool saveToFile() const;
bool loadFromFile(); bool loadFromFile();
RecentBook getDataFromBook(std::string path) const;
}; };
// Helper macro to access recent books store // Helper macro to access recent books store

View File

@ -58,9 +58,11 @@ void TxtReaderActivity::onEnter() {
txt->setupCacheDir(); txt->setupCacheDir();
// Save current txt as last opened file and add to recent books // Save current txt as last opened file and add to recent books
APP_STATE.openEpubPath = txt->getPath(); auto filePath = txt->getPath();
auto fileName = filePath.substr(filePath.rfind('/') + 1);
APP_STATE.openEpubPath = filePath;
APP_STATE.saveToFile(); APP_STATE.saveToFile();
RECENT_BOOKS.addBook(txt->getPath(), "", "", ""); RECENT_BOOKS.addBook(filePath, fileName, "", "");
// Trigger first update // Trigger first update
updateRequired = true; updateRequired = true;