forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_text_by_id.hpp
57 lines (47 loc) · 2.13 KB
/
get_text_by_id.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#pragma once
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
namespace platform
{
// class GetTextById is ready to work with different sources of text strings.
// For the time being it's only strings for TTS.
enum class TextSource
{
TtsSound = 0, //!< Maneuvers text to speech strings.
Countries, //!< Countries names strings.
};
class GetTextById;
using TGetTextByIdPtr = std::unique_ptr<GetTextById>;
using TTranslations = std::vector<std::pair<std::string, std::string>>;
/// GetTextById represents text messages which are saved in textsDir
/// in a specified locale.
class GetTextById
{
public:
/// @return a pair of a text string in a specified locale for textId and a boolean flag.
/// If textId is found in m_localeTexts then the boolean flag is set to true.
/// The boolean flag is set to false otherwise.
std::string operator()(std::string const & textId) const;
std::string GetLocale() const { return m_locale; }
TTranslations GetAllSortedTranslations() const;
static TGetTextByIdPtr Create(std::string const & jsonBuffer, std::string const & localeName);
private:
GetTextById(std::string const & jsonBuffer, std::string const & localeName);
/// \note IsValid is used only in factories and shall be private.
bool IsValid() const { return !m_localeTexts.empty(); }
std::string m_locale;
std::unordered_map<std::string, std::string> m_localeTexts;
};
/// Factories to create GetTextById instances.
/// If TGetTextByIdPtr is created by GetTextByIdFactory or ForTestingGetTextByIdFactory
/// there are only two possibities:
/// * a factory returns a valid instance
/// * a factory returns nullptr
TGetTextByIdPtr GetTextByIdFactory(TextSource textSource, std::string const & localeName);
TGetTextByIdPtr ForTestingGetTextByIdFactory(std::string const & jsonBuffer, std::string const & localeName);
/// \bried fills jsonBuffer with json file in twine format with strings in a language of localeName.
/// @return true if no error was happened and false otherwise.
bool GetJsonBuffer(platform::TextSource textSource, std::string const & localeName, std::string & jsonBuffer);
} // namespace platform