X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/4387f694f74e3a797209032ea43fb355c89487a3..85cb23d7dcfa5449893a11d05586f1097794f3f2:/server/play.c diff --git a/server/play.c b/server/play.c index bd27474..7f863ce 100644 --- a/server/play.c +++ b/server/play.c @@ -44,6 +44,7 @@ #include "configuration.h" #include "queue.h" #include "server-queue.h" +#include "rights.h" #include "trackdb.h" #include "play.h" #include "plugin.h" @@ -312,14 +313,16 @@ static int start(ev_source *ev, memset(&sm, 0, sizeof sm); D(("start %s %d", q->id, prepare_only)); - if(find_player_pid(q->id) > 0) { - if(prepare_only) return START_OK; - /* We have already prepared this track so we just need to tell the speaker - * process to start actually playing the queued up audio data */ - strcpy(sm.id, q->id); - sm.type = SM_PLAY; - speaker_send(speaker_fd, &sm); - D(("sent SM_PLAY for %s", sm.id)); + if(q->prepared) { + /* The track is alraedy prepared */ + if(!prepare_only) { + /* We want to run it, since it's prepared the answer is to tell the + * speaker to set it off */ + strcpy(sm.id, q->id); + sm.type = SM_PLAY; + speaker_send(speaker_fd, &sm); + D(("sent SM_PLAY for %s", sm.id)); + } return START_OK; } /* Find the player plugin. */ @@ -396,7 +399,7 @@ static int start(ev_source *ev, memset(&addr, 0, sizeof addr); addr.sun_family = AF_UNIX; snprintf(addr.sun_path, sizeof addr.sun_path, - "%s/speaker", config->home); + "%s/speaker/socket", config->home); sfd = xsocket(PF_UNIX, SOCK_STREAM, 0); if(connect(sfd, (const struct sockaddr *)&addr, sizeof addr) < 0) fatal(errno, "connecting to %s", addr.sun_path); @@ -478,6 +481,7 @@ static int start(ev_source *ev, return START_SOFTFAIL; } store_player_pid(q->id, pid); + q->prepared = 1; if(lfd != -1) xclose(lfd); setpgid(pid, pid);