add static import of tinygettext
[supertux.git] / external / tinygettext / test / po_parser_test.cpp
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 #include <errno.h>
19 #include <string.h>
20 #include <iostream>
21 #include <fstream>
22 #include <stdexcept>
23
24 #include "tinygettext/po_parser.hpp"
25 #include "tinygettext/tinygettext.hpp"
26 #include "tinygettext/log.hpp"
27
28 void my_log_callback(const std::string& err)
29 {
30   std::cerr << err;
31 }
32
33 int main(int argc, char** argv)
34 {
35   if (argc < 2)
36   {
37     std::cout << argv[0] << " FILENAME..." << std::endl;
38   }
39   else
40   {
41     tinygettext::Log::set_log_info_callback(my_log_callback);
42     tinygettext::Log::set_log_warning_callback(my_log_callback);
43     tinygettext::Log::set_log_error_callback(my_log_callback);
44
45     for(int i = 1; i < argc; ++i)
46     {
47       std::ifstream in(argv[i]);
48       if (!in)
49       {
50         std::cerr << argv[0] << ": cannot access " << argv[i] << ": " << strerror(errno) << std::endl;
51       }
52       else
53       {
54         try 
55         {
56           tinygettext::Dictionary dict1;
57           tinygettext::POParser::parse(argv[i], in, dict1);
58
59           //tinygettext::Dictionary dict2;
60           //tinygettext::POFileReader::read(in, dict2);
61         }
62         catch(std::runtime_error& err)
63         {
64           std::cout << argv[i] << ": exception: " << err.what() << std::endl;
65         }
66       }
67     }
68   }  
69 }
70
71 /* EOF */