configure.ac: Don't allow UNIX IPC to be configured for a native Windows build.
[mpd-mk.git] / src / ls.c
blob94c763d13c3a2c194f28de229dfefcdc65aca9cd
1 /*
2 * Copyright (C) 2003-2010 The Music Player Daemon Project
3 * http://www.musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "config.h"
21 #include "ls.h"
22 #include "uri.h"
23 #include "client.h"
25 #include <assert.h>
26 #include <string.h>
29 /**
30 * file:// is not included in remoteUrlPrefixes, the connection method
31 * is detected at runtime and displayed as a urlhandler if the client is
32 * connected by IPC socket.
34 static const char *remoteUrlPrefixes[] = {
35 #ifdef ENABLE_CURL
36 "http://",
37 #endif
38 #ifdef ENABLE_MMS
39 "mms://",
40 "mmsh://",
41 "mmst://",
42 "mmsu://",
43 #endif
44 NULL
47 void print_supported_uri_schemes_to_fp(FILE *fp)
49 const char **prefixes = remoteUrlPrefixes;
51 #ifdef HAVE_UN
52 fprintf(fp, "file:// ");
53 #endif
54 while (*prefixes) {
55 fprintf(fp, "%s ", *prefixes);
56 prefixes++;
58 fprintf(fp,"\n");
61 void print_supported_uri_schemes(struct client *client)
63 const char **prefixes = remoteUrlPrefixes;
65 while (*prefixes) {
66 client_printf(client, "handler: %s\n", *prefixes);
67 prefixes++;
71 bool uri_supported_scheme(const char *uri)
73 const char **urlPrefixes = remoteUrlPrefixes;
75 assert(uri_has_scheme(uri));
77 while (*urlPrefixes) {
78 if (g_str_has_prefix(uri, *urlPrefixes))
79 return true;
80 urlPrefixes++;
83 return false;