aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* mapper: fall back to XDG music directoryMax Kellermann2009-01-011-1/+11
| | | | | | If no music_directory is configured, fall back to the XDG music directory, determined by g_get_user_special_dir(G_USER_DIRECTORY_MUSIC).
* removed the signal_check librariesMax Kellermann2009-01-014-87/+0
| | | | | | Nobody is using the signal_check library anymore. This patch also removes the SIGUSR1 handler.
* sig_handlers: use event_pipe for delivering SIGHUPMax Kellermann2009-01-013-13/+17
| | | | | The signal_check library went out of order when we started using the GLib main loop. Convert the SIGHUP handler to use event_pipe instead.
* event_pipe: added event_pipe_emit_fast()Max Kellermann2009-01-012-0/+15
| | | | | | event_pipe_emit_fast() is aimed for use in signal handlers: it doesn't lock the mutex, and doesn't log on error. That makes it potentially lossy, but for its intended use, that does not matter.
* mixer: renamed mix_* options to mixer_*Max Kellermann2009-01-013-6/+6
| | | | There is no reason to use the shortcut "mix" instead of "mixer".
* cmdline: exit after --versionMax Kellermann2009-01-011-0/+3
| | | | Don't start the daemon when MPD is called with "--version".
* event_pipe: added pipe_event enum and callbacksMax Kellermann2009-01-018-27/+114
| | | | | | | | | Make the event_pipe (formerly main_notify) send/receive a set of events, with a callback for each one. The default event PIPE_EVENT_SIGNAL does not have a callback. It is still there for waking up the main thread, when it is waiting for the player thread.
* event_pipe: renamed functions from main_notify_* to event_pipe_*Max Kellermann2009-01-018-27/+27
| | | | Continuing the previous patch.
* main_notify: renamed source to event_pipe.cMax Kellermann2009-01-0110-12/+12
| | | | | | We are going to migrate away from the concept of notifying the main thread. There should be events sent to it instead. This patch starts a series to implement that.
* gcc.h: removed all duplicate macrosMax Kellermann2009-01-011-16/+0
| | | | Removed all macros which are already provided by GLib.
* decoder plugins: don't include gcc.hMax Kellermann2009-01-015-12/+17
| | | | Use GLib's G_GNUC_UNUSED instead of gcc.h's mpd_unused.
* output plugins: don't include gcc.hMax Kellermann2009-01-019-24/+29
| | | | Use GLib's G_GNUC_UNUSED instead of gcc.h's mpd_unused.
* null: don't include gcc.hMax Kellermann2009-01-011-4/+7
| | | | Use GLib's G_GNUC_UNUSED instead of macros from gcc.h.
* Moving mixers to audio outputsViliam Mateicka2008-12-3113-433/+649
|
* exporting functionsViliam Mateicka2008-12-314-3/+9
|
* client: run client_manager_expire() in an idle eventMax Kellermann2008-12-313-3/+22
| | | | | | With the GLib main loop, the client manager can install its own event in case a client is expired. No need for main.c to call client_manager_expire() manually.
* ls.c: include config.h to have HAVE_CURL hereLaszlo Ashin2008-12-311-0/+1
|
* main_notify: removed lock()/unlock()Max Kellermann2008-12-312-14/+0
| | | | These functions are not used anymore since we use the GLib main loop.
* client: remember GLib source idMax Kellermann2008-12-311-9/+14
| | | | | Remove the event source from the GMainLoop object in client_set_expired().
* sig_handlers: call g_main_loop_quit() in SIGTERM handlerMax Kellermann2008-12-301-8/+21
| | | | | We don't need to use asynchronous events to quit MPD, we can just call g_main_loop_quit() inside the handler.
* main: export the main_loop variableMax Kellermann2008-12-304-2/+29
| | | | | Other libraries may need to access the main_loop reference, to add or remove events, or to call g_main_loop_quit().
* sig_handlers: removed SIGCHLDMax Kellermann2008-12-301-18/+0
| | | | We have no child processes anymore. Remove the SIGCHLD handler.
* sig_handlers: don't reload database on SIGHUPMax Kellermann2008-12-301-7/+0
| | | | | | The SIGHUP handler was used by the update process to make the main process re-read the database. We don't need this anymore, since the update takes place in a thread now.
* sig_handlers: removed unused functionsMax Kellermann2008-12-304-69/+0
| | | | | Most of these functions were obsoleted when we switched to threaded MPD.
* main: use the GLib main loopMax Kellermann2008-12-3012-567/+173
| | | | | | | This is a rather huge patch, which unfortunately cannot be splitted. Instead of using our custom ioops.h library, convert everything to use the GLib main loop.
* main_notify: make the read side of the pipe blockingMax Kellermann2008-12-303-27/+6
| | | | | | Currently, both sides of the pipe are blocking, although we do not need blocking read(). Convert it back to blocking. Eliminate the select() from wait_main_task().
* main_notify: removed notify object, use only pipeMax Kellermann2008-12-301-34/+17
| | | | | | | | | | | | | | | To wake up the main thread, don't attempt to use a GCond/GMutex (struct notify). This kind of mixed wakeup method has known race conditions. The idea behind this patch is: for wakeups which happen while the main thread is sleeping, use only a pipe. For wakeups which happen while the main thread is waiting for the player thread, we can later change to GCond. For now, accept the overhead of using a pipe for the latter. In the long run, the main thread will never wait for the player thread, but will do everything asynchronously.
* listen: don't make the server socket non-blockingMax Kellermann2008-12-301-7/+1
| | | | | There is no point in making the server socket non-blocking. We call accept() only after select() has notified us about a new connection.
* utils: port set_nonblocking() to WIN32Max Kellermann2008-12-301-0/+6
| | | | | | The new WIN32 version of set_nonblocking() can only deal with sockets, i.e. it will fail on main_notify.c. On WIN32, we have to reimplement main_notify.c anyway, so this is not a big deal.
* command: don't allow adding local files on WIN32Max Kellermann2008-12-303-0/+8
| | | | | | There are no unix sockets on WIN32, and therefore no authentication. WIN32 might have similar capabilities, but until we implement them, disable that MPD feature.
* utils: implement my_usleep() with Sleep() on WIN32Max Kellermann2008-12-301-0/+8
| | | | Sleep() has only millisecond granularity, but good enough for now.
* listen: include winsock headers on WIN32Max Kellermann2008-12-301-0/+6
| | | | | On Windows, socket declarations reside in winsock.h and ws2tcpip.h. The POSIX headers are not available.
* bonjour: fixed "unused parameter" warningsMax Kellermann2008-12-301-7/+13
| | | | Add G_GNUC_UNUSED attributes.
* zeroconf: eliminated strlen() usage from initZeroconf()Max Kellermann2008-12-301-3/+1
| | | | | To test if a string is empty, we can just see if the first byte is 0. No need to include string.h for strlen() here.
* zeroconf: moved code to zeroconf-avahi.c and zeroconf-bonjour.cMax Kellermann2008-12-305-556/+647
| | | | | Moved implementation specific code to their own sources, internal declarations in zeroconf-internal.h.
* zeroconf: fail if avahi service name is invalidMax Kellermann2008-12-301-8/+4
| | | | | If the configured avahi service name is invalid, abort MPD. Don't fall back to the default service name.
* playlist: use GLib's random number generatorMax Kellermann2008-12-301-7/+10
| | | | srandom() and random() are not portable. Use GLib's implementation.
* daemon: simplified daemonize_close_stdin()Max Kellermann2008-12-301-16/+6
| | | | Don't bother to call fstat() or isatty() on STDIN_FILENO.
* listen: moved redirect_stdin() to daemon.cMax Kellermann2008-12-304-29/+34
| | | | | redirect_stdin() is a daemonization function, and disconnecting from the standard input is always a good idea for MPD.
* main: moved daemonize() to daemon.cMax Kellermann2008-12-304-59/+116
|
* listen: eliminated freeAllListenSockets()Max Kellermann2008-12-302-5/+0
| | | | | Merged freeAllListenSockets() into closeAllListenSockets(), because this is its only caller.
* print supported decoders in --versionViliam Mateicka2008-12-303-0/+19
|
* main: disable non-portable code on WIN32Max Kellermann2008-12-291-0/+14
| | | | Disable changeToUser(), daemonize(), killFromPidFile().
* utils: implement parsePath() with g_strdup() on WIN32Max Kellermann2008-12-291-2/+10
| | | | | | On WIN32, parsePath() now simply duplicates the input string. There is currently nothing special we can do here. The old code was not portable on WIN32.
* utils: use g_get_home_dir()Max Kellermann2008-12-291-6/+4
| | | | | Use g_get_home_dir() to get the home directory of the current user. This will be portable to win32.
* utils: make variables more local in parsePath()Max Kellermann2008-12-291-16/+22
| | | | Declare variables where they are really used.
* client: include winsock headers on WIN32Max Kellermann2008-12-292-3/+9
| | | | | On Windows, socket declarations reside in winsock.h and ws2tcpip.h. The POSIX headers sys/socket.h etc. are not available.
* main: use g_setenv() instead of setenv()Max Kellermann2008-12-291-42/+1
| | | | Removed the fallback setenv() implementation for solaris.
* log: removed unused logging wrappersMax Kellermann2008-12-292-8/+0
| | | | Removed GLib logging wrappers which are not used anymore.
* main: use GLib loggingMax Kellermann2008-12-291-33/+34
|