aboutsummaryrefslogtreecommitdiffstats
path: root/src/dirvec.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-11-12include config.h in all sourcesMax Kellermann1-0/+1
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
2009-03-13all: Update copyright header.Avuton Olrich1-0/+19
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-01-15dirvec, songvec: sort using g_utf8_collate()Max Kellermann1-1/+1
Path names in the directory and song structs are always encoded in UTF-8. Don't use strcmp(), it cannot handle UTF-8 characters properly. Use GLib's UTF-8 aware g_utf8_collate() function for that.
2009-01-03songvec, dirvec: use GLib instead of utils.hMax Kellermann1-6/+5
2008-12-29removed os_compat.hMax Kellermann1-1/+3
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
2008-12-28dirvec: migrate from pthread to glib threadsThomas Jansen1-17/+29
2008-12-28Include <pthread.h> where it is necessary onlyThomas Jansen1-0/+1
2008-10-26dirvec: fixed GCC shadow warningMax Kellermann1-4/+4
On some systems, string.h declares basename(). This emits a shadow warning. Change the variable name.
2008-10-21update: fix multiple deletes from *vec iteratorsEric Wong1-1/+5
{song,dir}vec_for_each each failed to gracefully handle deleted files when iterating through. While we were thread-safe, we were not safe within the calling thread. If a callback we passed caused sv->nr to shring, our index would still increment; causing files to stay in the database. A way to test this is to remove 10 or so contiguous songs from a >10 song directory.
2008-10-21dirvec: introduce locking for all iteratorsEric Wong1-6/+25
Like the songvec nr_lock, only one lock is used for all traversals since they're rarely changed. This only projects traversals, but not the individual structures themselves.
2008-10-21{dir,song}vec: these structs are constEric Wong1-1/+1
We definitely don't modify them here.
2008-10-21dirvec: add dirvec_for_each iteratorEric Wong1-0/+16
This will make it easier to introduce locking
2008-10-20path: replaced mpd_basename() with g_path_get_basename()Max Kellermann1-2/+8
GLib's g_path_get_basename() is much more reliable than mpd_basename(). The latter could be tricked into an assertion failure.
2008-10-14{dir,song}vec: fix off-by-one errors in {dir,song}vec_deleteEric Wong1-3/+3
Found by Valgrind while looking for another bug... Hmm.. I should really just make this code generic since they're duplicated...
2008-10-13dirvec: dirvec_find() compares basenameMax Kellermann1-1/+4
It is invalid to pass a path with the wrong dirname to dirvec_find(). To be able to find a subdirectory only by its basename, compare only the basename of both paths.
2008-10-09dirvec: constant pointers in dirvec_find()Max Kellermann1-1/+1
dirvec_find() does not modify the object, thus it should get a const pointer.
2008-10-08directory: eliminate CamelCaseMax Kellermann1-1/+1
CamelCase is ugly, rename the functions.
2008-10-08don't include os_compat.hMax Kellermann1-1/+2
When there are standardized headers, use these instead of the bloated os_compat.h.
2008-10-08directory: converted typedef Directory to struct directoryMax Kellermann1-8/+9
The struct can be forward-declared by other headers, which relaxes the header dependencies.
2008-10-08dirvec: moved code to dirvec.cMax Kellermann1-10/+6
Having all functions as static (non-inline) functions generates GCC warnings, and duplicates binary code across several object files. Most of dirvec's methods are too complex for becoming inline functions. Move them all to dirvec.c and publish the prototypes in dirvec.h.
2008-09-29directory: replace DirectoryList with dirvecEric Wong1-0/+73
Small memory reduction compared to songvec since most users have much fewer dirs than songs, but still nice to have.