init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
138
Telegram/SourceFiles/core/sandbox.h
Normal file
138
Telegram/SourceFiles/core/sandbox.h
Normal file
@@ -0,0 +1,138 @@
|
||||
/*
|
||||
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/mtproto_proxy_data.h"
|
||||
|
||||
#include <QtWidgets/QApplication>
|
||||
#include <QtNetwork/QLocalServer>
|
||||
#include <QtNetwork/QLocalSocket>
|
||||
#include <QtCore/QAbstractNativeEventFilter>
|
||||
|
||||
class QLockFile;
|
||||
|
||||
namespace Core {
|
||||
|
||||
class UpdateChecker;
|
||||
class Application;
|
||||
|
||||
class Sandbox final
|
||||
: public QApplication
|
||||
, private QAbstractNativeEventFilter {
|
||||
private:
|
||||
auto createEventNestingLevel() {
|
||||
incrementEventNestingLevel();
|
||||
return gsl::finally([=] { decrementEventNestingLevel(); });
|
||||
}
|
||||
|
||||
public:
|
||||
Sandbox(int &argc, char **argv);
|
||||
|
||||
Sandbox(const Sandbox &other) = delete;
|
||||
Sandbox &operator=(const Sandbox &other) = delete;
|
||||
|
||||
int start();
|
||||
|
||||
void refreshGlobalProxy();
|
||||
|
||||
void postponeCall(FnMut<void()> &&callable);
|
||||
bool notify(QObject *receiver, QEvent *e) override;
|
||||
|
||||
template <typename Callable>
|
||||
auto customEnterFromEventLoop(Callable &&callable) {
|
||||
registerEnterFromEventLoop();
|
||||
const auto wrap = createEventNestingLevel();
|
||||
return callable();
|
||||
}
|
||||
|
||||
rpl::producer<> widgetUpdateRequests() const;
|
||||
|
||||
MTP::ProxyData sandboxProxy() const;
|
||||
|
||||
static Sandbox &Instance() {
|
||||
Expects(QCoreApplication::instance() != nullptr);
|
||||
|
||||
return *static_cast<Sandbox*>(QCoreApplication::instance());
|
||||
}
|
||||
static void QuitWhenStarted();
|
||||
|
||||
~Sandbox();
|
||||
|
||||
protected:
|
||||
bool event(QEvent *e) override;
|
||||
|
||||
private:
|
||||
typedef QPair<QLocalSocket*, QByteArray> LocalClient;
|
||||
typedef QList<LocalClient> LocalClients;
|
||||
|
||||
struct PostponedCall {
|
||||
int loopNestingLevel = 0;
|
||||
FnMut<void()> callable;
|
||||
};
|
||||
|
||||
bool notifyOrInvoke(QObject *receiver, QEvent *e);
|
||||
|
||||
void closeApplication(); // will be done in aboutToQuit()
|
||||
void checkForQuit(); // will be done in exec()
|
||||
void checkForEmptyLoopNestingLevel();
|
||||
void registerEnterFromEventLoop();
|
||||
void incrementEventNestingLevel();
|
||||
void decrementEventNestingLevel();
|
||||
bool nativeEventFilter(
|
||||
const QByteArray &eventType,
|
||||
void *message,
|
||||
native_event_filter_result *result) override;
|
||||
void processPostponedCalls(int level);
|
||||
void singleInstanceChecked();
|
||||
void launchApplication();
|
||||
void setupScreenScale();
|
||||
|
||||
// Return window id for activation.
|
||||
uint64 execExternal(const QString &cmd);
|
||||
|
||||
// Single instance application
|
||||
void socketConnected();
|
||||
void socketError(QLocalSocket::LocalSocketError e);
|
||||
void socketDisconnected();
|
||||
void socketWritten(qint64 bytes);
|
||||
void socketReading();
|
||||
void newInstanceConnected();
|
||||
|
||||
void readClients();
|
||||
void removeClients();
|
||||
|
||||
QEventLoopLocker _eventLoopLocker;
|
||||
const Qt::HANDLE _mainThreadId = nullptr;
|
||||
int _eventNestingLevel = 0;
|
||||
int _loopNestingLevel = 0;
|
||||
std::vector<int> _previousLoopNestingLevels;
|
||||
std::vector<PostponedCall> _postponedCalls;
|
||||
|
||||
std::unique_ptr<Application> _application;
|
||||
|
||||
QString _localServerName, _localSocketReadData;
|
||||
QLocalServer _localServer;
|
||||
QLocalSocket _localSocket;
|
||||
LocalClients _localClients;
|
||||
std::unique_ptr<QLockFile> _lockFile;
|
||||
bool _secondInstance = false;
|
||||
bool _started = false;
|
||||
static bool QuitOnStartRequested;
|
||||
|
||||
std::unique_ptr<UpdateChecker> _updateChecker;
|
||||
|
||||
QByteArray _lastCrashDump;
|
||||
MTP::ProxyData _sandboxProxy;
|
||||
|
||||
rpl::event_stream<> _widgetUpdateRequests;
|
||||
|
||||
std::unique_ptr<QThread> _deadlockDetector;
|
||||
|
||||
};
|
||||
|
||||
} // namespace Core
|
||||
Reference in New Issue
Block a user