aboutsummaryrefslogtreecommitdiffstats
path: root/src/update_walk.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-29copyright year 2011Max Kellermann1-1/+1
2010-11-08update_walk: explicitly check for permission problemsMax Kellermann1-0/+33
Call access() and print an extra error message when EACCES is returned. Hopefully this will reduce the number of support requests due to wrong file permissions.
2010-09-07update_walk: update existing playlist entryMax Kellermann1-1/+3
Fixes duplicate playlist entries.
2010-07-21update: store playlist files in databaseMax Kellermann1-0/+31
Don't open the music directory for each "lsinfo" call. Get the list of playlist files from the memory database.
2010-05-19update_walk: don't check recursive symlinks on WIN32Max Kellermann1-0/+8
inode numbers don't work on WIN32, and very few WIN32 users actually use symlinks - seems ok to disable that check.
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-12-16archive_plugin: use GError in the open() methodMax Kellermann1-2/+4
2009-12-16archive_plugin: wrap method callsMax Kellermann1-4/+4
Make archive_file a "real" struct, extended by all plugins. Add the plugin pointer to it. Wrap all method calls in functions.
2009-12-15archive_api.h: moved struct archive_plugin to archive_plugin.hMax Kellermann1-1/+1
2009-12-15archive_list: don't include archive_api.hMax Kellermann1-0/+1
Use struct forward declarations.
2009-11-11update: added missing config.h includesMax Kellermann1-0/+5
This broke sticker and archive support.
2009-11-07update_walk: log new container filesMax Kellermann1-1/+4
2009-11-05update_walk: log unrecognized filesMax Kellermann1-2/+9
When a song's tags could not be loaded during database update, log this as a debug message. Same for a song being removed because its updated tag could not be read.
2009-10-20mapper, update, ...: use g_build_filename(), G_DIR_SEPARATOR, ...Max Kellermann1-4/+3
Try to be as portable as possible, use GLib path name functions and macros.
2009-10-16update: obey .mpdignore filesMax Kellermann1-2/+57
2009-09-24command: added command "rescan"Max Kellermann1-5/+9
"rescan" is the same as "update", but it discards existing songs in the database.
2009-09-24update: splitted update.c into several sourcesMax Kellermann1-190/+26
2009-09-24update: pass const string to update_enqueue()Max Kellermann1-7/+11
Duplicate the path string within update.c, do not expect an allocated string as parameter.
2009-09-24update: renamed directory_update_init() to update_enqueue()Max Kellermann1-1/+1
2009-08-19update: don't re-read unchanged container filesIgor Kuzmin1-1/+2
MPD checks if every flac (possibly other types as well) file contains cuesheet on every update, which produces unneeded I/O. My music collection is on NFS share, so it's quite noticeable. IMHO, it shouldn't re-read unchanged files, so I wrote simple patch to fix it.
2009-08-14update: free temporary string in container scan (memleak)Max Kellermann1-2/+6
The return value of map_directory_child_fs() must be freed.
2009-08-14update: free empty path string (memleak)Max Kellermann1-1/+2
When you pass an empty string to directory_update_init(), it was not freed by update_task().
2009-07-28playlist: CamelCaseIsBadCourtney Cavin1-1/+1
Renamed all playlist functions to non-CamelCase.
2009-07-14playlist: no CamelCaseMax Kellermann1-1/+1
2009-07-05idle: added "update" eventMax Kellermann1-0/+5
Some clients have visual feedback for "database update is running". Using the "database" idle event is unreliable, because it is only emitted when the database was actually modified. This patch adds the "update" event, which is emitted when the update is started, and again when the update is finished, disregarding whether it has been modified.
2009-03-14Removed superfluous if statement in update.c:453Jochen Keil1-28/+22
Check for NULL not necessary here
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-10Cleaned up update_regular_file() method in update.cJochen Keil1-83/+88
After adding the container_scan() method the update_regular_file() method was quite hard to read. Now there's update_container_file() which deals with container files. That way normal container files (i.e. without embedded tracks) are handled by the old code like a regular file. This will fix some of the odd behaviour observed.
2009-03-09Fix remove-flac-song-on-every-updateJochen Keil1-7/+7
Until now every flac file got removed unconditionally (and then re-added) whenever the update command was issued. Now there is a check if we need to that, so the file will only be removed if there is a embedded cuesheet in that file
2009-03-09Initial support for embedded cue sheets found in flac filesJochen Keil1-1/+1
So far only seekpoints are supported, so no proper tagging yet except for track number and track length. Tagging should be done by parsing the cue sheet which is often embedded as vorbis comment in flac files. Furthermore the pathname should be configurable like "%A - %t - %T", where %A means Artist, %t track number and %T Title or so.
2009-03-09decoder_plugin: added method container_scan()Jochen Keil1-18/+94
[mk: fixed whitespace errors; use delete_song() instead of songvec_delete()]
2009-02-28update: use G_FILE_TEST_IS_REGULAR for archive filesMax Kellermann1-1/+6
When checking whether database entries have been deleted, don't check if an archive file is a directory (G_FILE_TEST_IS_DIR), use G_FILE_TEST_IS_REGULAR for this case instead. To determine if a "struct directory" is an archive, check for device==DEVICE_INARCHIVE. This is always false after loading the database, so this patch is not complete yet.
2009-02-28update: don't update unchanged archiveMax Kellermann1-1/+6
When the mtime of an archive time hasn't changed, don't update it again.
2009-02-28directory: added "mtime" propertyMax Kellermann1-1/+7
Remember the modification time of each directory. This is important for archives (which are virtual directories right now), but may also be useful for an automatic update mechanism.
2009-02-28update: moved code to update_archive_file()Max Kellermann1-31/+50
Simplify the rather large function update_regular_file().
2009-02-27update: print error when opendir() failsMax Kellermann1-2/+7
MPD used to be silent when it could stat() a directory, but could not opendir() it to read its contents. This caused a lot of support headache with users who have wrong file permissions. Add another warning message.
2009-02-25ls: moved generic URI utilities to uri.cMax Kellermann1-1/+1
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later.
2009-02-12update: free deleted subdirectoriesMax Kellermann1-2/+6
Use delete_directory() for removing sub directories instead of dirvec_clear(). This ensures that all memory occupied by subdirectories of deleted directories is freed.
2009-02-12update: recursively purge deleted directoriesMax Kellermann1-1/+1
When a directory is deleted, MPD deleted only the directory from the database; it did not bother to walk the full tree to free all memory and to remove deleted songs from the playlist. Replace a dirvec_delete() with delete_directory().
2009-02-04update: check whether stickers are enabledMax Kellermann1-1/+3
If stickers are not configured at runtime, don't call sticker_song_delete().
2009-02-04playlist: renamed global "playlist" variable to "g_playlist"Max Kellermann1-2/+2
Export the "g_playlist" variable, and pass it to all playlist functions. This way, we can split playlist.c easier into separate parts. The code which initializes the singleton variable is moved to playlist_global.c.
2009-01-25use g_free() instead of free()Max Kellermann1-4/+3
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-19update: delete stickers of deleted songsMax Kellermann1-0/+9
When a song is deleted from the database, remove its sticker, too. What's still missing is some sort of garbage collector after a fresh database create (--create-db).
2009-01-18mapper: make the music_directory optionalMax Kellermann1-0/+3
Without a music_directory, MPD is an excellent streaming client.
2009-01-08update: removed one more stack bufferMax Kellermann1-4/+2
2009-01-08path: allocate buffer in fs_charset conversion functionsMax Kellermann1-2/+6
Don't use fixed static buffers. GLib allocates a new string for us anyway, let's just return this one instead of copying it.
2009-01-08update: include config.h, fix archive codeMax Kellermann1-6/+9
The archive code was disabled, because config.h was not included and thus ENABLE_ARCHIVE was not defined.
2009-01-08update: save the database even if it is emptyMax Kellermann1-1/+2
Save an empty database, even if the music directory is empty.
2009-01-04stats: added stats_update()Max Kellermann1-3/+1
2009-01-04update: use notify.h instead of condition.hMax Kellermann1-12/+10
The notify library is easier to use, and has no disadvantages.