- 09 Oct, 2008 32 commits
-
-
Max Kellermann authored
Removed the local variable "was_empty": don't remember if the directory is new. Always call removeDeletedFromDirectory().
-
Max Kellermann authored
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().
-
Max Kellermann authored
-
Max Kellermann authored
The recursive checks were performed in several functions, and sometimes a directory was checked twice.
-
Max Kellermann authored
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.
-
Max Kellermann authored
Pass a pointer to the stat struct to more functions.
-
Max Kellermann authored
updatePath() duplicated a lot of code from the more generic updateInDirectory(). Eliminate most of updatePath() and call updateInDirectory().
-
Max Kellermann authored
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().
-
Max Kellermann authored
The stat struct isn't going to be modified, make it const.
-
Max Kellermann authored
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().
-
Max Kellermann authored
Search'n'replace typo..
-
Max Kellermann authored
directory_update_init() has to be called with a path that is already sanitized. Don't call sanitizePathDup() again in updatePath().
-
Max Kellermann authored
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.
-
Max Kellermann authored
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.
-
Max Kellermann authored
When a directory cannot be updated, there must be something wrong with it, and the database contains stale data. Remove it.
-
Max Kellermann authored
The branching looks a bit complicated in addDirectoryPathToDB() - improve its readability by moving code to a simplified separate function.
-
Max Kellermann authored
When the root directory fails to update, its contents are invalid. Clear it then.
-
Max Kellermann authored
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.
-
Max Kellermann authored
-
Max Kellermann authored
Use updateInDirectory() instead of addToDirectory(). Eliminate a duplicate stat() in updateInDirectory() by calling song_file_update() directly.
-
Max Kellermann authored
Don't use db_get_directory() and traverse the full path with every directory being loaded. Just see if the current parent contains the entry. Everything else would be invalid anyway..
-
Max Kellermann authored
A manipulated database could trigger an assertion failure, because the parent didn't match. Do a proper check if the new directory is within the parent's. This uses FATAL() to bail out, so MPD still dies, but it doesn't crash.
-
Max Kellermann authored
Some tiny utilities... wrappers like these may become helpful when we introduce locking.
-
Max Kellermann authored
dirvec_find() does not modify the object, thus it should get a const pointer.
-
Max Kellermann authored
No idea why it was created in directory.h, but it should be in dirvec.h.
-
Max Kellermann authored
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.
-
Max Kellermann authored
Use sizeof(buffer) instead.
-
Max Kellermann authored
Removed a superfluous closure.
-
Max Kellermann authored
Having an array with disabled entries sucks. Removed that DISABLED_SHOUT_ENCODER_PLUGIN macro, and fill the plugin list only with plugins which are actually enabled. This should be done for all plugin types.
-
Max Kellermann authored
In the libsamplerate fallback code, a "const" attribute was missing.
-
Max Kellermann authored
"volume" was passed as an unsigned integer, which is correct. It's just that when it was multiplied with the sample value, the whole operation was changed to unsigned, breaking the algorithm (and Qball's ears). Internally change "volume" to signed.
-
Qball Cow authored
With commit 6dcd7fea (if I am not mistaken) the error returned when you try to save to an existing playlist is wrong. Instead of MPD_ACK_ERROR_EXIST, MPD_ACK_ERROR_NO_EXIST is returned. This is obviously wrong and breaks gmpc.
-
- 08 Oct, 2008 8 commits
-
-
Max Kellermann authored
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.
-
Max Kellermann authored
Due to a merge error, reap_update_task() called cond_signal_async() with a locked mutex. That always fails. Use cond_signal_sync() instead.
-
Max Kellermann authored
ino_t and dev_t are declared in sys/types.h, not sys/stat.h.
-
Max Kellermann authored
For the root directory, let's set path to an empty string. This saves a few checks.
-
Max Kellermann authored
Also convert directory_get_path() to an inline function, which returns a constant string.
-
Max Kellermann authored
CamelCase is ugly, rename the functions.
-
Max Kellermann authored
Yet another CamelCase removal patch.
-
Max Kellermann authored
The same can be achieved with directory_print(db_get_directory()).
-