summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@lavabit.com>2009-03-01 15:03:08 +0100
committerLars-Dominik Braun <PromyLOPh@lavabit.com>2009-03-01 15:03:08 +0100
commitd6764679ed3735714acae44c5cf529a9d047dc8b (patch)
tree236d718069aa7f41713c87f4dae7cab268ba8a42 /src/main.c
parent152c67bb38e71c1b189774beac07008cbc4d1631 (diff)
downloadpianobar-windows-d6764679ed3735714acae44c5cf529a9d047dc8b.tar.gz
pianobar-windows-d6764679ed3735714acae44c5cf529a9d047dc8b.tar.bz2
pianobar-windows-d6764679ed3735714acae44c5cf529a9d047dc8b.zip
Even more documentation
...and small cleanups.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c39
1 files changed, 25 insertions, 14 deletions
diff --git a/src/main.c b/src/main.c
index c8a91b2..ae0c643 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,21 +21,28 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-/* main loop, helper functions */
-
-#include <wardrobe.h>
-#include <curl/curl.h>
-#include <libxml/parser.h>
-#include <libxml/tree.h>
+/* system includes */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
-#include <pthread.h>
#include <unistd.h>
#include <poll.h>
-#include <readline/readline.h>
#include <time.h>
#include <ctype.h>
+
+/* last.fm scrobbling library */
+#include <wardrobe.h>
+
+#include <curl/curl.h>
+
+#include <libxml/parser.h>
+#include <libxml/tree.h>
+
+#include <pthread.h>
+
+#include <readline/readline.h>
+
+/* pandora.com library */
#include <piano.h>
#include "player.h"
@@ -58,7 +65,7 @@ int main (int argc, char **argv) {
/* needed in main loop */
struct pollfd polls = {fileno (stdin), POLLIN, POLLIN};
char buf = '\0';
- BarKeyShortcut_t *curShortcut;
+ BarKeyShortcut_t *curShortcut = NULL;
BarUiMsg ("Welcome to " PACKAGE "!\n");
@@ -131,15 +138,14 @@ int main (int argc, char **argv) {
memset (&player, 0, sizeof (player));
while (!doQuit) {
- /* already played a song, clean up things/scrobble song */
+ /* song finished playing, clean up things/scrobble song */
if (player.mode == PLAYER_FINISHED_PLAYBACK) {
scrobbleSong.length = player.songDuration / BAR_PLAYER_MS_TO_S_FACTOR;
/* scrobble when >= nn% are played; use seconds, not
* milliseconds */
- if (scrobbleSong.length > 0 &&
+ if (scrobbleSong.length > 0 && settings.enableScrobbling &&
player.songPlayed / BAR_PLAYER_MS_TO_S_FACTOR * 100 /
- scrobbleSong.length >= settings.lastfmScrobblePercent &&
- settings.enableScrobbling) {
+ scrobbleSong.length >= settings.lastfmScrobblePercent) {
WardrobeReturn_t wRet;
BarUiMsg ("Scrobbling song... ");
@@ -152,6 +158,8 @@ int main (int argc, char **argv) {
}
WardrobeSongDestroy (&scrobbleSong);
free (player.url);
+ /* FIXME: pthread_join blocks everything if network connection
+ * is hung up e.g. */
pthread_join (playerThread, NULL);
memset (&player, 0, sizeof (player));
}
@@ -180,6 +188,7 @@ int main (int argc, char **argv) {
}
}
}
+ /* song ready to play */
if (curSong != NULL) {
PianoStation_t *realStation =
PianoFindStationById (ph.stations,
@@ -199,6 +208,7 @@ int main (int argc, char **argv) {
scrobbleSong.album = strdup (curSong->album);
scrobbleSong.started = time (NULL);
+ /* setup player */
memset (&player, 0, sizeof (player));
player.url = strdup (curSong->audioUrl);
player.gain = curSong->fileGain;
@@ -211,7 +221,8 @@ int main (int argc, char **argv) {
} /* end if curStation != NULL */
}
- /* in the meantime: wait for user actions */
+ /* in the meantime: wait for user actions;
+ * 1000ms == 1s => refresh time display every second */
if (poll (&polls, 1, 1000) > 0) {
read (fileno (stdin), &buf, sizeof (buf));
curShortcut = settings.keys;