ManaPlus
poparser.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2012-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef UTILS_TRANSLATION_POPARSER_H
23 #define UTILS_TRANSLATION_POPARSER_H
24 
25 #include "localconsts.h"
26 
27 #include <sstream>
28 
29 class PoDict;
30 
32 {
33  public:
34  PoParser();
35 
37 
38  PoDict *load(const std::string &restrict lang,
39  const std::string &restrict fileName,
40  PoDict *restrict const dict);
41 
42  static bool checkLang(const std::string &lang);
43 
44  static PoDict *getEmptyDict();
45 
46  private:
47  void setLang(const std::string &lang)
48  { mLang = lang; }
49 
50  void openFile(const std::string &name);
51 
52  bool readLine();
53 
54  bool readMsgId();
55 
56  bool readMsgStr();
57 
58  bool checkLine() const;
59 
60  static std::string getFileName(const std::string &lang);
61 
63 
64  static void convertStr(std::string &str);
65 
66  // current lang
67  std::string mLang;
68 
69  // po file object
70  std::istringstream mFile;
71 
72  // current line from po file
73  std::string mLine;
74 
75  std::string mMsgId;
76 
77  std::string mMsgStr;
78 
80 
81  bool mReadingId;
82 
84 
85  bool mSkipId;
86 };
87 
88 #endif // UTILS_TRANSLATION_POPARSER_H
Definition: podict.h:33
bool mSkipId
Definition: poparser.h:85
PoDict * mDict
Definition: poparser.h:79
PoDict * load(const std::string &lang, const std::string &fileName, PoDict *const dict)
Definition: poparser.cpp:63
void openFile(const std::string &name)
Definition: poparser.cpp:47
std::string mLine
Definition: poparser.h:73
bool readMsgId()
Definition: poparser.cpp:136
bool mReadingStr
Definition: poparser.h:83
bool readMsgStr()
Definition: poparser.cpp:193
PoParser()
Definition: poparser.cpp:34
PoDict * getDict() const
Definition: poparser.cpp:274
bool checkLine() const
Definition: poparser.cpp:249
static std::string getFileName(const std::string &lang)
Definition: poparser.cpp:267
static PoDict * getEmptyDict()
Definition: poparser.cpp:256
std::string mLang
Definition: poparser.h:67
static bool checkLang(const std::string &lang)
Definition: poparser.cpp:261
void setLang(const std::string &lang)
Definition: poparser.h:47
std::string mMsgId
Definition: poparser.h:75
bool readLine()
Definition: poparser.cpp:121
static void convertStr(std::string &str)
Definition: poparser.cpp:279
std::string mMsgStr
Definition: poparser.h:77
std::istringstream mFile
Definition: poparser.h:70
bool mReadingId
Definition: poparser.h:81
#define restrict
Definition: localconsts.h:165
#define RETURNS_NONNULL
Definition: localconsts.h:167
#define A_WARN_UNUSED
Definition: localconsts.h:161
#define final
Definition: localconsts.h:46
#define A_DELETE_COPY(func)
Definition: localconsts.h:53
std::string fileName
Definition: testmain.cpp:39