2023-07-10 12:18:32 +02:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2023-07-10 12:18:32 +02: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"
|
|
|
|
#include "td/telegram/NotificationId.h"
|
|
|
|
#include "td/telegram/StoryFullId.h"
|
2023-07-13 01:03:02 +02:00
|
|
|
#include "td/telegram/StoryListId.h"
|
2023-07-10 12:18:32 +02:00
|
|
|
|
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Promise.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <memory>
|
2023-07-16 22:15:38 +02:00
|
|
|
#include <utility>
|
2023-07-10 12:18:32 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class SqliteConnectionSafe;
|
|
|
|
class SqliteDb;
|
|
|
|
|
2023-07-10 17:50:03 +02:00
|
|
|
struct StoryDbStory {
|
|
|
|
StoryFullId story_full_id_;
|
|
|
|
BufferSlice data_;
|
|
|
|
|
|
|
|
StoryDbStory(StoryFullId story_full_id, BufferSlice &&data) : story_full_id_(story_full_id), data_(std::move(data)) {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-07-16 22:15:38 +02:00
|
|
|
struct StoryDbGetActiveStoryListResult {
|
|
|
|
vector<std::pair<DialogId, BufferSlice>> active_stories_;
|
|
|
|
int64 next_order_ = 0;
|
|
|
|
DialogId next_dialog_id_;
|
|
|
|
};
|
|
|
|
|
2023-07-10 12:18:32 +02:00
|
|
|
class StoryDbSyncInterface {
|
|
|
|
public:
|
|
|
|
StoryDbSyncInterface() = default;
|
|
|
|
StoryDbSyncInterface(const StoryDbSyncInterface &) = delete;
|
|
|
|
StoryDbSyncInterface &operator=(const StoryDbSyncInterface &) = delete;
|
|
|
|
virtual ~StoryDbSyncInterface() = default;
|
|
|
|
|
|
|
|
virtual void add_story(StoryFullId story_full_id, int32 expires_at, NotificationId notification_id,
|
|
|
|
BufferSlice data) = 0;
|
|
|
|
|
|
|
|
virtual void delete_story(StoryFullId story_full_id) = 0;
|
|
|
|
|
|
|
|
virtual Result<BufferSlice> get_story(StoryFullId story_full_id) = 0;
|
|
|
|
|
2023-07-10 17:50:03 +02:00
|
|
|
virtual vector<StoryDbStory> get_expiring_stories(int32 expires_till, int32 limit) = 0;
|
2023-07-10 12:18:32 +02:00
|
|
|
|
2023-07-10 17:50:03 +02:00
|
|
|
virtual vector<StoryDbStory> get_stories_from_notification_id(DialogId dialog_id, NotificationId from_notification_id,
|
|
|
|
int32 limit) = 0;
|
2023-07-10 12:18:32 +02:00
|
|
|
|
2023-07-13 01:03:02 +02:00
|
|
|
virtual void add_active_stories(DialogId dialog_id, StoryListId story_list_id, int64 dialog_order,
|
|
|
|
BufferSlice data) = 0;
|
|
|
|
|
2023-07-14 15:10:52 +02:00
|
|
|
virtual void delete_active_stories(DialogId dialog_id) = 0;
|
|
|
|
|
2023-07-14 17:03:49 +02:00
|
|
|
virtual Result<BufferSlice> get_active_stories(DialogId dialog_id) = 0;
|
|
|
|
|
2023-07-16 22:15:38 +02:00
|
|
|
virtual StoryDbGetActiveStoryListResult get_active_story_list(StoryListId story_list_id, int64 order,
|
|
|
|
DialogId dialog_id, int32 limit) = 0;
|
|
|
|
|
2023-07-16 21:43:42 +02:00
|
|
|
virtual void add_active_story_list_state(StoryListId story_list_id, BufferSlice data) = 0;
|
2023-07-16 16:03:20 +02:00
|
|
|
|
2023-07-16 21:43:42 +02:00
|
|
|
virtual Result<BufferSlice> get_active_story_list_state(StoryListId story_list_id) = 0;
|
2023-07-16 16:03:20 +02:00
|
|
|
|
2023-07-10 12:18:32 +02:00
|
|
|
virtual Status begin_write_transaction() = 0;
|
|
|
|
virtual Status commit_transaction() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class StoryDbSyncSafeInterface {
|
|
|
|
public:
|
|
|
|
StoryDbSyncSafeInterface() = default;
|
|
|
|
StoryDbSyncSafeInterface(const StoryDbSyncSafeInterface &) = delete;
|
|
|
|
StoryDbSyncSafeInterface &operator=(const StoryDbSyncSafeInterface &) = delete;
|
|
|
|
virtual ~StoryDbSyncSafeInterface() = default;
|
|
|
|
|
|
|
|
virtual StoryDbSyncInterface &get() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class StoryDbAsyncInterface {
|
|
|
|
public:
|
|
|
|
StoryDbAsyncInterface() = default;
|
|
|
|
StoryDbAsyncInterface(const StoryDbAsyncInterface &) = delete;
|
|
|
|
StoryDbAsyncInterface &operator=(const StoryDbAsyncInterface &) = delete;
|
|
|
|
virtual ~StoryDbAsyncInterface() = default;
|
|
|
|
|
|
|
|
virtual void add_story(StoryFullId story_full_id, int32 expires_at, NotificationId notification_id, BufferSlice data,
|
|
|
|
Promise<Unit> promise) = 0;
|
|
|
|
|
|
|
|
virtual void delete_story(StoryFullId story_full_id, Promise<Unit> promise) = 0;
|
|
|
|
|
|
|
|
virtual void get_story(StoryFullId story_full_id, Promise<BufferSlice> promise) = 0;
|
|
|
|
|
2023-07-10 17:50:03 +02:00
|
|
|
virtual void get_expiring_stories(int32 expires_till, int32 limit, Promise<vector<StoryDbStory>> promise) = 0;
|
2023-07-10 12:18:32 +02:00
|
|
|
|
|
|
|
virtual void get_stories_from_notification_id(DialogId dialog_id, NotificationId from_notification_id, int32 limit,
|
2023-07-10 17:50:03 +02:00
|
|
|
Promise<vector<StoryDbStory>> promise) = 0;
|
2023-07-10 12:18:32 +02:00
|
|
|
|
2023-07-13 01:03:02 +02:00
|
|
|
virtual void add_active_stories(DialogId dialog_id, StoryListId story_list_id, int64 dialog_order, BufferSlice data,
|
|
|
|
Promise<Unit> promise) = 0;
|
|
|
|
|
2023-07-14 15:10:52 +02:00
|
|
|
virtual void delete_active_stories(DialogId dialog_id, Promise<Unit> promise) = 0;
|
|
|
|
|
2023-07-14 17:03:49 +02:00
|
|
|
virtual void get_active_stories(DialogId dialog_id, Promise<BufferSlice> promise) = 0;
|
|
|
|
|
2023-07-16 22:15:38 +02:00
|
|
|
virtual void get_active_story_list(StoryListId story_list_id, int64 order, DialogId dialog_id, int32 limit,
|
|
|
|
Promise<StoryDbGetActiveStoryListResult> promise) = 0;
|
|
|
|
|
2023-07-16 21:43:42 +02:00
|
|
|
virtual void add_active_story_list_state(StoryListId story_list_id, BufferSlice data, Promise<Unit> promise) = 0;
|
2023-07-16 16:03:20 +02:00
|
|
|
|
2023-07-16 21:43:42 +02:00
|
|
|
virtual void get_active_story_list_state(StoryListId story_list_id, Promise<BufferSlice> promise) = 0;
|
2023-07-16 16:03:20 +02:00
|
|
|
|
2023-07-10 12:18:32 +02:00
|
|
|
virtual void close(Promise<Unit> promise) = 0;
|
|
|
|
virtual void force_flush() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
Status init_story_db(SqliteDb &db, int version) TD_WARN_UNUSED_RESULT;
|
|
|
|
Status drop_story_db(SqliteDb &db, int version) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
std::shared_ptr<StoryDbSyncSafeInterface> create_story_db_sync(std::shared_ptr<SqliteConnectionSafe> sqlite_connection);
|
|
|
|
|
|
|
|
std::shared_ptr<StoryDbAsyncInterface> create_story_db_async(std::shared_ptr<StoryDbSyncSafeInterface> sync_db,
|
|
|
|
int32 scheduler_id = -1);
|
|
|
|
|
|
|
|
} // namespace td
|