mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-05 00:22:31 +02:00
Forgot to add tomahawksipmessage stanza extension files
This commit is contained in:
parent
e7ddedef5a
commit
16eb50e02d
74
src/sip/jreen/tomahawksipmessage.cpp
Normal file
74
src/sip/jreen/tomahawksipmessage.cpp
Normal file
@ -0,0 +1,74 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* This file is part of qutIM
|
||||
*
|
||||
* Copyright (c) 2011 by Nigmatullin Ruslan <euroelessar@gmail.com>
|
||||
*
|
||||
***************************************************************************
|
||||
* *
|
||||
* 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;
|
||||
}
|
28
src/sip/jreen/tomahawksipmessage.h
Normal file
28
src/sip/jreen/tomahawksipmessage.h
Normal file
@ -0,0 +1,28 @@
|
||||
#ifndef ENTITYTIME_H
|
||||
#define ENTITYTIME_H
|
||||
|
||||
#include <jreen/stanzaextension.h>
|
||||
|
||||
#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<TomahawkSipMessagePrivate> d_ptr;
|
||||
};
|
||||
|
||||
#endif // ENTITYTIME_H
|
124
src/sip/jreen/tomahawksipmessagefactory.cpp
Normal file
124
src/sip/jreen/tomahawksipmessagefactory.cpp
Normal file
@ -0,0 +1,124 @@
|
||||
#include "tomahawksipmessagefactory.h"
|
||||
//#include "util.h"
|
||||
#include <QStringList>
|
||||
#include <QXmlStreamWriter>
|
||||
#include <QDebug>
|
||||
#include <QVariant>
|
||||
|
||||
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<TomahawkSipMessage*>(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));
|
||||
}
|
46
src/sip/jreen/tomahawksipmessagefactory.h
Normal file
46
src/sip/jreen/tomahawksipmessagefactory.h
Normal file
@ -0,0 +1,46 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* This file is part of qutIM
|
||||
*
|
||||
* Copyright (c) 2011 by Nigmatullin Ruslan <euroelessar@gmail.com>
|
||||
*
|
||||
***************************************************************************
|
||||
* *
|
||||
* 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 <jreen/stanzaextension.h>
|
||||
|
||||
class TomahawkSipMessageFactory : public Jreen::StanzaExtensionFactory<TomahawkSipMessage>
|
||||
{
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user