aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-05song: replace printSong* with song_print_*Eric Wong5-24/+23
This make argument order more consistent for iterators. Additionally, these now return ssize_t results for error checking.
2008-10-05wavpack: remove C99 initializersEric Wong1-12/+16
More power to those who can't afford newer computers capable of installing/building/running newer toolchains.
2008-10-05dbUtils: remove C99 initializerEric Wong1-3/+2
Upgrading a toolchain is still a nasty operation and they're never easy to build, so don't force people to upgrade from their old compilers (especially since some people are still stuck with Linux 2.4 and gcc 2.95).
2008-10-05Assert if we don't have song or song->url setEric Wong2-4/+10
song objects cannot exist without a path or URL
2008-10-05autotools: tidy up make distEric Wong2-144/+2
* Add missing headers in Makefile.am * remove mp4ff.dsp (Win32 crap) * Add scripts, m4, bs, autogen.sh to allow for hotfixes by the SCM-challenged. (downloading the source via git is NOT a lightweight operation for everybody).
2008-10-05song: stop storing song_typeEric Wong5-29/+22
We already know if a song is a URL or not based on whether it has parentDir defined or not. Hopefully one day in the future we can drop HTTP support from MPD entirely when an HTTP filesystem comes along and we can access streams via open(2).
2008-10-05song: use flex arrays to store song->urlEric Wong3-19/+24
Reduce the number of allocations we make, so there's less pressure on the allocator and less overhead to keep track of the allocations in.
2008-10-05song: converted "type" to enumMax Kellermann2-5/+8
Having an enum type is much nicer than an anonymous integer plus CPP macros. Note that the old code didn't save any space by declaring the variable 8 bit, due to padding.
2008-10-05song: get rid of newNullSong()Eric Wong1-15/+4
It didn't save us any lines of code nor did it do anything useful since we would overwrite everything anyways.
2008-10-05song: call freeJustSong if newSong failsEric Wong1-1/+1
There's no reason to scan the playlist for a song we just allocated.
2008-10-05playlist.h: fix build for folks that don't -DMPD_PATH_MAX=...Eric Wong1-0/+1
Thanks (again) to unK for the report :x
2008-10-05decode: fix build for folks that don't -DMPD_PATH_MAX=...Eric Wong1-0/+1
Thanks to unK for the report
2008-10-05directory: fix writeDirectoryDBEric Wong1-2/+4
Wow, I must have been halfway asleep when I did that...
2008-10-05command: fix return statusEric Wong1-16/+6
This got broken when listHandlerFunc was removed. Since we no longer need it and it's confusing, remove processCommandInternal and just use process_command.
2008-10-04playlist: fix "currentsong" at end-of-playlistEric Wong1-4/+11
The current song information could get cleared if we got to the end of the playlist and mpd is not in repeat mode. This also prevents "currentsong" from returning information if mpd is not playing.
2008-10-04directory: reuse existing directory if found on updateEric Wong1-4/+9
Instead of allocating a new one, just reuse an existing one if one is found when rereading the DB. This is a small makes the previous commit work on subdirectories of the root music directory. [1] "song: better handling of existing songs when rereading DB"
2008-10-04song: better handling of existing songs when rereading DBEric Wong1-4/+13
Don't reallocate existing tags if they haven't changed. This isn't used as often anymore, but we still take HUP signals to reread the DB if other processes changed it.
2008-10-03tag: merge clearMpdTag into tag_freeEric Wong1-12/+2
avoid some redundant clearing logic as well, since the tag is getting freed.
2008-10-03song: start avoiding race in updateSongInfoEric Wong1-9/+12
This is still not SMP-safe yet, as it needs at least a barrier before calling tag_free(old_tag).
2008-10-03command: get rid of specialized list handlersEric Wong1-106/+67
commands should really not behave differently if they're issued inside a command list or not; so stop having special handler functions to deal with them. "update" was the only command that used this functionality and I changed that in the last commit to serialize access.
2008-10-03directory: simplify list update handling logicEric Wong3-100/+71
Now the "update" command can be issued multiple times regardless of whether the client is in list mode or not. We serialize the update tasks to prevent updates from trampling over each other and will spawn another update task once the current one is finished updating and reaped. Right now we cap the queue size to 32 which is probably enough (I bet most people usually run update with no argument anyways); but we can make it grow/shrink dynamically if needed. There'll still be a hard-coded limit to prevent DoS attacks, though.
2008-10-03main_notify: define main_task so we can use it for assertionsEric Wong2-0/+7
It'll be easier to keep track of what code runs in what task/thread this way.
2008-10-03directory: streamline deletesEric Wong1-17/+15
Instead of relying on the shortname, just pass the song pointer to prevent redundant lookups during deletes.
2008-10-03song: start avoiding race in updateSongInfoEric Wong1-9/+12
This is still not SMP-safe yet, as it needs at least a barrier before calling tag_free(old_tag). Locks may be simpler to implement and the potential performance gain of avoiding locks may not be worth it on infrequently modified data structures...
2008-10-03playlist: small lines of code reductionEric Wong1-96/+47
Hopefully this makes the code feel less claustrophobic...
2008-10-02Revert "Start using song pointers in core data structures"Eric Wong8-49/+44
This actually opened us up to making lock dependencies more difficult than they needed to be now that we have threaded updates. We would always use the memory anyways, just in the stack instead of bss.
2008-09-29Switch to C99 types (retaining compat with old compilers)Eric Wong31-132/+150
Seeing the "mpd_" prefix _everywhere_ is mind-numbing as the mind needs to retrain itself to skip over the first 4 tokens of a type to get to its meaning. So avoid having extra characters on my terminal to make it easier to follow code at 2:30 am in the morning. Please report any new issues you may come across on Free toolchains. I realize how difficult it can be to build/maintain cross-compiling toolchains and I have no intention of forcing people to upgrade their toolchains to build mpd. Tested with gcc 2.95.4 and and gcc 4.3.1 on x86-32.
2008-09-29allow searching for albums with an empty tagEric Wong2-1/+25
tfing wrote: > I have quite some files with an empty album tag as they do not come > from a particular album. > > If I want to look for those files and browse them, this happens: > :: nc localhost 6600 > OK MPD 0.12.0 > find album "" > ACK [2@0] {find} too few arguments for "find" > > I'd like to be able to browse those files in a client like gmpc. > So these 2 items would have to be developed: > - list album should report that some files have an empty tag > - it should be possible to search for an empty tag with the find command Patch-by: Marc Pavot ref: http://musicpd.org/mantis/view.php?id=464
2008-09-29directory: remove redundant sanitizePathDupEric Wong1-15/+7
We already sanitize and duplicated our paths before calling updateInit() to get pre-pthread_create() error-checking along with heap allocation reduction because we don't have to redupe because our parent stack went away.
2008-09-29update: move path sanitation up the stack to avoid extra copiesEric Wong3-30/+58
Remove yet another use of our old malloc-happy linked list implementation and replace it with a simple array of strings. This also implements more eager error handling of invalid paths (still centralized in updateInit) so we can filter out bad paths before we spawn a thread. This also does its part to fix the "update" command inside list mode which lost its static variable in ada24f9a921ff95d874195acf253b5a9dd12213d (although it was broken and requires the fix in 769939b62f7557f8e7c483223d68a8b39af43e37, too).
2008-09-29command: don't clobber next list value when preparsingEric Wong1-3/+6
This only breaks "update" under list command mode and no other commands. This can be done more optimally without the extra heap allocation via xstrdup(); but is uncommon enough to not matter.
2008-09-29flac: removed FlacData.chunk_lengthMax Kellermann4-9/+3
chunk_length can be converted to a local variable, because it is always reset to 0 after it was used.
2008-09-29flac: merged flacSendChunk() into flac_common_write()Max Kellermann1-11/+6
Since flacSendChunk() is a trivial function and is only used in one location, move the code there. The advantage is that calling decoder_data() directly returns the decoder_command value, so we can eliminate one decoder_get_command() call. [ew: using the terser API in the main branch, it always eliminated the dc_intr()/dc_seek() call, but I agree that killing a camel, err.. camelCase function is a good thing]
2008-09-29flac: removed generic sample size supportMax Kellermann1-31/+27
Support for bit rates except 16 bits (and 8 bits on little endian) has always been broken. Since we added optimized functions for 8, 16, 24/32 bits, we can remove the generic flac_convert() function. Instead of removing it, convert it to a wrapper function for flac_convert_*().
2008-09-29flac: added special functions for 8 and 32 bitMax Kellermann1-0/+37
Same optimization for 8 and 32 bit files, like the previous patch for 16 bit. Along the way, this patch adds 24 bit FLAC support!
2008-09-29flac: added optimized converter for 16 bitMax Kellermann1-0/+17
flac_convert_16() runs a lot faster than the generic (and quite buggy) function flac_convert(). flac_convert_16() is only used for non-stereo files, since there is already flac_convert_stereo16().
2008-09-29flac: use signed integers in flac_convert_stereo16()Max Kellermann1-6/+4
By mistake, I casted the sample value to uint16_t, which is wrong. This patch simplifies the code by using a int16_t pointer instead of casting to int16_t* every time.
2008-09-29flac: moved code from flacWrite() to _flac_common.cMax Kellermann4-120/+90
There is still a lot of duplicated code in flac_plugin.c and oggflac_plugin.c. Move code from flac_plugin.c to _flac_common.c, and use the new function flac_common_write() also in oggflac_plugin.c, porting lots of optimizations over to it.
2008-09-29flac: assume the buffer is empty in flacWrite() IIMax Kellermann1-6/+2
The previous patch on this topic was incomplete: it still added data->chunk_length when calling flac_convert(). Remove this, too.
2008-09-29pcm_utils: added pcm_range()Max Kellermann1-10/+18
Make the code more readable by moving the range checks to pcm_range(). gcc does quite a good job at optimizing it: the resulting binary is exactly the same, although it contains a parametrized shift instead of hard-coded boundaries.
2008-09-29pcm_utils: added inline function pcm_dither()Max Kellermann1-8/+10
Merge some code into an inline function, so we can optimize it later only once.
2008-09-28clean up updateInit calling and error handlingEric Wong3-13/+22
Move error reporting to command.c so directory.c does not deal with client error handling any more.
2008-09-28directory: isRootDirectory() is a one-linerEric Wong1-4/+1
Improving the signal to noise ratio...
2008-09-28directory: writeDirectoryInfo propagates errorsEric Wong1-28/+19
If a write failed, it's a good sign subsequent writes will fail, too, so propgate errors all the way up the stack.
2008-09-28directory: make it clear that DIRECTORY_MTIME is deprecatedEric Wong1-1/+1
A long time ago in an mpd far away...
2008-09-28directory: remove "Mp3" referencesEric Wong3-22/+22
MPD has supported more audio formats than just MP3 for over five years...
2008-09-28playlist: deleteASongFromPlaylist takes a const Song *Eric Wong2-2/+2
We don't change the song pointer there, either.
2008-09-28songvec: songvec_delete takes a const Song pointerEric Wong2-2/+2
We don't modify the Song when we delete it
2008-09-28directory: remove shortname arguments everywhereEric Wong1-79/+40
It was a huge confusing mess of parameter passing around and around. Add a few extra assertions to ensure we're handling parent/child relationships properly.
2008-09-28path: add mpd_basename() functionEric Wong2-0/+20
This is like basename(3) but with predictable semantics independent of C library or build options used. This is also much more strict and does not account for trailing slashes (mpd should never deal with trailing slashes on internal functions).