329af5913248f446952ef711725e62ec91e81ac4
[supertux.git] / external / tinygettext / tinygettext / po_parser.hpp
1 //  tinygettext - A gettext replacement that works directly on .po files
2 //  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
3 //
4 //  This program is free software; you can redistribute it and/or
5 //  modify it under the terms of the GNU General Public License
6 //  as published by the Free Software Foundation; either version 2
7 //  of the License, or (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 #ifndef HEADER_TINYGETTEXT_PO_PARSER_HPP
19 #define HEADER_TINYGETTEXT_PO_PARSER_HPP
20
21 #include <iosfwd>
22
23 #include "iconv.hpp"
24
25 namespace tinygettext {
26
27 class Dictionary;
28
29 class POParser
30 {
31 private:
32   std::string filename;
33   std::istream& in;
34   Dictionary& dict;
35   bool  use_fuzzy;
36
37   bool running;
38   bool eof;
39   bool big5;
40
41   int line_number;
42   std::string current_line;
43
44   IConv conv;
45   
46   POParser(const std::string& filename, std::istream& in_, Dictionary& dict_, bool use_fuzzy = true);
47   ~POParser();
48
49   void parse_header(const std::string& header);
50   void parse();
51   void next_line();
52   std::string get_string(unsigned int skip);
53   void get_string_line(std::ostringstream& str,unsigned int skip);
54   bool is_empty_line();
55   bool prefix(const char* );
56   void error(const std::string& msg) __attribute__((__noreturn__));
57   void warning(const std::string& msg);
58
59 public:
60   /** @param filename name of the istream, only used in error messages
61       @param in stream from which the PO file is read.
62       @param dict dictionary to which the strings are written */
63   static void parse(const std::string& filename, std::istream& in, Dictionary& dict);
64   static bool pedantic;
65
66 private:
67   POParser (const POParser&);
68   POParser& operator= (const POParser&);
69 };
70
71 } // namespace tinygettext
72
73 #endif
74
75 /* EOF */