tdesktop/Telegram/SourceFiles/calls/calls_call.h

277 lines
6.6 KiB
C
Raw Normal View History

/*
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 "base/weak_ptr.h"
#include "base/timer.h"
#include "base/bytes.h"
#include "mtproto/sender.h"
2019-11-18 09:28:14 +00:00
#include "mtproto/mtproto_auth_key.h"
2017-05-03 13:43:01 +00:00
namespace Media {
namespace Audio {
class Track;
} // namespace Audio
} // namespace Media
2020-07-09 17:38:26 +00:00
namespace tgcalls {
class Instance;
2020-07-16 16:23:55 +00:00
class VideoCaptureInterface;
2020-07-09 17:38:26 +00:00
enum class State;
2020-07-14 17:45:34 +00:00
enum class VideoState;
2020-08-05 12:11:18 +00:00
enum class AudioState;
2020-07-09 17:38:26 +00:00
} // namespace tgcalls
2020-08-11 09:59:48 +00:00
namespace Webrtc {
2020-08-05 12:11:18 +00:00
enum class VideoState;
2020-07-17 18:59:38 +00:00
class VideoTrack;
2020-08-11 09:59:48 +00:00
} // namespace Webrtc
2020-07-17 18:59:38 +00:00
namespace Calls {
struct DhConfig {
int32 version = 0;
int32 g = 0;
bytes::vector p;
};
enum class ErrorType {
NoCamera,
NoMicrophone,
NotStartedCall,
NotVideoCall,
Unknown,
};
struct Error {
ErrorType type = ErrorType::Unknown;
QString details;
};
2019-11-27 08:02:56 +00:00
class Call : public base::has_weak_ptr {
public:
class Delegate {
public:
virtual DhConfig getDhConfig() const = 0;
virtual void callFinished(not_null<Call*> call) = 0;
virtual void callFailed(not_null<Call*> call) = 0;
virtual void callRedial(not_null<Call*> call) = 0;
enum class CallSound {
2017-05-03 13:43:01 +00:00
Connecting,
Busy,
Ended,
};
virtual void callPlaySound(CallSound sound) = 0;
virtual void callRequestPermissionsOrFail(
Fn<void()> onSuccess,
bool video) = 0;
virtual auto getVideoCapture()
-> std::shared_ptr<tgcalls::VideoCaptureInterface> = 0;
2017-05-03 13:43:01 +00:00
virtual ~Delegate() = default;
2018-09-18 10:43:14 +00:00
};
static constexpr auto kSoundSampleMs = 100;
enum class Type {
Incoming,
Outgoing,
};
Call(not_null<Delegate*> delegate, not_null<UserData*> user, Type type, bool video);
2020-06-25 17:57:36 +00:00
[[nodiscard]] Type type() const {
return _type;
}
2020-06-25 17:57:36 +00:00
[[nodiscard]] not_null<UserData*> user() const {
return _user;
}
2020-06-25 17:57:36 +00:00
[[nodiscard]] bool isIncomingWaiting() const;
void start(bytes::const_span random);
bool handleUpdate(const MTPPhoneCall &call);
bool handleSignalingData(const MTPDupdatePhoneCallSignalingData &data);
enum State {
Starting,
WaitingInit,
WaitingInitAck,
Established,
FailedHangingUp,
Failed,
HangingUp,
Ended,
EndedByOtherDevice,
ExchangingKeys,
Waiting,
Requesting,
WaitingIncoming,
Ringing,
Busy,
};
2020-07-16 16:23:55 +00:00
[[nodiscard]] State state() const {
2020-06-25 17:57:36 +00:00
return _state.current();
}
2020-07-16 16:23:55 +00:00
[[nodiscard]] rpl::producer<State> stateValue() const {
2020-06-25 17:57:36 +00:00
return _state.value();
}
[[nodiscard]] rpl::producer<Error> errors() const {
return _errors.events();
}
2020-08-05 12:11:18 +00:00
enum class RemoteAudioState {
Muted,
Active,
2020-07-16 16:23:55 +00:00
};
2020-08-05 12:11:18 +00:00
[[nodiscard]] RemoteAudioState remoteAudioState() const {
return _remoteAudioState.current();
}
[[nodiscard]] auto remoteAudioStateValue() const
-> rpl::producer<RemoteAudioState> {
return _remoteAudioState.value();
}
2020-08-11 09:59:48 +00:00
[[nodiscard]] Webrtc::VideoState remoteVideoState() const {
2020-08-05 12:11:18 +00:00
return _remoteVideoState.current();
2020-07-16 16:23:55 +00:00
}
2020-08-05 12:11:18 +00:00
[[nodiscard]] auto remoteVideoStateValue() const
2020-08-11 09:59:48 +00:00
-> rpl::producer<Webrtc::VideoState> {
2020-08-05 12:11:18 +00:00
return _remoteVideoState.value();
2020-07-16 16:23:55 +00:00
}
2018-05-27 08:24:47 +00:00
static constexpr auto kSignalBarStarting = -1;
static constexpr auto kSignalBarFinished = -2;
static constexpr auto kSignalBarCount = 4;
2020-07-16 16:23:55 +00:00
[[nodiscard]] rpl::producer<int> signalBarCountValue() const {
return _signalBarCount.value();
}
void setMuted(bool mute);
[[nodiscard]] bool muted() const {
return _muted.current();
}
[[nodiscard]] rpl::producer<bool> mutedValue() const {
return _muted.value();
2018-05-27 08:24:47 +00:00
}
2020-08-11 09:59:48 +00:00
[[nodiscard]] not_null<Webrtc::VideoTrack*> videoIncoming() const;
[[nodiscard]] not_null<Webrtc::VideoTrack*> videoOutgoing() const;
crl::time getDurationMs() const;
float64 getWaitingSoundPeakValue() const;
void switchVideoOutgoing();
void answer();
void hangup();
void redial();
bool isKeyShaForFingerprintReady() const;
bytes::vector getKeyShaForFingerprint() const;
QString getDebugLog() const;
void setCurrentAudioDevice(bool input, const QString &deviceId);
void setCurrentVideoDevice(const QString &deviceId);
//void setAudioVolume(bool input, float level);
2019-01-05 11:08:02 +00:00
void setAudioDuckingEnabled(bool enabled);
2020-06-25 17:57:36 +00:00
[[nodiscard]] rpl::lifetime &lifetime() {
return _lifetime;
}
~Call();
private:
enum class FinishType {
None,
Ended,
Failed,
};
2020-11-24 11:56:46 +00:00
void handleRequestError(const RPCError &error);
void handleControllerError(const QString &error);
2020-08-05 12:11:18 +00:00
void finish(
FinishType type,
const MTPPhoneCallDiscardReason &reason
= MTP_phoneCallDiscardReasonDisconnect());
void startOutgoing();
void startIncoming();
2017-05-03 13:43:01 +00:00
void startWaitingTrack();
void sendSignalingData(const QByteArray &data);
void generateModExpFirst(bytes::const_span randomSeed);
2020-08-05 12:11:18 +00:00
void handleControllerStateChange(tgcalls::State state);
void handleControllerBarCountChange(int count);
void createAndStartController(const MTPDphoneCall &call);
template <typename T>
bool checkCallCommonFields(const T &call);
bool checkCallFields(const MTPDphoneCall &call);
bool checkCallFields(const MTPDphoneCallAccepted &call);
void actuallyAnswer();
void confirmAcceptedCall(const MTPDphoneCallAccepted &call);
void startConfirmedCall(const MTPDphoneCall &call);
void setState(State state);
void setStateQueued(State state);
void setFailedQueued(const QString &error);
2018-05-27 08:24:47 +00:00
void setSignalBarCount(int count);
void destroyController();
2020-07-31 14:36:35 +00:00
void setupOutgoingVideo();
2020-08-05 12:11:18 +00:00
void updateRemoteMediaState(
tgcalls::AudioState audio,
tgcalls::VideoState video);
2020-07-31 14:36:35 +00:00
const not_null<Delegate*> _delegate;
const not_null<UserData*> _user;
2019-11-27 08:02:56 +00:00
MTP::Sender _api;
Type _type = Type::Outgoing;
2020-06-25 17:57:36 +00:00
rpl::variable<State> _state = State::Starting;
2020-08-05 12:11:18 +00:00
rpl::variable<RemoteAudioState> _remoteAudioState = RemoteAudioState::Active;
2020-08-11 09:59:48 +00:00
rpl::variable<Webrtc::VideoState> _remoteVideoState;
rpl::event_stream<Error> _errors;
FinishType _finishAfterRequestingCall = FinishType::None;
bool _answerAfterDhConfigReceived = false;
2020-07-16 16:23:55 +00:00
rpl::variable<int> _signalBarCount = kSignalBarStarting;
crl::time _startTime = 0;
base::DelayedCallTimer _finishByTimeoutTimer;
base::Timer _discardByTimeoutTimer;
2020-07-16 16:23:55 +00:00
rpl::variable<bool> _muted = false;
DhConfig _dhConfig;
bytes::vector _ga;
bytes::vector _gb;
bytes::vector _gaHash;
bytes::vector _randomPower;
MTP::AuthKey::Data _authKey;
MTPPhoneCallProtocol _protocol;
uint64 _id = 0;
uint64 _accessHash = 0;
uint64 _keyFingerprint = 0;
2020-07-09 17:38:26 +00:00
std::unique_ptr<tgcalls::Instance> _instance;
2020-07-16 16:23:55 +00:00
std::shared_ptr<tgcalls::VideoCaptureInterface> _videoCapture;
2020-08-11 09:59:48 +00:00
const std::unique_ptr<Webrtc::VideoTrack> _videoIncoming;
const std::unique_ptr<Webrtc::VideoTrack> _videoOutgoing;
2017-05-03 13:43:01 +00:00
std::unique_ptr<Media::Audio::Track> _waitingTrack;
2020-06-25 17:57:36 +00:00
rpl::lifetime _lifetime;
};
void UpdateConfig(const std::string &data);
} // namespace Calls