98 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| 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/sender.h"
 | |
| #include "base/algorithm.h"
 | |
| 
 | |
| namespace Ui {
 | |
| struct ColorIndicesCompressed;
 | |
| } // namespace Ui
 | |
| 
 | |
| namespace Main {
 | |
| 
 | |
| class Account;
 | |
| 
 | |
| class AppConfig final {
 | |
| public:
 | |
| 	explicit AppConfig(not_null<Account*> account);
 | |
| 	~AppConfig();
 | |
| 
 | |
| 	void start();
 | |
| 
 | |
| 	template <typename Type>
 | |
| 	[[nodiscard]] Type get(const QString &key, Type fallback) const {
 | |
| 		if constexpr (std::is_same_v<Type, double>) {
 | |
| 			return getDouble(key, fallback);
 | |
| 		} else if constexpr (std::is_same_v<Type, int>) {
 | |
| 			return int(base::SafeRound(getDouble(key, double(fallback))));
 | |
| 		} else if constexpr (std::is_same_v<Type, QString>) {
 | |
| 			return getString(key, fallback);
 | |
| 		} else if constexpr (std::is_same_v<Type, std::vector<QString>>) {
 | |
| 			return getStringArray(key, std::move(fallback));
 | |
| 		} else if constexpr (std::is_same_v<Type, std::vector<int>>) {
 | |
| 			return getIntArray(key, std::move(fallback));
 | |
| 		} else if constexpr (std::is_same_v<
 | |
| 				Type,
 | |
| 				std::vector<std::map<QString, QString>>>) {
 | |
| 			return getStringMapArray(key, std::move(fallback));
 | |
| 		} else if constexpr (std::is_same_v<Type, bool>) {
 | |
| 			return getBool(key, fallback);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	[[nodiscard]] rpl::producer<> refreshed() const;
 | |
| 	[[nodiscard]] rpl::producer<> value() const;
 | |
| 
 | |
| 	[[nodiscard]] bool suggestionCurrent(const QString &key) const;
 | |
| 	[[nodiscard]] rpl::producer<> suggestionRequested(
 | |
| 		const QString &key) const;
 | |
| 	void dismissSuggestion(const QString &key);
 | |
| 
 | |
| 	void refresh();
 | |
| 
 | |
| private:
 | |
| 	void refreshDelayed();
 | |
| 
 | |
| 	template <typename Extractor>
 | |
| 	[[nodiscard]] auto getValue(
 | |
| 		const QString &key,
 | |
| 		Extractor &&extractor) const;
 | |
| 
 | |
| 	[[nodiscard]] bool getBool(
 | |
| 		const QString &key,
 | |
| 		bool fallback) const;
 | |
| 	[[nodiscard]] double getDouble(
 | |
| 		const QString &key,
 | |
| 		double fallback) const;
 | |
| 	[[nodiscard]] QString getString(
 | |
| 		const QString &key,
 | |
| 		const QString &fallback) const;
 | |
| 	[[nodiscard]] std::vector<QString> getStringArray(
 | |
| 		const QString &key,
 | |
| 		std::vector<QString> &&fallback) const;
 | |
| 	[[nodiscard]] std::vector<std::map<QString, QString>> getStringMapArray(
 | |
| 		const QString &key,
 | |
| 		std::vector<std::map<QString, QString>> &&fallback) const;
 | |
| 	[[nodiscard]] std::vector<int> getIntArray(
 | |
| 		const QString &key,
 | |
| 		std::vector<int> &&fallback) const;
 | |
| 
 | |
| 	const not_null<Account*> _account;
 | |
| 	std::optional<MTP::Sender> _api;
 | |
| 	mtpRequestId _requestId = 0;
 | |
| 	int32 _hash = 0;
 | |
| 	base::flat_map<QString, MTPJSONValue> _data;
 | |
| 	rpl::event_stream<> _refreshed;
 | |
| 	base::flat_set<QString> _dismissedSuggestions;
 | |
| 
 | |
| 	rpl::lifetime _lifetime;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Main
 | 
