From 16eb50e02da824764ba55ae36ddd6c5a9c0ff1d2 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Mon, 4 Apr 2011 20:46:21 +0200 Subject: [PATCH] Forgot to add tomahawksipmessage stanza extension files --- src/sip/jreen/tomahawksipmessage.cpp | 74 ++++++++++++ src/sip/jreen/tomahawksipmessage.h | 28 +++++ src/sip/jreen/tomahawksipmessagefactory.cpp | 124 ++++++++++++++++++++ src/sip/jreen/tomahawksipmessagefactory.h | 46 ++++++++ 4 files changed, 272 insertions(+) create mode 100644 src/sip/jreen/tomahawksipmessage.cpp create mode 100644 src/sip/jreen/tomahawksipmessage.h create mode 100644 src/sip/jreen/tomahawksipmessagefactory.cpp create mode 100644 src/sip/jreen/tomahawksipmessagefactory.h diff --git a/src/sip/jreen/tomahawksipmessage.cpp b/src/sip/jreen/tomahawksipmessage.cpp new file mode 100644 index 000000000..0dce37b0b --- /dev/null +++ b/src/sip/jreen/tomahawksipmessage.cpp @@ -0,0 +1,74 @@ +/**************************************************************************** + * + * This file is part of qutIM + * + * Copyright (c) 2011 by Nigmatullin Ruslan + * + *************************************************************************** + * * + * This file is part of free software; you can redistribute it and/or * + * modify it under the terms of the GNU General Public License as * + * published by the Free Software Foundation; either version 2 of the * + * License, or (at your option) any later version. * + * * + *************************************************************************** + ****************************************************************************/ + +#include "tomahawksipmessage.h" + +class TomahawkSipMessagePrivate +{ +public: + QString ip; + int port; + QString uniqname; + QString key; + bool visible; +}; + +TomahawkSipMessage::TomahawkSipMessage(QString ip, unsigned int port, QString uniqname, QString key, bool visible) : d_ptr(new TomahawkSipMessagePrivate) +{ + Q_D(TomahawkSipMessage); + d->ip = ip; + d->port = port; + d->uniqname = uniqname; + d->key = key; + d->visible = visible; +} + +TomahawkSipMessage::TomahawkSipMessage() : d_ptr(new TomahawkSipMessagePrivate) +{ + Q_D(TomahawkSipMessage); + d->visible = false; + d->port = -1; +} + + +TomahawkSipMessage::~TomahawkSipMessage() +{ +} + +const QString TomahawkSipMessage::ip() const +{ + return d_func()->ip; +} + +unsigned int TomahawkSipMessage::port() const +{ + return d_func()->port; +} + +QString TomahawkSipMessage::uniqname() const +{ + return d_func()->uniqname; +} + +QString TomahawkSipMessage::key() const +{ + return d_func()->key; +} + +bool TomahawkSipMessage::visible() const +{ + return d_func()->visible; +} diff --git a/src/sip/jreen/tomahawksipmessage.h b/src/sip/jreen/tomahawksipmessage.h new file mode 100644 index 000000000..da1c376c5 --- /dev/null +++ b/src/sip/jreen/tomahawksipmessage.h @@ -0,0 +1,28 @@ +#ifndef ENTITYTIME_H +#define ENTITYTIME_H + +#include + +#define TOMAHAWK_SIP_MESSAGE_NS QLatin1String("http://www.tomhawk-player.org/sip/transports") + +class TomahawkSipMessagePrivate; +class TomahawkSipMessage : public Jreen::StanzaExtension +{ + J_EXTENSION(TomahawkSipMessage, "") + Q_DECLARE_PRIVATE(TomahawkSipMessage) + public: + TomahawkSipMessage(QString ip, unsigned int port, QString uniqname, QString key, bool visible); + // sets visible to false as we dont have any extra information + TomahawkSipMessage(); + ~TomahawkSipMessage(); + + const QString ip() const; + unsigned int port() const; + QString uniqname() const; + QString key() const; + bool visible() const; + private: + QScopedPointer d_ptr; +}; + +#endif // ENTITYTIME_H diff --git a/src/sip/jreen/tomahawksipmessagefactory.cpp b/src/sip/jreen/tomahawksipmessagefactory.cpp new file mode 100644 index 000000000..20a0a9ba8 --- /dev/null +++ b/src/sip/jreen/tomahawksipmessagefactory.cpp @@ -0,0 +1,124 @@ +#include "tomahawksipmessagefactory.h" +//#include "util.h" +#include +#include +#include +#include + +using namespace Jreen; + +TomahawkSipMessageFactory::TomahawkSipMessageFactory() +{ + m_depth = 0; + m_state = AtNowhere; +} + +TomahawkSipMessageFactory::~TomahawkSipMessageFactory() +{ +} + +QStringList TomahawkSipMessageFactory::features() const +{ + return QStringList(TOMAHAWK_SIP_MESSAGE_NS); +} + +bool TomahawkSipMessageFactory::canParse(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes) +{ + Q_UNUSED(uri); + Q_UNUSED(attributes); + return name == QLatin1String("tomahawk") && uri == TOMAHAWK_SIP_MESSAGE_NS; +} + +void TomahawkSipMessageFactory::handleStartElement(const QStringRef &name, const QStringRef &uri, + const QXmlStreamAttributes &attributes) +{ + m_depth++; + if (m_depth == 1) { + m_state = AtNowhere; + m_ip = QString(); + m_port = -1; + m_uniqname = QString(); + m_key = QString(); + m_visible = false; + } else if (m_depth == 2) { + if (name == QLatin1String("transport")) + { + qDebug() << "Found Transport"; + m_state = AtTransport; + + m_uniqname = attributes.value(QLatin1String("uniqname")).toString(); + m_key = attributes.value(QLatin1String("pwd")).toString(); + m_visible = true; + } + } else if(m_depth == 3) { + if (name == QLatin1String("candidate")) + { + m_state = AtCandidate; + qDebug() << "Found candidate"; + m_ip = attributes.value(QLatin1String("ip")).toString(); + m_port = attributes.value(QLatin1String("port")).toString().toInt(); + + } + } + Q_UNUSED(uri); + Q_UNUSED(attributes); +} + +void TomahawkSipMessageFactory::handleEndElement(const QStringRef &name, const QStringRef &uri) +{ + if (m_depth == 3) + m_state = AtNowhere; + Q_UNUSED(name); + Q_UNUSED(uri); + m_depth--; +} + +void TomahawkSipMessageFactory::handleCharacterData(const QStringRef &text) +{ + /*if (m_state == AtUtc) { + //m_utc = Util::fromStamp(text.toString()); + } else if (m_state == AtTzo) { + QString str = text.toString(); + int multiple = str.startsWith('-') ? -1 : 1; + //QTime delta = QTime::fromString(str.mid(1), QLatin1String("hh:mm")); + //m_tzo = multiple * (delta.hour() * 60 + delta.minute()); + }*/ + Q_UNUSED(text); +} + +void TomahawkSipMessageFactory::serialize(StanzaExtension *extension, QXmlStreamWriter *writer) +{ + TomahawkSipMessage *sipMessage = se_cast(extension); + + writer->writeStartElement(QLatin1String("tomahawk")); + writer->writeDefaultNamespace(TOMAHAWK_SIP_MESSAGE_NS); + + if(sipMessage->visible()) + { + // add transport tag + writer->writeStartElement(QLatin1String("transport")); + writer->writeAttribute(QLatin1String("pwd"), sipMessage->key()); + writer->writeAttribute(QLatin1String("uniqname"), sipMessage->uniqname()); + + writer->writeEmptyElement(QLatin1String("candidate")); + writer->writeAttribute(QLatin1String("component"), "1"); + writer->writeAttribute(QLatin1String("id"), "el0747fg11"); // FIXME + writer->writeAttribute(QLatin1String("ip"), sipMessage->ip()); + writer->writeAttribute(QLatin1String("network"), "1"); + writer->writeAttribute(QLatin1String("port"), QVariant(sipMessage->port()).toString()); + writer->writeAttribute(QLatin1String("priority"), "1"); //TODO + writer->writeAttribute(QLatin1String("protocol"), "tcp"); + writer->writeAttribute(QLatin1String("type"), "host"); //FIXME: correct?! + writer->writeEndElement(); + } + else + { + writer->writeEmptyElement(QLatin1String("transport")); + } + writer->writeEndElement(); +} + +StanzaExtension::Ptr TomahawkSipMessageFactory::createExtension() +{ + return StanzaExtension::Ptr(new TomahawkSipMessage(m_ip, m_port, m_uniqname, m_key, m_visible)); +} diff --git a/src/sip/jreen/tomahawksipmessagefactory.h b/src/sip/jreen/tomahawksipmessagefactory.h new file mode 100644 index 000000000..318208710 --- /dev/null +++ b/src/sip/jreen/tomahawksipmessagefactory.h @@ -0,0 +1,46 @@ +/**************************************************************************** + * + * This file is part of qutIM + * + * Copyright (c) 2011 by Nigmatullin Ruslan + * + *************************************************************************** + * * + * This file is part of free software; you can redistribute it and/or * + * modify it under the terms of the GNU General Public License as * + * published by the Free Software Foundation; either version 2 of the * + * License, or (at your option) any later version. * + * * + *************************************************************************** + ****************************************************************************/ + +#ifndef ENTITYTIMEFACTORY_P_H +#define ENTITYTIMEFACTORY_P_H + +#include "tomahawksipmessage.h" + +#include + +class TomahawkSipMessageFactory : public Jreen::StanzaExtensionFactory +{ +public: + TomahawkSipMessageFactory(); + virtual ~TomahawkSipMessageFactory(); + QStringList features() const; + bool canParse(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes); + void handleStartElement(const QStringRef &name, const QStringRef &uri, const QXmlStreamAttributes &attributes); + void handleEndElement(const QStringRef &name, const QStringRef &uri); + void handleCharacterData(const QStringRef &text); + void serialize(Jreen::StanzaExtension *extension, QXmlStreamWriter *writer); + Jreen::StanzaExtension::Ptr createExtension(); +private: + enum State { AtNowhere, AtTransport, AtCandidate } m_state; + int m_depth; + QString m_ip; + int m_port; + QString m_uniqname; + QString m_key; + bool m_visible; +}; + +#endif // ENTITYTIMEFACTORY_P_H