tdesktop/Telegram/SourceFiles/calls/calls_call.h

240 lines
5.8 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-07-09 17:38:26 +00:00
} // namespace tgcalls
namespace Calls {
struct DhConfig {
int32 version = 0;
int32 g = 0;
bytes::vector p;
};
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;
2017-05-03 13:43:01 +00:00
enum class Sound {
Connecting,
Busy,
Ended,
};
virtual void playSound(Sound sound) = 0;
2020-05-17 09:12:27 +00:00
virtual void requestPermissionsOrFail(Fn<void()> result) = 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);
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();
}
2020-07-16 16:23:55 +00:00
enum class VideoState {
Disabled,
OutgoingRequested,
IncomingRequested,
Enabled
};
[[nodiscard]] VideoState videoState() const {
return _videoState.current();
}
[[nodiscard]] rpl::producer<VideoState> videoStateValue() const {
return _videoState.value();
}
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-07-16 16:23:55 +00:00
void setVideoEnabled(bool enabled);
[[nodiscard]] bool videoEnabled() const {
return _videoEnabled.current();
}
2020-07-16 16:23:55 +00:00
[[nodiscard]] rpl::producer<bool> videoEnabledValue() const {
return _videoEnabled.value();
}
2020-07-16 16:23:55 +00:00
[[nodiscard]] rpl::producer<QImage> frames() const {
return _frames.events();
}
crl::time getDurationMs() const;
float64 getWaitingSoundPeakValue() const;
void answer();
void hangup();
void redial();
bool isKeyShaForFingerprintReady() const;
bytes::vector getKeyShaForFingerprint() const;
QString getDebugLog() const;
2019-01-05 11:08:02 +00:00
void setCurrentAudioDevice(bool input, std::string deviceID);
void setAudioVolume(bool input, float level);
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,
};
void handleRequestError(const RPCError &error);
void handleControllerError(const QString &error);
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 displayNextFrame(QImage frame);
void generateModExpFirst(bytes::const_span randomSeed);
2020-07-14 17:45:34 +00:00
void handleControllerStateChange(tgcalls::State state, tgcalls::VideoState videoState);
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();
not_null<Delegate*> _delegate;
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-07-16 16:23:55 +00:00
rpl::variable<VideoState> _videoState = VideoState::Disabled;
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;
rpl::variable<bool> _videoEnabled = false;
rpl::event_stream<QImage> _frames;
2020-07-16 16:23:55 +00:00
crl::time _remoteVideoInactiveFrom = 0;
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;
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