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

« back to all changes in this revision

Viewing changes to src/registrationfeature.cpp

  • 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 © 2012 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
#include "registrationfeature_p.h"
 
27
#include "registrationmanager_p.h"
 
28
 
 
29
namespace Jreen
 
30
{
 
31
 
 
32
#define NS_REGISTER QLatin1String("http://jabber.org/features/iq-register")
 
33
 
 
34
RegistrationFeature::RegistrationFeature(RegistrationManager *manager)
 
35
    : StreamFeature(RegistrationRequest), m_manager(manager), m_activatable(false)
 
36
{
 
37
}
 
38
 
 
39
int RegistrationFeature::priority()
 
40
{
 
41
        return 10;
 
42
}
 
43
 
 
44
bool RegistrationFeature::isActivatable()
 
45
{
 
46
        return m_activatable;
 
47
}
 
48
 
 
49
bool RegistrationFeature::activate()
 
50
{
 
51
        RegistrationManagerPrivate::get(m_manager)->handleConnection();
 
52
        return true;
 
53
}
 
54
 
 
55
void RegistrationFeature::reset()
 
56
{
 
57
        m_activatable = false;
 
58
}
 
59
 
 
60
bool RegistrationFeature::canParse(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes)
 
61
{
 
62
        Q_UNUSED(attributes);
 
63
        return name == QLatin1String("register") && uri == NS_REGISTER;
 
64
}
 
65
 
 
66
void RegistrationFeature::handleStartElement(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes)
 
67
{
 
68
        Q_UNUSED(uri);
 
69
        Q_UNUSED(attributes);
 
70
        if (name == QLatin1String("register"))
 
71
                m_activatable = true;
 
72
}
 
73
 
 
74
void RegistrationFeature::handleEndElement(const QStringRef &name, const QStringRef &uri)
 
75
{
 
76
        Q_UNUSED(name);
 
77
        Q_UNUSED(uri);
 
78
}
 
79
 
 
80
void RegistrationFeature::handleCharacterData(const QStringRef &text)
 
81
{
 
82
        Q_UNUSED(text);
 
83
}
 
84
 
 
85
} // namespace Jreen