Avoid re allocations
[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 *name) = 0;
28             virtual void anyTagEnd(const char *name) = 0;
29             virtual void attribute(const char *tagName, 
30                     const char *name, 
31                     const char *value,
32                     int val_len) = 0;
33             virtual void closeTag(const char *name) = 0;
34             virtual void text(const char *value, int len) = 0;
35         };
36         class HTMLParser {
37         public:
38             HTMLParser();
39             ~HTMLParser();
40             void parse(HTMLParserEvent & event, const char *str) const;
41         };
42 }
43
44 #endif
45 /*
46  * Local variables:
47  * c-basic-offset: 4
48  * c-file-style: "Stroustrup"
49  * indent-tabs-mode: nil
50  * End:
51  * vim: shiftwidth=4 tabstop=8 expandtab
52  */
53