libsidplayfp  1.1.0
iniParser.h
1 /*
2  * Copyright (C) 2010-2013 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 
25 class iniParser
26 {
27 private:
28  typedef std::map<std::string, std::string> keys_t;
29  typedef std::map<std::string, keys_t> sections_t;
30 
31  class parseError {};
32 
33 private:
34  sections_t sections;
35 
36  sections_t::const_iterator curSection;
37 
38 private:
39  std::string parseSection(const std::string &buffer);
40 
41  std::pair<std::string, std::string> parseKey(const std::string &buffer);
42 
43 public:
44  bool open(const char *fName);
45  void close();
46 
47  bool setSection(const char *section);
48  const char *getValue(const char *key);
49 };
50 
51 #endif // INIPARSER_H