Extract book cover utilities into BookCoverUtils

Refactors book cover and metadata handling out of Epub class into a dedicated BookCoverUtils utility. Moves FootnoteEntry struct into reader activity directory. Simplifies cache clearing to use direct storage operations instead of Epub class.
This commit is contained in:
Justin Mitchell
2026-07-08 01:31:24 -04:00
parent d364e54a69
commit 78c71f1c77
93 changed files with 276 additions and 77118 deletions
+219
View File
@@ -0,0 +1,219 @@
#include "BookCoverUtils.h"
#include <FreeInkBook.h>
#include <FsHelpers.h>
#include <HalStorage.h>
#include <JpegToBmpConverter.h>
#include <Logging.h>
#include <Memory.h>
#include <PngToBmpConverter.h>
#include <cstring>
#include "activities/reader/EpubReaderUtils.h" // cacheDirForBook
#include "activities/reader/FreeInkBookStorage.h" // SdBookSource
namespace {
using EpubReaderUtils::cacheDirForBook;
using freeink::book::Arena;
using freeink::book::Book;
using freeink::book::BookStatus;
using freeink::book::ManifestItem;
using freeink::book::ZipEntryReader;
// Container open is transient: metadata + ZIP catalog only, freed on return.
constexpr size_t kBookArenaSize = 48 * 1024;
constexpr size_t kScratchSize = 64 * 1024;
// Opens the book file's container long enough to run `fn(book, source)`.
template <typename Fn>
bool withOpenBook(const std::string& epubPath, Fn&& fn) {
auto bookBuf = makeUniqueNoThrow<uint8_t[]>(kBookArenaSize);
auto scratchBuf = makeUniqueNoThrow<uint8_t[]>(kScratchSize);
if (!bookBuf || !scratchBuf) {
LOG_ERR("COVER", "OOM: book open arenas");
return false;
}
Arena bookArena(bookBuf.get(), kBookArenaSize);
Arena scratch(scratchBuf.get(), kScratchSize);
SdBookSource source;
if (!source.open(epubPath.c_str())) {
LOG_ERR("COVER", "Cannot open: %s", epubPath.c_str());
return false;
}
Book book;
const BookStatus st = book.open(source, bookArena, scratch);
if (st != BookStatus::Ok) {
LOG_ERR("COVER", "Book open failed: %d (%s)", static_cast<int>(st), epubPath.c_str());
return false;
}
return fn(book, source, scratch);
}
const ManifestItem* findCoverItem(const Book& book) {
for (size_t m = 0; m < book.manifestCount(); ++m) {
const ManifestItem* item = book.manifestItem(m);
if (item != nullptr && item->isCoverImage) return item;
}
return nullptr;
}
bool isJpegItem(const ManifestItem& item) {
if (item.mediaType != nullptr && strcmp(item.mediaType, "image/jpeg") == 0) return true;
return FsHelpers::hasJpgExtension(std::string_view(item.href));
}
bool isPngItem(const ManifestItem& item) {
if (item.mediaType != nullptr && strcmp(item.mediaType, "image/png") == 0) return true;
return FsHelpers::hasPngExtension(std::string_view(item.href));
}
// Streams the cover entry out of the ZIP into `tempPath`.
bool extractItem(const Book& book, freeink::book::BookSource& source, Arena& scratch, const ManifestItem& item,
const std::string& tempPath) {
const freeink::book::ZipEntry* entry = book.zip().find(item.href);
if (entry == nullptr) {
LOG_ERR("COVER", "Cover entry missing: %s", item.href);
return false;
}
const size_t marked = scratch.mark();
ZipEntryReader reader;
uint8_t* buf = static_cast<uint8_t*>(scratch.alloc(4096, 1));
if (buf == nullptr || reader.open(source, *entry, scratch) != BookStatus::Ok) {
scratch.release(marked);
return false;
}
bool ok = true;
{
HalFile out;
if (!Storage.openFileForWrite("COVER", tempPath, out)) {
scratch.release(marked);
return false;
}
for (;;) {
const int32_t n = reader.read(buf, 4096);
if (n < 0) {
ok = false;
break;
}
if (n == 0) break;
if (out.write(buf, n) != static_cast<size_t>(n)) {
ok = false;
break;
}
}
// `out` closes at scope exit, before the converter reopens the path.
}
scratch.release(marked);
if (!ok) Storage.remove(tempPath.c_str());
return ok;
}
// Shared shape of both generators: extract the cover beside the output, run
// `convert(coverFile, bmpOut)`, clean up the temp, drop the output on failure.
template <typename ConvertFn>
bool generateFromCover(const std::string& epubPath, const std::string& outPath, ConvertFn&& convert,
bool* hadCoverOut) {
if (hadCoverOut != nullptr) *hadCoverOut = false;
const std::string cacheDir = cacheDirForBook(epubPath);
Storage.ensureDirectoryExists(cacheDir.c_str());
bool converted = false;
bool hadCover = false;
const bool opened = withOpenBook(epubPath, [&](Book& book, freeink::book::BookSource& source, Arena& scratch) {
const ManifestItem* cover = findCoverItem(book);
if (cover == nullptr) {
LOG_DBG("COVER", "No cover image in manifest: %s", epubPath.c_str());
return true; // opened fine, just coverless
}
const bool jpeg = isJpegItem(*cover);
const bool png = !jpeg && isPngItem(*cover);
if (!jpeg && !png) {
LOG_ERR("COVER", "Unsupported cover format: %s", cover->href);
return true;
}
hadCover = true;
const std::string tempPath = cacheDir + (jpeg ? "/.cover.jpg" : "/.cover.png");
if (!extractItem(book, source, scratch, *cover, tempPath)) return true;
{
HalFile coverFile;
HalFile bmpOut;
if (Storage.openFileForRead("COVER", tempPath, coverFile) && Storage.openFileForWrite("COVER", outPath, bmpOut)) {
converted = convert(jpeg, coverFile, bmpOut);
}
// Both close at scope exit, before the temp file is removed below.
}
Storage.remove(tempPath.c_str());
return true;
});
if (hadCoverOut != nullptr) *hadCoverOut = hadCover;
if (!converted) Storage.remove(outPath.c_str());
return opened && converted;
}
} // namespace
namespace BookCoverUtils {
std::string coverBmpPath(const std::string& epubPath, const bool cropped) {
return cacheDirForBook(epubPath) + (cropped ? "/cover_crop.bmp" : "/cover.bmp");
}
std::string thumbBmpPath(const std::string& epubPath, const int height) {
return cacheDirForBook(epubPath) + "/thumb_" + std::to_string(height) + ".bmp";
}
std::string thumbBmpPathTemplate(const std::string& epubPath) {
return cacheDirForBook(epubPath) + "/thumb_[HEIGHT].bmp";
}
bool generateCoverBmp(const std::string& epubPath, const bool cropped) {
const std::string outPath = coverBmpPath(epubPath, cropped);
if (Storage.exists(outPath.c_str())) return true;
return generateFromCover(
epubPath, outPath,
[cropped](const bool jpeg, HalFile& coverFile, HalFile& bmpOut) {
return jpeg ? JpegToBmpConverter::jpegFileToBmpStream(coverFile, bmpOut, cropped)
: PngToBmpConverter::pngFileToBmpStream(coverFile, bmpOut, cropped);
},
nullptr);
}
bool generateThumbBmp(const std::string& epubPath, const int height) {
const std::string outPath = thumbBmpPath(epubPath, height);
if (Storage.exists(outPath.c_str())) return true;
const int targetWidth = height * 6 / 10; // Continue Reading card aspect (legacy)
bool hadCover = false;
const bool ok = generateFromCover(
epubPath, outPath,
[targetWidth, height](const bool jpeg, HalFile& coverFile, HalFile& bmpOut) {
return jpeg ? JpegToBmpConverter::jpegFileTo1BitBmpStreamWithSize(coverFile, bmpOut, targetWidth, height)
: PngToBmpConverter::pngFileTo1BitBmpStreamWithSize(coverFile, bmpOut, targetWidth, height);
},
&hadCover);
if (ok) return true;
// Legacy behavior: an empty sentinel BMP stops re-generation attempts on
// every home screen visit for coverless/unsupported books.
HalFile sentinel;
Storage.openFileForWrite("COVER", outPath, sentinel);
return false;
}
bool readMetadata(const std::string& epubPath, std::string* titleOut, std::string* authorOut) {
return withOpenBook(epubPath, [&](Book& book, freeink::book::BookSource&, Arena&) {
if (titleOut != nullptr) *titleOut = book.metadata().title;
if (authorOut != nullptr) *authorOut = book.metadata().author;
return true;
});
}
} // namespace BookCoverUtils