1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
/**
* GJay, copyright (c) 2010 Craig Small
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 1, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <audacious/dbus.h>
#include <audacious/audctrl.h>
#include "gjay.h"
#include "songs.h"
#include "dbus.h"
#include "i18n.h"
static void play_files ( GList *list);
static void audacious_connect(void);
/* public functions */
void
play_song(song *s)
{
GList *list;
list = g_list_append(NULL, strdup_to_latin1(s->path));
play_files(list);
g_free((gchar*)list->data);
g_list_free(list);
}
void play_songs (GList *slist) {
GList *list = NULL;
for (; slist; slist = g_list_next(slist))
list = g_list_append(list, strdup_to_latin1(SONG(slist)->path));
play_files(list);
}
gboolean
audacious_is_running(void)
{
return gjay_dbus_is_running(AUDACIOUS_DBUS_SERVICE);
}
song *
get_current_audacious_song(void) {
gchar *playlist_file;
gchar *uri;
gint pos;
song *s;
audacious_connect();
pos = audacious_remote_get_playlist_pos(gjay->audacious_proxy);
playlist_file = audacious_remote_get_playlist_file(gjay->audacious_proxy, pos);
if (playlist_file == NULL)
return NULL;
uri = g_filename_from_uri(playlist_file, NULL, NULL);
if (uri == NULL)
return NULL;
s = g_hash_table_lookup(gjay->song_name_hash, uri);
g_free(playlist_file);
g_free(uri);
return s;
}
/* static functions */
/* Connect and init audacious instance */
static void
audacious_connect(void)
{
if (gjay->audacious_proxy != NULL)
return;
gjay->audacious_proxy = dbus_g_proxy_new_for_name(gjay->connection,
AUDACIOUS_DBUS_SERVICE, AUDACIOUS_DBUS_PATH, AUDACIOUS_DBUS_INTERFACE);
}
static void
play_files ( GList *list) {
GList *lptr = NULL;
gchar *uri = NULL;
if (!list)
return;
if (!audacious_is_running())
{
int i;
GtkWidget *dialog;
gint result;
GError *error;
dialog = gtk_message_dialog_new(GTK_WINDOW(gjay->main_window),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
_("Audacious is not running, start Audacious?"));
result = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
if (result == GTK_RESPONSE_YES)
{
error = NULL;
GAppInfo *aud_app;
if ((aud_app = g_app_info_create_from_commandline(
AUDACIOUS_BIN,
"Audacious",
G_APP_INFO_CREATE_NONE,
&error)) == NULL)
{
g_warning(_("Cannot create audacious g_app: %s\n"), error->message);
g_error_free(error);
return;
}
error=NULL;
if (g_app_info_launch(aud_app, NULL, NULL, &error) == FALSE)
{
g_warning(_("Cannot launch audacious g_app: %s"), error->message);
g_error_free(error);
return;
}
/* Give it 3 tries */
for(i=1; i<= 3; i++)
{
if (audacious_is_running())
break;
sleep(1);
}
if (i == 3) /* never got running */
{
dialog = gtk_message_dialog_new(GTK_WINDOW(gjay->main_window),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_CLOSE,
_("Unable to start Audacious"));
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
return;
}
} else /* user clicked no */
return;
}
audacious_connect();
audacious_remote_stop(gjay->audacious_proxy);
audacious_remote_playlist_clear(gjay->audacious_proxy);
for (lptr=list; lptr; lptr = g_list_next(lptr)) {
uri = g_filename_to_uri(lptr->data, NULL, NULL);
audacious_remote_playlist_add_url_string(gjay->audacious_proxy, uri);
g_free(uri);
}
audacious_remote_play(gjay->audacious_proxy);
}
|