/src/sip/zeroconf/zeroconf.cpp
http://github.com/tomahawk-player/tomahawk · C++ · 157 lines · 108 code · 32 blank · 17 comment · 6 complexity · ee8a2a7efd2a29bc1e0c3ca1097c6599 MD5 · raw file
- /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
- *
- * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
- *
- * Tomahawk is 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 3 of the License, or
- * (at your option) any later version.
- *
- * Tomahawk 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "zeroconf.h"
- #include <QtPlugin>
- #include <QtCore/QTimer>
- #include "tomahawksettings.h"
- #include "utils/logger.h"
- SipPlugin*
- ZeroconfFactory::createPlugin( const QString& pluginId )
- {
- return new ZeroconfPlugin( pluginId.isEmpty() ? generateId() : pluginId );
- }
- ZeroconfPlugin::ZeroconfPlugin() : SipPlugin( "") {}
- ZeroconfPlugin::ZeroconfPlugin ( const QString& pluginId )
- : SipPlugin( pluginId )
- , m_zeroconf( 0 )
- , m_state( Disconnected )
- , m_cachedNodes()
- {
- qDebug() << Q_FUNC_INFO;
- m_advertisementTimer.setInterval( 60000 );
- m_advertisementTimer.setSingleShot( false );
- connect( &m_advertisementTimer, SIGNAL( timeout() ), this, SLOT( advertise() ) );
- }
- ZeroconfPlugin::~ZeroconfPlugin() {}
- const QString
- ZeroconfPlugin::name() const
- {
- return QString( MYNAME );
- }
- const QString
- ZeroconfPlugin::accountName() const
- {
- return QString( MYNAME );
- }
- const QString
- ZeroconfPlugin::friendlyName() const
- {
- return QString( MYNAME );
- }
- SipPlugin::ConnectionState
- ZeroconfPlugin::connectionState() const
- {
- return m_state;
- }
- #ifndef ENABLE_HEADLESS
- QIcon
- ZeroconfFactory::icon() const
- {
- return QIcon( ":/zeroconf-icon.png" );
- }
- #endif
- bool
- ZeroconfPlugin::connectPlugin( bool /*startup*/ )
- {
- delete m_zeroconf;
- m_zeroconf = new TomahawkZeroconf( Servent::instance()->port(), this );
- QObject::connect( m_zeroconf, SIGNAL( tomahawkHostFound( QString, int, QString, QString ) ),
- SLOT( lanHostFound( QString, int, QString, QString ) ) );
- advertise();
- m_state = Connected;
- foreach( const QStringList& nodeSet, m_cachedNodes )
- {
- if ( !Servent::instance()->connectedToSession( nodeSet[3] ) )
- Servent::instance()->connectToPeer( nodeSet[0], nodeSet[1].toInt(), "whitelist", nodeSet[2], nodeSet[3] );
- }
- m_cachedNodes.clear();
- m_advertisementTimer.start();
- return true;
- }
- void
- ZeroconfPlugin::disconnectPlugin()
- {
- m_advertisementTimer.stop();
- m_state = Disconnected;
- delete m_zeroconf;
- m_zeroconf = 0;
- }
- #ifndef ENABLE_HEADLESS
- QIcon
- ZeroconfPlugin::icon() const
- {
- return QIcon( ":/zeroconf-icon.png" );
- }
- #endif
- void
- ZeroconfPlugin::advertise()
- {
- m_zeroconf->advertise();
- }
- void
- ZeroconfPlugin::lanHostFound( const QString& host, int port, const QString& name, const QString& nodeid )
- {
- if ( sender() != m_zeroconf )
- return;
- qDebug() << "Found LAN host:" << host << port << nodeid;
- if ( m_state != Connected )
- {
- qDebug() << "Not online, so not connecting.";
- QStringList nodeSet;
- nodeSet << host << QString::number( port ) << name << nodeid;
- m_cachedNodes.append( nodeSet );
- return;
- }
- if ( !Servent::instance()->connectedToSession( nodeid ) )
- Servent::instance()->connectToPeer( host, port, "whitelist", name, nodeid );
- else
- qDebug() << "Already connected to" << host;
- }
- Q_EXPORT_PLUGIN2( sipfactory, ZeroconfFactory )