2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/DialogId.h"
|
2018-11-27 15:39:13 +01:00
|
|
|
#include "td/telegram/NotificationGroupId.h"
|
2018-12-20 18:24:49 +01:00
|
|
|
#include "td/telegram/NotificationGroupKey.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/actor/PromiseFuture.h"
|
|
|
|
|
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
2019-01-07 01:17:11 +01:00
|
|
|
|
|
|
|
class SqliteConnectionSafe;
|
|
|
|
class SqliteDb;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
class DialogDbSyncInterface {
|
|
|
|
public:
|
|
|
|
DialogDbSyncInterface() = default;
|
|
|
|
DialogDbSyncInterface(const DialogDbSyncInterface &) = delete;
|
|
|
|
DialogDbSyncInterface &operator=(const DialogDbSyncInterface &) = delete;
|
|
|
|
virtual ~DialogDbSyncInterface() = default;
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual Status add_dialog(DialogId dialog_id, int64 order, BufferSlice data,
|
|
|
|
vector<NotificationGroupKey> notification_groups) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual Result<BufferSlice> get_dialog(DialogId dialog_id) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual Result<vector<BufferSlice>> get_dialogs(int64 order, DialogId dialog_id, int32 limit) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual Result<vector<NotificationGroupKey>> get_notification_groups_by_last_notification_date(
|
2018-12-20 18:24:49 +01:00
|
|
|
NotificationGroupKey notification_group_key, int32 limit) = 0;
|
|
|
|
|
|
|
|
virtual Result<NotificationGroupKey> get_notification_group(NotificationGroupId notification_group_id) = 0;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual Status begin_transaction() = 0;
|
|
|
|
virtual Status commit_transaction() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DialogDbSyncSafeInterface {
|
|
|
|
public:
|
|
|
|
DialogDbSyncSafeInterface() = default;
|
|
|
|
DialogDbSyncSafeInterface(const DialogDbSyncSafeInterface &) = delete;
|
|
|
|
DialogDbSyncSafeInterface &operator=(const DialogDbSyncSafeInterface &) = delete;
|
|
|
|
virtual ~DialogDbSyncSafeInterface() = default;
|
|
|
|
|
|
|
|
virtual DialogDbSyncInterface &get() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DialogDbAsyncInterface {
|
|
|
|
public:
|
|
|
|
DialogDbAsyncInterface() = default;
|
|
|
|
DialogDbAsyncInterface(const DialogDbAsyncInterface &) = delete;
|
|
|
|
DialogDbAsyncInterface &operator=(const DialogDbAsyncInterface &) = delete;
|
|
|
|
virtual ~DialogDbAsyncInterface() = default;
|
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual void add_dialog(DialogId dialog_id, int64 order, BufferSlice data,
|
|
|
|
vector<NotificationGroupKey> notification_groups, Promise<> promise) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
virtual void get_dialog(DialogId dialog_id, Promise<BufferSlice> promise) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual void get_dialogs(int64 order, DialogId dialog_id, int32 limit, Promise<vector<BufferSlice>> promise) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
2018-12-22 21:24:18 +01:00
|
|
|
virtual void get_notification_groups_by_last_notification_date(NotificationGroupKey notification_group_key,
|
|
|
|
int32 limit,
|
|
|
|
Promise<vector<NotificationGroupKey>> promise) = 0;
|
2018-12-20 18:24:49 +01:00
|
|
|
|
|
|
|
virtual void get_notification_group(NotificationGroupId notification_group_id,
|
|
|
|
Promise<NotificationGroupKey> promise) = 0;
|
|
|
|
|
|
|
|
virtual void close(Promise<> promise) = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Status init_dialog_db(SqliteDb &db, int version, bool &was_created) TD_WARN_UNUSED_RESULT;
|
|
|
|
Status drop_dialog_db(SqliteDb &db, int version) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
std::shared_ptr<DialogDbSyncSafeInterface> create_dialog_db_sync(
|
|
|
|
std::shared_ptr<SqliteConnectionSafe> sqlite_connection);
|
|
|
|
|
|
|
|
std::shared_ptr<DialogDbAsyncInterface> create_dialog_db_async(std::shared_ptr<DialogDbSyncSafeInterface> sync_db,
|
|
|
|
int32 scheduler_id);
|
2019-01-07 01:17:11 +01:00
|
|
|
|
2018-07-18 03:30:29 +02:00
|
|
|
} // namespace td
|