Thats enough playtime for today. The mp3tunes service can now download the xml list...
[amarok.git] / src / servicebrowser / mp3tunes / Mp3tunesServiceQueryMaker.h
blob560ba2b2d6ea371eb6326cd1ad480582b135ccfd
1 /***************************************************************************
2 * Copyright (c) 2007 Nikolaj Hald Nielsen <nhnFreespirit@gmail.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
20 #ifndef SHOUTCASTSERVICEQUERYMAKER_H
21 #define SHOUTCASTSERVICEQUERYMAKER_H
23 #include "DynamicServiceQueryMaker.h"
25 #include "meta.h"
27 #include "Mp3tunesServiceCollection.h"
29 #include <kio/jobclasses.h>
31 namespace ThreadWeaver
33 class Job;
37 /**
38 A query maker for fetching external data
40 @author
42 class Mp3tunesServiceQueryMaker : public DynamicServiceQueryMaker
44 Q_OBJECT
45 public:
46 Mp3tunesServiceQueryMaker( Mp3tunesServiceCollection * collection, const QString &sessionId );
47 ~Mp3tunesServiceQueryMaker();
49 virtual QueryMaker* reset();
50 virtual void run();
51 virtual void abortQuery();
53 virtual QueryMaker* startArtistQuery();
55 virtual QueryMaker* returnResultAsDataPtrs ( bool resultAsDataPtrs );
57 //Methods "borrowed" from MemoryQueryMaker
58 void runQuery();
59 void handleResult();
60 void handleResult( const Meta::TrackList &tracks );
62 void fetchArtists();
65 protected:
66 Mp3tunesServiceCollection * m_collection;
67 KIO::StoredTransferJob * m_storedTransferJob;
69 class Private;
70 Private * const d;
72 QString m_sessionId;
74 public slots:
76 void artistDownloadComplete(KJob *job );
81 #endif