aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorManjeet Dahiya <manjeetdahiya@gmail.com>2009-06-14 10:58:36 +0000
committerManjeet Dahiya <manjeetdahiya@gmail.com>2009-06-14 10:58:36 +0000
commit4bb18146d12ad2af36ec4e609a010f86be05730a (patch)
tree9cfea59236aea6ee0d8e638d6acb72f8de1ae94d /source
parentcb37450aac5fedbc5aa0cd4bc6fb9955d13bc5be (diff)
downloadqxmpp-4bb18146d12ad2af36ec4e609a010f86be05730a.tar.gz
add
Diffstat (limited to 'source')
-rw-r--r--source/QXmppBind.cpp78
-rw-r--r--source/QXmppBind.h48
-rw-r--r--source/QXmppClient.cpp93
-rw-r--r--source/QXmppClient.h65
-rw-r--r--source/QXmppConfiguration.cpp127
-rw-r--r--source/QXmppConfiguration.h72
-rw-r--r--source/QXmppConstants.cpp35
-rw-r--r--source/QXmppConstants.h37
-rw-r--r--source/QXmppIq.cpp130
-rw-r--r--source/QXmppIq.h57
-rw-r--r--source/QXmppLogger.cpp94
-rw-r--r--source/QXmppLogger.h56
-rw-r--r--source/QXmppMessage.cpp166
-rw-r--r--source/QXmppMessage.h67
-rw-r--r--source/QXmppPacket.cpp40
-rw-r--r--source/QXmppPacket.h43
-rw-r--r--source/QXmppPresence.cpp292
-rw-r--r--source/QXmppPresence.h98
-rw-r--r--source/QXmppRoster.cpp193
-rw-r--r--source/QXmppRoster.h102
-rw-r--r--source/QXmppRosterIq.cpp181
-rw-r--r--source/QXmppRosterIq.h83
-rw-r--r--source/QXmppSession.cpp55
-rw-r--r--source/QXmppSession.h42
-rw-r--r--source/QXmppStanza.cpp325
-rw-r--r--source/QXmppStanza.h120
-rw-r--r--source/QXmppStream.cpp583
-rw-r--r--source/QXmppStream.h111
-rw-r--r--source/source.pro41
-rw-r--r--source/utils.cpp66
-rw-r--r--source/utils.h43
31 files changed, 3543 insertions, 0 deletions
diff --git a/source/QXmppBind.cpp b/source/QXmppBind.cpp
new file mode 100644
index 00000000..6baabb49
--- /dev/null
+++ b/source/QXmppBind.cpp
@@ -0,0 +1,78 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppBind.h"
+#include "utils.h"
+#include "QXmppConstants.h"
+
+#include <QTextStream>
+
+QXmppBind::QXmppBind(QXmppIq::Type type)
+ : QXmppIq(type)
+{
+}
+QXmppBind::QXmppBind(const QString& type)
+ : QXmppIq(type)
+{
+}
+
+QXmppBind::~QXmppBind()
+{
+}
+
+QString QXmppBind::getJid() const
+{
+ return m_jid;
+}
+
+QString QXmppBind::getResource() const
+{
+ return m_resource;
+}
+
+void QXmppBind::setJid(const QString& str)
+{
+ m_jid = str;
+}
+
+void QXmppBind::setResource(const QString& str)
+{
+ m_resource = str;
+}
+
+QByteArray QXmppBind::toXmlElementFromChild() const
+{
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<bind";
+ helperToXmlAddAttribute(stream, "xmlns", ns_bind);
+ stream << ">";
+ helperToXmlAddElement(stream, "jid", getJid());
+ helperToXmlAddElement(stream, "resource", getResource());
+ stream << "</bind>";
+
+ return data.toAscii();
+}
+
diff --git a/source/QXmppBind.h b/source/QXmppBind.h
new file mode 100644
index 00000000..2a15b48e
--- /dev/null
+++ b/source/QXmppBind.h
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPBIND_H
+#define QXMPPBIND_H
+
+#include "QXmppIq.h"
+
+class QXmppBind : public QXmppIq
+{
+public:
+ QXmppBind(QXmppIq::Type type);
+ QXmppBind(const QString& type);
+ ~QXmppBind();
+
+ QString getJid() const;
+ QString getResource() const;
+ void setJid(const QString&);
+ void setResource(const QString&);
+
+private:
+ QString m_jid;
+ QString m_resource;
+ QByteArray toXmlElementFromChild() const;
+};
+
+#endif // QXMPPBIND_H
diff --git a/source/QXmppClient.cpp b/source/QXmppClient.cpp
new file mode 100644
index 00000000..75fa2bdd
--- /dev/null
+++ b/source/QXmppClient.cpp
@@ -0,0 +1,93 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppClient.h"
+#include "QXmppStream.h"
+#include "QXmppRoster.h"
+#include "QXmppMessage.h"
+
+QXmppClient::QXmppClient(QObject *parent)
+ : QObject(parent), m_stream(0)
+{
+ m_stream = new QXmppStream(this);
+
+ bool check = connect(m_stream, SIGNAL(messageReceived(const QXmppMessage&)), this,
+ SIGNAL(messageReceived(const QXmppMessage&)));
+ Q_ASSERT(check);
+
+ check = connect(m_stream, SIGNAL(presenceReceived(const QXmppPresence&)), this,
+ SIGNAL(presenceReceived(const QXmppPresence&)));
+ Q_ASSERT(check);
+
+ check = connect(m_stream, SIGNAL(iqReceived(const QXmppIq&)), this,
+ SIGNAL(iqReceived(const QXmppIq&)));
+ Q_ASSERT(check);
+}
+
+QXmppClient::~QXmppClient()
+{
+}
+
+QXmppConfiguration& QXmppClient::getConfigurgation()
+{
+ return m_config;
+}
+
+void QXmppClient::connectToServer(const QString& host, const QString& user, const QString& passwd,
+ const QString& domain, int port)
+{
+ m_config.setHost(host);
+ m_config.setUser(user);
+ m_config.setPasswd(passwd);
+ m_config.setDomain(domain);
+ m_config.setPort(port);
+
+ m_stream->connect();
+}
+
+void QXmppClient::connectToServer(const QXmppConfiguration& config)
+{
+ m_config = config;
+
+ m_stream->connect();
+}
+
+void QXmppClient::sendPacket(const QXmppPacket& packet)
+{
+ if(m_stream)
+ {
+ m_stream->sendPacket(packet);
+ }
+}
+
+void QXmppClient::disconnect()
+{
+ if(m_stream)
+ m_stream->disconnect();
+}
+
+QXmppRoster& QXmppClient::getRoster()
+{
+ return m_stream->getRoster();
+}
diff --git a/source/QXmppClient.h b/source/QXmppClient.h
new file mode 100644
index 00000000..61a4eb9e
--- /dev/null
+++ b/source/QXmppClient.h
@@ -0,0 +1,65 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPCLIENT_H
+#define QXMPPCLIENT_H
+
+#include <QObject>
+#include "QXmppConfiguration.h"
+
+class QXmppStream;
+class QXmppPresence;
+class QXmppMessage;
+class QXmppPacket;
+class QXmppIq;
+class QXmppRoster;
+
+class QXmppClient : public QObject
+{
+ Q_OBJECT
+
+public:
+ QXmppClient(QObject *parent = 0);
+ ~QXmppClient();
+ void connectToServer(const QString& host, const QString& user, const QString& passwd,
+ const QString& domain, int port = 5222);
+ void connectToServer(const QXmppConfiguration&);
+ void disconnect();
+ QXmppRoster& getRoster();
+ QXmppConfiguration& getConfigurgation();
+
+signals:
+ void messageReceived(const QXmppMessage&);
+ void presenceReceived(const QXmppPresence&);
+ void iqReceived(const QXmppIq&);
+
+public slots:
+ void sendPacket(const QXmppPacket&);
+
+private:
+ QXmppStream* m_stream;
+ QXmppConfiguration m_config;
+};
+
+#endif // QXMPPCLIENT_H
diff --git a/source/QXmppConfiguration.cpp b/source/QXmppConfiguration.cpp
new file mode 100644
index 00000000..d4abb0b5
--- /dev/null
+++ b/source/QXmppConfiguration.cpp
@@ -0,0 +1,127 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppConfiguration.h"
+
+QXmppConfiguration::QXmppConfiguration():m_resource("QXmpp"), m_autoAcceptSubscriptions(true),
+ m_sendIntialPresence(true), m_sendRosterRequest(true), m_port(5222),
+ m_keepAlivePingsInterval(100)
+{
+
+}
+
+QXmppConfiguration::~QXmppConfiguration()
+{
+
+}
+
+void QXmppConfiguration::setHost(const QString& str)
+{
+ m_host = str;
+}
+
+void QXmppConfiguration::setDomain(const QString& str)
+{
+ m_domain = str;
+}
+
+void QXmppConfiguration::setPort(int port)
+{
+ m_port = port;
+}
+
+void QXmppConfiguration::setUser(const QString& str)
+{
+ m_user = str;
+}
+
+void QXmppConfiguration::setPasswd(const QString& str)
+{
+ m_passwd = str;
+}
+
+void QXmppConfiguration::setStatus(const QString& str)
+{
+ m_status = str;
+}
+
+void QXmppConfiguration::setResource(const QString& str)
+{
+ m_resource = str;
+}
+
+QString QXmppConfiguration::getHost() const
+{
+ return m_host;
+}
+
+QString QXmppConfiguration::getDomain() const
+{
+ return m_domain;
+}
+
+int QXmppConfiguration::getPort() const
+{
+ return m_port;
+}
+
+QString QXmppConfiguration::getUser() const
+{
+ return m_user;
+}
+QString QXmppConfiguration::getPasswd() const
+{
+ return m_passwd;
+}
+
+QString QXmppConfiguration::getStatus() const
+{
+ return m_status;
+}
+
+QString QXmppConfiguration::getResource() const
+{
+ return m_resource;
+}
+
+QString QXmppConfiguration::getJid() const
+{
+ return getJidBare() + "/" + m_resource;
+}
+
+QString QXmppConfiguration::getJidBare() const
+{
+ return m_user+"@"+m_domain;
+}
+
+bool QXmppConfiguration::getAutoAcceptSubscriptions() const
+{
+ return m_autoAcceptSubscriptions;
+}
+
+void QXmppConfiguration::setAutoAcceptSubscriptions(bool check)
+{
+ m_autoAcceptSubscriptions = check;
+}
+
diff --git a/source/QXmppConfiguration.h b/source/QXmppConfiguration.h
new file mode 100644
index 00000000..c57dadd6
--- /dev/null
+++ b/source/QXmppConfiguration.h
@@ -0,0 +1,72 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPCONFIGURATION_H
+#define QXMPPCONFIGURATION_H
+
+#include <QString>
+
+class QXmppConfiguration
+{
+public:
+ QXmppConfiguration();
+ ~QXmppConfiguration();
+
+ void setHost(const QString&);
+ void setDomain(const QString&);
+ void setPort(int);
+ void setUser(const QString&);
+ void setPasswd(const QString&);
+ void setStatus(const QString&);
+ void setResource(const QString&);
+
+ QString getHost() const;
+ QString getDomain() const;
+ int getPort() const;
+ QString getUser() const;
+ QString getPasswd() const;
+ QString getStatus() const;
+ QString getResource() const;
+ QString getJid() const;
+ QString getJidBare() const;
+
+ bool getAutoAcceptSubscriptions() const;
+ void setAutoAcceptSubscriptions(bool);
+
+private:
+ QString m_host;
+ int m_port;
+ QString m_user;
+ QString m_passwd;
+ QString m_domain;
+ QString m_status;
+ QString m_resource;
+
+ bool m_autoAcceptSubscriptions; // default is true
+ bool m_sendIntialPresence; // default is true
+ bool m_sendRosterRequest; // default is true
+ int m_keepAlivePingsInterval; // interval in seconds, if negative it won't ping
+};
+
+#endif // QXMPPCONFIGURATION_H
diff --git a/source/QXmppConstants.cpp b/source/QXmppConstants.cpp
new file mode 100644
index 00000000..22bc7ccc
--- /dev/null
+++ b/source/QXmppConstants.cpp
@@ -0,0 +1,35 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppConstants.h"
+
+const char* ns_stream = "http://etherx.jabber.org/streams";
+const char* ns_client = "jabber:client";
+const char* ns_roster = "jabber:iq:roster";
+const char* ns_tls = "urn:ietf:params:xml:ns:xmpp-tls";
+const char* ns_sasl = "urn:ietf:params:xml:ns:xmpp-sasl";
+const char* ns_bind = "urn:ietf:params:xml:ns:xmpp-bind";
+const char* ns_session = "urn:ietf:params:xml:ns:xmpp-session";
+const char* ns_stanza = "urn:ietf:params:xml:ns:xmpp-stanzas";
+
diff --git a/source/QXmppConstants.h b/source/QXmppConstants.h
new file mode 100644
index 00000000..ea2622fa
--- /dev/null
+++ b/source/QXmppConstants.h
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPCONSTANTS_H
+#define QXMPPCONSTANTS_H
+
+extern const char* ns_stream;
+extern const char* ns_client;
+extern const char* ns_roster;
+extern const char* ns_tls;
+extern const char* ns_sasl;
+extern const char* ns_bind;
+extern const char* ns_session;
+extern const char* ns_stanza;
+
+#endif // QXMPPCONSTANTS_H
diff --git a/source/QXmppIq.cpp b/source/QXmppIq.cpp
new file mode 100644
index 00000000..622139e2
--- /dev/null
+++ b/source/QXmppIq.cpp
@@ -0,0 +1,130 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "utils.h"
+#include "QXmppIq.h"
+
+#include <QTextStream>
+
+QXmppIq::QXmppIq(QXmppIq::Type type)
+ : QXmppStanza(), m_type(type)
+{
+ generateAndSetNextId();
+}
+
+QXmppIq::QXmppIq(const QString& type)
+ : QXmppStanza()
+{
+ generateAndSetNextId();
+ setTypeFromStr(type);
+}
+
+QXmppIq::~QXmppIq()
+{
+
+}
+
+QXmppIq::Type QXmppIq::getType() const
+{
+ return m_type;
+}
+
+void QXmppIq::setType(QXmppIq::Type type)
+{
+ m_type = type;
+}
+
+QByteArray QXmppIq::toXml() const
+{
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<iq";
+ helperToXmlAddAttribute(stream, "id", getId());
+ helperToXmlAddAttribute(stream, "to", getTo());
+ helperToXmlAddAttribute(stream, "from", getFrom());
+ if(getTypeStr().isEmpty())
+ helperToXmlAddAttribute(stream, "type", "get");
+ else
+ helperToXmlAddAttribute(stream, "type", getTypeStr());
+ stream << ">";
+ stream << toXmlElementFromChild();
+ stream << getError().toXml();
+ stream << "</iq>";
+
+ return data.toAscii();
+}
+
+QByteArray QXmppIq::toXmlElementFromChild() const
+{
+ return "";
+}
+
+QString QXmppIq::getTypeStr() const
+{
+ switch(getType())
+ {
+ case QXmppIq::Error:
+ return "error";
+ case QXmppIq::Get:
+ return "get";
+ case QXmppIq::Set:
+ return "set";
+ case QXmppIq::Result:
+ return "result";
+ default:
+ qWarning("QXmppIq::getTypeStr() invalid type %d", (int)getType());
+ return "";
+ }
+}
+
+void QXmppIq::setTypeFromStr(const QString& str)
+{
+ if(str == "error")
+ {
+ setType(QXmppIq::Error);
+ return;
+ }
+ else if(str == "get")
+ {
+ setType(QXmppIq::Get);
+ return;
+ }
+ else if(str == "set")
+ {
+ setType(QXmppIq::Set);
+ return;
+ }
+ else if(str == "result")
+ {
+ setType(QXmppIq::Result);
+ return;
+ }
+ else
+ {
+ setType(static_cast<QXmppIq::Type>(-1));
+ qWarning("QXmppIq::setTypeFromStr() invalid input string type: %s", qPrintable(str));
+ return;
+ }
+}
diff --git a/source/QXmppIq.h b/source/QXmppIq.h
new file mode 100644
index 00000000..d79b080a
--- /dev/null
+++ b/source/QXmppIq.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPIQ_H
+#define QXMPPIQ_H
+
+#include "QXmppStanza.h"
+
+class QXmppIq : public QXmppStanza
+{
+public:
+ enum Type
+ {
+ Error = 0,
+ Get,
+ Set,
+ Result
+ };
+
+ QXmppIq(QXmppIq::Type type = QXmppIq::Get);
+ QXmppIq(const QString& type);
+ ~QXmppIq();
+
+ QXmppIq::Type getType() const;
+ QString getTypeStr() const;
+ void setType(QXmppIq::Type);
+ void setTypeFromStr(const QString& str);
+
+ QByteArray toXml() const;
+ virtual QByteArray toXmlElementFromChild() const;
+
+private:
+ Type m_type;
+};
+
+#endif // QXMPPIQ_H
diff --git a/source/QXmppLogger.cpp b/source/QXmppLogger.cpp
new file mode 100644
index 00000000..30b57eb9
--- /dev/null
+++ b/source/QXmppLogger.cpp
@@ -0,0 +1,94 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppLogger.h"
+#include <iostream>
+#include <QTime>
+
+QXmppLogger* QXmppLogger::m_logger = 0;
+QXmppLogger::LoggingType QXmppLogger::m_loggingType = QXmppLogger::FILE;
+QFile QXmppLogger::m_file("QXmppClientLog.log");
+QTextStream QXmppLogger::m_stream;
+
+QXmppLogger::QXmppLogger()
+{
+}
+
+QXmppLogger* QXmppLogger::getLogger()
+{
+ if(!m_logger)
+ m_logger = new QXmppLogger();
+
+ return m_logger;
+}
+
+void QXmppLogger::setLoggingType(QXmppLogger::LoggingType log)
+{
+ m_loggingType = log;
+}
+
+QXmppLogger::LoggingType QXmppLogger::getLoggingType()
+{
+ return m_loggingType;
+}
+
+void QXmppLogger::log(const QString& str)
+{
+ switch(m_loggingType)
+ {
+ case QXmppLogger::FILE:
+ m_file.open(QIODevice::Append);
+ m_stream.setDevice(&m_file);
+ m_stream << QTime::currentTime().toString("hh:mm:ss.zzz") << " : "<< str << "\n\n";
+ m_file.close();
+ break;
+ case QXmppLogger::STDOUT:
+ std::cout<<qPrintable(str)<<std::endl;
+ break;
+ case QXmppLogger::NONE:
+ break;
+ default:
+ break;
+ }
+}
+
+void QXmppLogger::log(const QByteArray& str)
+{
+ switch(m_loggingType)
+ {
+ case QXmppLogger::FILE:
+ m_file.open(QIODevice::Append);
+ m_stream.setDevice(&m_file);
+ m_stream << QTime::currentTime().toString("hh:mm:ss.zzz") << " : "<< str << "\n\n";
+ m_file.close();
+ break;
+ case QXmppLogger::STDOUT:
+ std::cout<<str.constData()<<std::endl;
+ break;
+ case QXmppLogger::NONE:
+ break;
+ default:
+ break;
+ }
+}
diff --git a/source/QXmppLogger.h b/source/QXmppLogger.h
new file mode 100644
index 00000000..e1d03459
--- /dev/null
+++ b/source/QXmppLogger.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPLOGGER_H
+#define QXMPPLOGGER_H
+
+#include <QTextStream>
+#include <QFile>
+
+/// Singelton class
+class QXmppLogger
+{
+public:
+ enum LoggingType
+ {
+ NONE = 0,
+ FILE,
+ STDOUT
+ };
+
+ static QXmppLogger* getLogger();
+ QXmppLogger::LoggingType getLoggingType();
+ void setLoggingType(QXmppLogger::LoggingType);
+ void log(const QString& str);
+ void log(const QByteArray& str);
+
+private:
+ QXmppLogger();
+ static QXmppLogger* m_logger;
+ static QXmppLogger::LoggingType m_loggingType;
+ static QFile m_file;
+ static QTextStream m_stream;
+};
+
+#endif // QXMPPLOGGER_H
diff --git a/source/QXmppMessage.cpp b/source/QXmppMessage.cpp
new file mode 100644
index 00000000..3dc19ce5
--- /dev/null
+++ b/source/QXmppMessage.cpp
@@ -0,0 +1,166 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppMessage.h"
+#include "utils.h"
+#include <QTextStream>
+
+QXmppMessage::QXmppMessage(const QString& from, const QString& to, const
+ QString& body, const QString& thread)
+ : QXmppStanza(from, to), m_type(Chat), m_body(body), m_thread(thread)
+{
+
+}
+
+QXmppMessage::~QXmppMessage()
+{
+
+}
+
+QXmppMessage::Type QXmppMessage::getType() const
+{
+ return m_type;
+}
+
+QString QXmppMessage::getTypeStr() const
+{
+ switch(getType())
+ {
+ case QXmppMessage::Error:
+ return "error";
+ case QXmppMessage::Normal:
+ return "normal";
+ case QXmppMessage::Chat:
+ return "chat";
+ case QXmppMessage::GroupChat:
+ return "groupchat";
+ case QXmppMessage::Headline:
+ return "headline";
+ default:
+ qWarning("QXmppMessage::getTypeStr() invalid type %d", (int)getType());
+ return "";
+ }
+}
+
+void QXmppMessage::setType(QXmppMessage::Type type)
+{
+ m_type = type;
+}
+
+void QXmppMessage::setTypeFromStr(const QString& str)
+{
+ if(str == "error")
+ {
+ setType(QXmppMessage::Error);
+ return;
+ }
+ else if(str == "") // if no type is specified
+ {
+ setType(QXmppMessage::Normal);
+ return;
+ }
+ else if(str == "normal")
+ {
+ setType(QXmppMessage::Normal);
+ return;
+ }
+ else if(str == "chat")
+ {
+ setType(QXmppMessage::Chat);
+ return;
+ }
+ else if(str == "groupchat")
+ {
+ setType(QXmppMessage::GroupChat);
+ return;
+ }
+ else if(str == "headline")
+ {
+ setType(QXmppMessage::Headline);
+ return;
+ }
+ else
+ {
+ setType(static_cast<QXmppMessage::Type>(-1));
+ qWarning("QXmppMessage::setTypeFromStr() invalid input string type: %s", qPrintable(str));
+ return;
+ }
+}
+
+QByteArray QXmppMessage::toXml() const
+{
+// yet to take care of escaping xml chars
+// and what if there are multiple bodies in diff langs
+// also error
+
+ // why not qbytearray getback
+ // or use bytearray without text stream..using append
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<message";
+ helperToXmlAddAttribute(stream, "xml:lang", getLang());
+ helperToXmlAddAttribute(stream, "id", getId());
+ helperToXmlAddAttribute(stream, "to", getTo());
+ helperToXmlAddAttribute(stream, "from", getFrom());
+ helperToXmlAddAttribute(stream, "type", getTypeStr());
+ stream << ">";
+ helperToXmlAddElement(stream, "subject", getSubject());
+ helperToXmlAddElement(stream, "body", getBody());
+ helperToXmlAddElement(stream, "thread", getThread());
+ stream << getError().toXml();
+ stream << "</message>";
+ return data.toAscii();
+}
+
+QString QXmppMessage::getBody() const
+{
+ return m_body;
+}
+
+void QXmppMessage::setBody(const QString& body)
+{
+ m_body = body;
+}
+
+QString QXmppMessage::getSubject() const
+{
+ return m_subject;
+}
+
+void QXmppMessage::setSubject(const QString& sub)
+{
+ m_subject = sub;
+}
+
+QString QXmppMessage::getThread() const
+{
+ return m_thread;
+}
+
+void QXmppMessage::setThread(const QString& thread)
+{
+ m_thread = thread;
+}
+
diff --git a/source/QXmppMessage.h b/source/QXmppMessage.h
new file mode 100644
index 00000000..8755ba5d
--- /dev/null
+++ b/source/QXmppMessage.h
@@ -0,0 +1,67 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPMESSAGE_H
+#define QXMPPMESSAGE_H
+
+#include "QXmppStanza.h"
+
+class QXmppMessage : public QXmppStanza
+{
+public:
+ enum Type
+ {
+ Error = 0,
+ Normal,
+ Chat,
+ GroupChat,
+ Headline
+ };
+
+ QXmppMessage(const QString& from = "", const QString& to = "", const QString& body = "",
+ const QString& thread = "");
+ ~QXmppMessage();
+
+ QXmppMessage::Type getType() const;
+ QString getTypeStr() const;
+ void setType(QXmppMessage::Type);
+ void setTypeFromStr(const QString&);
+
+ QString getBody() const;
+ void setBody(const QString&);
+ QString getSubject() const;
+ void setSubject(const QString&);
+ QString getThread() const;
+ void setThread(const QString&);
+
+ QByteArray toXml() const;
+private:
+ Type m_type;
+
+ QString m_body;
+ QString m_subject;
+ QString m_thread;
+};
+
+#endif // QXMPPMESSAGE_H
diff --git a/source/QXmppPacket.cpp b/source/QXmppPacket.cpp
new file mode 100644
index 00000000..532d7afd
--- /dev/null
+++ b/source/QXmppPacket.cpp
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppPacket.h"
+
+QXmppPacket::QXmppPacket()
+{
+
+}
+
+QXmppPacket::~QXmppPacket()
+{
+
+}
+
+QByteArray QXmppPacket::getXmlReceived() const
+{
+ return m_xmlReceived;
+}
diff --git a/source/QXmppPacket.h b/source/QXmppPacket.h
new file mode 100644
index 00000000..bb96c790
--- /dev/null
+++ b/source/QXmppPacket.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPPACKET_H
+#define QXMPPPACKET_H
+
+#include <QByteArray>
+
+class QXmppPacket
+{
+public:
+ QXmppPacket();
+ ~QXmppPacket();
+
+ QByteArray getXmlReceived() const;
+ virtual QByteArray toXml() const = 0;
+
+private:
+ QByteArray m_xmlReceived;
+};
+
+#endif // QXMPPPACKET_H
diff --git a/source/QXmppPresence.cpp b/source/QXmppPresence.cpp
new file mode 100644
index 00000000..16906bd3
--- /dev/null
+++ b/source/QXmppPresence.cpp
@@ -0,0 +1,292 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppPresence.h"
+#include "utils.h"
+#include <QtDebug>
+
+QXmppPresence::QXmppPresence(QXmppPresence::Type type, const QXmppPresence::Status& status)
+ : QXmppStanza(), m_type(type), m_status(status)
+{
+
+}
+
+QXmppPresence::~QXmppPresence()
+{
+
+}
+
+QXmppPresence::Type QXmppPresence::getType() const
+{
+ return m_type;
+}
+
+void QXmppPresence::setType(QXmppPresence::Type type)
+{
+ m_type = type;
+}
+
+QXmppPresence::Status QXmppPresence::getStatus() const
+{
+ return m_status;
+}
+
+void QXmppPresence::setStatus(const QXmppPresence::Status& status)
+{
+ m_status = status;
+}
+
+QByteArray QXmppPresence::toXml() const
+{
+ QString data;
+
+ QTextStream stream(&data);
+
+ stream << "<presence";
+ helperToXmlAddAttribute(stream, "xml:lang", getLang());
+ helperToXmlAddAttribute(stream, "id", getId());
+ helperToXmlAddAttribute(stream, "to", getTo());
+ helperToXmlAddAttribute(stream, "from", getFrom());
+ helperToXmlAddAttribute(stream, "type", getTypeStr());
+ stream << ">";
+ helperToXmlAddElement(stream, "status", getStatus().getStatusText());
+ if(getStatus().getPriority() != 0)
+ helperToXmlAddElement(stream, "priority", getStatus().getPriority());
+ helperToXmlAddElement(stream, "show", getStatus().getTypeStr());
+
+ stream << getError().toXml();
+
+ stream << "</presence>";
+
+ return data.toAscii();
+}
+
+QString QXmppPresence::getTypeStr() const
+{
+ QString text;
+ switch(getType())
+ {
+ case QXmppPresence::Error:
+ text = "error";
+ break;
+ case QXmppPresence::Available:
+ // no type-attribute if available
+ text = "";
+ break;
+ case QXmppPresence::Unavailable:
+ text = "unavailable";
+ break;
+ case QXmppPresence::Subscribe:
+ text = "subscribe";
+ break;
+ case QXmppPresence::Subscribed:
+ text = "subscribed";
+ break;
+ case QXmppPresence::Unsubscribe:
+ text = "unsubscribe";
+ break;
+ case QXmppPresence::Unsubscribed:
+ text = "unsubscribed";
+ break;
+ case QXmppPresence::Probe:
+ text = "probe";
+ break;
+ default:
+ qWarning("QXmppPresence::getTypeStr() invalid type %d", (int)getType());
+ break;
+ }
+ return text;
+}
+
+void QXmppPresence::setTypeFromStr(const QString& str)
+{
+ QXmppPresence::Type type;
+ if(str == "error")
+ {
+ type = QXmppPresence::Error;
+ setType(type);
+ return;
+ }
+ else if(str == "unavailable")
+ {
+ type = QXmppPresence::Unavailable;
+ setType(type);
+ return;
+ }
+ else if(str == "subscribe")
+ {
+ type = QXmppPresence::Subscribe;
+ setType(type);
+ return;
+ }
+ else if(str == "subscribed")
+ {
+ type = QXmppPresence::Subscribed;
+ setType(type);
+ return;
+ }
+ else if(str == "unsubscribe")
+ {
+ type = QXmppPresence::Unsubscribe;
+ setType(type);
+ return;
+ }
+ else if(str == "unsubscribed")
+ {
+ type = QXmppPresence::Unsubscribed;
+ setType(type);
+ return;
+ }
+ else if(str == "probe")
+ {
+ type = QXmppPresence::Probe;
+ setType(type);
+ return;
+ }
+ else if(str == "")
+ {
+ type = QXmppPresence::Available;
+ setType(type);
+ return;
+ }
+ else
+ {
+ type = static_cast<QXmppPresence::Type>(-1);
+ qWarning("QXmppPresence::setTypeFromStr() invalid input string type: %s", qPrintable(str));
+ setType(type);
+ return;
+ }
+}
+
+QXmppPresence::Status::Status(QXmppPresence::Status::Type type,
+ const QString statusText, int priority): m_type(type),
+ m_statusText(statusText), m_priority(priority)
+{
+}
+
+QXmppPresence::Status::Type QXmppPresence::Status::getType() const
+{
+ return m_type;
+}
+
+void QXmppPresence::Status::setType(QXmppPresence::Status::Type type)
+{
+ m_type = type;
+}
+
+void QXmppPresence::Status::setTypeFromStr(const QString& str)
+{
+ // there is no keyword for Offline
+
+ QXmppPresence::Status::Type type;
+ if(str == "") // not type-attribute means online
+ {
+ type = QXmppPresence::Status::Online;
+ setType(type);
+ return;
+ }
+ else if(str == "away")
+ {
+ type = QXmppPresence::Status::Away;
+ setType(type);
+ return;
+ }
+ else if(str == "xa")
+ {
+ type = QXmppPresence::Status::XA;
+ setType(type);
+ return;
+ }
+ else if(str == "dnd")
+ {
+ type = QXmppPresence::Status::DND;
+ setType(type);
+ return;
+ }
+ else if(str == "chat")
+ {
+ type = QXmppPresence::Status::Chat;
+ setType(type);
+ return;
+ }
+ else
+ {
+ type = static_cast<QXmppPresence::Status::Type>(-1);
+ qWarning("QXmppPresence::Status::setTypeFromStr() invalid input string type %s",
+ qPrintable(str));
+ setType(type);
+ }
+}
+
+QString QXmppPresence::Status::getTypeStr() const
+{
+ QString text;
+ switch(getType())
+ {
+ case QXmppPresence::Status::Online:
+ // no type-attribute if available
+ text = "";
+ break;
+ case QXmppPresence::Status::Offline:
+ text = "";
+ break;
+ case QXmppPresence::Status::Away:
+ text = "away";
+ break;
+ case QXmppPresence::Status::XA:
+ text = "xa";
+ break;
+ case QXmppPresence::Status::DND:
+ text = "dnd";
+ break;
+ case QXmppPresence::Status::Chat:
+ text = "chat";
+ break;
+ default:
+ qWarning("QXmppPresence::Status::getTypeStr() invalid type %d", (int)getType());
+ break;
+ }
+ return text;
+}
+
+QString QXmppPresence::Status::getStatusText() const
+{
+ return m_statusText;
+}
+
+void QXmppPresence::Status::setStatusText(const QString& str)
+{
+ m_statusText = str;
+}
+
+int QXmppPresence::Status::getPriority() const
+{
+ return m_priority;
+}
+
+void QXmppPresence::Status::setPriority(int priority)
+{
+ m_priority = priority;
+}
+
diff --git a/source/QXmppPresence.h b/source/QXmppPresence.h
new file mode 100644
index 00000000..19b3aecb
--- /dev/null
+++ b/source/QXmppPresence.h
@@ -0,0 +1,98 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPPRESENCE_H
+#define QXMPPPRESENCE_H
+
+#include "QXmppStanza.h"
+
+class QXmppPresence : public QXmppStanza
+{
+public:
+ enum Type
+ {
+ Error = 0,
+ Available,
+ Unavailable,
+ Subscribe,
+ Subscribed,
+ Unsubscribe,
+ Unsubscribed,
+ Probe
+ };
+
+ class Status
+ {
+ public:
+ enum Type
+ {
+ Offline = 0,
+ Online,
+ Away,
+ XA,
+ DND,
+ Chat,
+ Invisible
+ };
+
+ Status(QXmppPresence::Status::Type type = QXmppPresence::Status::Online,
+ const QString statusText = "", int priority = 0);
+
+ QXmppPresence::Status::Type getType() const;
+ void setType(QXmppPresence::Status::Type);
+ void setTypeFromStr(const QString&);
+ QString getTypeStr() const;
+
+ QString getStatusText() const;
+ void setStatusText(const QString&);
+
+ int getPriority() const;
+ void setPriority(int);
+
+ private:
+ QXmppPresence::Status::Type m_type;
+ QString m_statusText;
+ int m_priority;
+ };
+
+ QXmppPresence(QXmppPresence::Type type = QXmppPresence::Available,
+ const QXmppPresence::Status& status = QXmppPresence::Status());
+ ~QXmppPresence();
+
+ QXmppPresence::Type getType() const;
+ void setType(QXmppPresence::Type);
+ void setTypeFromStr(const QString&);
+
+ QXmppPresence::Status getStatus() const;
+ void setStatus(const QXmppPresence::Status&);
+ QByteArray toXml() const;
+
+private:
+ Type m_type;
+ QXmppPresence::Status m_status;
+
+ QString getTypeStr() const;
+};
+
+#endif // QXMPPPRESENCE_H
diff --git a/source/QXmppRoster.cpp b/source/QXmppRoster.cpp
new file mode 100644
index 00000000..edfbd42d
--- /dev/null
+++ b/source/QXmppRoster.cpp
@@ -0,0 +1,193 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppRoster.h"
+#include "utils.h"
+#include "QXmppRosterIq.h"
+#include "QXmppPresence.h"
+#include "QXmppStream.h"
+
+QXmppRoster::QXmppRoster(QXmppStream* stream) : m_stream(stream)
+{
+}
+
+QXmppRoster::~QXmppRoster()
+{
+
+}
+
+void QXmppRoster::presenceReceived(const QXmppPresence& presence)
+{
+ QString jid = presence.getFrom();
+ QString bareJid = jidToBareJid(jid);
+ QString resource = jidToResource(jid);
+
+ m_presences[bareJid][resource] = presence;
+
+ emit presenceChanged(bareJid, resource);
+}
+
+void QXmppRoster::rosterIqReceived(const QXmppRosterIq& rosterIq)
+{
+ switch(rosterIq.getType())
+ {
+ case QXmppIq::Set:
+ case QXmppIq::Result:
+ {
+ QList<QXmppRosterIq::Item> items = rosterIq.getItems();
+ for(int i = 0; i < items.count(); ++i)
+ {
+ QString bareJid = items.at(i).getBareJid();
+ m_entries[bareJid].setBareJid(bareJid);
+ m_entries[bareJid].setName(items.at(i).getSubscriptionStatus());
+ m_entries[bareJid].setSubscriptionType(
+ static_cast<QXmppRosterEntry::SubscriptionType>(items.at(i).getSubscriptionType()));
+ m_entries[bareJid].setSubscriptionStatus(items.at(i).getSubscriptionStatus());
+ m_entries[bareJid].setGroups(items.at(i).getGroups());
+ emit rosterChanged(bareJid);
+ }
+ if(rosterIq.getType() == QXmppIq::Set) // send result iq
+ {
+ QXmppIq returnIq(QXmppIq::Result);
+ returnIq.setId(rosterIq.getId());
+ m_stream->sendPacket(returnIq);
+ }
+ break;
+ }
+ }
+}
+
+QString QXmppRoster::QXmppRosterEntry::getBareJid() const
+{
+ return m_bareJid;
+}
+
+QString QXmppRoster::QXmppRosterEntry::getName() const
+{
+ return m_name;
+}
+
+QXmppRoster::QXmppRosterEntry::SubscriptionType QXmppRoster::QXmppRosterEntry::getSubscriptionType() const
+{
+ return m_type;
+}
+
+QString QXmppRoster::QXmppRosterEntry::getSubscriptionStatus() const
+{
+ return m_subscriptionStatus;
+}
+
+QSet<QString> QXmppRoster::QXmppRosterEntry::getGroups() const
+{
+ return m_groups;
+}
+
+void QXmppRoster::QXmppRosterEntry::setBareJid(const QString& str)
+{
+ m_bareJid = str;
+}
+
+void QXmppRoster::QXmppRosterEntry::setName(const QString& str)
+{
+ m_name = str;
+}
+
+void QXmppRoster::QXmppRosterEntry::setSubscriptionType(QXmppRosterEntry::SubscriptionType type)
+{
+ m_type = type;
+}
+
+void QXmppRoster::QXmppRosterEntry::setSubscriptionStatus(const QString& str)
+{
+ m_subscriptionStatus = str;
+}
+
+void QXmppRoster::QXmppRosterEntry::addGroupEntry(const QString& str)
+{
+ m_groups << str;
+}
+
+void QXmppRoster::QXmppRosterEntry::setGroups(const QSet<QString>& groups)
+{
+ m_groups = groups;
+}
+
+QStringList QXmppRoster::getRosterBareJids() const
+{
+ return m_entries.keys();
+}
+
+QXmppRoster::QXmppRosterEntry QXmppRoster::getRosterEntry(const QString& bareJid) const
+{
+ // will return blank entry if bareJid does'nt exist
+ if(m_entries.contains(bareJid))
+ return m_entries.value(bareJid);
+ else
+ {
+ qWarning("QXmppRoster::getRosterEntry(): bareJid doesn't exist in roster db");
+ return QXmppRoster::QXmppRosterEntry();
+ }
+}
+
+QMap<QString, QXmppRoster::QXmppRosterEntry> QXmppRoster::getRosterEntries() const
+{
+ return m_entries;
+}
+
+QStringList QXmppRoster::getResources(const QString& bareJid) const
+{
+ if(m_presences.contains(bareJid))
+ {
+ return m_presences[bareJid].keys();
+ }
+ else
+ return QStringList();
+}
+
+QMap<QString, QXmppPresence> QXmppRoster::getAllPresencesForBareJid(const QString& bareJid) const
+{
+ if(m_presences.contains(bareJid))
+ return m_presences[bareJid];
+ else
+ {
+ qWarning("QXmppRoster::getAllPresences(): invalid bareJid");
+ return QMap<QString, QXmppPresence>();
+ }
+}
+
+QXmppPresence QXmppRoster::getPresence(const QString& bareJid, const QString& resource) const
+{
+ if(m_presences.contains(bareJid) && m_presences[bareJid].contains(resource))
+ return m_presences[bareJid][resource];
+ else
+ {
+ qWarning("QXmppRoster::getPresence(): invalid bareJid");
+ return QXmppPresence();
+ }
+}
+
+QMap<QString, QMap<QString, QXmppPresence> > QXmppRoster::getAllPresences() const
+{
+ return m_presences;
+}
diff --git a/source/QXmppRoster.h b/source/QXmppRoster.h
new file mode 100644
index 00000000..13f0082c
--- /dev/null
+++ b/source/QXmppRoster.h
@@ -0,0 +1,102 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPROSTER_H
+#define QXMPPROSTER_H
+
+#include <QObject>
+#include <QMap>
+#include <QSet>
+#include <QStringList>
+
+#include "QXmppClient.h"
+
+class QXmppRosterIq;
+class QXmppPresence;
+
+class QXmppRoster : public QObject
+{
+ Q_OBJECT
+
+public:
+ class QXmppRosterEntry
+ {
+ public:
+ enum SubscriptionType
+ {
+ None = 0,
+ Both,
+ From,
+ To,
+ Remove
+ };
+
+ QString getBareJid() const;
+ QString getName() const;
+ QXmppRosterEntry::SubscriptionType getSubscriptionType() const;
+ QString getSubscriptionStatus() const;
+ QSet<QString> getGroups() const;
+
+ void setBareJid(const QString&);
+ void setName(const QString&);
+ void setSubscriptionType(QXmppRosterEntry::SubscriptionType);
+ void setSubscriptionStatus(const QString&);
+ void setGroups(const QSet<QString>&);
+ void addGroupEntry(const QString&);
+
+ private:
+ QString m_bareJid;
+ SubscriptionType m_type;
+ QString m_name;
+ QString m_subscriptionStatus; // can be subscribe/unsubscribe (attribute "ask")
+ QSet<QString> m_groups;
+ };
+
+ QXmppRoster(QXmppStream* stream);
+ ~QXmppRoster();
+
+ QStringList getRosterBareJids() const;
+ QXmppRoster::QXmppRosterEntry getRosterEntry(const QString& bareJid) const;
+ QMap<QString, QXmppRoster::QXmppRosterEntry> getRosterEntries() const;
+
+ QStringList getResources(const QString& bareJid) const;
+ QMap<QString, QMap<QString, QXmppPresence> > getAllPresences() const;
+ QMap<QString, QXmppPresence> getAllPresencesForBareJid(const QString& bareJid) const;
+ QXmppPresence getPresence(const QString& bareJid, const QString& resource) const;
+
+signals:
+ void presenceChanged(const QString& bareJid, const QString& resource);
+ void rosterChanged(const QString& bareJid);
+
+private:
+ QXmppStream* m_stream; //reverse pointer to stream
+ QMap<QString, QXmppRoster::QXmppRosterEntry> m_entries; //map of bareJid and its rosterEntry
+ QMap<QString, QMap<QString, QXmppPresence> > m_presences; // map of resources of the jid and map of resouces and presences
+
+private slots:
+ void presenceReceived(const QXmppPresence&);
+ void rosterIqReceived(const QXmppRosterIq&);
+};
+
+#endif // QXMPPROSTER_H
diff --git a/source/QXmppRosterIq.cpp b/source/QXmppRosterIq.cpp
new file mode 100644
index 00000000..2024c9d8
--- /dev/null
+++ b/source/QXmppRosterIq.cpp
@@ -0,0 +1,181 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppRosterIq.h"
+#include "QXmppConstants.h"
+#include "utils.h"
+#include <QTextStream>
+
+QXmppRosterIq::QXmppRosterIq(QXmppIq::Type type)
+ : QXmppIq(type)
+{
+
+}
+
+QXmppRosterIq::QXmppRosterIq(const QString& type)
+ : QXmppIq(type)
+{
+}
+
+QXmppRosterIq::~QXmppRosterIq()
+{
+
+}
+
+void QXmppRosterIq::addItem(const Item& item)
+{
+ m_items.append(item);
+}
+
+QList<QXmppRosterIq::Item> QXmppRosterIq::getItems() const
+{
+ return m_items;
+}
+
+QByteArray QXmppRosterIq::toXmlElementFromChild() const
+{
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<query";
+ helperToXmlAddAttribute(stream, "xmlns", ns_roster);
+ stream << ">";
+ for(int i = 0; i < m_items.count(); ++i)
+ stream << m_items.at(i).toXml();
+ stream << "</query>";
+
+ return data.toAscii();
+}
+
+QXmppRosterIq::Item::SubscriptionType QXmppRosterIq::Item::getSubscriptionType() const
+{
+ return m_type;
+}
+
+QString QXmppRosterIq::Item::getName() const
+{
+ return m_name;
+}
+
+QString QXmppRosterIq::Item::getSubscriptionStatus() const
+{
+ return m_subscriptionStatus;
+}
+
+QString QXmppRosterIq::Item::getBareJid() const
+{
+ return m_bareJid;
+}
+
+QSet<QString> QXmppRosterIq::Item::getGroups() const
+{
+ return m_groups;
+}
+
+void QXmppRosterIq::Item::setName(const QString& str)
+{
+ m_name = str;
+}
+
+void QXmppRosterIq::Item::setSubscriptionStatus(const QString& str)
+{
+ m_subscriptionStatus = str;
+}
+
+void QXmppRosterIq::Item::addGroup(const QString& str)
+{
+ m_groups << str;
+}
+
+void QXmppRosterIq::Item::setBareJid(const QString& str)
+{
+ m_bareJid = str;
+}
+
+QString QXmppRosterIq::Item::getSubscriptionTypeStr() const
+{
+ switch(m_type)
+ {
+ case NotSet:
+ return "";
+ case None:
+ return "none";
+ case Both:
+ return "both";
+ case From:
+ return "from";
+ case To:
+ return "to";
+ case Remove:
+ return "remove";
+ default:
+ {
+ qWarning("QXmppRosterIq::Item::getTypeStr(): invalid type");
+ return "";
+ }
+ }
+}
+
+void QXmppRosterIq::Item::setSubscriptionType(SubscriptionType type)
+{
+ m_type = type;
+}
+
+void QXmppRosterIq::Item::setSubscriptionTypeFromStr(const QString& type)
+{
+ if(type == "none")
+ setSubscriptionType(None);
+ else if(type == "both")
+ setSubscriptionType(Both);
+ else if(type == "from")
+ setSubscriptionType(From);
+ else if(type == "to")
+ setSubscriptionType(To);
+ else if(type == "remove")
+ setSubscriptionType(Remove);
+ else
+ qWarning("QXmppRosterIq::Item::setTypeFromStr(): invalid type");
+}
+
+QString QXmppRosterIq::Item::toXml() const
+{
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<item";
+ helperToXmlAddAttribute(stream, "jid", m_bareJid);
+ helperToXmlAddAttribute(stream, "name", m_name);
+ helperToXmlAddAttribute(stream, "subscription", getSubscriptionTypeStr());
+ helperToXmlAddAttribute(stream, "ask", getSubscriptionStatus());
+ stream << ">";
+
+ QSet<QString>::const_iterator i = m_groups.constBegin();
+ while(i != m_groups.constEnd())
+ {
+ helperToXmlAddElement(stream, "group", *i);
+ ++i;
+ }
+ stream << "</item>";
+ return data.toAscii();
+}
diff --git a/source/QXmppRosterIq.h b/source/QXmppRosterIq.h
new file mode 100644
index 00000000..22bc1354
--- /dev/null
+++ b/source/QXmppRosterIq.h
@@ -0,0 +1,83 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPROSTERIQ_H
+#define QXMPPROSTERIQ_H
+
+#include "QXmppIq.h"
+#include <QList>
+#include <QSet>
+
+class QXmppRosterIq : public QXmppIq
+{
+public:
+
+ class Item
+ {
+ public:
+ enum SubscriptionType
+ {
+ NotSet = 0,
+ None,
+ Both,
+ From,
+ To,
+ Remove
+ };
+
+ SubscriptionType getSubscriptionType() const;
+ QString getName() const;
+ QString getSubscriptionStatus() const;
+ QString getBareJid() const;
+ QSet<QString> getGroups() const;
+ void setName(const QString&);
+ void setSubscriptionStatus(const QString&);
+ void addGroup(const QString&);
+ void setBareJid(const QString&);
+ void setSubscriptionType(SubscriptionType);
+ QString getSubscriptionTypeStr() const;
+ void setSubscriptionTypeFromStr(const QString&);
+ QString toXml() const;
+
+ private:
+ QString m_bareJid;
+ SubscriptionType m_type;
+ QString m_name;
+ QString m_subscriptionStatus; // can be subscribe/unsubscribe (attribute "ask")
+ QSet<QString> m_groups;
+ };
+
+ QXmppRosterIq(QXmppIq::Type type);
+ QXmppRosterIq(const QString& type);
+ ~QXmppRosterIq();
+
+ void addItem(const Item&);
+ QList<Item> getItems() const;
+ QByteArray toXmlElementFromChild() const;
+
+private:
+ QList<Item> m_items;
+};
+
+#endif // QXMPPROSTERIQ_H
diff --git a/source/QXmppSession.cpp b/source/QXmppSession.cpp
new file mode 100644
index 00000000..9a7577a9
--- /dev/null
+++ b/source/QXmppSession.cpp
@@ -0,0 +1,55 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppSession.h"
+#include "QXmppConstants.h"
+#include "utils.h"
+#include <QTextStream>
+
+QXmppSession::QXmppSession(QXmppIq::Type type)
+ : QXmppIq(type)
+{
+}
+
+QXmppSession::QXmppSession(const QString& type)
+ : QXmppIq(type)
+{
+}
+
+QXmppSession::~QXmppSession()
+{
+}
+
+QByteArray QXmppSession::toXmlElementFromChild() const
+{
+ QString data;
+ QTextStream stream(&data);
+
+ stream << "<session";
+ helperToXmlAddAttribute(stream, "xmlns", ns_session);
+ stream << "/>";
+
+ return data.toAscii();
+}
+
diff --git a/source/QXmppSession.h b/source/QXmppSession.h
new file mode 100644
index 00000000..02098e2f
--- /dev/null
+++ b/source/QXmppSession.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPSESSION_H
+#define QXMPPSESSION_H
+
+#include "QXmppIq.h"
+
+class QXmppSession : public QXmppIq
+{
+public:
+ QXmppSession(QXmppIq::Type type);
+ QXmppSession(const QString& type);
+ ~QXmppSession();
+
+private:
+ QByteArray toXmlElementFromChild() const;
+
+};
+
+#endif // QXMPPSESSION_H
diff --git a/source/QXmppStanza.cpp b/source/QXmppStanza.cpp
new file mode 100644
index 00000000..55d7cf98
--- /dev/null
+++ b/source/QXmppStanza.cpp
@@ -0,0 +1,325 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppStanza.h"
+#include "utils.h"
+#include "QXmppConstants.h"
+
+#include <QTextStream>
+
+int QXmppStanza::s_uniqeIdNo = 0;
+
+QXmppStanza::Error::Error(): m_type(static_cast<QXmppStanza::Error::Type>(-1)),
+ m_condition(static_cast<QXmppStanza::Error::Condition>(-1)), m_text("")
+{
+}
+
+QXmppStanza::Error::Error(Type type, Condition cond, const QString& text):
+ m_type(type), m_condition(cond), m_text(text)
+{
+}
+
+QXmppStanza::Error::Error(const QString& type, const QString& cond, const QString& text):
+ m_text(text)
+{
+ setTypeFromStr(type);
+ setConditionFromStr(cond);
+}
+
+void QXmppStanza::Error::setText(const QString& text)
+{
+ m_text = text;
+}
+
+void QXmppStanza::Error::setCondition(QXmppStanza::Error::Condition cond)
+{
+ m_condition = cond;
+}
+
+void QXmppStanza::Error::setType(QXmppStanza::Error::Type type)
+{
+ m_type = type;
+}
+
+QString QXmppStanza::Error::getText() const
+{
+ return m_text;
+}
+
+QXmppStanza::Error::Condition QXmppStanza::Error::getCondition() const
+{
+ return m_condition;
+}
+
+QXmppStanza::Error::Type QXmppStanza::Error::getType() const
+{
+ return m_type;
+}
+
+QString QXmppStanza::Error::getTypeStr() const
+{
+ switch(getType())
+ {
+ case Cancel:
+ return "cancel";
+ case Continue:
+ return "continue";
+ case Modify:
+ return "modify";
+ case Auth:
+ return "auth";
+ case Wait:
+ return "wait";
+ default:
+ return "";
+ }
+}
+
+QString QXmppStanza::Error::getConditionStr() const
+{
+ switch(getCondition())
+ {
+ case BadRequest:
+ return "bad-request";
+ case Conflict:
+ return "conflict";
+ case FeatureNotImplemented:
+ return "feature-not-implemented";
+ case Forbidden:
+ return "forbidden";
+ case Gone:
+ return "gone";
+ case InternalServerError:
+ return "internal-server-error";
+ case ItemNotFound:
+ return "item-not-found";
+ case JidMalformed:
+ return "jid-malformed";
+ case NotAcceptable:
+ return "not-acceptable";
+ case NotAllowed:
+ return "not-allowed";
+ case NotAuthorized:
+ return "not-authorized";
+ case PaymentRequired:
+ return "payment-required";
+ case RecipientUnavailable:
+ return "recipient-unavailable";
+ case Redirect:
+ return "redirect";
+ case RegistrationRequired:
+ return "registration-required";
+ case RemoteServerNotFound:
+ return "remote-server-not-found";
+ case RemoteServerTimeout:
+ return "remote-server-timeout";
+ case ResourceConstraint:
+ return "resource-constraint";
+ case ServiceUnavailable:
+ return "service-unavailable";
+ case SubscriptionRequired:
+ return "subscription-required";
+ case UndefinedCondition:
+ return "undefined-condition";
+ case UnexpectedRequest:
+ return "unexpected-request";
+ default:
+ return "";
+ }
+}
+
+void QXmppStanza::Error::setTypeFromStr(const QString& type)
+{
+ if(type == "cancel")
+ setType(Cancel);
+ else if(type == "continue")
+ setType(Continue);
+ else if(type == "modify")
+ setType(Modify);
+ else if(type == "auth")
+ setType(Auth);
+ else if(type == "wait")
+ setType(Wait);
+ else
+ setType(static_cast<QXmppStanza::Error::Type>(-1));
+}
+
+void QXmppStanza::Error::setConditionFromStr(const QString& type)
+{
+ if(type == "bad-request")
+ setCondition(BadRequest);
+ else if(type == "conflict")
+ setCondition(Conflict);
+ else if(type == "feature-not-implemented")
+ setCondition(FeatureNotImplemented);
+ else if(type == "forbidden")
+ setCondition(Forbidden);
+ else if(type == "gone")
+ setCondition(Gone);
+ else if(type == "internal-server-error")
+ setCondition(InternalServerError);
+ else if(type == "item-not-found")
+ setCondition(ItemNotFound);
+ else if(type == "jid-malformed")
+ setCondition(JidMalformed);
+ else if(type == "not-acceptable")
+ setCondition(NotAcceptable);
+ else if(type == "not-allowed")
+ setCondition(NotAllowed);
+ else if(type == "not-authorized")
+ setCondition(NotAuthorized);
+ else if(type == "payment-required")
+ setCondition(PaymentRequired);
+ else if(type == "recipient-unavailable")
+ setCondition(RecipientUnavailable);
+ else if(type == "redirect")
+ setCondition(Redirect);
+ else if(type == "registration-required")
+ setCondition(RegistrationRequired);
+ else if(type == "remote-server-not-found")
+ setCondition(RemoteServerNotFound);
+ else if(type == "remote-server-timeout")
+ setCondition(RemoteServerTimeout);
+ else if(type == "resource-constraint")
+ setCondition(ResourceConstraint);
+ else if(type == "service-unavailable")
+ setCondition(ServiceUnavailable);
+ else if(type == "subscription-required")
+ setCondition(SubscriptionRequired);
+ else if(type == "undefined-condition")
+ setCondition(UndefinedCondition);
+ else if(type == "unexpected-request")
+ setCondition(UnexpectedRequest);
+ else
+ setCondition(static_cast<QXmppStanza::Error::Condition>(-1));
+}
+
+QString QXmppStanza::Error::toXml() const
+{
+ QString data;
+ QString cond = getConditionStr();
+ QString type = getTypeStr();
+
+ if(cond.isEmpty() && type.isEmpty())
+ return data;
+
+ QTextStream stream(&data);
+
+ stream << "<error";
+ helperToXmlAddAttribute(stream, "type", type);
+ stream << ">";
+
+ if(!cond.isEmpty())
+ {
+ stream << "<" << cond;
+ helperToXmlAddAttribute(stream, "xmlns", ns_stanza);
+ stream << "/>";
+ }
+ if(!m_text.isEmpty())
+ {
+ stream << "<text";
+ helperToXmlAddAttribute(stream, "xml:lang", "en");
+ helperToXmlAddAttribute(stream, "xmlns", ns_stanza);
+ stream << ">";
+ stream << m_text;
+ stream << "</text>";
+ }
+ stream << "</error>";
+ return data;
+}
+
+
+QXmppStanza::QXmppStanza(const QString& from, const QString& to) : QXmppPacket(),
+m_to(to), m_from(from)
+{
+}
+
+QXmppStanza::~QXmppStanza()
+{
+
+}
+
+QString QXmppStanza::getTo() const
+{
+ return m_to;
+}
+
+QString QXmppStanza::getFrom() const
+{
+ return m_from;
+}
+
+QString QXmppStanza::getId() const
+{
+ return m_id;
+}
+
+QString QXmppStanza::getLang() const
+{
+ return m_lang;
+}
+
+
+void QXmppStanza::setTo(const QString& to)
+{
+ m_to = to;
+}
+
+void QXmppStanza::setFrom(const QString& from)
+{
+ m_from = from;
+}
+
+void QXmppStanza::setId(const QString& id)
+{
+ m_id = id;
+}
+
+void QXmppStanza::setLang(const QString& lang)
+{
+ m_lang = lang;
+}
+
+void QXmppStanza::generateAndSetNextId()
+{
+ // get back
+ ++s_uniqeIdNo;
+ m_id = "qxmpp" + QString::number(s_uniqeIdNo);
+}
+
+QXmppStanza::Error QXmppStanza::getError() const
+{
+ return m_error;
+}
+
+void QXmppStanza::setError(QXmppStanza::Error& error)
+{
+ m_error = error;
+}
+
+bool QXmppStanza::isErrorStanza()
+{
+ return !(m_error.getTypeStr().isEmpty() &&
+ m_error.getConditionStr().isEmpty());
+}
diff --git a/source/QXmppStanza.h b/source/QXmppStanza.h
new file mode 100644
index 00000000..e50607c0
--- /dev/null
+++ b/source/QXmppStanza.h
@@ -0,0 +1,120 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPSTANZA_H
+#define QXMPPSTANZA_H
+
+#include "QXmppPacket.h"
+#include <QString>
+
+class QXmppStanza : public QXmppPacket
+{
+public:
+ class Error
+ {
+ public:
+ enum Type
+ {
+ Cancel,
+ Continue,
+ Modify,
+ Auth,
+ Wait
+ };
+
+ enum Condition
+ {
+ BadRequest,
+ Conflict,
+ FeatureNotImplemented,
+ Forbidden,
+ Gone,
+ InternalServerError,
+ ItemNotFound,
+ JidMalformed,
+ NotAcceptable,
+ NotAllowed,
+ NotAuthorized,
+ PaymentRequired,
+ RecipientUnavailable,
+ Redirect,
+ RegistrationRequired,
+ RemoteServerNotFound,
+ RemoteServerTimeout,
+ ResourceConstraint,
+ ServiceUnavailable,
+ SubscriptionRequired,
+ UndefinedCondition,
+ UnexpectedRequest
+ };
+
+ Error();
+ Error(Type type, Condition cond, const QString& text="");
+ Error(const QString& type, const QString& cond, const QString& text="");
+
+ void setText(const QString& text);
+ void setCondition(Condition cond);
+ void setConditionFromStr(const QString& cond);
+ void setType(Type type);
+ void setTypeFromStr(const QString& type);
+ QString getText() const;
+ Condition getCondition() const;
+ Type getType() const;
+ QString toXml() const;
+ QString getConditionStr() const;
+ QString getTypeStr() const;
+
+ private:
+ Type m_type;
+ Condition m_condition;
+ QString m_text;
+ };
+
+ QXmppStanza(const QString& from = "", const QString& to = "");
+ ~QXmppStanza();
+
+ QString getTo() const;
+ QString getFrom() const;
+ QString getId() const;
+ QString getLang() const;
+ QXmppStanza::Error getError() const;
+
+ void setTo(const QString&);
+ void setFrom(const QString&);
+ void setId(const QString&);
+ void generateAndSetNextId();
+ void setLang(const QString&);
+ void setError(QXmppStanza::Error& error);
+ bool isErrorStanza();
+
+private:
+ static int s_uniqeIdNo;
+ QString m_to;
+ QString m_from;
+ QString m_id;
+ QString m_lang;
+ QXmppStanza::Error m_error;
+};
+
+#endif // QXMPPSTANZA_H
diff --git a/source/QXmppStream.cpp b/source/QXmppStream.cpp
new file mode 100644
index 00000000..32a69c77
--- /dev/null
+++ b/source/QXmppStream.cpp
@@ -0,0 +1,583 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "QXmppStream.h"
+#include "QXmppPacket.h"
+#include "utils.h"
+#include "QXmppClient.h"
+#include "QXmppRoster.h"
+#include "QXmppPresence.h"
+#include "QXmppIq.h"
+#include "QXmppBind.h"
+#include "QXmppSession.h"
+#include "QXmppRosterIq.h"
+#include "QXmppMessage.h"
+#include "QXmppConstants.h"
+
+#include <QDomDocument>
+#include <QStringList>
+#include <QRegExp>
+#include <QHostAddress>
+
+static const QByteArray streamRootElementStart = "<?xml version=\"1.0\"?><stream:stream xmlns:stream=\"http://etherx.jabber.org/streams\" version=\"1.0\" xmlns=\"jabber:client\" xml:lang=\"en\" xmlns:xml=\"http://www.w3.org/XML/1998/namespace\">\n";
+static const QByteArray streamRootElementEnd = "</stream:stream>";
+
+QXmppStream::QXmppStream(QXmppClient* client)
+ : QObject(client), m_roster(this), m_client(client), m_sessionAvaliable(false)
+{
+ bool check = QObject::connect(&m_socket, SIGNAL(hostFound()), this, SLOT(socketHostFound()));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(connected()), this, SLOT(socketConnected()));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(disconnected()), this, SLOT(socketDisconnected()));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(readyRead()), this, SLOT(socketReadReady()));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(encrypted()), this, SLOT(socketEncrypted()));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(sslErrors(const QList<QSslError> &)), this, SLOT(socketSslErrors(const QList<QSslError> &)));
+ Q_ASSERT(check);
+ check = QObject::connect(&m_socket, SIGNAL(error(QAbstractSocket::SocketError)),
+ this, SLOT(socketError(QAbstractSocket::SocketError)));
+ Q_ASSERT(check);
+
+ check = QObject::connect(this, SIGNAL(presenceReceived(const QXmppPresence&)),
+ &m_roster, SLOT(presenceReceived(const QXmppPresence&)));
+ Q_ASSERT(check);
+
+ check = QObject::connect(this, SIGNAL(rosterIqReceived(const QXmppRosterIq&)),
+ &m_roster, SLOT(rosterIqReceived(const QXmppRosterIq&)));
+ Q_ASSERT(check);
+}
+
+QXmppStream::~QXmppStream()
+{
+
+}
+
+QXmppConfiguration& QXmppStream::getConfiguration()
+{
+ return m_client->getConfigurgation();
+}
+
+void QXmppStream::connect()
+{
+ // work with time out
+ log(QString("Connecting to: %1:%2").arg(getConfiguration().getHost()).arg(getConfiguration().getPort()));
+ m_socket.connectToHost(getConfiguration().getHost(), getConfiguration().getPort());
+}
+
+void QXmppStream::socketSslErrors(const QList<QSslError> & error)
+{
+ log(QString("SSL errors"));
+ m_socket.ignoreSslErrors();
+ for(int i = 0; i< error.count(); ++i)
+ log(error.at(i).errorString());
+}
+
+void QXmppStream::socketHostFound()
+{
+ log(QString("Host found"));
+ emit hostFound();
+}
+
+void QXmppStream::socketConnected()
+{
+ log(QString("Connected"));
+ sendStartStream();
+}
+
+void QXmppStream::socketDisconnected()
+{
+ log(QString("Disconnected"));
+}
+
+void QXmppStream::socketEncrypted()
+{
+ log(QString("Encrypted"));
+ sendStartStream();
+}
+
+void QXmppStream::socketError(QAbstractSocket::SocketError ee)
+{
+ log(QString("Socket error"));
+}
+
+void QXmppStream::socketReadReady()
+{
+ QByteArray data = m_socket.readAll();
+ log("SERVER:" + data);
+ parser(data);
+}
+
+void QXmppStream::parser(const QByteArray& data)
+{
+ QDomDocument doc;
+ QByteArray completeXml;
+ if(hasStartStreamElement(data))
+ {
+ completeXml = data + streamRootElementEnd;
+ }
+ else if(hasEndStreamElement(data))
+ {
+ completeXml = streamRootElementStart + data;
+ }
+ else
+ {
+ completeXml = streamRootElementStart + data + streamRootElementEnd;
+ }
+
+ if(doc.setContent(completeXml, true))
+ {
+ // data has valid elements and is not a start or end stream
+ QDomElement nodeRecv = doc.documentElement().firstChildElement();
+ while(!nodeRecv.isNull())
+ {
+ QString ns = nodeRecv.namespaceURI();
+ if(ns == ns_stream)
+ {
+ QString name = nodeRecv.tagName();
+ if(name == "features")
+ {
+ QDomElement element = nodeRecv.firstChildElement();
+ while(!element.isNull())
+ {
+ if(element.namespaceURI() == ns_tls)
+ {
+ if(element.tagName() == "starttls" && element.firstChildElement().tagName() == "required")
+ {
+ sendStartTls();
+ return;
+ }
+ }
+ else if(element.namespaceURI() == ns_sasl && element.tagName() == "mechanisms")
+ {
+ log(QString("Mechanisms:"));
+ QDomElement subElement = element.firstChildElement();
+ QStringList mechanisms;
+ while(!subElement.isNull())
+ {
+ if(subElement.tagName() == "mechanism")
+ {
+ log(subElement.text());
+ mechanisms << subElement.text();
+ }
+ subElement = subElement.nextSiblingElement();
+ }
+ sendAuthPlain();
+ }
+ else if(element.namespaceURI() == ns_bind && element.tagName() == "bind")
+ {
+ sendBindIQ();
+ }
+ else if(element.namespaceURI() == ns_session && element.tagName() == "session")
+ {
+ m_sessionAvaliable = true;
+ }
+ element = element.nextSiblingElement();
+ }
+ }
+ }
+ else if(ns == ns_tls)
+ {
+ if(nodeRecv.tagName() == "proceed")
+ {
+ log(QString("Starting encryption"));
+ m_socket.startClientEncryption();
+ return;
+ }
+ }
+ else if(ns == ns_sasl)
+ {
+ if(nodeRecv.tagName() == "success")
+ {
+ log(QString("Authenticated"));
+ sendStartStream();
+ }
+ }
+//===========done below=======================================================================
+ else if(ns == ns_client)
+ {
+ if(nodeRecv.tagName() == "iq")
+ {
+ QDomElement element = nodeRecv.firstChildElement();
+ QString id = nodeRecv.attribute("id");
+ QString to = nodeRecv.attribute("to");
+ QString from = nodeRecv.attribute("from");
+ QString type = nodeRecv.attribute("type");
+ if(type.isEmpty())
+ qWarning("QXmppStream: iq type can't be empty");
+ QXmppIq iqPacket; // to emit
+
+ QDomElement elemen = nodeRecv.firstChildElement("error");
+ QXmppStanza::Error error = parseStanzaError(elemen);
+
+ if(id == m_sessionId)
+ {
+ // get back add configuration whether to send roster and intial presence in beginning
+ // process SessionIq
+ sendRosterRequest();
+ sendInitialPresence();
+
+ QXmppBind session(type);
+ session.setId(id);
+ session.setTo(to);
+ session.setFrom(from);
+ iqPacket = session;
+ }
+ else if(id == m_bindId)
+ {
+ QXmppBind bind(type);
+ QString jid = nodeRecv.firstChildElement("bind").firstChildElement("jid").text();
+ bind.setResource(jidToResource(jid));
+ bind.setJid(jidToBareJid(jid));
+ bind.setId(id);
+ bind.setTo(to);
+ bind.setFrom(from);
+ processBindIq(bind);
+ iqPacket = bind;
+ }
+ else if(nodeRecv.firstChildElement("query").namespaceURI() == ns_roster)
+ {
+ QDomElement itemElement = nodeRecv.firstChildElement("query").firstChildElement("item");
+ QXmppRosterIq rosterIq(nodeRecv.attribute("type"));
+ rosterIq.setId(id);
+ rosterIq.setTo(to);
+ rosterIq.setFrom(from);
+ while(!itemElement.isNull())
+ {
+ QXmppRosterIq::Item item;
+ item.setBareJid(itemElement.attribute("jid"));
+ item.setSubscriptionTypeFromStr(itemElement.attribute("subscription"));
+ item.setSubscriptionStatus(itemElement.attribute("ask"));
+ rosterIq.addItem(item);
+ itemElement = itemElement.nextSiblingElement();
+ }
+ processRosterIq(rosterIq);
+ iqPacket = rosterIq;
+ }
+ //else if(call extension)
+ //{
+ //}
+ else // didn't understant the iq...reply with error
+ {
+ QXmppIq iq(QXmppIq::Error);
+ iq.setId(id);
+ iq.setTo(from);
+ iq.setFrom(to);
+ QXmppStanza::Error error(QXmppStanza::Error::Cancel,
+ QXmppStanza::Error::FeatureNotImplemented);
+ iq.setError(error);
+ sendPacket(iq);
+ }
+
+ iqPacket.setError(error);
+ processIq(iqPacket);
+ }
+ else if(nodeRecv.tagName() == "presence")
+ {
+ QXmppPresence presence;
+ presence.setTypeFromStr(nodeRecv.attribute("type"));
+ presence.setFrom(nodeRecv.attribute("from"));
+ presence.setTo(nodeRecv.attribute("to"));
+
+ QString statusText = nodeRecv.firstChildElement("status").text();
+ QString show = nodeRecv.firstChildElement("show").text();
+ int priority = nodeRecv.firstChildElement("priority").text().toInt();
+ QXmppPresence::Status status;
+ status.setTypeFromStr(show);
+ status.setStatusText(statusText);
+ status.setPriority(priority);
+ presence.setStatus(status);
+
+ QDomElement errorElement = nodeRecv.firstChildElement("error");
+ if(!errorElement.isNull())
+ {
+ QXmppStanza::Error error = parseStanzaError(errorElement);
+ presence.setError(error);
+ }
+
+ processPresence(presence);
+ }
+ else if(nodeRecv.tagName() == "message")
+ {
+ QString from = nodeRecv.attribute("from");
+ QString to = nodeRecv.attribute("to");
+ QString type = nodeRecv.attribute("type");
+ QString body = nodeRecv.firstChildElement("body").text();
+ QString sub = nodeRecv.firstChildElement("subject").text();
+ QString thread = nodeRecv.firstChildElement("thread").text();
+ QXmppMessage message(from, to, body, thread);
+ message.setSubject(sub);
+ message.setTypeFromStr(type);
+
+ QDomElement errorElement = nodeRecv.firstChildElement("error");
+ if(!errorElement.isNull())
+ {
+ QXmppStanza::Error error = parseStanzaError(errorElement);
+ message.setError(error);
+ }
+ processMessage(message);
+ }
+ }
+ nodeRecv = nodeRecv.nextSiblingElement();
+ }
+ }
+}
+
+
+void QXmppStream::sendStartStream()
+{
+ QByteArray data = "<?xml version='1.0'?><stream:stream to='";
+ data.append(getConfiguration().getDomain());
+ data.append("' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>");
+ sendToServer(data);
+}
+
+void QXmppStream::sendToServer(const QByteArray& data)
+{
+ log("CLIENT:" + data);
+ m_socket.write(data);
+}
+
+bool QXmppStream::hasStartStreamElement(const QByteArray& data)
+{
+ QString str(data);
+ QRegExp regex("(<\\?xml.*\\?>)?\\s*<stream:stream.*>");
+ regex.setMinimal(true);
+ if(str.contains(regex))
+ return true;
+ else
+ return false;
+}
+
+bool QXmppStream::hasEndStreamElement(const QByteArray& data)
+{
+ QString str(data);
+ QRegExp regex("</stream:stream>");
+ regex.setMinimal(true);
+ if(str.contains(regex))
+ return true;
+ else
+ return false;
+}
+
+void QXmppStream::sendStartTls()
+{
+ sendToServer("<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
+}
+
+void QXmppStream::sendAuthPlain()
+{
+ QByteArray data = "<auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='PLAIN'>";
+ QString userPass('\0' + getConfiguration().getUser() + '\0' + getConfiguration().getPasswd());
+ data += userPass.toUtf8().toBase64();
+ data += "</auth>";
+ sendToServer(data);
+}
+
+void QXmppStream::sendBindIQ()
+{
+ QXmppBind bind(QXmppIq::Set);
+ bind.setResource(getConfiguration().getResource());
+ m_bindId = bind.getId();
+ sendPacket(bind);
+}
+
+void QXmppStream::sendSessionIQ()
+{
+ QXmppSession session(QXmppIq::Set);
+ session.setTo(getConfiguration().getDomain());
+ m_sessionId = session.getId();
+ sendPacket(session);
+}
+
+void QXmppStream::sendInitialPresence()
+{
+ QString statusText = getConfiguration().getStatus();
+
+ QXmppPresence presence(QXmppPresence::Available);
+ presence.setStatus(QXmppPresence::Status(QXmppPresence::Status::Online, statusText));
+
+ sendPacket(presence);
+}
+
+void QXmppStream::acceptSubscriptionRequest(const QString& from, bool accept)
+{
+ QXmppPresence presence;
+ presence.setTo(from);
+ if(accept)
+ presence.setType(QXmppPresence::Subscribed);
+ else
+ presence.setType(QXmppPresence::Unsubscribed);
+
+ sendPacket(presence);
+}
+
+void QXmppStream::sendSubscriptionRequest(const QString& to)
+{
+ if(to.isEmpty())
+ return;
+
+ QXmppPresence presence;
+ presence.setTo(to);
+ presence.setType(QXmppPresence::Subscribe);
+ sendPacket(presence);
+}
+
+void QXmppStream::sendRosterRequest()
+{
+ QXmppRosterIq roster(QXmppIq::Get);
+ roster.setFrom(getConfiguration().getJid());
+ m_rosterReqId = roster.getId();
+ sendPacket(roster);
+}
+
+void QXmppStream::disconnect()
+{
+ QXmppPresence presence(QXmppPresence::Unavailable,
+ QXmppPresence::Status(QXmppPresence::Status::Online, "Logged out"));
+ sendPacket(presence);
+
+ sendEndStream();
+
+ m_socket.disconnectFromHost();
+}
+
+QXmppRoster& QXmppStream::getRoster()
+{
+ return m_roster;
+}
+
+void QXmppStream::sendPacket(const QXmppPacket& packet)
+{
+ sendToServer(packet.toXml());
+}
+
+void QXmppStream::processPresence(const QXmppPresence& presence)
+{
+ switch(presence.getType())
+ {
+ case QXmppPresence::Error:
+ break;
+ case QXmppPresence::Available:
+ break;
+ case QXmppPresence::Unavailable:
+ break;
+ case QXmppPresence::Subscribe:
+ if(!presence.getFrom().isEmpty())
+ {
+ if(getConfiguration().getAutoAcceptSubscriptions())
+ acceptSubscriptionRequest(presence.getFrom());
+ emit subscriptionRequestReceived(presence.getFrom());
+ }
+ break;
+ case QXmppPresence::Unsubscribe:
+ break;
+ case QXmppPresence::Unsubscribed:
+ break;
+ case QXmppPresence::Probe:
+ break;
+ default:
+ break;
+ }
+ emit presenceReceived(presence);
+}
+
+void QXmppStream::processMessage(const QXmppMessage& message)
+{
+ QString debug = message.toXml();
+ emit messageReceived(message);
+}
+
+void QXmppStream::processIq(const QXmppIq& iq)
+{
+ emit iqReceived(iq);
+}
+
+void QXmppStream::sendEndStream()
+{
+ sendToServer(streamRootElementEnd);
+}
+
+void QXmppStream::processBindIq(const QXmppBind& bind)
+{
+ switch(bind.getType())
+ {
+ case QXmppIq::Result:
+ if(!bind.getResource().isEmpty())
+ getConfiguration().setResource(bind.getResource());
+ if(m_sessionAvaliable)
+ sendSessionIQ();
+ break;
+ default:
+ break;
+ }
+}
+
+void QXmppStream::processRosterIq(const QXmppRosterIq& rosterIq)
+{
+ emit rosterIqReceived(rosterIq);
+ switch(rosterIq.getType())
+ {
+ case QXmppIq::Set:
+ // when contact subscribes user...user sends 'subscribed' presence
+ // then after recieving following iq user requests contact for subscription
+
+ // check thet "from" is newly added in the roster...and remove this ask thing...and do this for all items
+ if(rosterIq.getItems().at(0).getSubscriptionType() == QXmppRosterIq::Item::From && rosterIq.getItems().at(0).getSubscriptionStatus().isEmpty())
+ sendSubscriptionRequest(rosterIq.getItems().at(0).getBareJid());
+ break;
+ default:
+ break;
+ }
+}
+
+QXmppStanza::Error QXmppStream::parseStanzaError(QDomElement & errorElement)
+{
+ QXmppStanza::Error error;
+
+ if(errorElement.isNull())
+ return error;
+
+ QString type = errorElement.attribute("type");
+ QString text;
+ QString cond;
+ QDomElement element = errorElement.firstChildElement();
+ while(!element.isNull())
+ {
+ if(element.tagName() == "text")
+ text = element.text();
+ else if(element.namespaceURI() == ns_stanza)
+ {
+ cond = element.tagName();
+ }
+ element = element.nextSiblingElement();
+ }
+
+ error.setConditionFromStr(cond);
+ error.setTypeFromStr(type);
+ error.setText(text);
+ return error;
+}
diff --git a/source/QXmppStream.h b/source/QXmppStream.h
new file mode 100644
index 00000000..04bd6d58
--- /dev/null
+++ b/source/QXmppStream.h
@@ -0,0 +1,111 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef QXMPPSTREAM_H
+#define QXMPPSTREAM_H
+
+#include <QObject>
+#include <QSslSocket>
+#include "QXmppConfiguration.h"
+#include "QXmppRoster.h"
+#include "QXmppStanza.h"
+
+class QDomElement;
+
+class QXmppRoster;
+class QXmppClient;
+class QXmppPacket;
+class QXmppPresence;
+class QXmppIq;
+class QXmppBind;
+class QXmppRosterIq;
+class QXmppMessage;
+
+class QXmppStream : public QObject
+{
+ Q_OBJECT
+
+public:
+ QXmppStream(QXmppClient* client);
+ ~QXmppStream();
+ void connect();
+ void acceptSubscriptionRequest(const QString& from, bool accept = true);
+ void sendSubscriptionRequest(const QString& to);
+ void disconnect();
+ QXmppRoster& getRoster();
+ void sendPacket(const QXmppPacket&);
+
+signals:
+ void hostFound();
+ void connected();
+ void disconnected();
+ void streamError();
+ void subscriptionRequestReceived(const QString& from);
+ void presenceReceived(const QXmppPresence&);
+ void messageReceived(const QXmppMessage&);
+ void iqReceived(const QXmppIq&);
+ void rosterIqReceived(const QXmppRosterIq&);
+
+private slots:
+ void socketHostFound();
+ void socketReadReady();
+ void socketEncrypted();
+ void socketConnected();
+ void socketDisconnected();
+ void socketError(QAbstractSocket::SocketError);
+ void socketSslErrors(const QList<QSslError> &);
+
+private:
+ QXmppClient* m_client; // reverse pointer
+ QXmppRoster m_roster;
+ QString m_sessionId;
+ QString m_bindId;
+ QString m_rosterReqId;
+
+ QSslSocket m_socket;
+ bool m_sessionAvaliable;
+
+ QXmppConfiguration& getConfiguration();
+ void parser(const QByteArray&);
+ void sendStartStream();
+ void sendEndStream();
+ void sendStartTls();
+ void sendAuthPlain();
+ void sendBindIQ();
+ void sendSessionIQ();
+ void sendInitialPresence();
+ void sendRosterRequest();
+ void sendToServer(const QByteArray&);
+ bool hasStartStreamElement(const QByteArray&);
+ bool hasEndStreamElement(const QByteArray&);
+ QXmppStanza::Error parseStanzaError(QDomElement & errorElement);
+
+ void processPresence(const QXmppPresence&);
+ void processMessage(const QXmppMessage&);
+ void processIq(const QXmppIq&);
+ void processBindIq(const QXmppBind&);
+ void processRosterIq(const QXmppRosterIq&);
+};
+
+#endif // QXMPPSTREAM_H
diff --git a/source/source.pro b/source/source.pro
new file mode 100644
index 00000000..ee82d6a6
--- /dev/null
+++ b/source/source.pro
@@ -0,0 +1,41 @@
+TEMPLATE = lib
+QT += network \
+ xml
+CONFIG += staticlib \
+ debug_and_release
+CONFIG(debug, debug|release):TARGET = QXmppClient_d
+else:TARGET = QXmppClient
+
+# Header files
+HEADERS += utils.h \
+ QXmppBind.h \
+ QXmppClient.h \
+ QXmppConfiguration.h \
+ QXmppConstants.h \
+ QXmppIq.h \
+ QXmppMessage.h \
+ QXmppPacket.h \
+ QXmppPresence.h \
+ QXmppRoster.h \
+ QXmppRosterIq.h \
+ QXmppSession.h \
+ QXmppStanza.h \
+ QXmppStream.h \
+ QXmppLogger.h
+
+# Source files
+SOURCES += utils.cpp \
+ QXmppBind.cpp \
+ QXmppClient.cpp \
+ QXmppConfiguration.cpp \
+ QXmppConstants.cpp \
+ QXmppIq.cpp \
+ QXmppMessage.cpp \
+ QXmppPacket.cpp \
+ QXmppPresence.cpp \
+ QXmppRoster.cpp \
+ QXmppRosterIq.cpp \
+ QXmppSession.cpp \
+ QXmppStanza.cpp \
+ QXmppStream.cpp \
+ QXmppLogger.cpp
diff --git a/source/utils.cpp b/source/utils.cpp
new file mode 100644
index 00000000..abeab27b
--- /dev/null
+++ b/source/utils.cpp
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#include "utils.h"
+#include "QXmppLogger.h"
+#include <QString>
+#include <QTextStream>
+#include <QByteArray>
+
+QString jidToResource(const QString& jid)
+{
+ return jid.mid(jid.indexOf(QChar('/'))+1);
+}
+
+QString jidToBareJid(const QString& jid)
+{
+ return jid.left(jid.indexOf(QChar('/')));
+}
+
+void helperToXmlAddAttribute(QTextStream& stream, const QString& name, const QString& value)
+{
+ if(!value.isEmpty())
+ stream << " " << name <<"='" << value << "'";
+}
+
+void helperToXmlAddElement(QTextStream& stream, const QString& name, int value)
+{
+ stream << "<" << name << ">" << value << "</" << name << ">";
+}
+
+void helperToXmlAddElement(QTextStream& stream, const QString& name, const QString& value)
+{
+ if(!value.isEmpty())
+ stream << "<" << name << ">" << value << "</" << name << ">";
+}
+
+void log(const QString& str)
+{
+ QXmppLogger::getLogger()->log(str);
+}
+
+void log(const QByteArray& str)
+{
+ QXmppLogger::getLogger()->log(str);
+}
diff --git a/source/utils.h b/source/utils.h
new file mode 100644
index 00000000..d7ae26b1
--- /dev/null
+++ b/source/utils.h
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2008-2009 Manjeet Dahiya
+ *
+ * Author:
+ * Manjeet Dahiya
+ *
+ * Source:
+ * http://code.google.com/p/qxmpp
+ *
+ * This file is a part of QXmpp library.
+ *
+ * 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.1 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.
+ *
+ */
+
+
+#ifndef UTILS_H
+#define UTILS_H
+
+
+class QTextStream;
+class QByteArray;
+class QString;
+
+QString jidToResource(const QString& jid);
+QString jidToBareJid(const QString& jid);
+
+void helperToXmlAddAttribute(QTextStream& stream, const QString& name, const QString& value);
+void helperToXmlAddElement(QTextStream& stream, const QString& name, const QString& value);
+void helperToXmlAddElement(QTextStream& stream, const QString& name, int value);
+
+void log(const QString& str);
+void log(const QByteArray& str);
+
+#endif // UTILS_H