4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 // Stefan Bund <g0dil@berlios.de>
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 \brief ConfigFile public header */
26 #ifndef HH_SENF_Scheduler_Console_ConfigFile_
27 #define HH_SENF_Scheduler_Console_ConfigFile_ 1
32 //#include "ConfigFile.mpp"
33 #include "ConfigFile.ih"
34 //-/////////////////////////////////////////////////////////////////////////////////////////////////
39 /** \brief Console node tree based config file parser
41 A ConfigFile instance allows flexible parsing of a config file against the console node
42 tree. If you just want to parse a file completely, the senf::console::readConfig() function
43 will do that. ConfigFile however allows to incrementally parse only a subdirectory of the
44 complete configuration file.
46 senf::console::ConfigFile cf ("/my/config/file")
48 // Parse only statements under the directory of some object. The object 'ob'
49 // must have been registered somewhere in the node tree
52 // Parse rest of the config file
56 If your application uses multiple configuration sources, use a ConfigBundle and FileConfig
58 \ingroup console_access
61 : public detail::BundleMixin
64 //-////////////////////////////////////////////////////////////////////////
65 ///\name Structors and default members
68 explicit ConfigFile(std::string const & filename, DirectoryNode & root = root());
69 ///< Create ConfigFile object for \a filename
70 /**< The \a filename configuration file will be parsed using
71 parse() calls. All configuration statements will be
72 interpreted relative to \a root as root node. */
75 //-////////////////////////////////////////////////////////////////////////
77 void ignoreMissing(); ///< Call to ignore missing files
80 detail::ConfigFileSource & self_;
83 /** \brief Read configuration file
85 The configuration file \a filename will be loaded, interpreting all node's relative to \a
88 This function uses a local ConfigFile object to perform the parsing.
92 void parseFile(std::string const & filename, DirectoryNode & root = root());
94 /** \brief ConfigBundle source reading a configuration file
96 This constructor is used to create a config source parsing the given configuration file to
97 add to a ConfigBundle.
101 detail::ConfigFileSource::ptr FileConfig(std::string const & filename);
105 //-/////////////////////////////////////////////////////////////////////////////////////////////////
106 #include "ConfigFile.cci"
107 //#include "ConfigFile.ct"
108 //#include "ConfigFile.cti"
115 // comment-column: 40
116 // c-file-style: "senf"
117 // indent-tabs-mode: nil
118 // ispell-local-dictionary: "american"
119 // compile-command: "scons -u test"