2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
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
|
|
|
|
|
2022-06-02 16:52:12 +02:00
|
|
|
#include "td/telegram/Dimensions.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/files/FileId.h"
|
2022-10-19 17:30:25 +02:00
|
|
|
#include "td/telegram/FullMessageId.h"
|
2022-04-10 00:15:49 +02:00
|
|
|
#include "td/telegram/PhotoSize.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/SecretInputMedia.h"
|
2021-10-27 16:32:09 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2022-10-20 20:31:00 +02:00
|
|
|
#include "td/telegram/TranscriptionInfo.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-10-20 17:53:12 +02:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/buffer.h"
|
|
|
|
#include "td/utils/common.h"
|
2022-10-20 12:28:07 +02:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2022-10-19 17:30:25 +02:00
|
|
|
#include "td/utils/FlatHashSet.h"
|
2022-11-02 17:51:41 +01:00
|
|
|
#include "td/utils/Promise.h"
|
|
|
|
#include "td/utils/Status.h"
|
2022-08-04 09:50:34 +02:00
|
|
|
#include "td/utils/WaitFreeHashMap.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
class Td;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-10-20 17:53:12 +02:00
|
|
|
class VideoNotesManager final : public Actor {
|
2018-12-31 20:04:05 +01:00
|
|
|
public:
|
2022-10-20 17:53:12 +02:00
|
|
|
VideoNotesManager(Td *td, ActorShared<> parent);
|
2022-07-20 12:40:14 +02:00
|
|
|
VideoNotesManager(const VideoNotesManager &) = delete;
|
|
|
|
VideoNotesManager &operator=(const VideoNotesManager &) = delete;
|
|
|
|
VideoNotesManager(VideoNotesManager &&) = delete;
|
|
|
|
VideoNotesManager &operator=(VideoNotesManager &&) = delete;
|
2022-10-20 17:53:12 +02:00
|
|
|
~VideoNotesManager() final;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-27 20:14:32 +02:00
|
|
|
int32 get_video_note_duration(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-08-28 13:16:29 +02:00
|
|
|
tl_object_ptr<td_api::videoNote> get_video_note_object(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-03-01 20:51:33 +01:00
|
|
|
void create_video_note(FileId file_id, string minithumbnail, PhotoSize thumbnail, int32 duration,
|
2022-10-20 22:23:40 +02:00
|
|
|
Dimensions dimensions, string waveform, bool replace);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-10-19 17:30:25 +02:00
|
|
|
void register_video_note(FileId video_note_file_id, FullMessageId full_message_id, const char *source);
|
|
|
|
|
|
|
|
void unregister_video_note(FileId video_note_file_id, FullMessageId full_message_id, const char *source);
|
|
|
|
|
2022-10-20 20:31:00 +02:00
|
|
|
void recognize_speech(FullMessageId full_message_id, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void rate_speech_recognition(FullMessageId full_message_id, bool is_good, Promise<Unit> &&promise);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<telegram_api::InputMedia> get_input_media(FileId file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file,
|
|
|
|
tl_object_ptr<telegram_api::InputFile> input_thumbnail) const;
|
|
|
|
|
|
|
|
SecretInputMedia get_secret_input_media(FileId video_note_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file,
|
2022-05-11 06:46:06 +02:00
|
|
|
BufferSlice thumbnail, int32 layer) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
FileId get_video_note_thumbnail_file_id(FileId file_id) const;
|
|
|
|
|
|
|
|
void delete_video_note_thumbnail(FileId file_id);
|
|
|
|
|
|
|
|
FileId dup_video_note(FileId new_id, FileId old_id);
|
|
|
|
|
2022-08-03 20:38:03 +02:00
|
|
|
void merge_video_notes(FileId new_id, FileId old_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void store_video_note(FileId file_id, StorerT &storer) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
FileId parse_video_note(ParserT &parser);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
class VideoNote {
|
|
|
|
public:
|
|
|
|
int32 duration = 0;
|
|
|
|
Dimensions dimensions;
|
2022-10-20 22:23:40 +02:00
|
|
|
string waveform;
|
2019-03-01 20:51:33 +01:00
|
|
|
string minithumbnail;
|
2018-12-31 20:04:05 +01:00
|
|
|
PhotoSize thumbnail;
|
2022-10-20 20:31:00 +02:00
|
|
|
unique_ptr<TranscriptionInfo> transcription_info;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
FileId file_id;
|
|
|
|
};
|
|
|
|
|
2022-10-20 20:31:00 +02:00
|
|
|
VideoNote *get_video_note(FileId file_id);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
const VideoNote *get_video_note(FileId file_id) const;
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
FileId on_get_video_note(unique_ptr<VideoNote> new_video_note, bool replace);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2022-10-20 20:31:00 +02:00
|
|
|
void on_video_note_transcription_updated(FileId file_id);
|
|
|
|
|
|
|
|
void on_video_note_transcription_completed(FileId file_id);
|
|
|
|
|
|
|
|
void on_transcribed_audio_update(FileId file_id, bool is_initial,
|
|
|
|
Result<telegram_api::object_ptr<telegram_api::updateTranscribedAudio>> r_update);
|
|
|
|
|
2022-10-20 17:53:12 +02:00
|
|
|
void tear_down() final;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Td *td_;
|
2022-10-20 17:53:12 +02:00
|
|
|
ActorShared<> parent_;
|
|
|
|
|
2022-08-04 09:50:34 +02:00
|
|
|
WaitFreeHashMap<FileId, unique_ptr<VideoNote>, FileIdHash> video_notes_;
|
2022-10-19 17:30:25 +02:00
|
|
|
|
|
|
|
FlatHashMap<FileId, FlatHashSet<FullMessageId, FullMessageIdHash>, FileIdHash> video_note_messages_;
|
|
|
|
FlatHashMap<FullMessageId, FileId, FullMessageIdHash> message_video_notes_;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|