0.6.0-1 release
[manu/suphp.git] / src / IniSection.hpp
1 #/*
2     suPHP - (c)2002-2005 Sebastian Marsching <sebastian@marsching.com>
3
4     This file is part of suPHP.
5
6     suPHP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     suPHP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with suPHP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef SUPHP_INISECTION_H
22
23 namespace suPHP {
24     class IniSection;
25 };
26
27 #define SUPHP_INISECTION_H
28
29 #include <string>
30 #include <vector>
31 #include <map>
32
33 #include "KeyNotFoundException.hpp"
34 #include "File.hpp"
35 #include "IniFile.hpp"
36
37 namespace suPHP {
38     /**
39      * Class providing access to configuration in a INI file.
40      */
41     class IniSection {
42     private:
43         std::multimap<std::string, std::string> entries;
44         void putValue(std::string key, std::string value);
45
46     public:
47         /**
48          * Returns values corresponding to key
49          */
50         std::vector<std::string> getValues(std::string key) 
51             throw (KeyNotFoundException);
52
53         /**
54          * Returns first value corresponding to a key
55          */
56         std::string getValue(std::string key) throw (KeyNotFoundException);
57
58         /**
59          * Returns keys appearing in this section
60          */
61         std::vector<std::string> getKeys();
62         /**
63          * Overloaded index operator, calls getValues()
64          */
65         std::vector<std::string> operator[](std::string key)
66             throw (KeyNotFoundException);
67
68         friend class IniFile;
69         
70         /**
71          * Check wheter key is existing within section
72          */
73         bool hasKey(std::string name);
74     };
75 };
76
77 #endif // SUPHP_INISECTION_H