summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/network/blackberry/rss/RSSParserBase.h
blob: fcb5adc0f0b3b3a282bd9df426efce58fb453161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */


#ifndef RSSParserBase_h
#define RSSParserBase_h

#include <libxml/tree.h>
#include <wtf/Vector.h>
#include <wtf/text/WTFString.h>

namespace WebCore {

class RSSItem;

class RSSEnclosure {
public:
    enum Type {
        TypeUnknown,
        TypeImage,
        TypeAudio,
        TypeVideo,
        TypeApplication,
        TypeUnsupported
    };

    RSSEnclosure();

    Type typeInEnum();
    String suggestedName() const;

    String m_url;
    String m_type;
    String m_length;

private:
    Type m_typeInEnum;
};

class RSSItemBase {
public:
    String m_title;
    String m_link;
    String m_description;
    String m_updated;
    String m_author;
    String m_pubDate;
    String m_id;
};

class RSSFeed: public RSSItemBase {
public:
    RSSFeed();
    ~RSSFeed();

    void clear();

    String m_language;
    String m_ttl;

    Vector<RSSItem*> m_items;
};

class RSSItem: public RSSItemBase {
public:
    RSSItem();
    ~RSSItem();

    void clear();

    String m_comments;
    Vector<String> m_categories;
    RSSEnclosure* m_enclosure;
};

class RSSParserBase {
public:
    RSSParserBase();
    virtual ~RSSParserBase();

    virtual bool parseBuffer(const char* buffer, int length, const char* url, const char* encoding) = 0;

    RSSFeed* m_root;
};

String textFromXMLAttr(xmlAttr*);
String textFromXMLNode(xmlNode*);

} // namespace WebCore

#endif // RSSParserBase_h