libsidplayfp  2.2.2
iniParser.h
1 /*
2  * Copyright (C) 2010-2015 Leandro Nini
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #ifndef INIPARSER_H
20 #define INIPARSER_H
21 
22 #include <string>
23 #include <map>
24 #include <utility>
25 #include <fstream>
26 
27 namespace libsidplayfp
28 {
29 
30 class iniParser
31 {
32 private:
33  typedef std::map<std::string, std::string> keys_t;
34  typedef std::map<std::string, keys_t> sections_t;
35 
36 private:
37  sections_t sections;
38 
39  sections_t::const_iterator curSection;
40 
41 private:
42  std::string parseSection(const std::string &buffer);
43 
44  keys_t::value_type parseKey(const std::string &buffer);
45 
46  bool open_internal(std::ifstream& iniFile);
47 
48 public:
49  bool open(const char *fName);
50 #ifdef _WIN32
51  bool open(const wchar_t* fName);
52 #endif
53  void close();
54 
55  bool setSection(const char *section);
56  const char *getValue(const char *key);
57 };
58 
59 }
60 
61 #endif // INIPARSER_H
Definition: iniParser.h:31