aboutsummaryrefslogtreecommitdiffstats
path: root/src/update.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-09updated: always call removeDeletedFromDirectory()Max Kellermann1-3/+1
Removed the local variable "was_empty": don't remember if the directory is new. Always call removeDeletedFromDirectory().
2008-10-09update: eliminated addSubDirectoryToDirectory()Max Kellermann1-27/+8
In updateInDirectory(), add new directories immediately and delete them when they turn out to be empty. This simplifies the code and allows us to eliminate addSubDirectoryToDirectory().
2008-10-09update: make the "song" variable more localMax Kellermann1-3/+2
2008-10-09update: do the recursive directory check only onceMax Kellermann1-8/+6
The recursive checks were performed in several functions, and sometimes a directory was checked twice.
2008-10-09update: copy stat to new directoryMax Kellermann1-1/+3
When reading a new directory, copy the stat data (which we have anyway) to the directory struct. This may save a stat() in the future.
2008-10-09update: avoid duplicate stat() callsMax Kellermann1-27/+35
Pass a pointer to the stat struct to more functions.
2008-10-09update: rewrote updatePath() using updateInDirectory()Max Kellermann1-68/+21
updatePath() duplicated a lot of code from the more generic updateInDirectory(). Eliminate most of updatePath() and call updateInDirectory().
2008-10-09update: don't export updateDirectory()Max Kellermann1-1/+10
If the user requests database update during startup, call directory_update_init(). This should be changed to fully asynchronous update later. For this to work, main_notify has to be initialized before db_init().
2008-10-09update: pass const pointer to addSubDirectoryToDirectory()Max Kellermann1-1/+1
The stat struct isn't going to be modified, make it const.
2008-10-09update: never pass root path to updatePath()Max Kellermann1-6/+1
update_task() already checks if it has got a root path. Extend this check and in turn remove a check in the inner function updatePath().
2008-10-09database: renamed get_get_song() to db_get_song()Max Kellermann1-1/+1
Search'n'replace typo..
2008-10-09update: don't sanitize the path againMax Kellermann1-13/+3
directory_update_init() has to be called with a path that is already sanitized. Don't call sanitizePathDup() again in updatePath().
2008-10-09update: merged addDirectoryPathToDB() into addParentPathToDB()Max Kellermann1-25/+3
The algorithm in addDirectoryPathToDB() can be simplified further if it is combined with the function addParentPathToDB(). Since there is no other caller of addDirectoryPathToDB(), we can do that. This saves another large stack buffer.
2008-10-09update: make addDirectoryPathToDB() non-recursiveMax Kellermann1-11/+15
This recursive function is very dangerous because it allocates a large buffer on the stack in every iteration. That may be misused to generate a stack overflow.
2008-10-09update: delete directory after failed updateMax Kellermann1-1/+8
When a directory cannot be updated, there must be something wrong with it, and the database contains stale data. Remove it.
2008-10-09update: moved code to directory_make_child_checked()Max Kellermann1-22/+25
The branching looks a bit complicated in addDirectoryPathToDB() - improve its readability by moving code to a simplified separate function.
2008-10-09update: clear root after errorMax Kellermann1-0/+1
When the root directory fails to update, its contents are invalid. Clear it then.
2008-10-09update: locked delete after update errorMax Kellermann1-1/+40
When a directory failed to update, it was removed from the database, without freeing all children and songs (memory leak), and without locking (race condition). Introduce the functions clear_directory() and delete_directory(), which do both.
2008-10-09update: removed addToDirectory()Max Kellermann1-39/+12
Use updateInDirectory() instead of addToDirectory(). Eliminate a duplicate stat() in updateInDirectory() by calling song_file_update() directly.
2008-10-09directory: added inline wrappers for accessing childrenMax Kellermann1-6/+5
Some tiny utilities... wrappers like these may become helpful when we introduce locking.
2008-10-09directory: moved dirvec struct declaration to dirvec.hMax Kellermann1-1/+0
No idea why it was created in directory.h, but it should be in dirvec.h.
2008-10-08directory: fix update in root directoryMax Kellermann1-1/+1
Commit 0bfe7802 broke update for new files in the root directory, because music_root->path was an empty string and not NULL. There were some NULL tests missing. Change them to !isRootDirectory(path) instead of path!=NULL.
2008-10-08update: fix deadlock in delete_song()Max Kellermann1-1/+1
Due to a merge error, reap_update_task() called cond_signal_async() with a locked mutex. That always fails. Use cond_signal_sync() instead.
2008-10-08directory: eliminate CamelCaseMax Kellermann1-6/+6
CamelCase is ugly, rename the functions.
2008-10-08database: renamed functions, "db_" prefix and no CamelCaseMax Kellermann1-7/+7
Yet another CamelCase removal patch.
2008-10-08directory: moved code to database.cMax Kellermann1-0/+1
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.
2008-10-08song: song_file_update() returns boolMax Kellermann1-2/+2
Instead of returning 0 or -1, return true on success and false on failure. This seems more natural, and when the C library was designed, there was no "bool" data type.
2008-10-08song: removed CamelCaseMax Kellermann1-7/+7
CamelCase is ugly... rename all functions.
2008-10-08song: replaced all song constructorsMax Kellermann1-1/+1
Provide separate constructors for creating a remote song, a local song, and one for loading data from a song file. This way, we can add more assertions.
2008-10-08song: converted typedef Song to struct songMax Kellermann1-7/+9
Again, a data type which can be forward-declared.
2008-10-08directory: converted typedef Directory to struct directoryMax Kellermann1-20/+27
The struct can be forward-declared by other headers, which relaxes the header dependencies.
2008-10-08update: merged exploreDirectory() into updateDirectory()Max Kellermann1-47/+13
exploreDirectory() duplicates some code in updateDirectory(). Merge both functions, and use directory_is_empty() to determine whether update or explore mode should be used.
2008-10-08directory: moved code to update.cMax Kellermann1-761/+245
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.
2008-10-07directory: fix return value in removeDeletedFromDirectoryEric Wong1-1/+1
oops :x
2008-10-07directory: serialize song deletes from playlist during updateEric Wong1-3/+28
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.
2008-10-07directory: use songvec_for_each for iteratorsEric Wong1-28/+30
Get rid of songvec_write so we can enforce proper locking
2008-10-07dbUtils/directory: traverseAllIn forEachSong returns -1 on errorEric Wong1-12/+9
Being consistent with most UNIX functions...
2008-10-07Assert if we don't have song or song->url setEric Wong1-2/+2
song objects cannot exist without a path or URL
2008-10-06song: stop storing song_typeEric Wong1-1/+1
We already know if a song is a URL or not based on whether it has parentDir defined or not. Hopefully one day in the future we can drop HTTP support from MPD entirely when an HTTP filesystem comes along and we can access streams via open(2).
2008-10-06song: use flex arrays to store song->urlEric Wong1-1/+1
Reduce the number of allocations we make, so there's less pressure on the allocator and less overhead to keep track of the allocations in.
2008-10-06directory: reuse existing directory if found on updateEric Wong1-4/+9
Instead of allocating a new one, just reuse an existing one if one is found when rereading the DB. This is a small makes the previous commit work on subdirectories of the root music directory. [1] "song: better handling of existing songs when rereading DB"
2008-10-06directory: simplify list update handling logicEric Wong1-45/+60
Now the "update" command can be issued multiple times regardless of whether the client is in list mode or not. We serialize the update tasks to prevent updates from trampling over each other and will spawn another update task once the current one is finished updating and reaped. Right now we cap the queue size to 32 which is probably enough (I bet most people usually run update with no argument anyways); but we can make it grow/shrink dynamically if needed. There'll still be a hard-coded limit to prevent DoS attacks, though.
2008-10-06directory: streamline deletesEric Wong1-17/+15
Instead of relying on the shortname, just pass the song pointer to prevent redundant lookups during deletes.
2008-09-29directory: isRootDirectory() is a one-linerEric Wong1-4/+1
Improving the signal to noise ratio...
2008-09-29directory: writeDirectoryInfo propagates errorsEric Wong1-21/+19
If a write failed, it's a good sign subsequent writes will fail, too, so propgate errors all the way up the stack.
2008-09-29directory: make it clear that DIRECTORY_MTIME is deprecatedEric Wong1-1/+1
A long time ago in an mpd far away...
2008-09-29directory: remove "Mp3" referencesEric Wong1-17/+17
MPD has supported more audio formats than just MP3 for over five years...
2008-09-29directory: remove shortname arguments everywhereEric Wong1-80/+41
It was a huge confusing mess of parameter passing around and around. Add a few extra assertions to ensure we're handling parent/child relationships properly.
2008-09-29directory: replace DirectoryList with dirvecEric Wong1-195/+96
Small memory reduction compared to songvec since most users have much fewer dirs than songs, but still nice to have.
2008-09-29directory: remove unused CPP definesEric Wong1-4/+0
We no longer for for updates