HTMLParser, verbose setting
[metaproxy-moved-to-github.git] / src / html_parser.hpp
1 /* This file is part of Metaproxy.
2    Copyright (C) 2005-2013 Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 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 St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #ifndef HTML_PARSER_HPP
20 #define HTML_PARSER_HPP
21
22 #include <boost/scoped_ptr.hpp>
23
24 namespace metaproxy_1 {
25         class HTMLParserEvent {
26         public:
27             virtual void openTagStart(const char *tag, int tag_len) = 0;
28             virtual void anyTagEnd(const char *tag, int tag_len,
29                                    int close_it) = 0;
30             virtual void attribute(const char *tag, int tag_len,
31                                    const char *attr, int attr_len,
32                                    const char *value, int val_len) = 0;
33             virtual void closeTag(const char *tag, int tag_len) = 0;
34             virtual void text(const char *value, int len) = 0;
35         };
36         class HTMLParser {
37             class Rep;
38         public:
39             HTMLParser();
40             ~HTMLParser();
41             void parse(HTMLParserEvent &event, const char *str) const;
42             void set_verbose(int v);
43         private:
44             boost::scoped_ptr<Rep> m_p;
45         };
46 }
47
48 #endif
49 /*
50  * Local variables:
51  * c-basic-offset: 4
52  * c-file-style: "Stroustrup"
53  * indent-tabs-mode: nil
54  * End:
55  * vim: shiftwidth=4 tabstop=8 expandtab
56  */
57