change version to 0.7.3
[ncmpcpp.git] / src / lyrics.h
bloba37ea262e580e295f5425509bd155cf790238981
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_LYRICS_H
22 #define NCMPCPP_LYRICS_H
24 #include <pthread.h>
25 #include <queue>
27 #include "interfaces.h"
28 #include "lyrics_fetcher.h"
29 #include "screen.h"
30 #include "song.h"
32 struct Lyrics: Screen<NC::Scrollpad>, Tabbable
34 Lyrics();
36 // Screen<NC::Scrollpad> implementation
37 virtual void resize() OVERRIDE;
38 virtual void switchTo() OVERRIDE;
40 virtual std::wstring title() OVERRIDE;
41 virtual ScreenType type() OVERRIDE { return ScreenType::Lyrics; }
43 virtual void update() OVERRIDE;
45 virtual bool isLockable() OVERRIDE { return false; }
46 virtual bool isMergable() OVERRIDE { return true; }
48 // private members
49 bool SetSong(const MPD::Song &s);
50 void Edit();
52 # ifdef HAVE_CURL_CURL_H
53 void Refetch();
55 static void ToggleFetcher();
56 static void DownloadInBackground(const MPD::Song &s);
57 # endif // HAVE_CURL_CURL_H
59 bool Reload;
61 private:
62 void Load();
64 # ifdef HAVE_CURL_CURL_H
65 static void *DownloadInBackgroundImpl(void *song_ptr);
66 static void DownloadInBackgroundImplHelper(const MPD::Song &s);
67 // lock for allowing exclusive access to itsToDownload and itsWorkersNumber
68 static pthread_mutex_t itsDIBLock;
69 // storage for songs for which lyrics are scheduled to be downloaded
70 static std::queue<MPD::Song *> itsToDownload;
71 // current worker threads (ie. downloading lyrics)
72 static size_t itsWorkersNumber;
73 // maximum number of worker threads. if it's reached, next lyrics requests
74 // are put into itsToDownload queue.
75 static const size_t itsMaxWorkersNumber = 4;
77 void *Download();
78 static void *DownloadWrapper(void *);
79 static void Save(const std::string &filename, const std::string &lyrics);
81 void Take();
82 bool isReadyToTake;
83 bool isDownloadInProgress;
84 pthread_t itsDownloader;
86 static LyricsFetcher **itsFetcher;
87 # endif // HAVE_CURL_CURL_H
89 size_t itsScrollBegin;
90 MPD::Song itsSong;
91 std::string itsFilename;
93 static std::string GenerateFilename(const MPD::Song &s);
96 extern Lyrics *myLyrics;
98 #endif // NCMPCPP_LYRICS_H