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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/*
* Copyright 2005-2006 Timo Hirvonen
*/
#include <prog.h>
#include <file.h>
#include <path.h>
#include <xmalloc.h>
#include "config/version.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/un.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
static int sock;
static int raw_args = 0;
static void remote_connect(const char *server)
{
struct sockaddr_un addr;
sock = socket(PF_UNIX, SOCK_STREAM, 0);
if (sock == -1)
die_errno("socket");
addr.sun_family = AF_UNIX;
strncpy(addr.sun_path, server, sizeof(addr.sun_path) - 1);
if (connect(sock, (struct sockaddr *)&addr, sizeof(addr))) {
if (errno == ENOENT || errno == ECONNREFUSED) {
/* "cmus-remote -C" can be used to check if cmus is running */
if (!raw_args)
warn("cmus is not running\n");
exit(1);
}
die_errno("connect");
}
}
static void write_line(const char *line)
{
if (write_all(sock, line, strlen(line)) == -1)
die_errno("write");
}
static void send_cmd(const char *format, ...)
{
char buf[512];
va_list ap;
va_start(ap, format);
vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
write_line(buf);
}
static char *file_url_absolute(const char *str)
{
char *absolute;
if (strncmp(str, "http://", 7) == 0)
return xstrdup(str);
absolute = path_absolute(str);
if (absolute == NULL)
die_errno("get_current_dir_name");
return absolute;
}
enum flags {
FLAG_SERVER,
FLAG_HELP,
FLAG_VERSION,
FLAG_PLAY,
FLAG_PAUSE,
FLAG_STOP,
FLAG_NEXT,
FLAG_PREV,
FLAG_FILE,
FLAG_REPEAT,
FLAG_SHUFFLE,
FLAG_VOLUME,
FLAG_SEEK,
FLAG_LIBRARY,
FLAG_PLAYLIST,
FLAG_QUEUE,
FLAG_CLEAR,
FLAG_RAW
#define NR_FLAGS (FLAG_RAW + 1)
};
static struct option options[NR_FLAGS + 1] = {
{ 0, "server", 1 },
{ 0, "help", 0 },
{ 0, "version", 0 },
{ 'p', "play", 0 },
{ 'u', "pause", 0 },
{ 's', "stop", 0 },
{ 'n', "next", 0 },
{ 'r', "prev", 0 },
{ 'f', "file", 1 },
{ 'R', "repeat", 0 },
{ 'S', "shuffle", 0 },
{ 'v', "volume", 1 },
{ 'k', "seek", 1 },
{ 'l', "library", 0 },
{ 'P', "playlist", 0 },
{ 'q', "queue", 0 },
{ 'c', "clear", 0 },
{ 'C', "raw", 0 },
{ 0, NULL, 0 }
};
static int flags[NR_FLAGS] = { 0, };
static const char *usage =
"Usage: %s [OPTION]... [FILE|DIR|PLAYLIST]...\n"
" or: %s -C COMMAND...\n"
" or: %s\n"
"Control cmus through socket.\n"
"\n"
" --server SOCKET connect using socket SOCKET instead of /tmp/cmus-$USER\n"
" --help display this help and exit\n"
" --version " VERSION "\n"
"\n"
"Cooked mode:\n"
" -p, --play player-play\n"
" -u, --pause player-pause\n"
" -s, --stop player-stop\n"
" -n, --next player-next\n"
" -r, --prev player-prev\n"
" -f, --file player-play FILE\n"
" -R, --repeat toggle repeat\n"
" -S, --shuffle toggle shuffle\n"
" -v, --volume VOL vol VOL\n"
" -k, --seek SEEK seek SEEK\n"
"\n"
" -l, --library modify library instead of playlist\n"
" -P, --playlist modify playlist (default)\n"
" -q, --queue modify play queue instead of playlist\n"
" -c, --clear clear playlist, library (-l) or play queue (-q)\n"
"\n"
" Add FILE/DIR/PLAYLIST to playlist, library (-l) or play queue (-q).\n"
"\n"
"Raw mode:\n"
" -C, --raw treat arguments (instead of stdin) as raw commands\n"
"\n"
" By default cmus-remote reads raw commands from stdin (one command per line).\n"
"\n"
"Report bugs to <cmus-devel@lists.sourceforge.net>.\n";
int main(int argc, char *argv[])
{
char server_buf[256];
char *server = NULL;
char *play_file = NULL;
char *volume = NULL;
char *seek = NULL;
int i, nr_cmds = 0;
int context = 'p';
program_name = argv[0];
argv++;
while (1) {
int idx;
char *arg;
idx = get_option(&argv, options, &arg);
if (idx < 0)
break;
flags[idx] = 1;
switch ((enum flags)idx) {
case FLAG_HELP:
printf(usage, program_name, program_name, program_name);
return 0;
case FLAG_VERSION:
printf("cmus " VERSION "\nCopyright 2004-2006 Timo Hirvonen\n");
return 0;
case FLAG_SERVER:
server = arg;
break;
case FLAG_VOLUME:
volume = arg;
nr_cmds++;
break;
case FLAG_SEEK:
seek = arg;
nr_cmds++;
break;
case FLAG_FILE:
play_file = arg;
nr_cmds++;
break;
case FLAG_LIBRARY:
context = 'l';
break;
case FLAG_PLAYLIST:
context = 'p';
break;
case FLAG_QUEUE:
context = 'q';
break;
case FLAG_PLAY:
case FLAG_PAUSE:
case FLAG_STOP:
case FLAG_NEXT:
case FLAG_PREV:
case FLAG_REPEAT:
case FLAG_SHUFFLE:
case FLAG_CLEAR:
nr_cmds++;
break;
case FLAG_RAW:
raw_args = 1;
break;
}
}
if (nr_cmds && raw_args)
die("don't mix raw and cooked stuff\n");
if (server == NULL) {
const char *config_dir = getenv("CMUS_HOME");
if (config_dir && config_dir[0]) {
snprintf(server_buf, sizeof(server_buf), "%s/socket", config_dir);
} else {
const char *home = getenv("HOME");
if (!home)
die("error: environment variable HOME not set\n");
snprintf(server_buf, sizeof(server_buf), "%s/.cmus/socket", home);
}
server = server_buf;
}
remote_connect(server);
if (raw_args) {
while (*argv)
send_cmd("%s\n", *argv++);
return 0;
}
if (nr_cmds == 0 && argv[0] == NULL) {
char line[512];
while (fgets(line, sizeof(line), stdin))
write_line(line);
return 0;
}
if (flags[FLAG_CLEAR])
send_cmd("clear -%c\n", context);
for (i = 0; argv[i]; i++) {
char *filename = file_url_absolute(argv[i]);
send_cmd("add -%c %s\n", context, filename);
free(filename);
}
if (flags[FLAG_REPEAT])
send_cmd("toggle repeat\n");
if (flags[FLAG_SHUFFLE])
send_cmd("toggle shuffle\n");
if (flags[FLAG_STOP])
send_cmd("player-stop\n");
if (flags[FLAG_NEXT])
send_cmd("player-next\n");
if (flags[FLAG_PREV])
send_cmd("player-prev\n");
if (flags[FLAG_PLAY])
send_cmd("player-play\n");
if (flags[FLAG_PAUSE])
send_cmd("player-pause\n");
if (flags[FLAG_FILE])
send_cmd("player-play %s\n", file_url_absolute(play_file));
if (volume)
send_cmd("vol %s\n", volume);
if (seek)
send_cmd("seek %s\n", seek);
return 0;
}
|