1 /***************************************************************************
2 * Copyright (C) 2008-2014 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
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. *
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. *
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
27 #include "interfaces.h"
28 #include "lyrics_fetcher.h"
32 struct Lyrics
: Screen
<NC::Scrollpad
>, Tabbable
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; }
53 # ifdef HAVE_CURL_CURL_H
56 static void ToggleFetcher();
57 static void DownloadInBackground(const MPD::Song
&s
);
58 # endif // HAVE_CURL_CURL_H
63 virtual bool isLockable() OVERRIDE
{ return false; }
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;
82 static void *DownloadWrapper(void *);
83 static void Save(const std::string
&filename
, const std::string
&lyrics
);
87 bool isDownloadInProgress
;
88 pthread_t itsDownloader
;
90 static LyricsFetcher
**itsFetcher
;
91 # endif // HAVE_CURL_CURL_H
93 size_t itsScrollBegin
;
95 std::string itsFilename
;
97 static std::string
GenerateFilename(const MPD::Song
&s
);
100 extern Lyrics
*myLyrics
;
102 #endif // NCMPCPP_LYRICS_H