From 64b8adb3d0c20bc25e2f29ff7191a5b7b388138d Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 8 Aug 2018 23:11:28 +0300 Subject: [PATCH] Isolate lib_base library. Use crl::time in getms. --- Telegram/SourceFiles/base/algorithm.h | 11 +++ Telegram/SourceFiles/base/base_pch.cpp | 9 ++ Telegram/SourceFiles/base/base_pch.h | 30 ++++++ Telegram/SourceFiles/base/binary_guard.h | 5 + Telegram/SourceFiles/base/observer.cpp | 9 +- Telegram/SourceFiles/base/observer.h | 1 + Telegram/SourceFiles/base/qthelp_url.cpp | 38 +++++++- Telegram/SourceFiles/base/qthelp_url.h | 4 + .../SourceFiles/base/runtime_composer.cpp | 24 ++--- Telegram/SourceFiles/base/timer.cpp | 8 +- .../chat_helpers/message_field.cpp | 4 +- .../SourceFiles/core/main_queue_processor.cpp | 6 ++ Telegram/SourceFiles/core/utils.cpp | 92 +++++++----------- Telegram/SourceFiles/core/utils.h | 7 -- Telegram/SourceFiles/messenger.cpp | 3 +- Telegram/SourceFiles/ui/text/text_entity.cpp | 25 +---- Telegram/SourceFiles/ui/text/text_entity.h | 2 - Telegram/ThirdParty/crl | 2 +- Telegram/gyp/Telegram.gyp | 1 + Telegram/gyp/crl.gyp | 5 + Telegram/gyp/lib_base.gyp | 95 +++++++++++++++++++ Telegram/gyp/telegram_sources.txt | 40 +------- Telegram/gyp/telegram_win.gypi | 3 - 23 files changed, 267 insertions(+), 157 deletions(-) create mode 100644 Telegram/SourceFiles/base/base_pch.cpp create mode 100644 Telegram/SourceFiles/base/base_pch.h create mode 100644 Telegram/gyp/lib_base.gyp diff --git a/Telegram/SourceFiles/base/algorithm.h b/Telegram/SourceFiles/base/algorithm.h index e2efb4a24..0369859db 100644 --- a/Telegram/SourceFiles/base/algorithm.h +++ b/Telegram/SourceFiles/base/algorithm.h @@ -25,3 +25,14 @@ inline constexpr size_t array_size(const Type(&)[Size]) { } } // namespace base + +template +inline void accumulate_max(T &a, const T &b) { if (a < b) a = b; } + +template +inline void accumulate_min(T &a, const T &b) { if (a > b) a = b; } + +template +QLatin1String qstr(const char(&string)[Size]) { + return QLatin1String(string, Size - 1); +} diff --git a/Telegram/SourceFiles/base/base_pch.cpp b/Telegram/SourceFiles/base/base_pch.cpp new file mode 100644 index 000000000..56aa55468 --- /dev/null +++ b/Telegram/SourceFiles/base/base_pch.cpp @@ -0,0 +1,9 @@ +/* +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 +*/ +#include "base/base_pch.h" + diff --git a/Telegram/SourceFiles/base/base_pch.h b/Telegram/SourceFiles/base/base_pch.h new file mode 100644 index 000000000..1c3189841 --- /dev/null +++ b/Telegram/SourceFiles/base/base_pch.h @@ -0,0 +1,30 @@ +/* +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 +*/ + +#include +#include +#include +#include +#include + +#include +#include + +#include +#include +#include + +#include +#ifdef Q_OS_WIN +#include "platform/win/windows_range_v3_helpers.h" +#endif // Q_OS_WIN + +#include "base/flat_map.h" +#include "base/flat_set.h" +#include "base/optional.h" +#include "base/openssl_help.h" diff --git a/Telegram/SourceFiles/base/binary_guard.h b/Telegram/SourceFiles/base/binary_guard.h index d48857f60..aa688fa7c 100644 --- a/Telegram/SourceFiles/base/binary_guard.h +++ b/Telegram/SourceFiles/base/binary_guard.h @@ -21,6 +21,7 @@ public: ~binary_guard(); bool alive() const; + void kill(); private: void destroy(); @@ -51,6 +52,10 @@ inline bool binary_guard::alive() const { return _bothAlive && _bothAlive->load(); } +inline void binary_guard::kill() { + destroy(); +} + inline void binary_guard::destroy() { if (_bothAlive) { auto old = true; diff --git a/Telegram/SourceFiles/base/observer.cpp b/Telegram/SourceFiles/base/observer.cpp index 435716490..1c1245071 100644 --- a/Telegram/SourceFiles/base/observer.cpp +++ b/Telegram/SourceFiles/base/observer.cpp @@ -12,6 +12,7 @@ namespace internal { namespace { bool CantUseObservables = false; +void (*HandleDelayedMethod)() = nullptr; struct ObservableListWrap { ~ObservableListWrap() { @@ -35,7 +36,9 @@ ObservableListWrap &ActiveObservables() { void RegisterPendingObservable(ObservableCallHandlers *handlers) { if (CantUseObservables) return; PendingObservables().list.insert(handlers); - Global::RefHandleObservables().call(); + if (HandleDelayedMethod) { + HandleDelayedMethod(); + } } void UnregisterActiveObservable(ObservableCallHandlers *handlers) { @@ -51,6 +54,10 @@ void UnregisterObservable(ObservableCallHandlers *handlers) { } // namespace internal +void InitObservables(void(*HandleDelayed)()) { + internal::HandleDelayedMethod = HandleDelayed; +} + void HandleObservables() { if (internal::CantUseObservables) return; auto &active = internal::ActiveObservables().list; diff --git a/Telegram/SourceFiles/base/observer.h b/Telegram/SourceFiles/base/observer.h index f523df39d..75bc0e722 100644 --- a/Telegram/SourceFiles/base/observer.h +++ b/Telegram/SourceFiles/base/observer.h @@ -452,6 +452,7 @@ private: }; +void InitObservables(void(*HandleDelayed)()); void HandleObservables(); template < diff --git a/Telegram/SourceFiles/base/qthelp_url.cpp b/Telegram/SourceFiles/base/qthelp_url.cpp index 14251a21f..0cdc486f8 100644 --- a/Telegram/SourceFiles/base/qthelp_url.cpp +++ b/Telegram/SourceFiles/base/qthelp_url.cpp @@ -10,11 +10,26 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace qthelp { namespace { -QRegularExpression RegExpProtocol() { - static const auto result = QRegularExpression("^([a-zA-Z]+)://"); +QRegularExpression CreateRegExp(const QString &expression) { + auto result = QRegularExpression( + expression, + QRegularExpression::UseUnicodePropertiesOption); +#ifndef OS_MAC_OLD + result.optimize(); +#endif // OS_MAC_OLD return result; } +QString ExpressionDomain() { + // Matches any domain name, containing at least one '.', including "file.txt". + return QString::fromUtf8("(? url_parse_params( const QString ¶ms, UrlParamNameTransform transform) { @@ -77,9 +107,9 @@ QString validate_url(const QString &value) { if (trimmed.isEmpty()) { return QString(); } - const auto match = TextUtilities::RegExpDomainExplicit().match(trimmed); + const auto match = RegExpDomainExplicit().match(trimmed); if (!match.hasMatch()) { - const auto domain = TextUtilities::RegExpDomain().match(trimmed); + const auto domain = RegExpDomain().match(trimmed); if (!domain.hasMatch() || domain.capturedStart() != 0) { return QString(); } diff --git a/Telegram/SourceFiles/base/qthelp_url.h b/Telegram/SourceFiles/base/qthelp_url.h index 5d3514f0c..c0e10bc6d 100644 --- a/Telegram/SourceFiles/base/qthelp_url.h +++ b/Telegram/SourceFiles/base/qthelp_url.h @@ -9,6 +9,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL namespace qthelp { +const QRegularExpression &RegExpDomain(); +const QRegularExpression &RegExpDomainExplicit(); +QRegularExpression RegExpProtocol(); + inline QString url_encode(const QString &part) { return QString::fromLatin1(QUrl::toPercentEncoding(part)); } diff --git a/Telegram/SourceFiles/base/runtime_composer.cpp b/Telegram/SourceFiles/base/runtime_composer.cpp index 57051c207..eec3cdca3 100644 --- a/Telegram/SourceFiles/base/runtime_composer.cpp +++ b/Telegram/SourceFiles/base/runtime_composer.cpp @@ -8,27 +8,21 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "base/runtime_composer.h" struct RuntimeComposerMetadatasMap { - QMap data; - ~RuntimeComposerMetadatasMap() { - for_const (const RuntimeComposerMetadata *p, data) { - delete p; - } - } + std::map> data; + QMutex mutex; }; const RuntimeComposerMetadata *GetRuntimeComposerMetadata(uint64 mask) { static RuntimeComposerMetadatasMap RuntimeComposerMetadatas; - static QMutex RuntimeComposerMetadatasMutex; - QMutexLocker lock(&RuntimeComposerMetadatasMutex); - auto i = RuntimeComposerMetadatas.data.constFind(mask); - if (i == RuntimeComposerMetadatas.data.cend()) { - RuntimeComposerMetadata *meta = new RuntimeComposerMetadata(mask); - Assert(meta != nullptr); - - i = RuntimeComposerMetadatas.data.insert(mask, meta); + QMutexLocker lock(&RuntimeComposerMetadatas.mutex); + auto i = RuntimeComposerMetadatas.data.find(mask); + if (i == end(RuntimeComposerMetadatas.data)) { + i = RuntimeComposerMetadatas.data.emplace( + mask, + std::make_unique(mask)).first; } - return i.value(); + return i->second.get(); } const RuntimeComposerMetadata *RuntimeComposerBase::ZeroRuntimeComposerMetadata = GetRuntimeComposerMetadata(0); diff --git a/Telegram/SourceFiles/base/timer.cpp b/Telegram/SourceFiles/base/timer.cpp index c752a9b73..f0c096793 100644 --- a/Telegram/SourceFiles/base/timer.cpp +++ b/Telegram/SourceFiles/base/timer.cpp @@ -7,6 +7,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "base/timer.h" +#include + namespace base { namespace { @@ -48,7 +50,7 @@ void Timer::start(TimeMs timeout, Qt::TimerType type, Repeat repeat) { setTimeout(timeout); _timerId = startTimer(_timeout, _type); if (_timerId) { - _next = getms(true) + _timeout; + _next = crl::time() + _timeout; } else { _next = 0; } @@ -64,7 +66,7 @@ TimeMs Timer::remainingTime() const { if (!isActive()) { return -1; } - auto now = getms(true); + auto now = crl::time(); return (_next > now) ? (_next - now) : TimeMs(0); } @@ -101,7 +103,7 @@ void Timer::timerEvent(QTimerEvent *e) { if (_adjusted) { start(_timeout, _type, repeat()); } else { - _next = getms(true) + _timeout; + _next = crl::time() + _timeout; } } else { cancel(); diff --git a/Telegram/SourceFiles/chat_helpers/message_field.cpp b/Telegram/SourceFiles/chat_helpers/message_field.cpp index 34b715342..0eb182789 100644 --- a/Telegram/SourceFiles/chat_helpers/message_field.cpp +++ b/Telegram/SourceFiles/chat_helpers/message_field.cpp @@ -74,7 +74,7 @@ private: }; //bool ValidateUrl(const QString &value) { -// const auto match = TextUtilities::RegExpDomain().match(value); +// const auto match = qthelp::RegExpDomain().match(value); // if (!match.hasMatch() || match.capturedStart() != 0) { // return false; // } @@ -596,7 +596,7 @@ void MessageLinksParser::parse() { const auto len = text.size(); const QChar *start = text.unicode(), *end = start + text.size(); for (auto offset = 0, matchOffset = offset; offset < len;) { - auto m = TextUtilities::RegExpDomain().match(text, matchOffset); + auto m = qthelp::RegExpDomain().match(text, matchOffset); if (!m.hasMatch()) break; auto domainOffset = m.capturedStart(); diff --git a/Telegram/SourceFiles/core/main_queue_processor.cpp b/Telegram/SourceFiles/core/main_queue_processor.cpp index a58f62e1f..b90b637fa 100644 --- a/Telegram/SourceFiles/core/main_queue_processor.cpp +++ b/Telegram/SourceFiles/core/main_queue_processor.cpp @@ -47,11 +47,17 @@ void ProcessMainQueue(void (*callable)(void*), void *argument) { } } +void ProcessObservables() { + Global::RefHandleObservables().call(); +} + } // namespace MainQueueProcessor::MainQueueProcessor() { acquire(); crl::init_main_queue(ProcessMainQueue); + + base::InitObservables(ProcessObservables); } bool MainQueueProcessor::event(QEvent *event) { diff --git a/Telegram/SourceFiles/core/utils.cpp b/Telegram/SourceFiles/core/utils.cpp index 01ddb7dc2..417f6cba4 100644 --- a/Telegram/SourceFiles/core/utils.cpp +++ b/Telegram/SourceFiles/core/utils.cpp @@ -194,52 +194,34 @@ namespace { return 0; } - float64 _msFreq; float64 _msgIdCoef; - TimeMs _msStart = 0, _msAddToMsStart = 0, _msAddToUnixtime = 0; - int32 _timeStart = 0; - - class _MsInitializer { + class _MsStarter { public: - _MsInitializer() { + _MsStarter() { #ifdef Q_OS_WIN LARGE_INTEGER li; QueryPerformanceFrequency(&li); - _msFreq = 1000. / float64(li.QuadPart); // 0xFFFF0000L istead of 0x100000000L to make msgId grow slightly slower, than unixtime and we had time to reconfigure _msgIdCoef = float64(0xFFFF0000L) / float64(li.QuadPart); QueryPerformanceCounter(&li); - _msStart = li.QuadPart; + const auto seed = li.QuadPart; #elif defined Q_OS_MAC mach_timebase_info_data_t tb = { 0, 0 }; mach_timebase_info(&tb); - _msFreq = (float64(tb.numer) / tb.denom) / 1000000.; + const auto freq = (float64(tb.numer) / tb.denom) / 1000000.; + _msgIdCoef = freq * (float64(0xFFFF0000L) / 1000.); - _msgIdCoef = _msFreq * (float64(0xFFFF0000L) / 1000.); - - _msStart = mach_absolute_time(); + const auto seed = mach_absolute_time(); #else - timespec ts; - clock_gettime(CLOCK_MONOTONIC, &ts); - //_msFreq = 1 / 1000000.; - _msgIdCoef = float64(0xFFFF0000L) / 1000000000.; - _msStart = 1000LL * static_cast(ts.tv_sec) + (static_cast(ts.tv_nsec) / 1000000LL); + _msgIdCoef = float64(0xFFFF0000L) / 1000000000.; + + timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); + const auto seed = 1000LL * static_cast(ts.tv_sec) + (static_cast(ts.tv_nsec) / 1000000LL); #endif - _timeStart = LocalUnixtime(); - srand((uint32)(_msStart & 0xFFFFFFFFL)); - } - }; - - void _msInitialize() { - static _MsInitializer _msInitializer; - } - - class _MsStarter { - public: - _MsStarter() { - getms(); + srand((uint32)(seed & 0xFFFFFFFFL)); } }; _MsStarter _msStarter; @@ -365,11 +347,25 @@ namespace ThirdParty { Platform::ThirdParty::start(); if (!RAND_status()) { // should be always inited in all modern OS - char buf[16]; - memcpy(buf, &_msStart, 8); - memcpy(buf + 8, &_msFreq, 8); - uchar sha256Buffer[32]; - RAND_seed(hashSha256(buf, 16, sha256Buffer), 32); + const auto FeedSeed = [](auto value) { + RAND_seed(&value, sizeof(value)); + }; +#ifdef Q_OS_WIN + LARGE_INTEGER li; + QueryPerformanceFrequency(&li); + FeedSeed(li.QuadPart); + QueryPerformanceCounter(&li); + FeedSeed(li.QuadPart); +#elif defined Q_OS_MAC + mach_timebase_info_data_t tb = { 0 }; + mach_timebase_info(&tb); + FeedSeed(tb); + FeedSeed(mach_absolute_time()); +#else + timespec ts = { 0 }; + clock_gettime(CLOCK_MONOTONIC, &ts); + FeedSeed(ts); +#endif if (!RAND_status()) { LOG(("MTP Error: Could not init OpenSSL rand, RAND_status() is 0...")); } @@ -429,12 +425,7 @@ namespace ThirdParty { } bool checkms() { - auto unixms = (LocalUnixtime() - _timeStart) * 1000LL + _msAddToUnixtime; - auto ms = getms(true); - if (ms > unixms + 1000LL) { - _msAddToUnixtime = ((ms - unixms) / 1000LL) * 1000LL; - } else if (unixms > ms + 1000LL) { - _msAddToMsStart += ((unixms - ms) / 1000LL) * 1000LL; + if (crl::adjust_time()) { Sandbox::adjustSingleTimers(); return true; } @@ -442,24 +433,7 @@ bool checkms() { } TimeMs getms(bool checked) { - _msInitialize(); -#ifdef Q_OS_WIN - LARGE_INTEGER li; - QueryPerformanceCounter(&li); - return ((li.QuadPart - _msStart) * _msFreq) + (checked ? _msAddToMsStart : 0LL); -#elif defined Q_OS_MAC - auto msCount = static_cast(mach_absolute_time()); - return ((msCount - _msStart) * _msFreq) + (checked ? _msAddToMsStart : 0LL); -#else - timespec ts; - auto res = clock_gettime(CLOCK_MONOTONIC, &ts); - if (res != 0) { - LOG(("Bad clock_gettime result: %1").arg(res)); - return 0; - } - auto msCount = 1000LL * static_cast(ts.tv_sec) + (static_cast(ts.tv_nsec) / 1000000LL); - return (msCount - _msStart) + (checked ? _msAddToMsStart : 0LL); -#endif + return crl::time(); } uint64 msgid() { diff --git a/Telegram/SourceFiles/core/utils.h b/Telegram/SourceFiles/core/utils.h index 77740370a..5fd9c42bc 100644 --- a/Telegram/SourceFiles/core/utils.h +++ b/Telegram/SourceFiles/core/utils.h @@ -22,7 +22,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include #define qsl(s) QStringLiteral(s) -#define qstr(s) QLatin1String((s), sizeof(s) - 1) // Define specializations for QByteArray for Qt 5.3.2, because // QByteArray in Qt 5.3.2 doesn't declare "pointer" subtype. @@ -186,12 +185,6 @@ inline QByteArray str_const_toByteArray(const str_const &str) { return QByteArray::fromRawData(str.c_str(), str.size()); } -template -inline void accumulate_max(T &a, const T &b) { if (a < b) a = b; } - -template -inline void accumulate_min(T &a, const T &b) { if (a > b) a = b; } - void unixtimeInit(); void unixtimeSet(TimeId serverTime, bool force = false); TimeId unixtime(); diff --git a/Telegram/SourceFiles/messenger.cpp b/Telegram/SourceFiles/messenger.cpp index ae6b25f7b..0da5a7ca0 100644 --- a/Telegram/SourceFiles/messenger.cpp +++ b/Telegram/SourceFiles/messenger.cpp @@ -668,7 +668,8 @@ void Messenger::forceLogOut(const TextWithEntities &explanation) { } void Messenger::checkLocalTime() { - if (App::main()) App::main()->checkLastUpdate(checkms()); + const auto updated = checkms(); + if (App::main()) App::main()->checkLastUpdate(updated); } void Messenger::onAppStateChanged(Qt::ApplicationState state) { diff --git a/Telegram/SourceFiles/ui/text/text_entity.cpp b/Telegram/SourceFiles/ui/text/text_entity.cpp index 4f9f0c803..dbcf36971 100644 --- a/Telegram/SourceFiles/ui/text/text_entity.cpp +++ b/Telegram/SourceFiles/ui/text/text_entity.cpp @@ -9,20 +9,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "auth_session.h" #include "lang/lang_tag.h" +#include "base/qthelp_url.h" namespace TextUtilities { namespace { -QString ExpressionDomain() { - // Matches any domain name, containing at least one '.', including "file.txt". - return QString::fromUtf8("(?