diff --git a/Telegram/SourceFiles/codegen/lang/generator.cpp b/Telegram/SourceFiles/codegen/lang/generator.cpp index bcffbc468..deb42bb79 100644 --- a/Telegram/SourceFiles/codegen/lang/generator.cpp +++ b/Telegram/SourceFiles/codegen/lang/generator.cpp @@ -203,6 +203,9 @@ inline auto to_count() {\n\ });\n\ }\n\ \n\ +template \n\ +using S = std::decay_t()(QString()))>;\n\ +\n\ template \n\ struct phrase;\n\ \n"; @@ -222,9 +225,9 @@ struct phrase;\n\ tags.push_back("lngtag_" + tag); const auto type1 = "lngtag_" + tag; const auto arg1 = type1 + (isPluralTag ? " type" : ""); - const auto producerType2 = (isPluralTag ? "rpl::producer " : "rpl::producer "); + const auto producerType2 = (isPluralTag ? "rpl::producer " : "rpl::producer> "); const auto producerArg2 = producerType2 + tag + "__val"; - const auto currentType2 = (isPluralTag ? "float64 " : "const T &"); + const auto currentType2 = (isPluralTag ? "float64 " : "const S

&"); const auto currentArg2 = currentType2 + tag + "__val"; producerArgs.push_back(arg1 + ", " + producerArg2); currentArgs.push_back(arg1 + ", " + currentArg2); @@ -241,17 +244,13 @@ struct phrase;\n\ header_->stream() << "\ template <>\n\ struct phrase<" << tags.join(", ") << "> {\n\ - template <\n\ - typename P = details::Identity,\n\ - typename T = decltype(std::declval

()(QString()))>\n\ - rpl::producer operator()(" << producerArgs.join(", ") << ") const {\n\ + template \n\ + rpl::producer> operator()(" << producerArgs.join(", ") << ") const {\n\ return ::Lang::details::Producer<" << tags.join(", ") << ">::template Combine(" << values.join(", ") << ");\n\ }\n\ \n\ - template <\n\ - typename P = details::Identity,\n\ - typename T = decltype(std::declval

()(QString()))>\n\ - T operator()(now_t, " << currentArgs.join(", ") << ") const {\n\ + template \n\ + S

operator()(now_t, " << currentArgs.join(", ") << ") const {\n\ return ::Lang::details::Producer<" << tags.join(", ") << ">::template Current(" << values.join(", ") << ");\n\ }\n\ \n\ diff --git a/Telegram/SourceFiles/data/data_peer.h b/Telegram/SourceFiles/data/data_peer.h index f65271616..8473fe3c6 100644 --- a/Telegram/SourceFiles/data/data_peer.h +++ b/Telegram/SourceFiles/data/data_peer.h @@ -312,7 +312,7 @@ public: auto settingsValue() const { return (_settings.current() & kSettingsUnknown) ? _settings.changes() - : _settings.value(); + : (_settings.value() | rpl::type_erased()); } enum LoadedStatus { diff --git a/Telegram/SourceFiles/lang/lang_values.h b/Telegram/SourceFiles/lang/lang_values.h index abe715f1b..f5aba447e 100644 --- a/Telegram/SourceFiles/lang/lang_values.h +++ b/Telegram/SourceFiles/lang/lang_values.h @@ -19,6 +19,9 @@ inline constexpr auto kPluralCount = 6; template inline constexpr ushort TagValue(); +template +using S = std::decay_t()(QString()))>; + QString Current(ushort key); rpl::producer Viewer(ushort key); @@ -71,11 +74,8 @@ struct ReplaceUnwrap { template struct Producer { - template < - typename P, - typename T = decltype(std::declval

()(QString())), - typename ...Values> - static rpl::producer Combine(ushort base, P p, Values &...values) { + template + static rpl::producer> Combine(ushort base, P p, Values &...values) { return rpl::combine( Viewer(base), std::move(values)... @@ -84,11 +84,8 @@ struct Producer { }); } - template < - typename P, - typename T = decltype(std::declval

()(QString())), - typename ...Values> - static T Current(ushort base, P p, const Values &...values) { + template + static S

Current(ushort base, P p, const Values &...values) { return ReplaceUnwrap::template Call( p(Lang::details::Current(base)), values...); @@ -97,28 +94,21 @@ struct Producer { template <> struct Producer<> { - template < - typename P, - typename T = decltype(std::declval

()(QString()))> - static rpl::producer Combine(ushort base, P p) { + template + static rpl::producer> Combine(ushort base, P p) { return Viewer(base) | rpl::map(std::move(p)); } - template < - typename P, - typename T = decltype(std::declval

()(QString()))> - static T Current(ushort base, P p) { + template + static S

Current(ushort base, P p) { return p(Lang::details::Current(base)); } }; template struct Producer { - template < - typename P, - typename T = decltype(std::declval

()(QString())), - typename ...Values> - static rpl::producer Combine( + template + static rpl::producer> Combine( ushort base, P p, lngtag_count type, @@ -147,21 +137,18 @@ struct Producer { Unexpected("Lang shift value in Plural result."); }; return ReplaceUnwrapTuple<7>( - ReplaceTag::Call( + ReplaceTag>::Call( p(select()), TagValue(), - StartReplacements::Call( + StartReplacements>::Call( std::move(plural.replacement))), tuple, TagValue()...); }); } - template < - typename P, - typename T = decltype(std::declval

()(QString())), - typename ...Values> - static T Current( + template + static S

Current( ushort base, P p, lngtag_count type, @@ -169,10 +156,10 @@ struct Producer { const Values &...values) { auto plural = Plural(base, count, type); return ReplaceUnwrap::template Call( - ReplaceTag::Call( + ReplaceTag>::Call( p(Lang::details::Current(base + plural.keyShift)), TagValue(), - StartReplacements::Call( + StartReplacements>::Call( std::move(plural.replacement))), values...); }