libzypp 17.31.23
iniparser.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
12#ifndef ZYPP_CORE_PARSER_INIPARSER_H
13#define ZYPP_CORE_PARSER_INIPARSER_H
14
15#include <iosfwd>
16#include <string>
17#include <list>
18
19#include <zypp-core/base/PtrTypes.h>
20#include <zypp-core/base/NonCopyable.h>
21#include <zypp-core/base/InputStream>
22#include <zypp-core/ui/ProgressData>
23
25namespace zypp
26{
28namespace parser
29{
30
42{
43public:
45 IniParser();
47 virtual ~IniParser();
53 void parse( const InputStream & imput_r, const ProgressData::ReceiverFnc & progress = ProgressData::ReceiverFnc() );
54
55public:
57 virtual void beginParse();
59 virtual void consume( const std::string &section );
61 virtual void consume( const std::string &section, const std::string &key, const std::string &value );
63 virtual void endParse();
64
74 virtual void garbageLine( const std::string &section, const std::string &line );
75
76public:
78 const std::string & inputname() const
79 {
80 return _inputname;
81 }
82
83private:
84 std::string _inputname;
85 std::string _current_section;
87 //ProgressData _ticks;
88};
89
91} // namespace parser
94} // namespace zypp
96#endif // ZYPP_CORE_PARSER_INIPARSER_H
Helper to create and pass std::istream.
Definition: inputstream.h:57
function< bool(const ProgressData &)> ReceiverFnc
Most simple version of progress reporting The percentage in most cases.
Definition: progressdata.h:140
Simple INI-file parser.
Definition: iniparser.h:42
std::string _inputname
Definition: iniparser.h:84
virtual void garbageLine(const std::string &section, const std::string &line)
Called whenever a garbage line is found.
Definition: iniparser.cc:72
virtual ~IniParser()
Dtor.
Definition: iniparser.cc:57
virtual void beginParse()
Called when start parsing.
Definition: iniparser.cc:60
const std::string & inputname() const
Name of the current InputStream.
Definition: iniparser.h:78
IniParser()
Default ctor.
Definition: iniparser.cc:48
std::string _current_section
Definition: iniparser.h:85
virtual void consume(const std::string &section)
Called when a section is found.
Definition: iniparser.cc:66
virtual void endParse()
Called when the parse is done.
Definition: iniparser.cc:69
void parse(const InputStream &imput_r, const ProgressData::ReceiverFnc &progress=ProgressData::ReceiverFnc())
Parse the stream.
Definition: iniparser.cc:84
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2