mirror of https://github.com/kiwix/libkiwix.git
73 lines
2.0 KiB
C++
73 lines
2.0 KiB
C++
/*
|
|
* Copyright 2011 Emmanuel Engelhart <kelson@kiwix.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KIWIX_MANAGER_H
|
|
#define KIWIX_MANAGER_H
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
#include <time.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
|
|
#include <kiwix/library.h>
|
|
#include <kiwix/reader.h>
|
|
|
|
using namespace std;
|
|
|
|
namespace kiwix {
|
|
|
|
enum supportedListMode { LASTOPEN, REMOTE, LOCAL };
|
|
|
|
class Manager {
|
|
|
|
public:
|
|
Manager();
|
|
~Manager();
|
|
|
|
bool readFile(const string path, const bool readOnly = true);
|
|
bool writeFile(const string path);
|
|
bool removeBookByIndex(const unsigned int bookIndex);
|
|
bool removeBookById(const string id);
|
|
bool setCurrentBookId(const string id);
|
|
bool setBookIndex(const string id, const string path, const supportedIndexType type);
|
|
string getCurrentBookId();
|
|
bool addBookFromPath(const string path, const string url = "");
|
|
Library cloneLibrary();
|
|
bool getBookById(const string id, Book &book);
|
|
bool updateBookLastOpenDateById(const string id);
|
|
bool listBooks(const supportedListMode);
|
|
|
|
string writableLibraryPath;
|
|
|
|
vector <std::string> bookIdList;
|
|
|
|
protected:
|
|
kiwix::Library library;
|
|
|
|
bool readBookFromPath(const string path, Book &book);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|