~ubuntu-branches/ubuntu/trusty/jreen/trusty

« back to all changes in this revision

Viewing changes to src/parser.h

  • Committer: Package Import Robot
  • Author(s): Prasad Murthy
  • Date: 2013-03-08 00:00:33 UTC
  • Revision ID: package-import@ubuntu.com-20130308000033-x8thp6syo1kkh63s
Tags: upstream-1.1.1
Import upstream version 1.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Jreen
 
4
**
 
5
** Copyright © 2011 Ruslan Nigmatullin <euroelessar@yandex.ru>
 
6
**
 
7
*****************************************************************************
 
8
**
 
9
** $JREEN_BEGIN_LICENSE$
 
10
** This program is free software: you can redistribute it and/or modify
 
11
** it under the terms of the GNU General Public License as published by
 
12
** the Free Software Foundation, either version 2 of the License, or
 
13
** (at your option) any later version.
 
14
**
 
15
** This program is distributed in the hope that it will be useful,
 
16
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
18
** See the GNU General Public License for more details.
 
19
**
 
20
** You should have received a copy of the GNU General Public License
 
21
** along with this program.  If not, see http://www.gnu.org/licenses/.
 
22
** $JREEN_END_LICENSE$
 
23
**
 
24
****************************************************************************/
 
25
 
 
26
#ifndef PARSER_H
 
27
#define PARSER_H
 
28
 
 
29
#include "stanza.h"
 
30
#include <QXmlStreamReader>
 
31
#include <QEvent>
 
32
 
 
33
namespace Jreen
 
34
{
 
35
class Client;
 
36
class ParserPrivate;
 
37
 
 
38
class Parser : public QObject, public XmlStreamParser
 
39
{
 
40
        Q_OBJECT
 
41
        Q_DECLARE_PRIVATE(Parser)
 
42
public:
 
43
        enum State
 
44
        {
 
45
                WaitingForStanza,
 
46
                ReadFeatures,
 
47
                ReadStanza,
 
48
                ReadCustom
 
49
        };
 
50
 
 
51
        Parser(Client *client);
 
52
        ~Parser();
 
53
        void reset();
 
54
        void activateFeature();
 
55
        QByteArray nextPart(QByteArray &data, bool first, bool *needMoreData);
 
56
        
 
57
        bool canParse(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes);
 
58
        void handleStartElement(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes);
 
59
        void handleEndElement(const QStringRef &name, const QStringRef &uri);
 
60
        void handleCharacterData(const QStringRef &text);
 
61
        
 
62
        bool event(QEvent *ev);
 
63
        void appendData(const QByteArray &a);
 
64
        void parseData();
 
65
private:
 
66
        QScopedPointer<ParserPrivate> d_ptr;
 
67
};
 
68
}
 
69
 
 
70
#endif