Compare commits
15 Commits
docker
...
Новые-табл
| Author | SHA1 | Date | |
|---|---|---|---|
| 7406bcec21 | |||
| b4fa718be6 | |||
| 78b01bc0b1 | |||
| b993116e09 | |||
| 4568ef65db | |||
| c151fdd8d1 | |||
| d01c789b06 | |||
| 34fcabc04e | |||
| 89b43f5aad | |||
| 8cb56837f5 | |||
| 96bdf1e5e8 | |||
| 0198f6d022 | |||
| 905dd309d0 | |||
| 65059351f7 | |||
| 594b3a936f |
6
.gitmodules
vendored
6
.gitmodules
vendored
@@ -1,3 +1,9 @@
|
|||||||
[submodule "redkbuild"]
|
[submodule "redkbuild"]
|
||||||
path = redkbuild
|
path = redkbuild
|
||||||
url = git@gitea.redkit-lab.work:redkit-lab/redkbuild.git
|
url = git@gitea.redkit-lab.work:redkit-lab/redkbuild.git
|
||||||
|
[submodule "redkitty"]
|
||||||
|
path = redkitty
|
||||||
|
url = git@gitea.redkit-lab.work:redkit-lab/redkitty.git
|
||||||
|
[submodule "external_libs/quazip"]
|
||||||
|
path = external_libs/quazip
|
||||||
|
url = https://github.com/stachenov/quazip.git
|
||||||
|
|||||||
34
external_libs/quazip.qbs
Normal file
34
external_libs/quazip.qbs
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
import qbs
|
||||||
|
|
||||||
|
PSLibrary {
|
||||||
|
name: "quazip"
|
||||||
|
|
||||||
|
property string quazipPath: path + "/quazip" // Путь к исходникам QuaZip
|
||||||
|
property string noname: {
|
||||||
|
console.error("noname" + exportedIncludePaths)
|
||||||
|
return "noname"
|
||||||
|
}
|
||||||
|
|
||||||
|
Depends { name: "zlib" }
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "h"
|
||||||
|
id: qh
|
||||||
|
files: [
|
||||||
|
quazipPath + "/quazip/*.h",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "cpp"
|
||||||
|
files: [
|
||||||
|
quazipPath + "/quazip/*.cpp",
|
||||||
|
quazipPath + "/quazip/*.c"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
// Export {
|
||||||
|
// Depends { name:"cpp" }
|
||||||
|
// cpp.includePaths: qh
|
||||||
|
// }
|
||||||
|
}
|
||||||
8
prerequisites/qbs/imports/SQLiteArtifactsExport.qbs
Normal file
8
prerequisites/qbs/imports/SQLiteArtifactsExport.qbs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
import qbs
|
||||||
|
|
||||||
|
Export {
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
Depends { name: "rsc.sqlite.settings" }
|
||||||
|
|
||||||
|
rsc.sqlite.settings.includeRegexValues: exportingProduct.includeRegexValue
|
||||||
|
}
|
||||||
53
prerequisites/qbs/modules/karchive/karchive.qbs
Normal file
53
prerequisites/qbs/modules/karchive/karchive.qbs
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
import qbs
|
||||||
|
|
||||||
|
Module {
|
||||||
|
id: karchive
|
||||||
|
|
||||||
|
readonly property string karchive_path: project.sourceDirectory + "/external_libs/karchive"
|
||||||
|
readonly property string libKF5ArchivePath: karchive.karchive_path + "/lib"
|
||||||
|
+ (qbs.buildVariant == "release" ? "/Release" : "/Debug")
|
||||||
|
property bool installFiles: true
|
||||||
|
|
||||||
|
Depends { name: "glob" }
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
Depends { name: "zlib" }
|
||||||
|
|
||||||
|
Properties
|
||||||
|
{
|
||||||
|
condition: qbs.targetOS.contains("linux") || qbs.targetOS.contains("astra")
|
||||||
|
cpp.includePaths: [ karchive.karchive_path + "/include/lin" ]
|
||||||
|
cpp.libraryPaths: [ karchive.libKF5ArchivePath + "/lin" ]
|
||||||
|
cpp.dynamicLibraries: "KF5Archive"
|
||||||
|
}
|
||||||
|
|
||||||
|
Properties {
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
cpp.includePaths: [ karchive.karchive_path + "/include/win" ]
|
||||||
|
cpp.libraryPaths: [ karchive.libKF5ArchivePath + "/win" ]
|
||||||
|
cpp.dynamicLibraries: "KF5Archive"
|
||||||
|
}
|
||||||
|
|
||||||
|
InstallGroup {
|
||||||
|
name: "karchive_lin"
|
||||||
|
condition: qbs.targetOS.contains("linux") || qbs.targetOS.contains("astra")
|
||||||
|
files: [
|
||||||
|
karchive.libKF5ArchivePath + "/lin/libKF5Archive.so",
|
||||||
|
karchive.libKF5ArchivePath + "/lin/libKF5Archive.so.5",
|
||||||
|
karchive.libKF5ArchivePath + "/lin/libKF5Archive.so.5.108.0"
|
||||||
|
]
|
||||||
|
qbs.install: karchive.installFiles
|
||||||
|
qbs.installDir: glob.binInstallPrefix
|
||||||
|
}
|
||||||
|
|
||||||
|
InstallGroup {
|
||||||
|
name: "karchive_win"
|
||||||
|
condition: qbs.targetOS.contains("windows")
|
||||||
|
files: [
|
||||||
|
karchive.libKF5ArchivePath + "/win/KF5Archive.dll",
|
||||||
|
karchive.libKF5ArchivePath + "/win/KF5Archive.lib"
|
||||||
|
]
|
||||||
|
qbs.install: karchive.installFiles
|
||||||
|
qbs.installDir: glob.binInstallPrefix
|
||||||
|
}
|
||||||
|
zlib.installFiles: true
|
||||||
|
}
|
||||||
17
project.qbs
17
project.qbs
@@ -3,16 +3,23 @@ import qbs
|
|||||||
Project {
|
Project {
|
||||||
name: "opds++"
|
name: "opds++"
|
||||||
qbsSearchPaths: [
|
qbsSearchPaths: [
|
||||||
"redkbuild"
|
"redkitty/qbs",
|
||||||
|
"redkbuild",
|
||||||
|
"redkitty/lib/redkit-gen-integration/qbs",
|
||||||
|
"prerequisites/qbs",
|
||||||
]
|
]
|
||||||
|
|
||||||
references: [
|
references: [
|
||||||
|
"redkitty/lib/rsc/libs_impl/rdbaseimpl/rdbaseimpl.qbs",
|
||||||
|
"redkitty/lib/rcore/rcore.qbs",
|
||||||
|
|
||||||
"src/cpp-opds.qbs",
|
"src/cpp-opds.qbs",
|
||||||
"src/database/database.qbs",
|
"src/database/database.qbs",
|
||||||
"src/restapi/restapi.qbs",
|
|
||||||
"src/model/model.qbs",
|
"src/model/model.qbs",
|
||||||
"src/repositories/repositories.qbs",
|
"src/restapi/restapi.qbs",
|
||||||
"src/services/services.qbs",
|
"src/utils/utils.qbs",
|
||||||
"src/sql_builder/sql_builder.qbs",
|
"src/repository/repository.qbs",
|
||||||
|
|
||||||
|
"external_libs/quazip.qbs",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Submodule redkbuild updated: 9f3a81cc23...3adf92aad6
1
redkitty
Submodule
1
redkitty
Submodule
Submodule redkitty added at 47579f9e2e
@@ -1,22 +1,31 @@
|
|||||||
/*!
|
/*!
|
||||||
\qmltype cpp-opds
|
\qmltype cpp-opds
|
||||||
\inherits Application
|
\inherits Project
|
||||||
\brief Описание
|
\brief Описание
|
||||||
*/
|
*/
|
||||||
PSApplication {
|
PSApplication {
|
||||||
|
// CppApplication {
|
||||||
cpp.defines: [
|
cpp.defines: [
|
||||||
// You can make your code fail to compile if it uses deprecated APIs.
|
// You can make your code fail to compile if it uses deprecated APIs.
|
||||||
// In order to do so, uncomment the following line.
|
// In order to do so, uncomment the following line.
|
||||||
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
||||||
"DATABASE_SQLITE"]
|
"DATABASE_SQLITE"
|
||||||
|
]
|
||||||
consoleApplication: true
|
consoleApplication: true
|
||||||
|
|
||||||
// Depends { name: "Qt"; submodules: [ "core", "sql", "network" ] }
|
|
||||||
Depends { name: "Qt"; submodules: [ "core", "sql", "network" ] }
|
Depends { name: "Qt"; submodules: [ "core", "sql", "network" ] }
|
||||||
Depends { name: "cpp" }
|
Depends { name: "cpp" }
|
||||||
Depends { name: "database" }
|
Depends { name: "database" }
|
||||||
Depends { name: "services" }
|
Depends { name: "odb.gen" }
|
||||||
|
Depends { name: "sqlite3" }
|
||||||
Depends { name: "restapi" }
|
Depends { name: "restapi" }
|
||||||
|
Depends { name: "redkit_gen" }
|
||||||
|
Depends { name: "rdbase" }
|
||||||
|
Depends { name: "model" }
|
||||||
|
Depends { name: "quazip" }
|
||||||
|
Depends { name: "utils" }
|
||||||
|
|
||||||
|
cpp.cxxLanguageVersion: "c++20"
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "cpp"
|
name: "cpp"
|
||||||
@@ -24,4 +33,13 @@ PSApplication {
|
|||||||
"main.cpp",
|
"main.cpp",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
} // Application
|
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"odb-sqlite",
|
||||||
|
"odb-qt",
|
||||||
|
"odb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
|
|
||||||
|
// }
|
||||||
|
} // Project
|
||||||
|
|||||||
105
src/database/database.hxx
Normal file
105
src/database/database.hxx
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
// file : hello/database.hxx
|
||||||
|
// copyright : not copyrighted - public domain
|
||||||
|
|
||||||
|
//
|
||||||
|
// Create concrete database instance based on the DATABASE_* macros.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef DATABASE_HXX
|
||||||
|
#define DATABASE_HXX
|
||||||
|
|
||||||
|
#include <cstdlib> // std::exit
|
||||||
|
#include <iostream>
|
||||||
|
#include <memory> // std::unique_ptr
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include <filesystem>
|
||||||
|
|
||||||
|
#include "database_utils.h"
|
||||||
|
|
||||||
|
inline uDBase openDB(const std::string path_db)
|
||||||
|
{
|
||||||
|
// Открыть БД, если она существует
|
||||||
|
auto db_ptr = new oDBase(path_db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
|
||||||
|
|
||||||
|
if (std::filesystem::is_regular_file(path_db))
|
||||||
|
return uDBase(db_ptr);
|
||||||
|
|
||||||
|
// И создать новую, если не существует
|
||||||
|
uDBase db(db_ptr);
|
||||||
|
|
||||||
|
odb::connection_ptr connect_ptr(db->connection());
|
||||||
|
|
||||||
|
connect_ptr->execute("PRAGMA foreign_keys=OFF");
|
||||||
|
|
||||||
|
odb::transaction tans(db->begin());
|
||||||
|
odb::schema_catalog::create_schema(*db);
|
||||||
|
tans.commit();
|
||||||
|
|
||||||
|
connect_ptr->execute("PRAGMA foreign_keys=ON");
|
||||||
|
|
||||||
|
return db;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline std::unique_ptr<odb::database> create_database(int& argc, char* argv[])
|
||||||
|
{
|
||||||
|
using namespace std;
|
||||||
|
using namespace odb::core;
|
||||||
|
|
||||||
|
if (argc > 1 && argv[1] == string("--help"))
|
||||||
|
{
|
||||||
|
cout << "Usage: " << argv[0] << " [options]" << endl
|
||||||
|
<< "Options:" << endl;
|
||||||
|
|
||||||
|
#if defined(DATABASE_MYSQL)
|
||||||
|
odb::mysql::database::print_usage(cout);
|
||||||
|
#elif defined(DATABASE_SQLITE)
|
||||||
|
odb::sqlite::database::print_usage(cout);
|
||||||
|
#elif defined(DATABASE_PGSQL)
|
||||||
|
odb::pgsql::database::print_usage(cout);
|
||||||
|
#elif defined(DATABASE_ORACLE)
|
||||||
|
odb::oracle::database::print_usage(cout);
|
||||||
|
#elif defined(DATABASE_MSSQL)
|
||||||
|
odb::mssql::database::print_usage(cout);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
#if defined(DATABASE_MYSQL)
|
||||||
|
unique_ptr<database> db(new odb::mysql::database(argc, argv));
|
||||||
|
#elif defined(DATABASE_SQLITE)
|
||||||
|
|
||||||
|
unique_ptr<database> db(new odb::sqlite::database(argc,
|
||||||
|
argv,
|
||||||
|
false,
|
||||||
|
SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE));
|
||||||
|
|
||||||
|
// Create the database schema. Due to bugs in SQLite foreign key
|
||||||
|
// support for DDL statements, we need to temporarily disable
|
||||||
|
// foreign keys.
|
||||||
|
//
|
||||||
|
{
|
||||||
|
connection_ptr connect_ptr(db->connection());
|
||||||
|
|
||||||
|
connect_ptr->execute("PRAGMA foreign_keys=OFF");
|
||||||
|
|
||||||
|
transaction tans(connect_ptr->begin());
|
||||||
|
schema_catalog::create_schema(*db);
|
||||||
|
tans.commit();
|
||||||
|
|
||||||
|
connect_ptr->execute("PRAGMA foreign_keys=ON");
|
||||||
|
}
|
||||||
|
#elif defined(DATABASE_PGSQL)
|
||||||
|
unique_ptr<database> db(new odb::pgsql::database(argc, argv));
|
||||||
|
#elif defined(DATABASE_ORACLE)
|
||||||
|
unique_ptr<database> db(new odb::oracle::database(argc, argv));
|
||||||
|
#elif defined(DATABASE_MSSQL)
|
||||||
|
unique_ptr<database> db(
|
||||||
|
new odb::mssql::database(argc, argv, false, "TrustServerCertificate=yes"));
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return db;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // DATABASE_HXX
|
||||||
@@ -1,16 +1,42 @@
|
|||||||
import qbs
|
/*!
|
||||||
|
\qmltype cpp-opds
|
||||||
|
\inherits Project
|
||||||
|
\brief Описание
|
||||||
|
*/
|
||||||
PSLibrary {
|
PSLibrary {
|
||||||
Depends { name: "Qt"; submodules: "sql"}
|
cpp.defines: [
|
||||||
|
// You can make your code fail to compile if it uses deprecated APIs.
|
||||||
|
// In order to do so, uncomment the following line.
|
||||||
|
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
"DATABASE_SQLITE",
|
||||||
|
"DATABASE_LIBRARY"
|
||||||
|
]
|
||||||
|
|
||||||
|
Depends { name: "Qt"; submodules: [ "core", "network" ] }
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
|
||||||
|
Depends { name: "odb.gen" }
|
||||||
|
Depends { name: "rdbase" }
|
||||||
Depends { name: "model" }
|
Depends { name: "model" }
|
||||||
Depends { name: "sql_builder" }
|
|
||||||
|
Depends { name: "redkit_gen" }
|
||||||
|
|
||||||
|
odb.gen.databases: "sqlite"
|
||||||
|
cpp.cxxLanguageVersion: "c++17"
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "cpp"
|
name: "cpp"
|
||||||
files: [
|
files: [
|
||||||
"**/*.h",
|
"**/*.h",
|
||||||
"**/*.cpp"
|
"**/*.hxx",
|
||||||
|
"**/*.cpp",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"odb-sqlite",
|
||||||
|
"odb-qt",
|
||||||
|
"odb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
12
src/database/database_global.h
Normal file
12
src/database/database_global.h
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#ifndef DATABASE_GLOBAL_H
|
||||||
|
#define DATABASE_GLOBAL_H
|
||||||
|
|
||||||
|
#include <QtCore/qglobal.h>
|
||||||
|
|
||||||
|
#if defined(DATABASE_LIBRARY)
|
||||||
|
#define DATABASE_EXPORT Q_DECL_EXPORT
|
||||||
|
#else
|
||||||
|
#define DATABASE_EXPORT Q_DECL_IMPORT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // DATABASE_GLOBAL_H
|
||||||
55
src/database/database_utils.cpp
Normal file
55
src/database/database_utils.cpp
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
#include "database_utils.h"
|
||||||
|
|
||||||
|
void addBook(oDBase& db, const QString title, const QVector<QString>& authors)
|
||||||
|
{
|
||||||
|
odb::transaction t(db.begin());
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// 1. Создаем/получаем книгу
|
||||||
|
auto books = db.query<Book_S>(odb::query<Book_S>::title == title);
|
||||||
|
SH<Book_S> book;
|
||||||
|
|
||||||
|
if (books.empty())
|
||||||
|
{
|
||||||
|
book = SH<Book_S>::create();
|
||||||
|
book->setTitle(title);
|
||||||
|
|
||||||
|
db.persist(book);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
book = books.begin().load(); // Берем первую найденную книгу
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Обрабатываем авторов
|
||||||
|
for (const auto& name : authors)
|
||||||
|
{
|
||||||
|
auto authors = db.query<Author_S>(odb::query<Author_S>::fullName == name);
|
||||||
|
SH<Author_S> author = authors.empty() ? SH<Author_S>::create() : authors.begin().load();
|
||||||
|
|
||||||
|
if (authors.empty())
|
||||||
|
{
|
||||||
|
author->setFullName(name);
|
||||||
|
db.persist(author);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Проверяем и создаем связь
|
||||||
|
|
||||||
|
auto links = db.query<AuthorBook_S>(
|
||||||
|
odb::query<AuthorBook_S>::author->id == author->id()
|
||||||
|
&& odb::query<AuthorBook_S>::book->id == book->id());
|
||||||
|
|
||||||
|
if (links.empty())
|
||||||
|
{
|
||||||
|
db.persist(SH<AuthorBook_S>::create(author, book));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
t.rollback();
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
38
src/database/database_utils.h
Normal file
38
src/database/database_utils.h
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
#include <QDebug>
|
||||||
|
#include <QString>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
|
||||||
|
#if defined(DATABASE_MYSQL)
|
||||||
|
#include <odb/mysql/database.hxx>
|
||||||
|
#elif defined(DATABASE_SQLITE)
|
||||||
|
#include <odb/connection.hxx>
|
||||||
|
#include <odb/schema-catalog.hxx>
|
||||||
|
#include <odb/sqlite/database.hxx>
|
||||||
|
#include <odb/transaction.hxx>
|
||||||
|
#elif defined(DATABASE_PGSQL)
|
||||||
|
#include <odb/pgsql/database.hxx>
|
||||||
|
#elif defined(DATABASE_ORACLE)
|
||||||
|
#include <odb/oracle/database.hxx>
|
||||||
|
#elif defined(DATABASE_MSSQL)
|
||||||
|
#include <odb/mssql/database.hxx>
|
||||||
|
#else
|
||||||
|
#error unknown database; did you forget to define the DATABASE_* macros?
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <rcore/smarttypes.h>
|
||||||
|
|
||||||
|
#include "database_global.h"
|
||||||
|
|
||||||
|
using oDBase = odb::sqlite::database;
|
||||||
|
using uDBase = U<oDBase>;
|
||||||
|
|
||||||
|
#include <model/books/author_book_s-odb.hxx>
|
||||||
|
#include <model/books/author_book_s.h>
|
||||||
|
#include <model/books/author_s-odb.hxx>
|
||||||
|
#include <model/books/author_s.h>
|
||||||
|
#include <model/books/book_s-odb.hxx>
|
||||||
|
#include <model/books/book_s.h>
|
||||||
|
|
||||||
|
void DATABASE_EXPORT addBook(oDBase& db, const QString title, const QVector<QString>& authors);
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
#include "databasemanager.h"
|
|
||||||
|
|
||||||
#include <model/author.h>
|
|
||||||
#include <model/book.h>
|
|
||||||
|
|
||||||
DatabaseManager::DatabaseManager() {}
|
|
||||||
|
|
||||||
DatabaseManager::~DatabaseManager()
|
|
||||||
{
|
|
||||||
if (db.isOpen())
|
|
||||||
db.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
DatabaseManager& DatabaseManager::instance()
|
|
||||||
{
|
|
||||||
static DatabaseManager instance;
|
|
||||||
return instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool DatabaseManager::connect(const QString& dbPath)
|
|
||||||
{
|
|
||||||
db = QSqlDatabase::addDatabase("QSQLITE");
|
|
||||||
db.setDatabaseName(dbPath);
|
|
||||||
return db.open();
|
|
||||||
}
|
|
||||||
|
|
||||||
QSqlDatabase& DatabaseManager::database()
|
|
||||||
{
|
|
||||||
return db;
|
|
||||||
}
|
|
||||||
|
|
||||||
void DatabaseManager::initializeDatabase()
|
|
||||||
{
|
|
||||||
QSqlQuery query;
|
|
||||||
|
|
||||||
query.exec(model::createTableBook());
|
|
||||||
query.exec(model::createTableAuthor());
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
#ifndef DATABASEMANAGER_H
|
|
||||||
#define DATABASEMANAGER_H
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
#include <QtSql>
|
|
||||||
|
|
||||||
class Q_DECL_EXPORT DatabaseManager
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static DatabaseManager& instance();
|
|
||||||
bool connect(const QString& dbPath);
|
|
||||||
QSqlDatabase& database();
|
|
||||||
void initializeDatabase();
|
|
||||||
|
|
||||||
private:
|
|
||||||
DatabaseManager();
|
|
||||||
~DatabaseManager();
|
|
||||||
QSqlDatabase db;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // DATABASEMANAGER_H
|
|
||||||
165
src/main.cpp
165
src/main.cpp
@@ -1,55 +1,145 @@
|
|||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
|
|
||||||
|
#include <QDataStream>
|
||||||
|
#include <QPointer>
|
||||||
|
#include <QSharedPointer>
|
||||||
|
#include <QString>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
#include <restapi/restapiserver.h>
|
#include <restapi/restapiserver.h>
|
||||||
|
|
||||||
#include <database/databasemanager.h>
|
/* Опыты с odb */
|
||||||
|
#include <database/database.hxx> // create_database
|
||||||
|
#include <database/database_utils.h>
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
|
||||||
#include <services/author_service.h>
|
#include <iostream>
|
||||||
#include <services/book_service.h>
|
|
||||||
|
|
||||||
#include <QDebug>
|
#include <utils/fb2extractor.h>
|
||||||
|
#include <utils/zipwrapper.h>
|
||||||
|
|
||||||
|
void fillBooksBD(uDBase& db)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
QVector<Author_S> authors = {
|
||||||
|
Author_S("George Orwell"),
|
||||||
|
Author_S("J.K. Rowling"),
|
||||||
|
Author_S("J.R.R. Tolkien"),
|
||||||
|
Author_S("Leo Tolstoy"),
|
||||||
|
Author_S("Fyodor Dostoevsky"),
|
||||||
|
Author_S("Mark Twain"),
|
||||||
|
Author_S("Charles Dickens"),
|
||||||
|
Author_S("Virginia Woolf"),
|
||||||
|
Author_S("Ernest Hemingway"),
|
||||||
|
Author_S("Gabriel García Márquez"),
|
||||||
|
Author_S("Franz Kafka"),
|
||||||
|
Author_S("Harper Lee"),
|
||||||
|
Author_S("William Shakespeare"),
|
||||||
|
Author_S("Oscar Wilde"),
|
||||||
|
Author_S("Aldous Huxley"),
|
||||||
|
Author_S("Jane Austen"),
|
||||||
|
Author_S("John Steinbeck"),
|
||||||
|
Author_S("Agatha Christie"),
|
||||||
|
Author_S("Isaac Asimov"),
|
||||||
|
};
|
||||||
|
|
||||||
|
addBook(*db, "Очень странная книжка", { "Автор 1", "Автор 2", "Авторк 3" });
|
||||||
|
|
||||||
|
addBook(*db, "1984", { authors[0].fullName() });
|
||||||
|
addBook(*db, "Harry Potter and the Philosopher's Stone", { authors[1].fullName() });
|
||||||
|
addBook(*db, "The Hobbit", { authors[2].fullName() });
|
||||||
|
addBook(*db, "War and Peace", { authors[3].fullName() });
|
||||||
|
addBook(*db, "Crime and Punishment", { authors[4].fullName() });
|
||||||
|
addBook(*db, "Adventures of Huckleberry Finn", { authors[5].fullName() });
|
||||||
|
addBook(*db, "A Tale of Two Cities", { authors[6].fullName() });
|
||||||
|
addBook(*db, "Mrs. Dalloway", { authors[7].fullName() });
|
||||||
|
addBook(*db, "The Old Man and the Sea", { authors[8].fullName() });
|
||||||
|
addBook(*db, "One Hundred Years of Solitude", { authors[9].fullName() });
|
||||||
|
addBook(*db, "The Trial", { authors[10].fullName() });
|
||||||
|
addBook(*db, "To Kill a Mockingbird", { authors[11].fullName() });
|
||||||
|
addBook(*db, "Macbeth", { authors[12].fullName() });
|
||||||
|
addBook(*db, "The Picture of Dorian Gray", { authors[13].fullName() });
|
||||||
|
addBook(*db, "Brave New World", { authors[14].fullName() });
|
||||||
|
addBook(*db, "Pride and Prejudice", { authors[15].fullName() });
|
||||||
|
addBook(*db, "The Brothers Karamazov", { authors[4].fullName() });
|
||||||
|
addBook(*db, "The Grapes of Wrath", { authors[16].fullName() });
|
||||||
|
addBook(*db, "Murder on the Orient Express", { authors[17].fullName() });
|
||||||
|
addBook(*db, "I, Robot", { authors[18].fullName() });
|
||||||
|
addBook(*db, "Animal Farm", { authors[0].fullName() });
|
||||||
|
addBook(*db, "Harry Potter and the Chamber of Secrets", { authors[1].fullName() });
|
||||||
|
addBook(*db, "The Lord of the Rings: The Fellowship of the Ring", { authors[2].fullName() });
|
||||||
|
addBook(*db, "Anna Karenina", { authors[3].fullName() });
|
||||||
|
addBook(*db, "The Idiot", { authors[4].fullName() });
|
||||||
|
addBook(*db, "The Adventures of Tom Sawyer", { authors[5].fullName() });
|
||||||
|
addBook(*db, "Oliver Twist", { authors[6].fullName() });
|
||||||
|
addBook(*db, "To the Lighthouse", { authors[7].fullName() });
|
||||||
|
addBook(*db, "For Whom the Bell Tolls", { authors[8].fullName() });
|
||||||
|
addBook(*db, "Love in the Time of Cholera", { authors[9].fullName() });
|
||||||
|
addBook(*db, "The Metamorphosis", { authors[10].fullName() });
|
||||||
|
addBook(*db, "Go Set a Watchman", { authors[11].fullName() });
|
||||||
|
addBook(*db, "King Lear", { authors[12].fullName() });
|
||||||
|
addBook(*db, "The Importance of Being Earnest", { authors[13].fullName() });
|
||||||
|
addBook(*db, "Brave New World Revisited", { authors[14].fullName() });
|
||||||
|
addBook(*db, "Emma", { authors[15].fullName() });
|
||||||
|
addBook(*db, "The Double", { authors[4].fullName() });
|
||||||
|
addBook(*db, "Of Mice and Men", { authors[16].fullName() });
|
||||||
|
addBook(*db, "And Then There Were None", { authors[17].fullName() });
|
||||||
|
addBook(*db, "The Foundation Trilogy", { authors[18].fullName() });
|
||||||
|
addBook(*db, "Down and Out in Paris and London", { authors[0].fullName() });
|
||||||
|
addBook(*db, "Harry Potter and the Prisoner of Azkaban", { authors[1].fullName() });
|
||||||
|
addBook(*db, "The Lord of the Rings: The Two Towers", { authors[2].fullName() });
|
||||||
|
addBook(*db, "War and Peace", { authors[3].fullName() });
|
||||||
|
addBook(*db, "The Brothers Karamazov", { authors[4].fullName() });
|
||||||
|
addBook(*db, "The Prince and the Pauper", { authors[5].fullName() });
|
||||||
|
addBook(*db, "David Copperfield", { authors[6].fullName() });
|
||||||
|
addBook(*db, "The Waves", { authors[7].fullName() });
|
||||||
|
addBook(*db, "A Farewell to Arms", { authors[8].fullName() });
|
||||||
|
addBook(*db, "Chronicle of a Death Foretold", { authors[9].fullName() });
|
||||||
|
|
||||||
|
addBook(*db, "1984", { "George Orwell" });
|
||||||
|
addBook(*db, "Harry Potter and the Philosopher's Stone", { "J.K. Rowling" });
|
||||||
|
|
||||||
|
addBook(*db, "Очень странная книжка 2", { "Автор 4", "Авторк 3" });
|
||||||
|
|
||||||
|
std::cout << "Test data added successfully." << std::endl;
|
||||||
|
}
|
||||||
|
catch (const odb::exception& e)
|
||||||
|
{
|
||||||
|
std::cerr << "Error adding test data: " << e.what() << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
QCoreApplication a(argc, argv);
|
QCoreApplication a(argc, argv);
|
||||||
|
|
||||||
if (!DatabaseManager::instance().connect("library.db"))
|
const std::string dbPath = "test_db.sqlite";
|
||||||
{
|
uDBase db(openDB(dbPath));
|
||||||
qCritical() << "Ошибка: не удалось подключиться к базе данных!";
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
DatabaseManager::instance().initializeDatabase();
|
// TODO Как-то нужно выполнять лишь раз
|
||||||
|
// fillBooksBD(db);
|
||||||
|
|
||||||
if (BookService::add({ .title = "Война и мир",
|
RestApiServer server(*db);
|
||||||
.author = { .name = "Лев Толстой" },
|
|
||||||
.filePath = "/books/war_and_peace.epub" }))
|
|
||||||
{
|
|
||||||
qDebug() << "Книга успешно добавлена!";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qCritical() << "Ошибка при добавлении книги!";
|
|
||||||
}
|
|
||||||
|
|
||||||
QVector<model::Book> books = BookService::fetchAll();
|
|
||||||
|
|
||||||
for (const model::Book& book : books)
|
|
||||||
{
|
|
||||||
qDebug() << "ID:" << book.id << "Название:" << book.title
|
|
||||||
<< "Автор:" << book.author.name << "Файл:" << book.filePath;
|
|
||||||
}
|
|
||||||
|
|
||||||
QVector<model::Author> authors = AuthorService::fetchAll();
|
|
||||||
|
|
||||||
for (const model::Author& author : authors)
|
|
||||||
{
|
|
||||||
qDebug() << "ID:" << author.id << "Имя:" << author.name;
|
|
||||||
}
|
|
||||||
|
|
||||||
RestApiServer server;
|
|
||||||
server.start(8080);
|
server.start(8080);
|
||||||
|
|
||||||
|
QString zipArzh = "/home/alex/repos/exp/cpp-opds/f.fb2-631519-634744.zip";
|
||||||
|
|
||||||
|
auto z = ZipWrapper(zipArzh);
|
||||||
|
const auto books = z.work();
|
||||||
|
|
||||||
|
for (const auto& book : books)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
addBook(*db, book.title, book.authors);
|
||||||
|
}
|
||||||
|
catch (const odb::exception& e)
|
||||||
|
{
|
||||||
|
std::cerr << "Error adding test data: " << e.what() << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Set up code that uses the Qt event loop here.
|
// Set up code that uses the Qt event loop here.
|
||||||
// Call a.quit() or a.exit() to quit the application.
|
// Call a.quit() or a.exit() to quit the application.
|
||||||
// A not very useful example would be including
|
// A not very useful example would be including
|
||||||
@@ -61,5 +151,6 @@ int main(int argc, char* argv[])
|
|||||||
// If you do not need a running Qt event loop, remove the call
|
// If you do not need a running Qt event loop, remove the call
|
||||||
// to a.exec() or use the Non-Qt Plain C++ Application template.
|
// to a.exec() or use the Non-Qt Plain C++ Application template.
|
||||||
|
|
||||||
|
// qWarning() << "S EXIT";
|
||||||
return a.exec();
|
return a.exec();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,56 +0,0 @@
|
|||||||
#ifndef AUTHOR_H
|
|
||||||
#define AUTHOR_H
|
|
||||||
|
|
||||||
#include <sql_builder/create_table.h>
|
|
||||||
|
|
||||||
#include <QString>
|
|
||||||
|
|
||||||
namespace model
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace authorconst
|
|
||||||
{
|
|
||||||
|
|
||||||
const QString TABLE = "authors";
|
|
||||||
|
|
||||||
const QString ID = "id";
|
|
||||||
const QString NAME = "name";
|
|
||||||
|
|
||||||
// const QString M_AUTHOR_ID = "id";
|
|
||||||
// const QString M_AUTHOR_FIRST_NAME = "first_name";
|
|
||||||
// const QString M_AUTHOR_LAST_NAME = "last_name";
|
|
||||||
// const QString M_AUTHOR_YEAR = "year";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
struct Author
|
|
||||||
{
|
|
||||||
int id = 0;
|
|
||||||
QString name;
|
|
||||||
// QString firstName;
|
|
||||||
// QString lastName;
|
|
||||||
// QString birthdayYear;
|
|
||||||
};
|
|
||||||
|
|
||||||
static inline QString createTableAuthor()
|
|
||||||
{
|
|
||||||
// query.exec("CREATE TABLE IF NOT EXISTS authors ("
|
|
||||||
// "id INTEGER PRIMARY KEY AUTOINCREMENT,"
|
|
||||||
// "name TEXT UNIQUE NOT NULL"
|
|
||||||
// ")");
|
|
||||||
|
|
||||||
Builder::TableSchema tBuilder(model::authorconst::TABLE);
|
|
||||||
tBuilder.addColumn({ .name = model::authorconst::ID,
|
|
||||||
.type = "INTEGER",
|
|
||||||
.primaryKey = true });
|
|
||||||
|
|
||||||
tBuilder.addColumn({ .name = model::authorconst::NAME,
|
|
||||||
.type = "TEXT",
|
|
||||||
.notNull = true,
|
|
||||||
.unique = true });
|
|
||||||
return tBuilder.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace model
|
|
||||||
|
|
||||||
#endif // AUTHOR_H
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
#ifndef BOOK_H
|
|
||||||
#define BOOK_H
|
|
||||||
|
|
||||||
#include <model/author.h>
|
|
||||||
|
|
||||||
#include <sql_builder/create_table.h>
|
|
||||||
|
|
||||||
#include <QString>
|
|
||||||
|
|
||||||
namespace model
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace bookconst
|
|
||||||
{
|
|
||||||
|
|
||||||
const QString TABLE = "books";
|
|
||||||
|
|
||||||
const QString ID = "id";
|
|
||||||
const QString TITLE = "title";
|
|
||||||
const QString AUTHOR_ID = "author_id";
|
|
||||||
const QString FILEPATH = "file_path";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
struct Book
|
|
||||||
{
|
|
||||||
int id = 0;
|
|
||||||
QString title;
|
|
||||||
Author author;
|
|
||||||
QString filePath;
|
|
||||||
};
|
|
||||||
|
|
||||||
static inline QString createTableBook()
|
|
||||||
{
|
|
||||||
// query.exec("CREATE TABLE IF NOT EXISTS books ("
|
|
||||||
// "id INTEGER PRIMARY KEY AUTOINCREMENT,"
|
|
||||||
// "title TEXT NOT NULL,"
|
|
||||||
// "file_path TEXT NOT NULL,"
|
|
||||||
// "author_id INTEGER NOT NULL,"
|
|
||||||
// "FOREIGN KEY (author_id) REFERENCES authors(id) ON DELETE CASCADE"
|
|
||||||
// ");");
|
|
||||||
|
|
||||||
Builder::TableSchema tBuilder(model::bookconst::TABLE);
|
|
||||||
tBuilder.addColumn({ .name = model::bookconst::ID,
|
|
||||||
.type = "INTEGER",
|
|
||||||
.primaryKey = true });
|
|
||||||
|
|
||||||
tBuilder.addColumn({ .name = model::bookconst::TITLE,
|
|
||||||
.type = "TEXT",
|
|
||||||
.notNull = true });
|
|
||||||
|
|
||||||
tBuilder.addColumn({ .name = model::bookconst::FILEPATH,
|
|
||||||
.type = "TEXT",
|
|
||||||
.notNull = true });
|
|
||||||
|
|
||||||
tBuilder.addColumn({ .name = model::bookconst::AUTHOR_ID,
|
|
||||||
.type = "INTEGER",
|
|
||||||
.notNull = true,
|
|
||||||
.foreignKeyTable = model::authorconst::TABLE,
|
|
||||||
.foreignKeyColumn = model::authorconst::ID });
|
|
||||||
return tBuilder.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace model
|
|
||||||
#endif // BOOK_H
|
|
||||||
47
src/model/books/author_book_s.h
Normal file
47
src/model/books/author_book_s.h
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
#ifndef AUTHOR_BOOK_H
|
||||||
|
#define AUTHOR_BOOK_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#include "author_s.h"
|
||||||
|
#include "book_s.h"
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT AuthorBook_S
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
AuthorBook_S() = default;
|
||||||
|
|
||||||
|
public:
|
||||||
|
AuthorBook_S(SH<Author_S> author,
|
||||||
|
SH<Book_S> book) :
|
||||||
|
m_author(author),
|
||||||
|
m_book(book) {}
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(quint64 newId) { m_id = newId; }
|
||||||
|
|
||||||
|
SH<Author_S> author() const { return m_author; }
|
||||||
|
void setAuthor(const SH<Author_S>& newAuthor) { m_author = newAuthor; }
|
||||||
|
|
||||||
|
SH<Book_S> book() const { return m_book; }
|
||||||
|
void setBook(const SH<Book_S>& newBook) { m_book = newBook; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Author_S> m_author;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Book_S> m_book;
|
||||||
|
|
||||||
|
#pragma db index("author_book_unique") member(m_author) member(m_book) unique
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // AUTHOR_BOOK_H
|
||||||
42
src/model/books/author_s.h
Normal file
42
src/model/books/author_s.h
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
#ifndef AUTHOR_S_H
|
||||||
|
#define AUTHOR_S_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT Author_S
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Author_S() = default;
|
||||||
|
Author_S(const QString& fullName) :
|
||||||
|
m_fullName(fullName) {}
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(quint64 newId) { m_id = newId; }
|
||||||
|
|
||||||
|
QString fullName() const { return m_fullName; }
|
||||||
|
void setFullName(const QString& newFullName) { m_fullName = newFullName; }
|
||||||
|
|
||||||
|
QString langCode() const { return m_langCode; }
|
||||||
|
void setLangCode(const QString& newLangCode) { m_langCode = newLangCode; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
QString m_fullName;
|
||||||
|
QString m_langCode;
|
||||||
|
};
|
||||||
|
|
||||||
|
#pragma db view object(Author_S)
|
||||||
|
struct person_stat
|
||||||
|
{
|
||||||
|
#pragma db column("count(" + Author_S::m_id + ")")
|
||||||
|
std::size_t count;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // AUTHOR_S_H
|
||||||
43
src/model/books/book_s.h
Normal file
43
src/model/books/book_s.h
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
#ifndef BOOK_S_H
|
||||||
|
#define BOOK_S_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#include <QDateTime>
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT Book_S
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Book_S() = default;
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(const quint64& newId) { m_id = newId; }
|
||||||
|
|
||||||
|
QString title() const { return m_title; }
|
||||||
|
void setTitle(const QString& newTitle) { m_title = newTitle; }
|
||||||
|
|
||||||
|
quint8 year() const { return m_year; }
|
||||||
|
void setYear(const quint8& newYear) { m_year = newYear; }
|
||||||
|
|
||||||
|
QDateTime lastModified() const { return m_lastModified; }
|
||||||
|
void setLastModified(const QDateTime& newLastModified) { m_lastModified = newLastModified; }
|
||||||
|
|
||||||
|
QString lang() const { return m_lang; }
|
||||||
|
void setLang(const QString& newLang) { m_lang = newLang; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
QString m_title;
|
||||||
|
quint8 m_year;
|
||||||
|
QDateTime m_lastModified;
|
||||||
|
QString m_lang;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BOOK_S_H
|
||||||
46
src/model/books/genre_book_s.h
Normal file
46
src/model/books/genre_book_s.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#ifndef GENRE_BOOK_S_H
|
||||||
|
#define GENRE_BOOK_S_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#include "book_s.h"
|
||||||
|
#include "genre_s.h"
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class GenreBook_S
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
GenreBook_S() = default;
|
||||||
|
|
||||||
|
public:
|
||||||
|
GenreBook_S(const SH<Genre_S>& genreId, const SH<Book_S>& bookId) :
|
||||||
|
m_genreId(genreId),
|
||||||
|
m_bookId(bookId) {}
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(quint64 newId) { m_id = newId; }
|
||||||
|
|
||||||
|
SH<Genre_S> genreId() const { return m_genreId; }
|
||||||
|
void setGenreId(const SH<Genre_S>& newGenreId) { m_genreId = newGenreId; }
|
||||||
|
|
||||||
|
SH<Book_S> bookId() const { return m_bookId; }
|
||||||
|
void setBookId(const SH<Book_S>& newBookId) { m_bookId = newBookId; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Genre_S> m_genreId;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Book_S> m_bookId;
|
||||||
|
|
||||||
|
#pragma db index("genre_book_unique") member(m_genreId) member(m_bookId) unique
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // GENRE_BOOK_S_H
|
||||||
29
src/model/books/genre_s.h
Normal file
29
src/model/books/genre_s.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
#ifndef GENRE_H
|
||||||
|
#define GENRE_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT Genre_S
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Genre_S() = default;
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(const quint64& newId) { m_id = newId; }
|
||||||
|
|
||||||
|
QString name() const { return m_name; }
|
||||||
|
void setName(const QString& newName) { m_name = newName; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
QString m_name;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // GENRE_H
|
||||||
10
src/model/books/manutomanybase.h
Normal file
10
src/model/books/manutomanybase.h
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#ifndef MANUTOMANYBASE_H
|
||||||
|
#define MANUTOMANYBASE_H
|
||||||
|
|
||||||
|
class ManuToManyBase
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ManuToManyBase();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // MANUTOMANYBASE_H
|
||||||
46
src/model/books/series_book_s.h
Normal file
46
src/model/books/series_book_s.h
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
#ifndef SERIES_BOOK_S_H
|
||||||
|
#define SERIES_BOOK_S_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#include "book_s.h"
|
||||||
|
#include "series_s.h"
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT SeriesBook_S
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
SeriesBook_S() = default;
|
||||||
|
|
||||||
|
public:
|
||||||
|
SeriesBook_S(const SH<Series_S>& serieId, const SH<Book_S>& bookId) :
|
||||||
|
m_serieId(serieId),
|
||||||
|
m_bookId(bookId) {}
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(quint64 newId) { m_id = newId; }
|
||||||
|
|
||||||
|
SH<Series_S> serieId() const { return m_serieId; }
|
||||||
|
void setSerieId(const SH<Series_S>& newSerieId) { m_serieId = newSerieId; }
|
||||||
|
|
||||||
|
SH<Book_S> bookId() const { return m_bookId; }
|
||||||
|
void setBookId(const SH<Book_S>& newBookId) { m_bookId = newBookId; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Series_S> m_serieId;
|
||||||
|
|
||||||
|
#pragma db not_null
|
||||||
|
SH<Book_S> m_bookId;
|
||||||
|
|
||||||
|
#pragma db index("series_book_unique") member(m_serieId) member(m_bookId) unique
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SERIES_BOOK_S_H
|
||||||
29
src/model/books/series_s.h
Normal file
29
src/model/books/series_s.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
#ifndef SERIES_H
|
||||||
|
#define SERIES_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT Series_S
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Series_S() = default;
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(const quint64& newId) { m_id = newId; }
|
||||||
|
|
||||||
|
QString name() const { return m_serName; }
|
||||||
|
void setName(const QString& newSerName) { m_serName = newSerName; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
public:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
|
||||||
|
QString m_serName;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SERIES_H
|
||||||
@@ -1,15 +1,53 @@
|
|||||||
import qbs
|
/*!
|
||||||
|
\qmltype cpp-opds
|
||||||
|
\inherits Project
|
||||||
|
\brief Описание
|
||||||
|
*/
|
||||||
PSLibrary {
|
PSLibrary {
|
||||||
Depends { name: "Qt"; submodules: "core", "sql"}
|
cpp.defines: [
|
||||||
|
// You can make your code fail to compile if it uses deprecated APIs.
|
||||||
|
// In order to do so, uncomment the following line.
|
||||||
|
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
"DATABASE_SQLITE",
|
||||||
|
"MODEL_LIBRARY"
|
||||||
|
]
|
||||||
|
consoleApplication: true
|
||||||
|
|
||||||
Depends { name: "sql_builder" }
|
Depends { name: "Qt"; submodules: [ "core", "network" ] }
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
|
||||||
|
Depends { name: "odb.gen" }
|
||||||
|
Depends { name: "rdbase" }
|
||||||
|
|
||||||
|
Depends { name: "redkit_gen" }
|
||||||
|
redkit_gen.includeModules: [redkit_gen.module.JsonSerializer,
|
||||||
|
redkit_gen.module.SettingsSerializer,]
|
||||||
|
|
||||||
|
odb.gen.databases: "sqlite"
|
||||||
|
cpp.cxxLanguageVersion: "c++17"
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "cpp"
|
id: headers
|
||||||
|
name: "headers"
|
||||||
files: [
|
files: [
|
||||||
"*.h",
|
"model_global.h",
|
||||||
"*.cpp"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Group {
|
||||||
|
id: odbs
|
||||||
|
name: "odb"
|
||||||
|
files: [
|
||||||
|
"**/*.h",
|
||||||
|
]
|
||||||
|
excludeFiles: headers.files
|
||||||
|
fileTags: ["hpp", "odbxx", "rgen"]
|
||||||
|
}
|
||||||
|
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"odb-sqlite",
|
||||||
|
"odb-qt",
|
||||||
|
"odb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
15
src/model/model_global.h
Normal file
15
src/model/model_global.h
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
#ifndef MODEL_GLOBAL_H
|
||||||
|
#define MODEL_GLOBAL_H
|
||||||
|
|
||||||
|
#include <QtCore/qglobal.h>
|
||||||
|
|
||||||
|
#if defined(MODEL_LIBRARY)
|
||||||
|
#define MODEL_EXPORT Q_DECL_EXPORT
|
||||||
|
#else
|
||||||
|
#define MODEL_EXPORT Q_DECL_IMPORT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <odb/core.hxx>
|
||||||
|
#include <rcore/smarttypes.h>
|
||||||
|
|
||||||
|
#endif // MODEL_GLOBAL_H
|
||||||
23
src/model/settings/settings.h
Normal file
23
src/model/settings/settings.h
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
#ifndef SETTINGS_S_H
|
||||||
|
#define SETTINGS_S_H
|
||||||
|
|
||||||
|
#include <model/model_global.h>
|
||||||
|
|
||||||
|
#pragma db object
|
||||||
|
class MODEL_EXPORT Settings_S
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Settings_S() = default;
|
||||||
|
|
||||||
|
quint64 id() const { return m_id; }
|
||||||
|
void setId(const quint64& newId) { m_id = newId; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
friend class odb::access;
|
||||||
|
|
||||||
|
private:
|
||||||
|
#pragma db id auto
|
||||||
|
quint64 m_id;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SETTINGS_S_H
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
// #define BUILD_REPOSITORIES
|
|
||||||
#include "author_repository.h"
|
|
||||||
|
|
||||||
#include <sql_builder/insert.h>
|
|
||||||
#include <sql_builder/select.h>
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
|
|
||||||
QVector<model::Author> AuthorRepository::getAll()
|
|
||||||
{
|
|
||||||
QVector<model::Author> authors;
|
|
||||||
|
|
||||||
Builder::Select sBuilder({ .tableName = model::authorconst::TABLE, .rows = { model::authorconst::ID, model::authorconst::NAME } });
|
|
||||||
QSqlQuery query(sBuilder.get());
|
|
||||||
|
|
||||||
qDebug() << query.lastError().text();
|
|
||||||
|
|
||||||
while (query.next())
|
|
||||||
{
|
|
||||||
authors.append({ query.value(0).toInt(),
|
|
||||||
query.value(1).toString() });
|
|
||||||
}
|
|
||||||
|
|
||||||
return authors;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::optional<model::Author> AuthorRepository::getByName(const QString& name)
|
|
||||||
{
|
|
||||||
Q_UNUSED(name);
|
|
||||||
Builder::Select sBuilder({ .tableName = model::authorconst::TABLE, .rows = { model::authorconst::ID, model::authorconst::NAME } });
|
|
||||||
QString qResult = sBuilder.get() + QString(" WHERE %1 = \"%2\"").arg(model::authorconst::NAME).arg(name);
|
|
||||||
|
|
||||||
QSqlQuery query(qResult);
|
|
||||||
|
|
||||||
if (query.next())
|
|
||||||
{
|
|
||||||
model::Author author({ .id = query.value(0).toInt(),
|
|
||||||
.name = query.value(1).toString() });
|
|
||||||
return { author };
|
|
||||||
}
|
|
||||||
|
|
||||||
return std::nullopt;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool AuthorRepository::insert(const model::Author& author)
|
|
||||||
{
|
|
||||||
QSqlQuery query(DatabaseManager::instance().database());
|
|
||||||
Builder::Insert iBuild({ model::authorconst::TABLE,
|
|
||||||
{ model::authorconst::NAME },
|
|
||||||
true });
|
|
||||||
|
|
||||||
query.prepare(iBuild.get());
|
|
||||||
query.bindValue(":name", author.name);
|
|
||||||
int authorId = 0;
|
|
||||||
Q_UNUSED(authorId);
|
|
||||||
|
|
||||||
if (!query.exec())
|
|
||||||
{
|
|
||||||
qDebug() << query.lastError().text();
|
|
||||||
if (query.lastError().nativeErrorCode() == 19)
|
|
||||||
{
|
|
||||||
// Автор уже есть, ищем его ID
|
|
||||||
QSqlQuery findQuery(DatabaseManager::instance().database());
|
|
||||||
findQuery.prepare("SELECT id FROM authors WHERE name = :name");
|
|
||||||
findQuery.bindValue(":name", author.name);
|
|
||||||
if (findQuery.exec() && findQuery.next())
|
|
||||||
{
|
|
||||||
authorId = findQuery.value(0).toInt();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
qCritical() << "Ошибка добавления автора:" << query.lastError().text();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
authorId = query.lastInsertId().toInt();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <model/author.h>
|
|
||||||
|
|
||||||
#include <database/databasemanager.h>
|
|
||||||
|
|
||||||
#include <QSqlDatabase>
|
|
||||||
#include <QSqlError>
|
|
||||||
#include <QSqlQuery>
|
|
||||||
#include <QString>
|
|
||||||
#include <QVariant>
|
|
||||||
#include <QVector>
|
|
||||||
#include <optional>
|
|
||||||
|
|
||||||
#ifdef BUILD_REPOSITORIES
|
|
||||||
#define REPOSITORIES_EXPORT Q_DECL_EXPORT
|
|
||||||
#else
|
|
||||||
#define REPOSITORIES_EXPORT Q_DECL_IMPORT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class REPOSITORIES_EXPORT AuthorRepository
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static QVector<model::Author> getAll();
|
|
||||||
static std::optional<model::Author> getByName(const QString& name);
|
|
||||||
static bool insert(const model::Author& author);
|
|
||||||
|
|
||||||
// TODO Возвращать не bool - а номер id записи
|
|
||||||
};
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
// #define BUILD_REPOSITORIES
|
|
||||||
#include "book_repository.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
#include <qsqlerror.h>
|
|
||||||
|
|
||||||
#include <sql_builder/insert.h>
|
|
||||||
#include <sql_builder/select.h>
|
|
||||||
|
|
||||||
QVector<model::Book> BookRepository::getAll()
|
|
||||||
{
|
|
||||||
QVector<model::Book> books;
|
|
||||||
Builder::Select qBuilder {
|
|
||||||
model::bookconst::TABLE,
|
|
||||||
{ model::bookconst::ID,
|
|
||||||
model::bookconst::TITLE,
|
|
||||||
model::bookconst::AUTHOR_ID,
|
|
||||||
model::bookconst::FILEPATH }
|
|
||||||
};
|
|
||||||
|
|
||||||
QSqlQuery query(qBuilder.get());
|
|
||||||
|
|
||||||
qDebug() << query.lastError().text();
|
|
||||||
|
|
||||||
while (query.next())
|
|
||||||
{
|
|
||||||
books.append({ query.value(0).toInt(),
|
|
||||||
query.value(1).toString(),
|
|
||||||
{ query.value(2).toInt() },
|
|
||||||
query.value(3).toString() });
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO получить так же авторов как строку
|
|
||||||
|
|
||||||
return books;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool BookRepository::insert(const model::Book& book)
|
|
||||||
{
|
|
||||||
QSqlQuery query(DatabaseManager::instance().database());
|
|
||||||
|
|
||||||
Builder::Insert iBuilder {
|
|
||||||
model::bookconst::TABLE,
|
|
||||||
{ model::bookconst::TITLE,
|
|
||||||
model::bookconst::FILEPATH,
|
|
||||||
model::bookconst::AUTHOR_ID }
|
|
||||||
};
|
|
||||||
|
|
||||||
query.prepare(iBuilder.get());
|
|
||||||
query.bindValue(":" + model::bookconst::TITLE, book.title);
|
|
||||||
query.bindValue(":" + model::bookconst::FILEPATH, book.filePath);
|
|
||||||
query.bindValue(":" + model::bookconst::AUTHOR_ID, book.author.id);
|
|
||||||
|
|
||||||
bool res = query.exec();
|
|
||||||
if (!res)
|
|
||||||
qDebug() << query.lastError().text();
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <model/book.h>
|
|
||||||
|
|
||||||
#include <database/databasemanager.h>
|
|
||||||
|
|
||||||
#include <QSqlQuery>
|
|
||||||
#include <QVariant>
|
|
||||||
#include <QVector>
|
|
||||||
|
|
||||||
#ifdef BUILD_REPOSITORIES
|
|
||||||
#define REPOSITORIES_EXPORT Q_DECL_EXPORT
|
|
||||||
#else
|
|
||||||
#define REPOSITORIES_EXPORT Q_DECL_IMPORT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class REPOSITORIES_EXPORT BookRepository
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static QVector<model::Book> getAll();
|
|
||||||
static bool insert(const model::Book& book);
|
|
||||||
};
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
import qbs
|
|
||||||
|
|
||||||
PSLibrary {
|
|
||||||
Depends { name: "Qt"; submodules: "core", "sql"}
|
|
||||||
|
|
||||||
Depends { name: "database" }
|
|
||||||
Depends { name: "sql_builder" }
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "cpp"
|
|
||||||
files: [
|
|
||||||
"*.h",
|
|
||||||
"*.cpp"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
Properties {
|
|
||||||
condition: qbs.buildVariant === "debug"
|
|
||||||
cpp.defines: ["BUILD_REPOSITORIES"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
81
src/repository/authorrepository.cpp
Normal file
81
src/repository/authorrepository.cpp
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
#include "authorrepository.h"
|
||||||
|
|
||||||
|
#include <model/books/author_book_s-odb.hxx>
|
||||||
|
#include <model/books/author_book_s.h>
|
||||||
|
#include <model/books/author_s-odb.hxx>
|
||||||
|
#include <model/books/author_s.h>
|
||||||
|
#include <model/books/book_s-odb.hxx>
|
||||||
|
#include <model/books/book_s.h>
|
||||||
|
|
||||||
|
#include <odb/core.hxx>
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
#include <odb/query.hxx>
|
||||||
|
|
||||||
|
namespace repository
|
||||||
|
{
|
||||||
|
|
||||||
|
AuthorRepository::AuthorRepository(odb::core::database& db) :
|
||||||
|
m_db(db)
|
||||||
|
{}
|
||||||
|
|
||||||
|
QVector<Author_S> AuthorRepository::findAll()
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
odb::result<Author_S> res(m_db.query<Author_S>());
|
||||||
|
|
||||||
|
QVector<Author_S> authors;
|
||||||
|
|
||||||
|
for (auto it = res.begin(); it != res.end(); ++it)
|
||||||
|
{
|
||||||
|
const auto& author = *it;
|
||||||
|
authors.push_back(author);
|
||||||
|
}
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return authors;
|
||||||
|
}
|
||||||
|
|
||||||
|
Author_S AuthorRepository::findById(int id)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
odb::result<Author_S> res(m_db.query<Author_S>(odb::query<Author_S>::id == id));
|
||||||
|
|
||||||
|
Author_S author;
|
||||||
|
res.value(author);
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return author;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Author_S> AuthorRepository::findByBook(const int& bookId)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
|
||||||
|
QVector<Author_S> authors;
|
||||||
|
|
||||||
|
using ABQuery = odb::query<AuthorBook_S>;
|
||||||
|
using ABResult = odb::result<AuthorBook_S>;
|
||||||
|
ABResult abResult(m_db.query<AuthorBook_S>(ABQuery::book == bookId));
|
||||||
|
|
||||||
|
for (const AuthorBook_S& ab : abResult)
|
||||||
|
{
|
||||||
|
// Загружаем каждую книгу по ID
|
||||||
|
SH<Author_S> author(m_db.load<Author_S>(ab.author()->id()));
|
||||||
|
authors.push_back(*author.data());
|
||||||
|
}
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return authors;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Author_S> AuthorRepository::findByBook(const QString& book_name)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
auto book_s = m_db.query<Book_S>(odb::query<Book_S>::title == book_name).one();
|
||||||
|
|
||||||
|
return findByBook(book_s->id());
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace repository
|
||||||
41
src/repository/authorrepository.h
Normal file
41
src/repository/authorrepository.h
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
#ifndef AUTHORREPOSITORY_H
|
||||||
|
#define AUTHORREPOSITORY_H
|
||||||
|
|
||||||
|
#include "repository_global.h"
|
||||||
|
|
||||||
|
#include <model/books/author_s.h>
|
||||||
|
|
||||||
|
#include <QString>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
namespace repository
|
||||||
|
{
|
||||||
|
|
||||||
|
class REPOSITORY_EXPORT AuthorRepository
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
AuthorRepository(odb::core::database& db);
|
||||||
|
|
||||||
|
// Получить всех авторов
|
||||||
|
QVector<Author_S> findAll();
|
||||||
|
|
||||||
|
// Найти автора по id
|
||||||
|
Author_S findById(int id);
|
||||||
|
|
||||||
|
// Сохранить книгу (создать или обновить)
|
||||||
|
// void save(const Book_S& book);
|
||||||
|
|
||||||
|
// Удалить автора
|
||||||
|
// void remove(int id);
|
||||||
|
|
||||||
|
// Найти авторов по книге
|
||||||
|
QVector<Author_S> findByBook(const int& book_id);
|
||||||
|
QVector<Author_S> findByBook(const QString& bookName);
|
||||||
|
|
||||||
|
private:
|
||||||
|
odb::core::database& m_db;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace repository
|
||||||
|
|
||||||
|
#endif // AUTHORREPOSITORY_H
|
||||||
96
src/repository/bookrepository.cpp
Normal file
96
src/repository/bookrepository.cpp
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
#include "bookrepository.h"
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
|
#include <model/books/author_book_s-odb.hxx>
|
||||||
|
#include <model/books/author_book_s.h>
|
||||||
|
#include <model/books/author_s-odb.hxx>
|
||||||
|
#include <model/books/author_s.h>
|
||||||
|
#include <model/books/book_s-odb.hxx>
|
||||||
|
#include <model/books/book_s.h>
|
||||||
|
|
||||||
|
#include <odb/core.hxx>
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
#include <odb/query.hxx>
|
||||||
|
|
||||||
|
namespace repository
|
||||||
|
{
|
||||||
|
|
||||||
|
BookRepository::BookRepository(odb::core::database& db) :
|
||||||
|
m_db(db)
|
||||||
|
{}
|
||||||
|
|
||||||
|
QVector<Book_S> BookRepository::findAll()
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
odb::result<Book_S> res(m_db.query<Book_S>());
|
||||||
|
|
||||||
|
QVector<Book_S> books;
|
||||||
|
|
||||||
|
for (auto it = res.begin(); it != res.end(); ++it)
|
||||||
|
{
|
||||||
|
const auto& book = *it;
|
||||||
|
books.push_back(book);
|
||||||
|
}
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return books;
|
||||||
|
}
|
||||||
|
|
||||||
|
Book_S BookRepository::findById(int id)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
odb::result<Book_S> res(m_db.query<Book_S>(odb::query<Book_S>::id == id));
|
||||||
|
|
||||||
|
Book_S book;
|
||||||
|
res.value(book);
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return book;
|
||||||
|
}
|
||||||
|
|
||||||
|
// void BookRepository::save(const Book_S& book)
|
||||||
|
// {
|
||||||
|
// }
|
||||||
|
|
||||||
|
void BookRepository::remove(int id)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
odb::result<Book_S> res(m_db.query<Book_S>(odb::query<Book_S>::id == id));
|
||||||
|
res.one().reset();
|
||||||
|
t.commit();
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Book_S> BookRepository::findByAuthor(const int& authorId)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
|
||||||
|
QVector<Book_S> books;
|
||||||
|
|
||||||
|
using ABQuery = odb::query<AuthorBook_S>;
|
||||||
|
using ABResult = odb::result<AuthorBook_S>;
|
||||||
|
ABResult abResult(m_db.query<AuthorBook_S>(ABQuery::author == authorId));
|
||||||
|
|
||||||
|
for (const AuthorBook_S& ab : abResult)
|
||||||
|
{
|
||||||
|
// Загружаем каждую книгу по ID
|
||||||
|
SH<Book_S> book(m_db.load<Book_S>(ab.book()->id()));
|
||||||
|
books.push_back(*book.data());
|
||||||
|
}
|
||||||
|
|
||||||
|
t.commit();
|
||||||
|
|
||||||
|
return books;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Book_S> BookRepository::findByAuthor(const QString& author)
|
||||||
|
{
|
||||||
|
odb::transaction t(m_db.begin());
|
||||||
|
auto author_s = m_db.query<Author_S>(odb::query<Author_S>::fullName == author).one();
|
||||||
|
|
||||||
|
return findByAuthor(author_s->id());
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace repository
|
||||||
41
src/repository/bookrepository.h
Normal file
41
src/repository/bookrepository.h
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
#ifndef BOOKREPOSITORY_H
|
||||||
|
#define BOOKREPOSITORY_H
|
||||||
|
|
||||||
|
#include "repository_global.h"
|
||||||
|
|
||||||
|
#include <model/books/book_s.h>
|
||||||
|
|
||||||
|
#include <QString>
|
||||||
|
#include <QVector>
|
||||||
|
|
||||||
|
namespace repository
|
||||||
|
{
|
||||||
|
|
||||||
|
class REPOSITORY_EXPORT BookRepository
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
BookRepository(odb::core::database& db);
|
||||||
|
|
||||||
|
// Получить все книги
|
||||||
|
QVector<Book_S> findAll();
|
||||||
|
|
||||||
|
// Найти книгу по ID
|
||||||
|
Book_S findById(int id);
|
||||||
|
|
||||||
|
// Сохранить книгу (создать или обновить)
|
||||||
|
// void save(const Book_S& book);
|
||||||
|
|
||||||
|
// Удалить книгу
|
||||||
|
void remove(int id);
|
||||||
|
|
||||||
|
// Найти книги по автору
|
||||||
|
QVector<Book_S> findByAuthor(const QString& authorName);
|
||||||
|
QVector<Book_S> findByAuthor(const int& authorId);
|
||||||
|
|
||||||
|
private:
|
||||||
|
odb::core::database& m_db;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace repository
|
||||||
|
|
||||||
|
#endif // BOOKREPOSITORY_H
|
||||||
33
src/repository/repository.qbs
Normal file
33
src/repository/repository.qbs
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
/*!
|
||||||
|
\qmltype cpp-opds
|
||||||
|
\inherits Project
|
||||||
|
\brief Описание
|
||||||
|
*/
|
||||||
|
PSLibrary {
|
||||||
|
name: "repository"
|
||||||
|
cpp.defines: [
|
||||||
|
"REPOSITORY_LIBRARY"
|
||||||
|
]
|
||||||
|
|
||||||
|
Depends { name: "Qt"; submodules: [ "core" ] }
|
||||||
|
Depends { name: "model" }
|
||||||
|
|
||||||
|
Depends { name: "rdbase" }
|
||||||
|
Depends { name: "odb.gen" }
|
||||||
|
Depends { name: "database" }
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "cpp"
|
||||||
|
files: [
|
||||||
|
"**/*.h",
|
||||||
|
"**/*.cpp",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"odb-sqlite",
|
||||||
|
"odb-qt",
|
||||||
|
"odb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
|
}
|
||||||
12
src/repository/repository_global.h
Normal file
12
src/repository/repository_global.h
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#ifndef REPOSITORY_GLOBAL_H
|
||||||
|
#define REPOSITORY_GLOBAL_H
|
||||||
|
|
||||||
|
#include <QtCore/qglobal.h>
|
||||||
|
|
||||||
|
#if defined(REPOSITORY_LIBRARY)
|
||||||
|
#define REPOSITORY_EXPORT Q_DECL_EXPORT
|
||||||
|
#else
|
||||||
|
#define REPOSITORY_EXPORT Q_DECL_IMPORT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // REPOSITORY_GLOBAL_H
|
||||||
@@ -1,15 +1,40 @@
|
|||||||
import qbs
|
/*!
|
||||||
|
\qmltype cpp-opds
|
||||||
|
\inherits Project
|
||||||
|
\brief Описание
|
||||||
|
*/
|
||||||
|
WPSLibrary {
|
||||||
|
cpp.defines: [
|
||||||
|
// You can make your code fail to compile if it uses deprecated APIs.
|
||||||
|
// In order to do so, uncomment the following line.
|
||||||
|
//"QT_DISABLE_DEPRECATED_BEFORE=0x060000" // disables all the APIs deprecated before Qt 6.0.0
|
||||||
|
"DATABASE_SQLITE"
|
||||||
|
]
|
||||||
|
consoleApplication: true
|
||||||
|
|
||||||
PSLibrary {
|
|
||||||
Depends { name: "Qt"; submodules: [ "core", "sql", "network" ] }
|
Depends { name: "Qt"; submodules: [ "core", "sql", "network" ] }
|
||||||
|
Depends { name: "cpp" }
|
||||||
|
Depends { name: "database" }
|
||||||
|
Depends { name: "odb.gen" }
|
||||||
|
Depends { name: "redkit_gen" }
|
||||||
|
Depends { name: "rdbase" }
|
||||||
|
Depends { name: "model" }
|
||||||
|
Depends { name: "repository" }
|
||||||
|
|
||||||
Depends { name: "services" }
|
cpp.cxxLanguageVersion: "c++20"
|
||||||
|
|
||||||
Group {
|
Group {
|
||||||
name: "cpp"
|
name: "cpp"
|
||||||
files: [
|
files: [
|
||||||
"*.h",
|
"restapiserver.*",
|
||||||
"*.cpp"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
cpp.dynamicLibraries: [
|
||||||
|
"odb-sqlite",
|
||||||
|
"odb-qt",
|
||||||
|
"odb",
|
||||||
|
"sqlite3"
|
||||||
|
]
|
||||||
|
|
||||||
|
} // Project
|
||||||
|
|||||||
@@ -1,15 +1,26 @@
|
|||||||
#include "restapiserver.h"
|
#include "restapiserver.h"
|
||||||
|
|
||||||
#include <services/author_service.h>
|
|
||||||
#include <services/book_service.h>
|
|
||||||
|
|
||||||
#include <QJsonArray>
|
#include <QJsonArray>
|
||||||
#include <QJsonDocument>
|
#include <QJsonDocument>
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
#include <QJsonValue>
|
#include <QJsonValue>
|
||||||
|
|
||||||
RestApiServer::RestApiServer(QObject* parent) :
|
#include <model/books/author_s-odb.hxx> // Должен быть здесь
|
||||||
QTcpServer(parent) {}
|
#include <model/books/author_s.h>
|
||||||
|
#include <model/books/book_s-odb.hxx> // Должен быть здесь
|
||||||
|
#include <model/books/book_s.h>
|
||||||
|
|
||||||
|
#include <repository/authorrepository.h>
|
||||||
|
#include <repository/bookrepository.h>
|
||||||
|
|
||||||
|
#include <odb/core.hxx>
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
#include <odb/query.hxx>
|
||||||
|
|
||||||
|
#include <redkit-gen-modules/json_serializer.h>
|
||||||
|
|
||||||
|
RestApiServer::RestApiServer(odb::database& db, QObject* parent) :
|
||||||
|
QTcpServer(parent), m_db(db) {}
|
||||||
|
|
||||||
void RestApiServer::start(quint16 port)
|
void RestApiServer::start(quint16 port)
|
||||||
{
|
{
|
||||||
@@ -19,7 +30,7 @@ void RestApiServer::start(quint16 port)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
qDebug() << "REST API сервер запущен на порту:" << port;
|
qDebug() << "REST API сервер запущен по адресу:";
|
||||||
qDebug() << QString("http://127.0.0.1:%1").arg(port);
|
qDebug() << QString("http://127.0.0.1:%1").arg(port);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -31,6 +42,8 @@ void RestApiServer::incomingConnection(qintptr socketDescriptor)
|
|||||||
|
|
||||||
connect(socket, &QTcpSocket::readyRead, this, &RestApiServer::handleRequest);
|
connect(socket, &QTcpSocket::readyRead, this, &RestApiServer::handleRequest);
|
||||||
connect(socket, &QTcpSocket::disconnected, socket, &QTcpSocket::deleteLater);
|
connect(socket, &QTcpSocket::disconnected, socket, &QTcpSocket::deleteLater);
|
||||||
|
|
||||||
|
qWarning() << "Есть входящее подключение" << socket->socketDescriptor();
|
||||||
}
|
}
|
||||||
|
|
||||||
void RestApiServer::handleRequest()
|
void RestApiServer::handleRequest()
|
||||||
@@ -49,45 +62,23 @@ void RestApiServer::handleRequest()
|
|||||||
|
|
||||||
QByteArray RestApiServer::processRequest(const QString& request)
|
QByteArray RestApiServer::processRequest(const QString& request)
|
||||||
{
|
{
|
||||||
|
// qWarning() << request << "\n\n";
|
||||||
|
|
||||||
if (request.startsWith("GET /books/author/"))
|
if (request.startsWith("GET /books/author/"))
|
||||||
{
|
{
|
||||||
|
repository::BookRepository b(m_db);
|
||||||
|
|
||||||
QString author = request.section(' ', 1, 1).section('/', 3, 3).replace("%20", " ");
|
QString author = request.section(' ', 1, 1).section('/', 3, 3).replace("%20", " ");
|
||||||
|
qWarning() << author;
|
||||||
// Books books;
|
auto books = b.findByAuthor(author);
|
||||||
// QList<BookRecord> results = books.getBooksByAuthor(author);
|
|
||||||
|
|
||||||
QByteArray jsonResponse = "{ \"books\": [";
|
|
||||||
// for (const BookRecord& book : results)
|
|
||||||
// {
|
|
||||||
// jsonResponse += QString("{ \"id\": %1, \"title\": \"%2\", \"author\": \"%3\", \"year\": %4 },")
|
|
||||||
// .arg(book.id)
|
|
||||||
// .arg(book.title)
|
|
||||||
// .arg(book.author)
|
|
||||||
// .arg(book.year)
|
|
||||||
// .toUtf8();
|
|
||||||
// }
|
|
||||||
// if (results.size() > 0)
|
|
||||||
// jsonResponse.chop(1); // Убираем последнюю запятую
|
|
||||||
// jsonResponse += "] }";
|
|
||||||
|
|
||||||
return "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\n\r\n" + jsonResponse;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (request.startsWith("GET /books"))
|
|
||||||
{
|
|
||||||
auto books = BookService::fetchAll();
|
|
||||||
|
|
||||||
QJsonArray jArray;
|
QJsonArray jArray;
|
||||||
|
for (const auto& book : books)
|
||||||
for (auto it = books.begin(); it != books.end(); ++it)
|
|
||||||
{
|
{
|
||||||
const auto& book = *it;
|
|
||||||
|
|
||||||
QJsonObject j;
|
QJsonObject j;
|
||||||
j["id"] = QString::number(book.id);
|
j["id"] = QString::number(book.id());
|
||||||
j["title"] = QString(book.title);
|
j["title"] = book.title();
|
||||||
j["author"] = QString(book.author.name);
|
|
||||||
j["local_path"] = book.filePath;
|
|
||||||
jArray.push_back(j);
|
jArray.push_back(j);
|
||||||
}
|
}
|
||||||
auto jDoc = QJsonDocument(jArray);
|
auto jDoc = QJsonDocument(jArray);
|
||||||
@@ -95,21 +86,91 @@ QByteArray RestApiServer::processRequest(const QString& request)
|
|||||||
return "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\n\r\n" + jDoc.toJson(QJsonDocument::Indented);
|
return "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\n\r\n" + jDoc.toJson(QJsonDocument::Indented);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request.startsWith("GET /author"))
|
if (request.startsWith("GET /books/id"))
|
||||||
{
|
{
|
||||||
// auto books = BookService::fetchAll();
|
repository::BookRepository b(m_db);
|
||||||
auto authors = AuthorService::fetchAll();
|
|
||||||
|
QString book_id = request.section(' ', 1, 1).section('/', 3, 3).replace("%20", " ");
|
||||||
|
qWarning() << book_id;
|
||||||
|
|
||||||
|
auto book = b.findById(book_id.toInt());
|
||||||
|
|
||||||
|
QJsonObject j;
|
||||||
|
j["id"] = QString::number(book.id());
|
||||||
|
QJsonArray authors;
|
||||||
|
|
||||||
|
repository::AuthorRepository a(m_db);
|
||||||
|
|
||||||
|
for (const auto& author : a.findByBook(book.id()))
|
||||||
|
{
|
||||||
|
QJsonObject jj;
|
||||||
|
jj["id"] = QString::number(author.id());
|
||||||
|
jj["fullName"] = author.fullName();
|
||||||
|
authors.push_back(jj);
|
||||||
|
}
|
||||||
|
|
||||||
|
j["authors"] = authors;
|
||||||
|
j["title"] = book.title();
|
||||||
|
|
||||||
|
auto jDoc = QJsonDocument(j);
|
||||||
|
|
||||||
|
return "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\n\r\n" + jDoc.toJson(QJsonDocument::Indented);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (request.startsWith("GET /books"))
|
||||||
|
{
|
||||||
|
repository::BookRepository b(m_db);
|
||||||
|
|
||||||
QJsonArray jArray;
|
QJsonArray jArray;
|
||||||
for (auto it = authors.begin(); it != authors.end(); ++it)
|
for (const auto& book : b.findAll())
|
||||||
|
{
|
||||||
|
QJsonObject j;
|
||||||
|
j["id"] = QString::number(book.id());
|
||||||
|
j["title"] = book.title();
|
||||||
|
|
||||||
|
QJsonArray authors;
|
||||||
|
repository::AuthorRepository a(m_db);
|
||||||
|
for (const auto& author : a.findByBook(book.id()))
|
||||||
|
{
|
||||||
|
QJsonObject jj;
|
||||||
|
jj["id"] = QString::number(author.id());
|
||||||
|
jj["fullName"] = author.fullName();
|
||||||
|
authors.push_back(jj);
|
||||||
|
}
|
||||||
|
j["authors"] = authors;
|
||||||
|
|
||||||
|
jArray.push_back(j);
|
||||||
|
}
|
||||||
|
auto jDoc = QJsonDocument(jArray);
|
||||||
|
|
||||||
|
return "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\n\r\n" + jDoc.toJson(QJsonDocument::Indented);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (request.startsWith("GET /authors"))
|
||||||
|
{
|
||||||
|
repository::AuthorRepository a(m_db);
|
||||||
|
auto res = a.findAll();
|
||||||
|
|
||||||
|
QJsonArray jArray;
|
||||||
|
for (auto it = res.begin(); it != res.end(); ++it)
|
||||||
{
|
{
|
||||||
const auto& author = *it;
|
const auto& author = *it;
|
||||||
|
|
||||||
QJsonObject j;
|
QJsonObject j;
|
||||||
j["id"] = QString::number(author.id);
|
j["id"] = QString::number(author.id());
|
||||||
j["name"] = QString(author.name);
|
j["fullName"] = author.fullName();
|
||||||
// j["last"] = QString::fromStdString(author.last());
|
|
||||||
// j["age"] = author.age();
|
QJsonArray books;
|
||||||
|
repository::BookRepository b(m_db);
|
||||||
|
for (const auto& book : b.findByAuthor(author.id()))
|
||||||
|
{
|
||||||
|
QJsonObject jj;
|
||||||
|
jj["id"] = QString::number(book.id());
|
||||||
|
jj["title"] = book.title();
|
||||||
|
books.push_back(jj);
|
||||||
|
}
|
||||||
|
j["books"] = books;
|
||||||
|
|
||||||
jArray.push_back(j);
|
jArray.push_back(j);
|
||||||
}
|
}
|
||||||
auto jDoc = QJsonDocument(jArray);
|
auto jDoc = QJsonDocument(jArray);
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
#ifndef RESTAPISERVER_H
|
#ifndef RESTAPISERVER_H
|
||||||
#define RESTAPISERVER_H
|
#define RESTAPISERVER_H
|
||||||
|
|
||||||
|
#include <odb/database.hxx>
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
#include <QTcpServer>
|
#include <QTcpServer>
|
||||||
#include <QTcpSocket>
|
#include <QTcpSocket>
|
||||||
|
|
||||||
@@ -8,7 +11,7 @@ class Q_DECL_EXPORT RestApiServer : public QTcpServer
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit RestApiServer(QObject* parent = nullptr);
|
explicit RestApiServer(odb::core::database& db, QObject* parent = nullptr);
|
||||||
void start(quint16 port = 8080);
|
void start(quint16 port = 8080);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@@ -19,6 +22,8 @@ private slots:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
QByteArray processRequest(const QString& request);
|
QByteArray processRequest(const QString& request);
|
||||||
|
|
||||||
|
odb::core::database& m_db;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // RESTAPISERVER_H
|
#endif // RESTAPISERVER_H
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
// #define BUILD_SERVICES
|
|
||||||
#include "author_service.h"
|
|
||||||
|
|
||||||
QVector<model::Author> AuthorService::fetchAll()
|
|
||||||
{
|
|
||||||
return AuthorRepository::getAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool AuthorService::add(const model::Author& author)
|
|
||||||
{
|
|
||||||
return AuthorRepository::insert(author);
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <model/author.h>
|
|
||||||
|
|
||||||
#include <repositories/author_repository.h>
|
|
||||||
|
|
||||||
#include <QVector>
|
|
||||||
|
|
||||||
#ifdef BUILD_SERVICES
|
|
||||||
#define SERVICES_EXPORT Q_DECL_EXPORT
|
|
||||||
#else
|
|
||||||
#define SERVICES_EXPORT Q_DECL_IMPORT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class SERVICES_EXPORT AuthorService
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static QVector<model::Author> fetchAll();
|
|
||||||
static bool add(const model::Author& name);
|
|
||||||
};
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
// #define BUILD_SERVICES
|
|
||||||
#include "book_service.h"
|
|
||||||
#include "author_service.h"
|
|
||||||
|
|
||||||
QVector<model::Book> BookService::fetchAll()
|
|
||||||
{
|
|
||||||
return BookRepository::getAll();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool BookService::add(const model::Book& book)
|
|
||||||
{
|
|
||||||
auto res = AuthorRepository::getByName(book.author.name);
|
|
||||||
|
|
||||||
if (!res.has_value())
|
|
||||||
{
|
|
||||||
if (!AuthorService::add(book.author))
|
|
||||||
{
|
|
||||||
qCritical() << "Ошибка добавления автора!";
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
res = AuthorRepository::getByName(book.author.name);
|
|
||||||
}
|
|
||||||
|
|
||||||
model::Book BookAuthor = book;
|
|
||||||
BookAuthor.author = res.value();
|
|
||||||
return BookRepository::insert(BookAuthor);
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <model/book.h>
|
|
||||||
|
|
||||||
#include <repositories/book_repository.h>
|
|
||||||
|
|
||||||
#include <QVector>
|
|
||||||
|
|
||||||
#ifdef BUILD_SERVICES
|
|
||||||
#define SERVICES_EXPORT Q_DECL_EXPORT
|
|
||||||
#else
|
|
||||||
#define SERVICES_EXPORT Q_DECL_IMPORT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class SERVICES_EXPORT BookService
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
static QVector<model::Book> fetchAll();
|
|
||||||
static bool add(const model::Book& book);
|
|
||||||
};
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import qbs
|
|
||||||
|
|
||||||
PSLibrary {
|
|
||||||
Depends { name: "Qt"; submodules: "core", "sql"}
|
|
||||||
|
|
||||||
Depends { name: "repositories" }
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "cpp"
|
|
||||||
files: [
|
|
||||||
"*.h",
|
|
||||||
"*.cpp"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Properties {
|
|
||||||
condition: qbs.buildVariant === "debug"
|
|
||||||
cpp.defines: ["BUILD_SERVICES"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
#include "create_table.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
QString Column::toSQL() const
|
|
||||||
{
|
|
||||||
QString columnDef = name + " " + type;
|
|
||||||
if (primaryKey)
|
|
||||||
columnDef += " PRIMARY KEY";
|
|
||||||
if (notNull)
|
|
||||||
columnDef += " NOT NULL";
|
|
||||||
if (unique)
|
|
||||||
columnDef += " UNIQUE";
|
|
||||||
if (defaultValue)
|
|
||||||
columnDef += " DEFAULT " + *defaultValue;
|
|
||||||
if (foreignKeyTable && foreignKeyColumn)
|
|
||||||
{
|
|
||||||
columnDef += " REFERENCES " + *foreignKeyTable + "(" + *foreignKeyColumn + ")";
|
|
||||||
}
|
|
||||||
return columnDef;
|
|
||||||
}
|
|
||||||
|
|
||||||
TableSchema& TableSchema::addColumn(const Column& column)
|
|
||||||
{
|
|
||||||
columns.push_back(column);
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString TableSchema::get() const
|
|
||||||
{
|
|
||||||
QStringList columnDefs;
|
|
||||||
for (const auto& col : columns)
|
|
||||||
{
|
|
||||||
columnDefs.append(col.toSQL());
|
|
||||||
}
|
|
||||||
|
|
||||||
QString result = "CREATE TABLE IF NOT EXISTS " + name + " ( " + columnDefs.join(", ") + " );";
|
|
||||||
// qDebug() << result;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QString>
|
|
||||||
#include <QStringList>
|
|
||||||
#include <QVector>
|
|
||||||
|
|
||||||
#include <optional>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
struct Column
|
|
||||||
{
|
|
||||||
QString name; // Имя колонки
|
|
||||||
QString type; // Тип колонки
|
|
||||||
bool primaryKey = false; // Является ли колонка первичным ключом?
|
|
||||||
bool notNull = false; // Колонка не должна быть пуста
|
|
||||||
bool unique = false; // Значение в колонке должны быть уникальны
|
|
||||||
std::optional<QString> defaultValue;
|
|
||||||
std::optional<QString> foreignKeyTable;
|
|
||||||
std::optional<QString> foreignKeyColumn;
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* \brief Сформировать SQL код для колонки
|
|
||||||
*/
|
|
||||||
QString toSQL() const;
|
|
||||||
};
|
|
||||||
|
|
||||||
class Q_DECL_EXPORT TableSchema
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
TableSchema(QString tableName) :
|
|
||||||
name(std::move(tableName)) {}
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* \brief Добавить колонку
|
|
||||||
*/
|
|
||||||
TableSchema& addColumn(const Column& column);
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* \brief Сформировать SQL код для создания таблицы
|
|
||||||
*/
|
|
||||||
QString get() const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
QString name; // Имя таблицы
|
|
||||||
QVector<Column> columns; // Список колонок таблицы
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
#include "insert.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace
|
|
||||||
{
|
|
||||||
|
|
||||||
const QString INSERT = QStringLiteral("INSERT");
|
|
||||||
const QString INTO = QStringLiteral("INTO");
|
|
||||||
const QString VALUES = QStringLiteral("VALUES");
|
|
||||||
const QString IGNORE = QStringLiteral("IGNORE");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
QString Insert::get() const
|
|
||||||
{
|
|
||||||
QString resultString = QString("%1 ").arg(INSERT);
|
|
||||||
if (orIgnore)
|
|
||||||
resultString += QString("OR %1 ").arg(IGNORE);
|
|
||||||
resultString += QString("%1 %2 ").arg(INTO).arg(tableName);
|
|
||||||
|
|
||||||
resultString += QString("( %1 ) ").arg(rows.join(", "));
|
|
||||||
|
|
||||||
// TODO как будто бы проще сразу это заполнить значениями
|
|
||||||
QStringList allValue;
|
|
||||||
for (const auto& row : rows)
|
|
||||||
allValue.push_back(QString(":%1").arg(row));
|
|
||||||
|
|
||||||
resultString += QString("%1 ( %2 )").arg(VALUES).arg(allValue.join(", "));
|
|
||||||
|
|
||||||
resultString += ';';
|
|
||||||
// qDebug() << resultString;
|
|
||||||
return resultString;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QString>
|
|
||||||
#include <QStringList>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
struct Q_DECL_EXPORT Insert
|
|
||||||
{
|
|
||||||
QString tableName; // Имя таблицы
|
|
||||||
QStringList rows; // Именования колонок
|
|
||||||
// QStringList params;
|
|
||||||
bool orIgnore = false;
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* \brief Сформировать SQL код для выполнения
|
|
||||||
*/
|
|
||||||
QString get() const;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
#include "select.h"
|
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
namespace
|
|
||||||
{
|
|
||||||
|
|
||||||
const QString SELECT = QStringLiteral("SELECT");
|
|
||||||
const QString FROM = QStringLiteral("FROM");
|
|
||||||
const QString WHERE = QStringLiteral("WHERE");
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
QString Select::get() const
|
|
||||||
{
|
|
||||||
QString allRows = rows.join(", ");
|
|
||||||
|
|
||||||
QString resultString = QString("%1 %2").arg(SELECT).arg(allRows);
|
|
||||||
|
|
||||||
resultString += QString(" %1 %2").arg(FROM).arg(tableName);
|
|
||||||
|
|
||||||
if (!where.isEmpty())
|
|
||||||
resultString += QString(" %1 %2").arg(WHERE).arg(where);
|
|
||||||
|
|
||||||
// resultString += ';';
|
|
||||||
return resultString;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QString>
|
|
||||||
#include <QStringList>
|
|
||||||
|
|
||||||
namespace Builder
|
|
||||||
{
|
|
||||||
|
|
||||||
struct Q_DECL_EXPORT Select
|
|
||||||
{
|
|
||||||
QString tableName; // Имя таблицы
|
|
||||||
QStringList rows = { "*" }; // Колонки
|
|
||||||
QString where = {}; // Условие поиска
|
|
||||||
|
|
||||||
/*!
|
|
||||||
* \brief Сформировать SQL код для выполнения
|
|
||||||
*/
|
|
||||||
QString get() const;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Builder
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import qbs
|
|
||||||
|
|
||||||
PSLibrary {
|
|
||||||
Depends { name: "Qt"; submodules: "sql"}
|
|
||||||
|
|
||||||
|
|
||||||
Group {
|
|
||||||
name: "cpp"
|
|
||||||
files: [
|
|
||||||
"**/*.h",
|
|
||||||
"**/*.cpp"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
101
src/utils/fb2extractor.cpp
Normal file
101
src/utils/fb2extractor.cpp
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
#include "fb2extractor.h"
|
||||||
|
|
||||||
|
// FB2Extractor::FB2Extractor()
|
||||||
|
// {
|
||||||
|
// }
|
||||||
|
|
||||||
|
FB2Extractor::FB2Extractor(QuaZipFile& file) :
|
||||||
|
m_file(&file)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
FB2Extractor::~FB2Extractor()
|
||||||
|
{
|
||||||
|
m_file.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
Fb2Metadata FB2Extractor::parse()
|
||||||
|
{
|
||||||
|
bool isOpen = m_file.open(QIODevice::ReadOnly);
|
||||||
|
// int zipError = fb2File.getZipError();
|
||||||
|
if (!isOpen)
|
||||||
|
{
|
||||||
|
qWarning() << "file in extractor is not open";
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
QXmlStreamReader xmlData(&m_file);
|
||||||
|
|
||||||
|
Fb2Metadata meta;
|
||||||
|
QString currentElement;
|
||||||
|
bool inTitleInfo = false;
|
||||||
|
bool inAuthor = false;
|
||||||
|
QString currentAuthor;
|
||||||
|
|
||||||
|
while (!xmlData.atEnd())
|
||||||
|
{
|
||||||
|
switch (xmlData.readNext())
|
||||||
|
{
|
||||||
|
case QXmlStreamReader::StartElement:
|
||||||
|
currentElement = xmlData.name().toString();
|
||||||
|
|
||||||
|
if (currentElement == "title-info")
|
||||||
|
{
|
||||||
|
inTitleInfo = true;
|
||||||
|
}
|
||||||
|
else if (inTitleInfo)
|
||||||
|
{
|
||||||
|
if (currentElement == "book-title")
|
||||||
|
{
|
||||||
|
meta.title = xmlData.readElementText();
|
||||||
|
}
|
||||||
|
else if (currentElement == "genre")
|
||||||
|
{
|
||||||
|
meta.genres << xmlData.readElementText();
|
||||||
|
}
|
||||||
|
else if (currentElement == "author")
|
||||||
|
{
|
||||||
|
inAuthor = true;
|
||||||
|
currentAuthor.clear();
|
||||||
|
}
|
||||||
|
else if (inAuthor && (currentElement == "first-name" || currentElement == "last-name" || currentElement == "middle-name"))
|
||||||
|
{
|
||||||
|
currentAuthor += xmlData.readElementText() + " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case QXmlStreamReader::EndElement:
|
||||||
|
if (xmlData.name().toString() == "title-info")
|
||||||
|
{
|
||||||
|
inTitleInfo = false;
|
||||||
|
}
|
||||||
|
else if (xmlData.name().toString() == "author" && inAuthor)
|
||||||
|
{
|
||||||
|
meta.authors << currentAuthor.trimmed();
|
||||||
|
inAuthor = false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case QXmlStreamReader::Characters:
|
||||||
|
// Обработка текста уже делается в readElementText()
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Прерываем парсинг, если нашли все метаданные
|
||||||
|
if (!meta.title.isEmpty() && !meta.authors.isEmpty() && !meta.genres.isEmpty())
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (xmlData.hasError())
|
||||||
|
{
|
||||||
|
qWarning() << "XML parsing error:" << xmlData.errorString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return meta;
|
||||||
|
}
|
||||||
36
src/utils/fb2extractor.h
Normal file
36
src/utils/fb2extractor.h
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
#ifndef FB2EXTRACTOR_H
|
||||||
|
#define FB2EXTRACTOR_H
|
||||||
|
|
||||||
|
#include "utils_global.h"
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QString>
|
||||||
|
#include <QXmlStreamReader>
|
||||||
|
|
||||||
|
#include <external_libs/quazip/quazip/quazipfile.h>
|
||||||
|
|
||||||
|
struct Fb2Metadata
|
||||||
|
{
|
||||||
|
QString title; // Название книги
|
||||||
|
QVector<QString> authors; // Авторы
|
||||||
|
QStringList genres; // Жанры
|
||||||
|
};
|
||||||
|
|
||||||
|
Fb2Metadata UTILS_EXPORT parseFb2Metadata(QXmlStreamReader& sr);
|
||||||
|
|
||||||
|
class UTILS_EXPORT FB2Extractor
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
FB2Extractor(QuaZipFile& file);
|
||||||
|
~FB2Extractor();
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief Распарсить инфу из содержимого
|
||||||
|
*/
|
||||||
|
Fb2Metadata parse();
|
||||||
|
|
||||||
|
private:
|
||||||
|
QuaZipFile m_file;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // FB2EXTRACTOR_H
|
||||||
22
src/utils/utils.qbs
Normal file
22
src/utils/utils.qbs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/*!
|
||||||
|
\qmltype cpp-opds
|
||||||
|
\inherits Project
|
||||||
|
\brief Описание
|
||||||
|
*/
|
||||||
|
PSLibrary {
|
||||||
|
name: "utils"
|
||||||
|
cpp.defines: [
|
||||||
|
"UTILS_LIBRARY"
|
||||||
|
]
|
||||||
|
|
||||||
|
Depends { name: "Qt"; submodules: [ "core" ] }
|
||||||
|
Depends { name: "quazip" }
|
||||||
|
|
||||||
|
Group {
|
||||||
|
name: "cpp"
|
||||||
|
files: [
|
||||||
|
"**/*.h",
|
||||||
|
"**/*.cpp",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
12
src/utils/utils_global.h
Normal file
12
src/utils/utils_global.h
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
#ifndef UTILS_GLOBAL_H
|
||||||
|
#define UTILS_GLOBAL_H
|
||||||
|
|
||||||
|
#include <QtCore/qglobal.h>
|
||||||
|
|
||||||
|
#if defined(UTILS_LIBRARY)
|
||||||
|
#define UTILS_EXPORT Q_DECL_EXPORT
|
||||||
|
#else
|
||||||
|
#define UTILS_EXPORT Q_DECL_IMPORT
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // UTILS_GLOBAL_H
|
||||||
142
src/utils/zipwrapper.cpp
Normal file
142
src/utils/zipwrapper.cpp
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
#include "zipwrapper.h"
|
||||||
|
|
||||||
|
#include "fb2extractor.h"
|
||||||
|
|
||||||
|
#include <external_libs/quazip/quazip/quazipfile.h>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
Fb2Metadata parse(QuaZipFile& m_file)
|
||||||
|
{
|
||||||
|
bool isOpen = m_file.open(QIODevice::ReadOnly);
|
||||||
|
// int zipError = fb2File.getZipError();
|
||||||
|
if (!isOpen)
|
||||||
|
{
|
||||||
|
qWarning() << "file in extractor is not open";
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
QXmlStreamReader xmlData(&m_file);
|
||||||
|
|
||||||
|
Fb2Metadata meta;
|
||||||
|
QString currentElement;
|
||||||
|
bool inTitleInfo = false;
|
||||||
|
bool inAuthor = false;
|
||||||
|
QString currentAuthor;
|
||||||
|
|
||||||
|
while (!xmlData.atEnd())
|
||||||
|
{
|
||||||
|
switch (xmlData.readNext())
|
||||||
|
{
|
||||||
|
case QXmlStreamReader::StartElement:
|
||||||
|
currentElement = xmlData.name().toString();
|
||||||
|
|
||||||
|
if (currentElement == "title-info")
|
||||||
|
{
|
||||||
|
inTitleInfo = true;
|
||||||
|
}
|
||||||
|
else if (inTitleInfo)
|
||||||
|
{
|
||||||
|
if (currentElement == "book-title")
|
||||||
|
{
|
||||||
|
meta.title = xmlData.readElementText();
|
||||||
|
}
|
||||||
|
else if (currentElement == "genre")
|
||||||
|
{
|
||||||
|
meta.genres << xmlData.readElementText();
|
||||||
|
}
|
||||||
|
else if (currentElement == "author")
|
||||||
|
{
|
||||||
|
inAuthor = true;
|
||||||
|
currentAuthor.clear();
|
||||||
|
}
|
||||||
|
else if (inAuthor && (currentElement == "first-name" || currentElement == "last-name" || currentElement == "middle-name"))
|
||||||
|
{
|
||||||
|
currentAuthor += xmlData.readElementText() + " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case QXmlStreamReader::EndElement:
|
||||||
|
if (xmlData.name().toString() == "title-info")
|
||||||
|
{
|
||||||
|
inTitleInfo = false;
|
||||||
|
}
|
||||||
|
else if (xmlData.name().toString() == "author" && inAuthor)
|
||||||
|
{
|
||||||
|
meta.authors << currentAuthor.trimmed();
|
||||||
|
inAuthor = false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case QXmlStreamReader::Characters:
|
||||||
|
// Обработка текста уже делается в readElementText()
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Прерываем парсинг, если нашли все метаданные
|
||||||
|
if (!meta.title.isEmpty() && !meta.authors.isEmpty() && !meta.genres.isEmpty())
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (xmlData.hasError())
|
||||||
|
{
|
||||||
|
qWarning() << "XML parsing error:" << xmlData.errorString();
|
||||||
|
}
|
||||||
|
|
||||||
|
return meta;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
ZipWrapper::ZipWrapper(const QString& zipFilePath) :
|
||||||
|
m_zip(zipFilePath)
|
||||||
|
{
|
||||||
|
m_zip.open(QuaZip::mdUnzip);
|
||||||
|
isOpen();
|
||||||
|
}
|
||||||
|
|
||||||
|
ZipWrapper::~ZipWrapper()
|
||||||
|
{
|
||||||
|
// В любом случае закрываем архив
|
||||||
|
m_zip.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
QVector<Fb2Metadata> ZipWrapper::work()
|
||||||
|
{
|
||||||
|
if (!isOpen())
|
||||||
|
return {};
|
||||||
|
|
||||||
|
// int i = 0;
|
||||||
|
QVector<Fb2Metadata> parsedBooks;
|
||||||
|
for (bool more = m_zip.goToFirstFile(); more; more = m_zip.goToNextFile())
|
||||||
|
{
|
||||||
|
// ++i;
|
||||||
|
if (m_zip.getCurrentFileName().endsWith(".fb2"))
|
||||||
|
{
|
||||||
|
QuaZipFile fb2File(&m_zip);
|
||||||
|
|
||||||
|
auto fb2Extr = parse(fb2File);
|
||||||
|
// qWarning() << i << ":" << fb2Extr.title << fb2Extr.authors << fb2Extr.genres;
|
||||||
|
parsedBooks.push_back(fb2Extr);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
qWarning() << "Неизвестный файл" << &m_zip;
|
||||||
|
}
|
||||||
|
|
||||||
|
return parsedBooks;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ZipWrapper::isOpen()
|
||||||
|
{
|
||||||
|
if (m_zip.isOpen())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
qWarning() << "Не удалось открыть архив:" << m_zip.getZipName();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
29
src/utils/zipwrapper.h
Normal file
29
src/utils/zipwrapper.h
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
#ifndef ZIPWRAPPER_H
|
||||||
|
#define ZIPWRAPPER_H
|
||||||
|
|
||||||
|
#include "utils_global.h"
|
||||||
|
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QString>
|
||||||
|
#include <QXmlStreamReader>
|
||||||
|
|
||||||
|
#include <external_libs/quazip/quazip/quazip.h>
|
||||||
|
#include <external_libs/quazip/quazip/quazipfile.h> // TODO для совместимости. Временно
|
||||||
|
|
||||||
|
#include "fb2extractor.h"
|
||||||
|
|
||||||
|
class UTILS_EXPORT ZipWrapper
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ZipWrapper(const QString& zipFilePath);
|
||||||
|
~ZipWrapper();
|
||||||
|
|
||||||
|
QVector<Fb2Metadata> work();
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool isOpen();
|
||||||
|
|
||||||
|
QuaZip m_zip;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // ZIPWRAPPER_H
|
||||||
Reference in New Issue
Block a user