aboutsummaryrefslogtreecommitdiff
path: root/src/database.c
Commit message (Collapse)AuthorAge
* directory: require the caller to lock the db_mutexMax Kellermann2012-02-02
| | | | | Reduce the number of lock/unlock cycles, and make database handling safer.
* db_plugin: add method visit()Max Kellermann2011-09-13
|
* db_plugin: add method get_song()Max Kellermann2011-09-13
| | | | New db_get_song() implementation.
* database: generate GError when database is disabledMax 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.
* database: add struct db_visitorMax Kellermann2011-09-13
| | | | Use this struct for db_walk().
* db_plugin: introducing a plugin API for the song databaseMax Kellermann2011-09-10
| | | | | | | | | | | 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.
* database: move code to db_save.cMax Kellermann2011-09-10
|
* database: return GError on failureMax Kellermann2011-09-09
|
* Merge branch 'v0.16.x'Max Kellermann2011-07-19
|\ | | | | | | | | | | Conflicts: NEWS configure.ac
| * database: require X_OK on parent directory, not R_OKMax Kellermann2011-07-18
| | | | | | | | | | For accessing the child of a directory, one needs X_OK on the directory.
* | copyright year 2011Max Kellermann2011-01-29
|/
* database, ...: remove EINTR checks after stdio callsMax Kellermann2010-07-25
| | | | | | 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.
* database: remove outdated commentMax Kellermann2010-07-21
|
* 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.
* database: I/O error handling in db_save()Max Kellermann2009-11-07
| | | | Check ferror() instead of the fprintf() return value.
* database: rescan after metadata_to_use changeMax Kellermann2009-11-04
| | | | | | 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.
* song_save: load one song at a timeMax Kellermann2009-11-01
| | | | | Changed songvec_load() to song_load(). Added start and end markers for each song. Removed the "key" line, it's redundant.
* database: save database format versionMax Kellermann2009-11-01
|
* database: use strcmp() instead of g_str_has_prefix()Max Kellermann2009-11-01
|
* database: removed redundant music_root allocationMax Kellermann2009-11-01
| | | | The "music_root" global variable is allocated by db_init().
* text_file: allocate line buffers dynamicallyMax Kellermann2009-11-01
| | | | | | | 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.
* database: fixed NULL pointer dereference after charset changeMax Kellermann2009-06-30
| | | | | | | 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.
* 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.
* directory: directory_load() returns GErrorMax Kellermann2009-03-02
| | | | Do error reporting with GLib's GError library in this library, too.
* database: db_load() returns GErrorMax Kellermann2009-03-02
| | | | Do error reporting with GLib's GError library.
* database: no CamelCaseMax Kellermann2009-03-02
| | | | Renamed a bunch of variables.
* directory: moved DIRECTORY_* string constantsMax Kellermann2009-02-27
| | | | Moved some of them to to directory_save.c, and others to database.c.
* database: don't load database after charset was reconfiguredMax Kellermann2009-02-12
| | | | | | 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.
* database: eliminate "goto" usageMax Kellermann2009-01-25
| | | | http://xkcd.com/292/
* 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.
* mapper: make the music_directory optionalMax Kellermann2009-01-18
| | | | Without a music_directory, MPD is an excellent streaming client.
* database: pass database file name to db_init()Max Kellermann2009-01-18
| | | | Don't include conf.h in database.c.
* conf: replaced getConfigParamValue() with config_get_string()Max Kellermann2009-01-17
| | | | Don't return a writable pointer.
* conf: no CamelCase, part IMax Kellermann2009-01-17
| | | | Renamed functions, types, variables.
* database: use stdboolMax Kellermann2009-01-04
| | | | Make db_load(), db_save() and db_check() return bool instead of int.
* database: db_init() initializes library, does not updateMax Kellermann2009-01-04
| | | | | For updating the database, directory_update_init() should be called explicitly.
* stats: added stats_update()Max Kellermann2009-01-04
|
* don't exit after --create-dbMax Kellermann2009-01-04
| | | | | Start the daemon after --create-db. This makes --create-db a flag which discards the old database and starts with a fresh one.
* database: use GLib instead of utils.hMax Kellermann2009-01-02
|
* event_pipe: added pipe_event enum and callbacksMax Kellermann2009-01-01
| | | | | | | | | 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.
* event_pipe: renamed functions from main_notify_* to event_pipe_*Max Kellermann2009-01-01
| | | | Continuing the previous patch.
* main_notify: renamed source to event_pipe.cMax Kellermann2009-01-01
| | | | | | 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.
* database: use GLib loggingMax Kellermann2008-12-29
|
* removed os_compat.hMax Kellermann2008-12-29
| | | | | Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable.
* utils: removed myFgets()Max Kellermann2008-12-28
| | | | Replaced myFgets() with fgets() + g_strchomp().
* path: no CamelCaseMax Kellermann2008-11-05
| | | | Rename variables and functions.