/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #pragma once #include "mtproto/sender.h" namespace crl { class semaphore; } // namespace crl namespace Platform { enum class PermissionType; } // namespace Platform namespace Media::Audio { class Track; } // namespace Media::Audio namespace Main { class Session; } // namespace Main namespace Calls::Group { struct JoinInfo; class Panel; class ChooseJoinAsProcess; } // namespace Calls::Group namespace tgcalls { class VideoCaptureInterface; } // namespace tgcalls namespace Calls { class Call; enum class CallType; class GroupCall; class Panel; struct DhConfig; class Instance final : public base::has_weak_ptr { public: Instance(); ~Instance(); void startOutgoingCall(not_null user, bool video); void startOrJoinGroupCall( not_null peer, const QString &joinHash = QString(), bool confirmNeeded = false); void handleUpdate( not_null session, const MTPUpdate &update); // Called by Data::GroupCall when it is appropriate by the 'version'. void applyGroupCallUpdateChecked( not_null session, const MTPUpdate &update); void showInfoPanel(not_null call); void showInfoPanel(not_null call); [[nodiscard]] Call *currentCall() const; [[nodiscard]] rpl::producer currentCallValue() const; [[nodiscard]] GroupCall *currentGroupCall() const; [[nodiscard]] rpl::producer currentGroupCallValue() const; [[nodiscard]] bool inCall() const; [[nodiscard]] bool inGroupCall() const; [[nodiscard]] bool hasActivePanel( not_null session) const; bool activateCurrentCall(const QString &joinHash = QString()); bool minimizeCurrentActiveCall(); bool closeCurrentActiveCall(); [[nodiscard]] auto getVideoCapture( std::optional deviceId = std::nullopt, bool isScreenCapture = false) -> std::shared_ptr; void requestPermissionsOrFail(Fn onSuccess, bool video = true); void setCurrentAudioDevice(bool input, const QString &deviceId); [[nodiscard]] FnMut addAsyncWaiter(); [[nodiscard]] bool isQuitPrevent(); private: class Delegate; friend class Delegate; not_null ensureSoundLoaded(const QString &key); void playSoundOnce(const QString &key); void createCall(not_null user, CallType type, bool video); void destroyCall(not_null call); void createGroupCall( Group::JoinInfo info, const MTPInputGroupCall &inputCall); void destroyGroupCall(not_null call); void requestPermissionOrFail( Platform::PermissionType type, Fn onSuccess); void refreshDhConfig(); void refreshServerConfig(not_null session); bytes::const_span updateDhConfig(const MTPmessages_DhConfig &data); void destroyCurrentCall(); void handleCallUpdate( not_null session, const MTPPhoneCall &call); void handleSignalingData( not_null session, const MTPDupdatePhoneCallSignalingData &data); void handleGroupCallUpdate( not_null session, const MTPUpdate &update); const std::unique_ptr _delegate; const std::unique_ptr _cachedDhConfig; crl::time _lastServerConfigUpdateTime = 0; base::weak_ptr _serverConfigRequestSession; std::weak_ptr _videoCapture; std::unique_ptr _currentCall; rpl::event_stream _currentCallChanges; std::unique_ptr _currentCallPanel; std::unique_ptr _currentGroupCall; rpl::event_stream _currentGroupCallChanges; std::unique_ptr _currentGroupCallPanel; base::flat_map> _tracks; const std::unique_ptr _chooseJoinAs; base::flat_set> _asyncWaiters; }; } // namespace Calls