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 |
|
|
|
31 |
|
15 |
class PoParser final |
32 |
|
|
{ |
33 |
|
|
public: |
34 |
|
|
PoParser(); |
35 |
|
|
|
36 |
|
|
A_DELETE_COPY(PoParser) |
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 |
|
6 |
{ 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 |
|
|
|
62 |
|
|
PoDict *getDict() const RETURNS_NONNULL A_WARN_UNUSED; |
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 |
|
|
|
79 |
|
|
PoDict *mDict; |
80 |
|
|
|
81 |
|
|
bool mReadingId; |
82 |
|
|
|
83 |
|
|
bool mReadingStr; |
84 |
|
|
|
85 |
|
|
bool mSkipId; |
86 |
|
|
}; |
87 |
|
|
|
88 |
|
|
#endif // UTILS_TRANSLATION_POPARSER_H |