aboutsummaryrefslogtreecommitdiff
path: root/src/directory.c
Commit message (Collapse)AuthorAge
* directory: require db lock for _{add,remove}_song()Max Kellermann2012-06-13
|
* Merge branch 'v0.16.x'Max Kellermann2012-04-05
|\ | | | | | | | | | | Conflicts: src/output/osx_plugin.c src/text_input_stream.c
| * directory: use strrchr() instead of g_basename()Max Kellermann2012-04-04
| | | | | | | | g_basename() is deprecated in GLib 2.32.
* | directory: fix reverse order of child directoriestreblid2012-02-13
| | | | | | | | | | Directories are loaded in reverse order when MPD starts. Only fixed when doing a rescan.
* | playlist_vector: use the list_head libraryMax Kellermann2012-02-12
| |
* | directory: require the caller to lock the db_mutexMax Kellermann2012-02-02
| | | | | | | | | | Reduce the number of lock/unlock cycles, and make database handling safer.
* | directory: add new objects to the end of the linked listMax Kellermann2012-02-02
| | | | | | | | | | This was the cause of the reversed ordering when loading a database file.
* | directory: fix deep path lookupMax Kellermann2012-01-29
| | | | | | | | | | This commit fixes a major regression in directory_lookup_directory(), which broke the deep lookup of directories.
* | directory: mark unused parameterMax Kellermann2012-01-24
| |
* | directory: replace songvec with doubly linked listMax Kellermann2012-01-24
| |
* | directory: add function directory_get_song(), ...Max Kellermann2012-01-24
| | | | | | | | Wrap songvec_find() and other songvec methods.
* | directory: replace dirvec with doubly linked listMax Kellermann2012-01-24
| | | | | | | | | | Random access is not needed, and a linked list is easier to manage: we don't need to (re-)allocate the pointer array.
* | directory: simplify constructors and clarify API documentationMax Kellermann2012-01-24
| | | | | | | | | | Pass only the "name" to a directory, instead of the full (relative) path.
* | db_print: print absolute URI of playlist entriesMax Kellermann2011-10-08
| | | | | | | | | | | | | | The protocol mandates that playlist URIs are absolute (i.e. full URI relative to the music directory, not relative to the parent directory). This adds the parameter "directory" to the "playlist" visitor method.
* | db_visitor: add method playlist()Max Kellermann2011-09-13
| |
* | db_plugin: add method visit()Max Kellermann2011-09-13
| |
* | directory: don't visit "self" in _walk()Max Kellermann2011-09-13
| | | | | | | | Let the caller decide if the current directory should be visited.
* | directory: don't require a "directory" visitorMax Kellermann2011-09-13
| | | | | | | | | | .. to recurse. A visitor may not have one, but still be interested in a recursive search.
* | database: add struct db_visitorMax Kellermann2011-09-13
| | | | | | | | Use this struct for db_walk().
* | copyright year 2011Max Kellermann2011-01-29
|/
* directory: free playlist vector in directory_free()Max Kellermann2010-07-25
|
* update: store playlist files in databaseMax Kellermann2010-07-21
| | | | | Don't open the music directory for each "lsinfo" call. Get the list of playlist files from the memory database.
* Update copyright notices.Avuton Olrich2009-12-31
|
* include config.h in all sourcesMax Kellermann2009-11-12
| | | | | | 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.
* directory: free empty directories after removing them (memleak)Max Kellermann2009-08-14
| | | | | dirvec_delete() does not free the object, we have to call directory_free() afterwards.
* directory: added directory_lookup_song()Max Kellermann2009-04-01
| | | | Moved code from db_get_song().
* directory: renamed directory_get_directory()Max Kellermann2009-04-01
| | | | | Renamed directory_get_directory() to directory_lookup_directory(). Added API documentation.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | 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.
* use g_free() instead of free()Max Kellermann2009-01-25
| | | | | | On some platforms, g_free() must be used for memory allocated by GLib. This patch intends to correct a lot of occurrences, but is probably not complete.
* directory: use GLib instead of utils.hMax Kellermann2009-01-02
|
* directory: directory_free() frees childrenMax Kellermann2008-10-31
| | | | | directory_free() should free all of its children (subdirectories and songs). This way, db_finish() properly frees all allocated memory.
* path: replaced mpd_basename() with g_path_get_basename()Max Kellermann2008-10-20
| | | | | | GLib's g_path_get_basename() is much more reliable than mpd_basename(). The latter could be tricked into an assertion failure.
* directory: added directory_get_name()Max Kellermann2008-10-13
| | | | directory_get_name() returns the base name of the directory.
* directory: use mpd_sizeof_str_flex_array for path, tooEric Wong2008-10-13
| | | | This way we avoid unnecessary heap allocations.
* directory: added inline wrappers for accessing childrenMax Kellermann2008-10-09
| | | | | Some tiny utilities... wrappers like these may become helpful when we introduce locking.
* directory: moved dirvec struct declaration to dirvec.hMax Kellermann2008-10-09
| | | | | No idea why it was created in directory.h, but it should be in dirvec.h.
* diretory: moved code to directory_save.c, directory_print.cMax Kellermann2008-10-09
| | | | | | Remove clutter from directory.c. Everything which saves or loads to/from the hard disk goes to directory_save.c, and code which sends directory information to the client is moved into directory_print.c.
* directory: path must not be NULLMax Kellermann2008-10-08
| | | | | For the root directory, let's set path to an empty string. This saves a few checks.
* directory: eliminate CamelCaseMax Kellermann2008-10-08
| | | | CamelCase is ugly, rename the functions.
* database: renamed functions, "db_" prefix and no CamelCaseMax Kellermann2008-10-08
| | | | Yet another CamelCase removal patch.
* directory: moved code to database.cMax Kellermann2008-10-08
| | | | | | Taming the directory.c monster, part II: move the database management stuff to database. directory.c should only contain code which works on directory objects.
* directory: converted isRootDirectory() to an inline functionMax Kellermann2008-10-08
| | | | | The function isRootDirectory() is tiny and can be converted to an inline function. Don't allow name==NULL.
* song: removed CamelCaseMax Kellermann2008-10-08
| | | | CamelCase is ugly... rename all functions.
* song: converted typedef Song to struct songMax Kellermann2008-10-08
| | | | Again, a data type which can be forward-declared.
* directory: converted typedef Directory to struct directoryMax Kellermann2008-10-08
| | | | | The struct can be forward-declared by other headers, which relaxes the header dependencies.
* update: merged exploreDirectory() into updateDirectory()Max Kellermann2008-10-08
| | | | | | exploreDirectory() duplicates some code in updateDirectory(). Merge both functions, and use directory_is_empty() to determine whether update or explore mode should be used.
* directory: added directory_is_empty()Max Kellermann2008-10-08
| | | | | directory_is_empty() is a tiny inline function which determine if a directory has any child objects (sub directories or songs).
* directory: moved code to update.cMax Kellermann2008-10-08
| | | | | | The source directory.c mixes several libraries: directory object management, database management and database update, resulting in a 1000+ line monster. Move the whole database update code to update.c.
* directory: fix return value in removeDeletedFromDirectoryEric Wong2008-10-07
| | | | oops :x
* directory: serialize song deletes from playlist during updateEric Wong2008-10-07
| | | | | | | | | | | | | | | | This makes the update code thread-safe and doesn't penalize the playlist code by complicating it with complicated and error-prone locks (and the associated overhead, not everybody has a thread-implementation as good as NPTL). The update task blocks during the delete; but the update task is a slow task anyways so we can block w/o people caring too much. This was also our only freeSong call site, so remove that function. Note that deleting entire directories is not fully thread-safe, yet; as their traversals are not yet locked.