2021-04-13 13:27:31 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* (at your option) 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-11-14 23:23:39 +00:00
|
|
|
#pragma once
|
2021-04-13 13:27:31 +00:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QDataStream>
|
2023-04-15 18:07:27 +00:00
|
|
|
|
2021-04-13 13:27:31 +00:00
|
|
|
#include <list>
|
|
|
|
|
2023-04-15 18:07:27 +00:00
|
|
|
#include <storage.h>
|
|
|
|
|
2021-04-18 12:49:20 +00:00
|
|
|
#include <shared/messageinfo.h>
|
2021-04-13 13:27:31 +00:00
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
2023-04-15 18:07:27 +00:00
|
|
|
class UrlStorage {
|
|
|
|
public:
|
2021-04-13 13:27:31 +00:00
|
|
|
class UrlInfo;
|
2023-04-15 18:07:27 +00:00
|
|
|
|
2021-04-13 13:27:31 +00:00
|
|
|
public:
|
|
|
|
UrlStorage(const QString& name);
|
|
|
|
~UrlStorage();
|
|
|
|
|
|
|
|
void open();
|
|
|
|
void close();
|
|
|
|
|
|
|
|
void addFile(const QString& url);
|
|
|
|
void addFile(const QString& url, const QString& path);
|
|
|
|
void addFile(const QString& url, const QString& account, const QString& jid, const QString& id);
|
|
|
|
void addFile(const QString& url, const QString& path, const QString& account, const QString& jid, const QString& id);
|
2021-04-18 12:49:20 +00:00
|
|
|
void addFile(const std::list<Shared::MessageInfo>& msgs, const QString& url, const QString& path); //this one overwrites all that was
|
|
|
|
std::list<Shared::MessageInfo> removeFile(const QString& url); //removes entry like it never was in the database, returns affected message infos
|
|
|
|
std::list<Shared::MessageInfo> deletedFile(const QString& path); //empties the localPath of the entry, returns affected message infos
|
|
|
|
std::list<Shared::MessageInfo> setPath(const QString& url, const QString& path);
|
|
|
|
QString getUrl(const QString& path);
|
2021-04-13 13:27:31 +00:00
|
|
|
QString addMessageAndCheckForPath(const QString& url, const QString& account, const QString& jid, const QString& id);
|
2021-04-18 12:49:20 +00:00
|
|
|
std::pair<QString, std::list<Shared::MessageInfo>> getPath(const QString& url);
|
2021-04-13 13:27:31 +00:00
|
|
|
|
|
|
|
private:
|
2023-04-15 18:07:27 +00:00
|
|
|
LMDBAL::Base base;
|
|
|
|
LMDBAL::Storage<QString, UrlInfo>* urlToInfo;
|
|
|
|
LMDBAL::Storage<QString, QString>* pathToUrl;
|
2021-04-13 13:27:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void writeInfo(const QString& key, const UrlInfo& info, bool overwrite = false);
|
2023-11-02 22:55:11 +00:00
|
|
|
void writeInfo(const QString& key, const UrlInfo& info, const LMDBAL::WriteTransaction& txn, bool overwrite = false);
|
2021-04-18 12:49:20 +00:00
|
|
|
UrlInfo addToInfo(const QString& url, const QString& account, const QString& jid, const QString& id, const QString& path = "-s");
|
2021-04-13 13:27:31 +00:00
|
|
|
|
2023-04-15 18:07:27 +00:00
|
|
|
public:
|
2021-04-13 13:27:31 +00:00
|
|
|
class UrlInfo {
|
|
|
|
public:
|
|
|
|
UrlInfo(const QString& path);
|
2021-04-18 12:49:20 +00:00
|
|
|
UrlInfo(const QString& path, const std::list<Shared::MessageInfo>& msgs);
|
2021-04-13 13:27:31 +00:00
|
|
|
UrlInfo();
|
|
|
|
~UrlInfo();
|
|
|
|
|
|
|
|
void serialize(QDataStream& data) const;
|
|
|
|
void deserialize(QDataStream& data);
|
|
|
|
|
|
|
|
QString getPath() const;
|
|
|
|
bool hasPath() const;
|
|
|
|
void setPath(const QString& path);
|
|
|
|
|
2021-04-18 12:49:20 +00:00
|
|
|
bool addMessage(const QString& acc, const QString& jid, const QString& id);
|
|
|
|
void getMessages(std::list<Shared::MessageInfo>& container) const;
|
2021-04-13 13:27:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString localPath;
|
2021-04-18 12:49:20 +00:00
|
|
|
std::list<Shared::MessageInfo> messages;
|
2021-04-13 13:27:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-04-15 18:07:27 +00:00
|
|
|
QDataStream& operator >> (QDataStream &in, Core::UrlStorage::UrlInfo& info);
|
|
|
|
QDataStream& operator << (QDataStream &out, const Core::UrlStorage::UrlInfo& info);
|