123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import localForage from 'localforage';
- import * as utils from '../../../share/utils';
- import BookParser from './BookParser';
- const maxDataSize = 100*1024*1024;//chars, not bytes
- class BookManager {
- async init() {
- this.books = {};
- const len = await localForage.length();
- for (let i = 0; i < len; i++) {
- const key = await localForage.key(i);
- const keySplit = key.split('-');
- if (keySplit.length == 2 && keySplit[0] == 'bmMeta') {
- let meta = await localForage.getItem(key);
- this.books[meta.key] = meta;
- }
- }
- await this.cleanBooks();
- }
- async cleanBooks() {
- while (1) {// eslint-disable-line no-constant-condition
- let size = 0;
- let min = Date.now();
- let toDel = null;
- for (let key in this.books) {
- let book = this.books[key];
- size += (book.length ? book.length : 0);
- if (book.addTime < min) {
- toDel = book;
- min = book.addTime;
- }
- }
- if (size > maxDataSize && toDel) {
- await this.delBook(toDel);
- } else {
- break;
- }
- }
- }
- async addBook(newBook, callback) {
- if (!this.books)
- await this.init();
- let meta = {url: newBook.url, path: newBook.path};
- meta.key = this.keyFromUrl(meta.url);
- meta.addTime = Date.now();
- const result = await this.parseBook(meta, newBook.data, callback);
- this.books[meta.key] = result;
- await localForage.setItem(`bmMeta-${meta.key}`, this.metaOnly(result));
- await localForage.setItem(`bmData-${meta.key}`, result.data);
- return result;
- }
- hasBookParsed(meta) {
- if (!this.books)
- return false;
- if (!meta.url)
- return false;
- if (!meta.key)
- meta.key = this.keyFromUrl(meta.url);
- let book = this.books[meta.key];
- return (book && book.parsed);
- }
- async getBook(meta, callback) {
- if (!this.books)
- await this.init();
- let result = undefined;
- if (!meta.key)
- meta.key = this.keyFromUrl(meta.url);
- result = this.books[meta.key];
- if (result && !result.data) {
- result.data = await localForage.getItem(`bmData-${meta.key}`);
- this.books[meta.key] = result;
- }
- if (result && !result.parsed) {
- result = await this.parseBook(result, result.data, callback);
- this.books[meta.key] = result;
- }
- return result;
- }
- async delBook(meta) {
- if (!this.books)
- await this.init();
- await localForage.removeItem(`bmMeta-${meta.key}`);
- await localForage.removeItem(`bmData-${meta.key}`);
- delete this.books[meta.key];
- }
- async parseBook(meta, data, callback) {
- if (!this.books)
- await this.init();
- const parsed = new BookParser();
- const parsedMeta = await parsed.parse(data, callback);
- const result = Object.assign({}, meta, parsedMeta, {length: data.length, data, parsed});
- return result;
- }
- metaOnly(book) {
- let result = Object.assign({}, book);
- delete result.data;
- delete result.parsed;
- return result;
- }
- keyFromUrl(url) {
- return utils.stringToHex(url);
- }
- }
- export default new BookManager();
|