Conky 1.5.0 -- client/server prototype
[monky] / src / audacious.c
1 /* $Id$ */
2
3 /*
4  * audacious.c:  conky support for audacious music player
5  *
6  * Copyright (C) 2005  Philip Kovacs pkovacs@users.sourceforge.net
7  * 
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
21  * USA.
22  *
23  */
24
25 #include <stdio.h>
26 #include <string.h>
27
28 #include <glib.h>
29 #include <audacious/beepctrl.h>
30
31 #include "config.h"
32 #include "conky.h"
33 #include "audacious.h"
34 #include "timed_thread.h"
35
36 /* access to this item array is synchronized */
37 static audacious_t audacious_items;
38
39 /* -----------------------------------------
40  * Conky update function for audacious data.
41  * ----------------------------------------- */
42 void update_audacious(void)
43 {
44   /* 
45     The worker thread is updating audacious_items array asynchronously to the main 
46     conky thread.  We merely copy the audacious_items array into the main thread's 
47     info structure when the main thread's update cycle fires. 
48   */
49   if (!info.audacious.p_timed_thread)
50     return;
51
52   timed_thread_lock (info.audacious.p_timed_thread);
53   memcpy(&info.audacious.items,audacious_items,sizeof(audacious_items));
54   timed_thread_unlock (info.audacious.p_timed_thread);
55 }
56
57
58 /* ------------------------------------------------------------
59  * Create a worker thread for audacious media player status.
60  *
61  * Returns 0 on success, -1 on error. 
62  * ------------------------------------------------------------*/
63 int create_audacious_thread(void)
64 {
65   if (!info.audacious.p_timed_thread)
66     info.audacious.p_timed_thread = timed_thread_create (audacious_thread_func, NULL, 1000000);
67
68   if (!info.audacious.p_timed_thread)
69     return (-1);
70
71   return 0;
72 }
73
74 /* ------------------------------------------------
75  * Destroy audacious player status thread. 
76  *
77  * Returns 0 on success, -1 on error.
78  * ------------------------------------------------ */
79 int destroy_audacious_thread(void)
80 {
81   /* Is a worker is thread running? If not, no error. */
82   if (!info.audacious.p_timed_thread)
83     return(0);
84
85   timed_thread_destroy (info.audacious.p_timed_thread, &info.audacious.p_timed_thread);
86
87   return 0;
88 }
89
90 /* ---------------------------------------------------
91  * Worker thread function for audacious data sampling.
92  * --------------------------------------------------- */ 
93 void *audacious_thread_func(void *pvoid)
94 {
95   static audacious_t items;
96   gint session,playpos,frames,length;
97   gint rate,freq,chans;
98   gchar *psong,*pfilename;
99
100   pvoid=(void *)pvoid;  /* avoid warning */
101   session=0;
102   psong=NULL;
103   pfilename=NULL;
104
105   /* Loop until the main thread sets the runnable signal to 0i via timed_thread_destroy. */
106   while (1) {
107
108     if (!xmms_remote_is_running (session)) 
109     {
110       memset(&items,0,sizeof(items));
111       strcpy(items[AUDACIOUS_STATUS],"Not running");
112         goto next_iter;
113     }
114
115     /* Player status */
116     if (xmms_remote_is_paused (session))
117       strcpy(items[AUDACIOUS_STATUS],"Paused");
118     else if (xmms_remote_is_playing (session))
119       strcpy(items[AUDACIOUS_STATUS],"Playing");
120     else
121       strcpy(items[AUDACIOUS_STATUS],"Stopped");
122
123     /* Current song title */
124     playpos = xmms_remote_get_playlist_pos (session);
125     psong = xmms_remote_get_playlist_title (session, playpos);
126     if (psong) 
127     {
128       strncpy(items[AUDACIOUS_TITLE],psong,sizeof(items[AUDACIOUS_TITLE])-1);
129       g_free (psong);
130       psong=NULL;
131     }
132
133     /* Current song length as MM:SS */
134     frames = xmms_remote_get_playlist_time (session,playpos);
135     length = frames / 1000;
136     snprintf(items[AUDACIOUS_LENGTH],sizeof(items[AUDACIOUS_LENGTH])-1, "%d:%.2d", length / 60, length % 60);
137
138     /* Current song length in seconds */
139     snprintf(items[AUDACIOUS_LENGTH_SECONDS],sizeof(items[AUDACIOUS_LENGTH_SECONDS])-1, "%d", length);
140
141     /* Current song position as MM:SS */
142     frames = xmms_remote_get_output_time (session);
143     length = frames / 1000;
144     snprintf(items[AUDACIOUS_POSITION],sizeof(items[AUDACIOUS_POSITION])-1,
145              "%d:%.2d", length / 60, length % 60);
146
147     /* Current song position in seconds */
148     snprintf(items[AUDACIOUS_POSITION_SECONDS],sizeof(items[AUDACIOUS_POSITION_SECONDS])-1, "%d", length);
149
150     /* Current song bitrate */
151     xmms_remote_get_info (session, &rate, &freq, &chans);
152     snprintf(items[AUDACIOUS_BITRATE],sizeof(items[AUDACIOUS_BITRATE])-1, "%d", rate);
153
154     /* Current song frequency */
155     snprintf(items[AUDACIOUS_FREQUENCY],sizeof(items[AUDACIOUS_FREQUENCY])-1, "%d", freq);
156
157     /* Current song channels */
158     snprintf(items[AUDACIOUS_CHANNELS],sizeof(items[AUDACIOUS_CHANNELS])-1, "%d", chans);
159
160     /* Current song filename */
161     pfilename = xmms_remote_get_playlist_file (session,playpos);
162     if (pfilename) 
163     {
164       strncpy(items[AUDACIOUS_FILENAME],pfilename,sizeof(items[AUDACIOUS_FILENAME])-1);
165       g_free (pfilename);
166       pfilename=NULL;
167     }
168
169     /* Length of the Playlist (number of songs) */
170     length = xmms_remote_get_playlist_length (session);
171     snprintf(items[AUDACIOUS_PLAYLIST_LENGTH],sizeof(items[AUDACIOUS_PLAYLIST_LENGTH])-1, "%d", length);
172
173     /* Playlist position (index of song) */
174     snprintf(items[AUDACIOUS_PLAYLIST_POSITION],sizeof(items[AUDACIOUS_PLAYLIST_POSITION])-1, 
175            "%d", playpos+1);
176
177 next_iter:
178
179     /* Deliver the refreshed items array to audacious_items. */
180     timed_thread_lock (info.audacious.p_timed_thread);
181     memcpy(&audacious_items,items,sizeof(items));
182     timed_thread_unlock (info.audacious.p_timed_thread);
183
184     if (timed_thread_test (info.audacious.p_timed_thread))
185       timed_thread_exit (info.audacious.p_timed_thread);
186   }
187 }