Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_text_by_id.hpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d1c5cac509eb07c5754a8055dcb9c76c4b1f8d9 (plain)
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
#pragma once

#include "std/string.hpp"
#include "std/unordered_map.hpp"
#include "std/utility.hpp"

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
};

/// GetTextById represents text messages which are saved in textsDir
/// in a specified locale.
class GetTextById
{
public:
  GetTextById(TextSource textSouce, string const & localeName);
  /// The constructor is used for writing unit tests only.
  explicit GetTextById(string const & jsonBuffer);

  bool IsValid() const { return !m_localeTexts.empty(); }
  /// @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.
  string operator()(string const & textId) const;

private:
  void InitFromJson(string const & jsonBuffer);

  unordered_map<string, string> m_localeTexts;
};
}  // namespace platform