/src/libtomahawk/database/DatabaseCommand_DeleteDynamicPlaylist.cpp
http://github.com/tomahawk-player/tomahawk · C++ · 73 lines · 41 code · 15 blank · 17 comment · 4 complexity · 28016b82a1dfd0bebc49cdfbe49729b1 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 "DatabaseCommand_DeleteDynamicPlaylist.h"
- #include "playlist/dynamic/DynamicPlaylist.h"
- #include "network/Servent.h"
- #include "utils/Logger.h"
- #include <QSqlQuery>
- using namespace Tomahawk;
- DatabaseCommand_DeleteDynamicPlaylist::DatabaseCommand_DeleteDynamicPlaylist( const source_ptr& source, const QString& playlistguid )
- : DatabaseCommand_DeletePlaylist( source, playlistguid )
- {
- }
- void
- DatabaseCommand_DeleteDynamicPlaylist::exec( DatabaseImpl* lib )
- {
- qDebug() << Q_FUNC_INFO << "Deleting dynamic playlist:" << m_playlistguid;
- DatabaseCommand_DeletePlaylist::exec( lib );
- TomahawkSqlQuery cre = lib->newquery();
- cre.prepare( "DELETE FROM dynamic_playlist WHERE guid = :id" );
- cre.bindValue( ":id", m_playlistguid );
- cre.exec();
- }
- void
- DatabaseCommand_DeleteDynamicPlaylist::postCommitHook()
- {
- tDebug( LOGVERBOSE ) << Q_FUNC_INFO << "Reporting:" << m_playlistguid;
- if ( !source() || !source()->dbCollection() )
- {
- Q_ASSERT( false );
- return;
- }
- dynplaylist_ptr playlist = DynamicPlaylist::get( m_playlistguid );
- if ( playlist )
- {
- playlist->reportDeleted( playlist );
- }
- else
- {
- tLog() << "ERROR: Just tried to load playlist for deletion:" << m_playlistguid << "Did we get a null one?" << playlist.isNull();
- }
- if ( source()->isLocal() )
- Servent::instance()->triggerDBSync();
- }