aboutsummaryrefslogtreecommitdiffstats
path: root/src/database.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-02-02directory: require the caller to lock the db_mutexMax Kellermann1-1/+3
Reduce the number of lock/unlock cycles, and make database handling safer.
2011-09-13db_plugin: add method visit()Max Kellermann1-18/+14
2011-09-13db_plugin: add method get_song()Max Kellermann1-2/+1
New db_get_song() implementation.
2011-09-13database: generate GError when database is disabledMax Kellermann1-5/+8
2011-09-13directory: don't visit "self" in _walk()Max Kellermann1-0/+4
Let the caller decide if the current directory should be visited.
2011-09-13database: add struct db_visitorMax Kellermann1-19/+15
Use this struct for db_walk().
2011-09-10db_plugin: introducing a plugin API for the song databaseMax Kellermann1-159/+40
First draft, not really pluggable currently - hard-coded to use the "simple" plugin, and calls several of its internal functions. The API is very simple currently, all searches are still performed over the root "directory" object. Future changes to the API will move those search implementations into the plugin, to allow more efficient implementations, or implementations that don't have the whole tree in memory all the time.
2011-09-10database: move code to db_save.cMax Kellermann1-128/+3
2011-09-09database: return GError on failureMax Kellermann1-17/+28
2011-07-18database: require X_OK on parent directory, not R_OKMax Kellermann1-1/+1
For accessing the child of a directory, one needs X_OK on the directory.
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-07-25database, ...: remove EINTR checks after stdio callsMax Kellermann1-4/+4
MPD doesn't have child processes anymore, and thus we're not expecting to receive SIGCHLD very often. Since hard disk access isn't interrupted by signals anyway, we don't need those excessive checks.
2010-07-21database: remove outdated commentMax Kellermann1-1/+0
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-11-12include config.h in all sourcesMax Kellermann1-1/+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-11-07database: I/O error handling in db_save()Max Kellermann1-1/+3
Check ferror() instead of the fprintf() return value.
2009-11-04database: rescan after metadata_to_use changeMax Kellermann1-0/+32
Store a list of supported tag items in the database. When loading a database which does not have a matching list, we must rescan in order to get the missing information.
2009-11-01song_save: load one song at a timeMax Kellermann1-1/+1
Changed songvec_load() to song_load(). Added start and end markers for each song. Removed the "key" line, it's redundant.
2009-11-01database: save database format versionMax Kellermann1-1/+17
2009-11-01database: use strcmp() instead of g_str_has_prefix()Max Kellermann1-1/+1
2009-11-01database: removed redundant music_root allocationMax Kellermann1-2/+0
The "music_root" global variable is allocated by db_init().
2009-11-01text_file: allocate line buffers dynamicallyMax Kellermann1-19/+19
Use a single GString buffer object in all functions loading the database. Enlarge it automatically for long lines. This eliminates the maximum line length for tag values. There is still an upper limit of 512 kB to prevent denial of service, but that's reasonable I guess.
2009-06-30database: fixed NULL pointer dereference after charset changeMax Kellermann1-4/+5
When the filesystem_charset is changed in mpd.conf, MPD should discard the old database. In this error branch, MPD did not fill the GError object properly, and logged a warning message instead, which caused a segmentation fault.
2009-04-01directory: added directory_lookup_song()Max Kellermann1-25/+1
Moved code from db_get_song().
2009-04-01directory: renamed directory_get_directory()Max Kellermann1-1/+1
Renamed directory_get_directory() to directory_lookup_directory(). Added API documentation.
2009-03-13all: Update copyright header.Avuton Olrich1-7/+7
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-03-02directory: directory_load() returns GErrorMax Kellermann1-1/+5
Do error reporting with GLib's GError library in this library, too.
2009-03-02database: db_load() returns GErrorMax Kellermann1-15/+40
Do error reporting with GLib's GError library.
2009-03-02database: no CamelCaseMax Kellermann1-16/+15
Renamed a bunch of variables.
2009-02-27directory: moved DIRECTORY_* string constantsMax Kellermann1-0/+5
Moved some of them to to directory_save.c, and others to database.c.
2009-02-12database: don't load database after charset was reconfiguredMax Kellermann1-6/+4
When you change the filesystem charset, discard the old database file and create a new one. The old database file will most likely contain stale or invalid information.
2009-01-25database: eliminate "goto" usageMax Kellermann1-7/+8
http://xkcd.com/292/
2009-01-25use g_free() instead of free()Max Kellermann1-1/+1
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.
2009-01-18mapper: make the music_directory optionalMax Kellermann1-5/+23
Without a music_directory, MPD is an excellent streaming client.
2009-01-18database: pass database file name to db_init()Max Kellermann1-32/+36
Don't include conf.h in database.c.
2009-01-17conf: replaced getConfigParamValue() with config_get_string()Max Kellermann1-2/+3
Don't return a writable pointer.
2009-01-17conf: no CamelCase, part IMax Kellermann1-1/+1
Renamed functions, types, variables.
2009-01-04database: use stdboolMax Kellermann1-21/+20
Make db_load(), db_save() and db_check() return bool instead of int.
2009-01-04database: db_init() initializes library, does not updateMax Kellermann1-8/+2
For updating the database, directory_update_init() should be called explicitly.
2009-01-04stats: added stats_update()Max Kellermann1-4/+1
2009-01-04don't exit after --create-dbMax Kellermann1-7/+0
Start the daemon after --create-db. This makes --create-db a flag which discards the old database and starts with a fresh one.
2009-01-02database: use GLib instead of utils.hMax Kellermann1-2/+3
2009-01-01event_pipe: added pipe_event enum and callbacksMax Kellermann1-1/+0
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.
2009-01-01event_pipe: renamed functions from main_notify_* to event_pipe_*Max Kellermann1-1/+1
Continuing the previous patch.
2009-01-01main_notify: renamed source to event_pipe.cMax Kellermann1-1/+1
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.
2008-12-29database: use GLib loggingMax Kellermann1-36/+38
2008-12-29removed os_compat.hMax Kellermann1-1/+6
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
2008-12-28utils: removed myFgets()Max Kellermann1-3/+7
Replaced myFgets() with fgets() + g_strchomp().
2008-11-05path: no CamelCaseMax Kellermann1-2/+2
Rename variables and functions.
2008-10-28utils: use g_str_has_prefix() instead of prefixcmp()Max Kellermann1-2/+2
Remove duplicated code from MPD.