configuration: load bindings from the main directory if not specified otherwise
[ncmpcpp.git] / src / lyrics.h
blob02d8f84fe031acf93131a6d8965d9c6b8e4ee816
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 void enterPressed() OVERRIDE { }
46 virtual void spacePressed() OVERRIDE;
48 virtual bool isMergable() OVERRIDE { return true; }
50 // private members
51 void Edit();
53 # ifdef HAVE_CURL_CURL_H
54 void Refetch();
56 static void ToggleFetcher();
57 static void DownloadInBackground(const MPD::Song &s);
58 # endif // HAVE_CURL_CURL_H
60 bool ReloadNP;
62 protected:
63 virtual bool isLockable() OVERRIDE { return false; }
65 private:
66 void Load();
68 # ifdef HAVE_CURL_CURL_H
69 static void *DownloadInBackgroundImpl(void *song_ptr);
70 static void DownloadInBackgroundImplHelper(const MPD::Song &s);
71 // lock for allowing exclusive access to itsToDownload and itsWorkersNumber
72 static pthread_mutex_t itsDIBLock;
73 // storage for songs for which lyrics are scheduled to be downloaded
74 static std::queue<MPD::Song *> itsToDownload;
75 // current worker threads (ie. downloading lyrics)
76 static size_t itsWorkersNumber;
77 // maximum number of worker threads. if it's reached, next lyrics requests
78 // are put into itsToDownload queue.
79 static const size_t itsMaxWorkersNumber = 4;
81 void *Download();
82 static void *DownloadWrapper(void *);
83 static void Save(const std::string &filename, const std::string &lyrics);
85 void Take();
86 bool isReadyToTake;
87 bool isDownloadInProgress;
88 pthread_t itsDownloader;
90 static LyricsFetcher **itsFetcher;
91 # endif // HAVE_CURL_CURL_H
93 size_t itsScrollBegin;
94 MPD::Song itsSong;
95 std::string itsFilename;
97 static std::string GenerateFilename(const MPD::Song &s);
100 extern Lyrics *myLyrics;
102 #endif // NCMPCPP_LYRICS_H