1. 02 Nov, 2008 1 commit
    • Max Kellermann's avatar
      renamed outputBuffer.[ch] to pipe.[ch] · 767b4c95
      Max Kellermann authored
      No CamelCase in the file name.  The output_buffer struct is going to
      be renamed to music_pipe.  There are so many buffer levels in MPD, and
      calling this one "output buffer" is wrong, because it's not the last
      buffer before the music reaches the output devices.
      767b4c95
  2. 08 Oct, 2008 1 commit
  3. 26 Aug, 2008 9 commits
  4. 02 Jun, 2008 1 commit
  5. 01 Jun, 2008 1 commit
  6. 13 Apr, 2008 4 commits
  7. 12 Apr, 2008 15 commits
    • Max Kellermann's avatar
      clean up CPP includes · c89b358c
      Max Kellermann authored
      Try to only include headers which are really needed.  We should
      particularly check all "headers including other headers".  The
      long-term goal is to have a manageable, small API for plugins
      (decoders, output) without so many mpd internals cluttering the
      namespace.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7319 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      c89b358c
    • Max Kellermann's avatar
      added output_buffer_free() · f2cdac6e
      Max Kellermann authored
      To do proper cleanup before exiting, we have to provide a destructor
      for OutputBuffer.  One day, valgrind will not complain about memory
      leaks!
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7315 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      f2cdac6e
    • Max Kellermann's avatar
      remove buffered_chunks, use cb->size · e20b71ed
      Max Kellermann authored
      Second patch to make OutputBuffer self-contained: since OutputBuffer
      now knows its own size, we do not need the global variable
      "buffered_chunks" anymore.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7311 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      e20b71ed
    • Max Kellermann's avatar
      pass buffered_chunks to initOutputBuffer() · e9e557c8
      Max Kellermann authored
      Try to make OutputBuffer self-contained, without depending on a global
      variable.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7310 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      e9e557c8
    • Max Kellermann's avatar
      make playerData_pd static · b2819e12
      Max Kellermann authored
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7309 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      b2819e12
    • Max Kellermann's avatar
      allocate playerData_pd from heap instead of shm · 288a7087
      Max Kellermann authored
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7308 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      288a7087
    • Max Kellermann's avatar
      don't allocate pd.auddioDeviceStates from shm · 70ba5251
      Max Kellermann authored
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7306 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      70ba5251
    • Max Kellermann's avatar
      let initOutputBuffer() allocate memory · 78f60607
      Max Kellermann authored
      This is the first patch in a series which removes the shared memory,
      and moves all the playerData objects into the normal libc heap.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7304 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      78f60607
    • Max Kellermann's avatar
      use the notify API in the player · b7ac3fab
      Max Kellermann authored
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7282 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      b7ac3fab
    • Max Kellermann's avatar
      use the notify API in the decoder · 701cf688
      Max Kellermann authored
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7281 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      701cf688
    • Max Kellermann's avatar
      added struct OutputBufferChunk · 74910df0
      Max Kellermann authored
      To make access to OutputBuffer easier, move everything which belongs
      to a chunk into its own structure, namely OutputBufferChunk.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7269 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      74910df0
    • Eric Wong's avatar
      Start using song pointers in core data structures · efa46423
      Eric Wong authored
      Instead of copying URLs everywhere...
      
      [merged r7186 from branches/ew]
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7244 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      efa46423
    • Eric Wong's avatar
      Drop metadata updates from HTTP for now (input HTTP, and shout) · 45ebb851
      Eric Wong authored
      It is way more complicated than it should be; and
      locking it for thread-safety is too difficult.
      
      [merged r7183 from branches/ew]
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7241 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      45ebb851
    • Eric Wong's avatar
      Initial cut of fork() => pthreads() for decoder and player · 9cf66d0e
      Eric Wong authored
      I initially started to do a heavy rewrite that changed the way processes
      communicated, but that was too much to do at once.  So this change only
      focuses on replacing the player and decode processes with threads and
      using condition variables instead of polling in loops; so the changeset
      itself is quiet small.
      
      * The shared output buffer variables will still need locking
      to guard against race conditions.  So in this effect, we're probably
      just as buggy as before.  The reduced context-switching overhead of
      using threads instead of processes may even make bugs show up more or
      less often...
      
      * Basic functionality appears to be working for playing local (and NFS)
      audio, including:
      play, pause, stop, seek, previous, next, and main playlist editing
      
      * I haven't tested HTTP streams yet, they should work.
      
      * I've only tested ALSA and Icecast.  ALSA works fine, Icecast
      metadata seems to get screwy at times and breaks song
      advancement in the playlist at times.
      
      * state file loading works, too (after some last-minute hacks with
      non-blocking wakeup functions)
      
      * The non-blocking (*_nb) variants of the task management functions are
      probably overused.  They're more lenient and easier to use because
      much of our code is still based on our previous polling-based system.
      
      * It currently segfaults on exit.  I haven't paid much attention
      to the exit/signal-handling routines other than ensuring it
      compiles.  At least the state file seems to work.  We don't
      do any cleanups of the threads on exit, yet.
      
      * Update is still done in a child process and not in a thread.
      To do this in a thread, we'll need to ensure it does proper
      locking and communication with the main thread; but should
      require less memory in the end because we'll be updating
      the database "in-place" rather than updating a copy and
      then bulk-loading when done.
      
      * We're more sensitive to bugs in 3rd party libraries now.
      My plan is to eventually use a master process which forks()
      and restarts the child when it dies:
      locking and communication with the main thread; but should
      require less memory in the end because we'll be updating
      the database "in-place" rather than updating a copy and
      then bulk-loading when done.
      
      * We're more sensitive to bugs in 3rd party libraries now.
      My plan is to eventually use a master process which forks()
      and restarts the child when it dies:
      
      master - just does waitpid() + fork() in a loop
      \- main thread
      \- decoder thread
      \- player thread
      
      At the beginning of every song, the main thread will set
      a dirty flag and update the state file.  This way, if we
      encounter a song that triggers a segfault killing the
      main thread, the master will start the replacement main
      on the next song.
      
      * The main thread still wakes up every second on select()
      to check for signals; which affects power management.
      
      [merged r7138 from branches/ew]
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7240 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      9cf66d0e
    • Max Kellermann's avatar
      unsigned integers in playerData.[ch] · 1b6cf299
      Max Kellermann authored
      The number of buffered chunks can obviously not become negative.  The
      "buffered_before_play<0" therefore cannot be useful, so let's remove
      it, too.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7232 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      1b6cf299
  8. 26 Mar, 2008 1 commit
  9. 03 Jan, 2008 1 commit
    • Eric Wong's avatar
      Cleanup #includes of standard system headers and put them in one place · cb8f1af3
      Eric Wong authored
      This will make refactoring features easier, especially now that
      pthreads support and larger refactorings are on the horizon.
      
      Hopefully, this will make porting to other platforms (even
      non-UNIX-like ones for masochists) easier, too.
      
      os_compat.h will house all the #includes for system headers
      considered to be the "core" of MPD.  Headers for optional
      features will be left to individual source files.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7130 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      cb8f1af3
  10. 28 Dec, 2007 1 commit
    • Eric Wong's avatar
      Merge branches/ew r7104 · b79f6b88
      Eric Wong authored
      thread-safety work in preparation for rewrite to use pthreads
      
      Expect no regressions against trunk (r7078), possibly minor
      performance improvements in update (due to fewer heap
      allocations), but increased stack usage.
      
      Applied the following patches:
      
      * maxpath_str for reentrancy (temporary fix, reverted)
      * path: start working on thread-safe variants of these methods
      * Re-entrancy work on path/character-set conversions
      * directory.c: exploreDirectory() use reentrant functions here
      * directory/update: more use of reentrant functions + cleanups
      * string_toupper: a strdup-less version of strDupToUpper
      * get_song_url: a static-variable-free version of getSongUrl()
      * Use reentrant/thread-safe get_song_url everywhere
      * replace rmp2amp with the reentrant version, rmp2amp_r
      * Get rid of the non-reentrant/non-thread-safe rpp2app, too.
      * buffer2array: assert strdup() returns a usable value in unit tests
      * replace utf8ToFsCharset and fsCharsetToUtf8 with thread-safe variants
      * fix storing playlists w/o absolute paths
      * parent_path(), a reentrant version of parentPath()
      * parentPath => parent_path for reentrancy and thread-safety
      * allow "make test" to automatically run embedded unit tests
      * remove convStrDup() and maxpath_str()
      * use MPD_PATH_MAX everywhere instead of MAXPATHLEN
      * path: get rid of appendSlash, pfx_path and just use pfx_dir
      * get_song_url: fix the ability to play songs in the top-level music_directory
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7106 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      b79f6b88
  11. 04 Jun, 2007 2 commits
  12. 01 Jun, 2007 1 commit
  13. 27 May, 2007 1 commit
  14. 26 May, 2007 1 commit