scrollpad: explicitely include iostream
[ncmpcpp.git] / src / lastfm_service.h
blob0ebc5c20398ebd2a7f88792710706342d09353af
1 /***************************************************************************
2 * Copyright (C) 2008-2014 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef NCMPCPP_LASTFM_SERVICE_H
22 #define NCMPCPP_LASTFM_SERVICE_H
24 #include "config.h"
26 #ifdef HAVE_CURL_CURL_H
28 #include <map>
29 #include <string>
31 #include "scrollpad.h"
33 namespace LastFm {
35 struct Service
37 typedef std::map<std::string, std::string> Arguments;
38 typedef std::pair<bool, std::string> Result;
40 Service(Arguments args) : m_arguments(args) { }
42 virtual const char *name() = 0;
43 virtual Result fetch();
45 virtual void beautifyOutput(NC::Scrollpad &w) = 0;
47 protected:
48 virtual bool argumentsOk() = 0;
49 virtual bool actionFailed(const std::string &data);
51 virtual Result processData(const std::string &data) = 0;
53 virtual const char *methodName() = 0;
55 Arguments m_arguments;
58 struct ArtistInfo : public Service
60 ArtistInfo(std::string artist, std::string lang)
61 : Service({{"artist", artist}, {"lang", lang}}) { }
63 virtual const char *name() { return "Artist info"; }
65 virtual void beautifyOutput(NC::Scrollpad &w);
67 bool operator==(const ArtistInfo &ai) const { return m_arguments == ai.m_arguments; }
69 protected:
70 virtual bool argumentsOk();
71 virtual Result processData(const std::string &data);
73 virtual const char *methodName() { return "artist.getinfo"; }
78 #endif // HAVE_CURL_CURL_H
80 #endif // NCMPCPP_LASTFM_SERVICE_H