123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718 |
- //const _ = require('lodash');
- const LockQueue = require('./LockQueue');
- const utils = require('./utils');
- const maxMemCacheSize = 100;
- const maxLimit = 1000;
- const emptyFieldValue = '?';
- const maxUtf8Char = String.fromCodePoint(0xFFFFF);
- const ruAlphabet = 'абвгдеёжзийклмнопрстуфхцчшщъыьэюя';
- const enAlphabet = 'abcdefghijklmnopqrstuvwxyz';
- const enruArr = (ruAlphabet + enAlphabet).split('');
- class DbSearcher {
- constructor(config, db) {
- this.config = config;
- this.db = db;
- this.lock = new LockQueue();
- this.searchFlag = 0;
- this.timer = null;
- this.closed = false;
- this.memCache = new Map();
- this.bookIdMap = {};
- this.periodicCleanCache();//no await
- this.fillBookIdMapAll();//no await
- }
- queryKey(q) {
- return JSON.stringify([q.author, q.series, q.title, q.genre, q.lang, q.del, q.date, q.librate]);
- }
- getWhere(a) {
- const db = this.db;
- a = a.toLowerCase();
- let where;
- //особая обработка префиксов
- if (a[0] == '=') {
- a = a.substring(1);
- where = `@dirtyIndexLR('value', ${db.esc(a)}, ${db.esc(a)})`;
- } else if (a[0] == '*') {
- a = a.substring(1);
- where = `@indexIter('value', (v) => (v !== ${db.esc(emptyFieldValue)} && v.indexOf(${db.esc(a)}) >= 0) )`;
- } else if (a[0] == '#') {
- a = a.substring(1);
- where = `@indexIter('value', (v) => {
- const enru = new Set(${db.esc(enruArr)});
- return !v || (v !== ${db.esc(emptyFieldValue)} && !enru.has(v[0]) && v.indexOf(${db.esc(a)}) >= 0);
- })`;
- } else {
- where = `@dirtyIndexLR('value', ${db.esc(a)}, ${db.esc(a + maxUtf8Char)})`;
- }
- return where;
- }
- async selectBookIds(query) {
- const db = this.db;
- const idsArr = [];
- const tableBookIds = async(table, where) => {
- const rows = await db.select({
- table,
- rawResult: true,
- where: `
- const ids = ${where};
- const result = new Set();
- for (const id of ids) {
- const row = @unsafeRow(id);
- for (const bookId of row.bookIds)
- result.add(bookId);
- }
- return Array.from(result);
- `
- });
- return rows[0].rawResult;
- };
- //авторы
- if (query.author && query.author !== '*') {
- const key = `book-ids-author-${query.author}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- ids = await tableBookIds('author', this.getWhere(query.author));
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //серии
- if (query.series && query.series !== '*') {
- const key = `book-ids-series-${query.series}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- ids = await tableBookIds('series', this.getWhere(query.series));
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //названия
- if (query.title && query.title !== '*') {
- const key = `book-ids-title-${query.title}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- ids = await tableBookIds('title', this.getWhere(query.title));
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //жанры
- if (query.genre) {
- const key = `book-ids-genre-${query.genre}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- const genreRows = await db.select({
- table: 'genre',
- rawResult: true,
- where: `
- const genres = ${db.esc(query.genre.split(','))};
- const ids = new Set();
- for (const g of genres) {
- for (const id of @indexLR('value', g, g))
- ids.add(id);
- }
-
- const result = new Set();
- for (const id of ids) {
- const row = @unsafeRow(id);
- for (const bookId of row.bookIds)
- result.add(bookId);
- }
- return Array.from(result);
- `
- });
- ids = genreRows[0].rawResult;
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //языки
- if (query.lang) {
- const key = `book-ids-lang-${query.lang}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- const langRows = await db.select({
- table: 'lang',
- rawResult: true,
- where: `
- const langs = ${db.esc(query.lang.split(','))};
- const ids = new Set();
- for (const l of langs) {
- for (const id of @indexLR('value', l, l))
- ids.add(id);
- }
-
- const result = new Set();
- for (const id of ids) {
- const row = @unsafeRow(id);
- for (const bookId of row.bookIds)
- result.add(bookId);
- }
- return Array.from(result);
- `
- });
- ids = langRows[0].rawResult;
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //удаленные
- if (query.del !== undefined) {
- const key = `book-ids-del-${query.del}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- ids = await tableBookIds('del', `@indexLR('value', ${db.esc(query.del)}, ${db.esc(query.del)})`);
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //дата поступления
- if (query.date) {
- const key = `book-ids-date-${query.date}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- let [from = '', to = ''] = query.date.split(',');
- ids = await tableBookIds('date', `@indexLR('value', ${db.esc(from)} || undefined, ${db.esc(to)} || undefined)`);
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- //оценка
- if (query.librate) {
- const key = `book-ids-librate-${query.librate}`;
- let ids = await this.getCached(key);
- if (ids === null) {
- const dateRows = await db.select({
- table: 'librate',
- rawResult: true,
- where: `
- const rates = ${db.esc(query.librate.split(',').map(n => parseInt(n, 10)).filter(n => !isNaN(n)))};
- const ids = new Set();
- for (const rate of rates) {
- for (const id of @indexLR('value', rate, rate))
- ids.add(id);
- }
-
- const result = new Set();
- for (const id of ids) {
- const row = @unsafeRow(id);
- for (const bookId of row.bookIds)
- result.add(bookId);
- }
- return Array.from(result);
- `
- });
- ids = dateRows[0].rawResult;
- await this.putCached(key, ids);
- }
- idsArr.push(ids);
- }
- if (idsArr.length > 1) {
- //ищем пересечение множеств
- let proc = 0;
- let nextProc = 0;
- let inter = new Set(idsArr[0]);
- for (let i = 1; i < idsArr.length; i++) {
- const newInter = new Set();
- for (const id of idsArr[i]) {
- if (inter.has(id))
- newInter.add(id);
- //прерываемся иногда, чтобы не блокировать Event Loop
- proc++;
- if (proc >= nextProc) {
- nextProc += 10000;
- await utils.processLoop();
- }
- }
- inter = newInter;
- }
- return Array.from(inter);
- } else if (idsArr.length == 1) {
- return idsArr[0];
- } else {
- return false;
- }
- }
- async fillBookIdMap(from) {
- if (this.bookIdMap[from])
- return this.bookIdMap[from];
- await this.lock.get();
- try {
- const db = this.db;
- const map = new Map();
- const table = `${from}_id`;
- await db.open({table});
- const rows = await db.select({table});
- await db.close({table});
- for (const row of rows) {
- if (!row.value.length)
- continue;
- if (row.value.length > 1)
- map.set(row.id, row.value);
- else
- map.set(row.id, row.value[0]);
- }
- this.bookIdMap[from] = map;
- return this.bookIdMap[from];
- } finally {
- this.lock.ret();
- }
- }
- async fillBookIdMapAll() {
- await this.fillBookIdMap('author');
- await this.fillBookIdMap('series');
- await this.fillBookIdMap('title');
- }
- async filterTableIds(tableIds, from, query) {
- let result = tableIds;
- //т.к. авторы у книги идут списком, то дополнительно фильтруем
- if (from == 'author' && query.author && query.author !== '*') {
- const key = `filter-ids-author-${query.author}`;
- let authorIds = await this.getCached(key);
- if (authorIds === null) {
- const rows = await this.db.select({
- table: 'author',
- rawResult: true,
- where: `return Array.from(${this.getWhere(query.author)})`
- });
- authorIds = rows[0].rawResult;
- await this.putCached(key, authorIds);
- }
- //пересечение tableIds и authorIds
- result = [];
- const authorIdsSet = new Set(authorIds);
- for (const id of tableIds)
- if (authorIdsSet.has(id))
- result.push(id);
- }
- return result;
- }
- async selectTableIds(from, query) {
- const db = this.db;
- const queryKey = this.queryKey(query);
- const tableKey = `${from}-table-ids-${queryKey}`;
- let tableIds = await this.getCached(tableKey);
- if (tableIds === null) {
- const bookKey = `book-ids-${queryKey}`;
- let bookIds = await this.getCached(bookKey);
- if (bookIds === null) {
- bookIds = await this.selectBookIds(query);
- await this.putCached(bookKey, bookIds);
- }
- if (bookIds) {
- const tableIdsSet = new Set();
- const bookIdMap = await this.fillBookIdMap(from);
- for (const bookId of bookIds) {
- const tableIdValue = bookIdMap.get(bookId);
- if (!tableIdValue)
- continue;
- if (Array.isArray(tableIdValue)) {
- for (const tableId of tableIdValue)
- tableIdsSet.add(tableId);
- } else
- tableIdsSet.add(tableIdValue);
- }
- tableIds = Array.from(tableIdsSet);
- } else {
- const rows = await db.select({
- table: from,
- rawResult: true,
- where: `return Array.from(@all())`
- });
- tableIds = rows[0].rawResult;
- }
- tableIds = await this.filterTableIds(tableIds, from, query);
- tableIds.sort((a, b) => a - b);
- await this.putCached(tableKey, tableIds);
- }
- return tableIds;
- }
- async restoreBooks(from, ids) {
- const db = this.db;
- const bookTable = `${from}_book`;
- const rows = await db.select({
- table: bookTable,
- where: `@@id(${db.esc(ids)})`
- });
- if (rows.length == ids.length)
- return rows;
- //далее восстановим книги из book в <from>_book
- const idsSet = new Set(rows.map(r => r.id));
- //недостающие
- const tableIds = [];
- for (const id of ids) {
- if (!idsSet.has(id))
- tableIds.push(id);
- }
- const tableRows = await db.select({
- table: from,
- where: `@@id(${db.esc(tableIds)})`
- });
- //список недостающих bookId
- const bookIds = [];
- for (const row of tableRows) {
- for (const bookId of row.bookIds)
- bookIds.push(bookId);
- }
- //выбираем книги
- const books = await db.select({
- table: 'book',
- where: `@@id(${db.esc(bookIds)})`
- });
- const booksMap = new Map();
- for (const book of books)
- booksMap.set(book.id, book);
- //распределяем
- for (const row of tableRows) {
- const books = [];
- for (const bookId of row.bookIds) {
- const book = booksMap.get(bookId);
- if (book)
- books.push(book);
- }
- rows.push({id: row.id, name: row.name, books});
- }
- await db.insert({table: bookTable, ignore: true, rows});
- return rows;
- }
- async search(from, query) {
- if (this.closed)
- throw new Error('DbSearcher closed');
- if (!['author', 'series', 'title'].includes(from))
- throw new Error(`Unknown value for param 'from'`);
- this.searchFlag++;
- try {
- const db = this.db;
- const ids = await this.selectTableIds(from, query);
- const totalFound = ids.length;
- let limit = (query.limit ? query.limit : 100);
- limit = (limit > maxLimit ? maxLimit : limit);
- const offset = (query.offset ? query.offset : 0);
- //выборка найденных значений
- const found = await db.select({
- table: from,
- map: `(r) => ({id: r.id, ${from}: r.name, bookCount: r.bookCount, bookDelCount: r.bookDelCount})`,
- where: `@@id(${db.esc(ids.slice(offset, offset + limit))})`
- });
- //для title восстановим books
- if (from == 'title') {
- const bookIds = found.map(r => r.id);
- const rows = await this.restoreBooks(from, bookIds);
- const rowsMap = new Map();
- for (const row of rows)
- rowsMap.set(row.id, row);
- for (const f of found) {
- const b = rowsMap.get(f.id);
- if (b)
- f.books = b.books;
- }
- }
- return {found, totalFound};
- } finally {
- this.searchFlag--;
- }
- }
- async getAuthorBookList(authorId) {
- if (this.closed)
- throw new Error('DbSearcher closed');
- if (!authorId)
- return {author: '', books: ''};
- this.searchFlag++;
- try {
- //выборка книг автора по authorId
- const rows = await this.restoreBooks('author', [authorId])
- let author = '';
- let books = '';
- if (rows.length) {
- author = rows[0].name;
- books = rows[0].books;
- }
- return {author, books: (books && books.length ? JSON.stringify(books) : '')};
- } finally {
- this.searchFlag--;
- }
- }
- async getSeriesBookList(series) {
- if (this.closed)
- throw new Error('DbSearcher closed');
- if (!series)
- return {books: ''};
- this.searchFlag++;
- try {
- const db = this.db;
- series = series.toLowerCase();
- //выборка серии по названию серии
- let rows = await db.select({
- table: 'series',
- rawResult: true,
- where: `return Array.from(@dirtyIndexLR('value', ${db.esc(series)}, ${db.esc(series)}))`
- });
- let books;
- if (rows.length && rows[0].rawResult.length) {
- //выборка книг серии
- const bookRows = await this.restoreBooks('series', [rows[0].rawResult[0]])
- if (bookRows.length)
- books = bookRows[0].books;
- }
- return {books: (books && books.length ? JSON.stringify(books) : '')};
- } finally {
- this.searchFlag--;
- }
- }
- async getCached(key) {
- if (!this.config.queryCacheEnabled)
- return null;
- let result = null;
- const db = this.db;
- const memCache = this.memCache;
- if (memCache.has(key)) {//есть в недавних
- result = memCache.get(key);
- //изменим порядок ключей, для последующей правильной чистки старых
- memCache.delete(key);
- memCache.set(key, result);
- } else {//смотрим в таблице
- const rows = await db.select({table: 'query_cache', where: `@@id(${db.esc(key)})`});
- if (rows.length) {//нашли в кеше
- await db.insert({
- table: 'query_time',
- replace: true,
- rows: [{id: key, time: Date.now()}],
- });
- result = rows[0].value;
- memCache.set(key, result);
- if (memCache.size > maxMemCacheSize) {
- //удаляем самый старый ключ-значение
- for (const k of memCache.keys()) {
- memCache.delete(k);
- break;
- }
- }
- }
- }
- return result;
- }
- async putCached(key, value) {
- if (!this.config.queryCacheEnabled)
- return;
- const db = this.db;
- const memCache = this.memCache;
- memCache.set(key, value);
- if (memCache.size > maxMemCacheSize) {
- //удаляем самый старый ключ-значение
- for (const k of memCache.keys()) {
- memCache.delete(k);
- break;
- }
- }
- //кладем в таблицу асинхронно
- (async() => {
- try {
- await db.insert({
- table: 'query_cache',
- replace: true,
- rows: [{id: key, value}],
- });
- await db.insert({
- table: 'query_time',
- replace: true,
- rows: [{id: key, time: Date.now()}],
- });
- } catch(e) {
- console.error(`putCached: ${e.message}`);
- }
- })();
- }
- async periodicCleanCache() {
- this.timer = null;
- const cleanInterval = this.config.cacheCleanInterval*60*1000;
- if (!cleanInterval)
- return;
- try {
- const db = this.db;
- const oldThres = Date.now() - cleanInterval;
- //выберем всех кандидатов на удаление
- const rows = await db.select({
- table: 'query_time',
- where: `
- @@iter(@all(), (r) => (r.time < ${db.esc(oldThres)}));
- `
- });
- const ids = [];
- for (const row of rows)
- ids.push(row.id);
- //удаляем
- await db.delete({table: 'query_cache', where: `@@id(${db.esc(ids)})`});
- await db.delete({table: 'query_time', where: `@@id(${db.esc(ids)})`});
-
- //console.log('Cache clean', ids);
- } catch(e) {
- console.error(e.message);
- } finally {
- if (!this.closed) {
- this.timer = setTimeout(() => { this.periodicCleanCache(); }, cleanInterval);
- }
- }
- }
- async close() {
- while (this.searchFlag > 0) {
- await utils.sleep(50);
- }
- this.searchCache = null;
- if (this.timer) {
- clearTimeout(this.timer);
- this.timer = null;
- }
- this.closed = true;
- }
- }
- module.exports = DbSearcher;
|