aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-11directory: don't use identical struct and variable namesEric Wong10-130/+128
Duplicated tokens in close proximity takes too long for my head to parse; and "dir" is an easy and common abbreviation for "directory".
2008-10-11update: replaced update_return with global "modified" flagMax Kellermann1-68/+39
There is only once update thread at a time. Make the "modified" flag global and remove the return values of most functions. Propagating an error is only useful for updateDirectory(), since updateInDirectory() will delete failed subdirectories.
2008-10-11update: make the variable "progress" staticMax Kellermann1-1/+1
2008-10-11update: don't print debug message when song was not modifiedMax Kellermann1-4/+5
When a song file was not modified, MPD printed the debug message "not a directory or music", because the first "if" branch did not return.
2008-10-11update: fix memory leak in directory_update_init()Max Kellermann1-1/+4
When the update queue is full, directory_update_init() did not free the path argument.
2008-10-11update: make the job id unsignedMax Kellermann2-7/+7
Since the return value cannot be -1 anymore, we can make it unsigned.
2008-10-11update: job ID must be positiveMax Kellermann4-10/+8
The documentation for directory_update_init() was incorrect: a job ID must be positive, not non-negative. If the update queue is full and no job was created, it makes more sense to return 0 instead of -1, because it is more consistent with the return value of isUpdatingDB().
2008-10-11update: check progress!=IDLE in reap_update_task()Max Kellermann1-0/+3
When the update task is idle, there is no need to check for deleted songs. Return early from reap_update_task().
2008-10-11update: fixed stack corruption due to pthread_join() callMax Kellermann1-1/+3
pthread_join() expects a "pointer to a pointer" parameter, but it got a "pointer to an enum". On AMD64, an enum is smaller than a pointer, leading to a buffer overflow.
2008-10-11updated: 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-11update: 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-11update: make the "song" variable more localMax Kellermann1-2/+1
2008-10-11update: do the recursive directory check only onceMax Kellermann1-9/+6
The recursive checks were performed in several functions, and sometimes a directory was checked twice.
2008-10-11update: 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-11update: avoid duplicate stat() callsMax Kellermann1-28/+38
Pass a pointer to the stat struct to more functions.
2008-10-11update: rewrote updatePath() using updateInDirectory()Max Kellermann1-70/+19
updatePath() duplicated a lot of code from the more generic updateInDirectory(). Eliminate most of updatePath() and call updateInDirectory().
2008-10-11update: don't export updateDirectory()Max Kellermann4-13/+20
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-11update: pass const pointer to addSubDirectoryToDirectory()Max Kellermann1-1/+1
The stat struct isn't going to be modified, make it const.
2008-10-11update: 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-11update: merged addDirectoryPathToDB() into addParentPathToDB()Max Kellermann1-23/+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-11update: make addDirectoryPathToDB() non-recursiveMax Kellermann1-11/+13
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-11update: 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-11update: 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-11update: clear root after errorMax Kellermann1-0/+1
When the root directory fails to update, its contents are invalid. Clear it then.
2008-10-11update: locked delete after update errorMax Kellermann1-1/+37
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-11dirvec: added dirvec_clear()Max Kellermann1-0/+5
2008-10-11update: removed addToDirectory()Max Kellermann1-38/+10
Use updateInDirectory() instead of addToDirectory(). Eliminate a duplicate stat() in updateInDirectory() by calling song_file_update() directly.
2008-10-11directory: don't query database during loadMax Kellermann1-2/+1
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..
2008-10-11directory: check the absolute path of a subdirectory while loadingMax Kellermann1-0/+4
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.
2008-10-11directory: added inline wrappers for accessing childrenMax Kellermann3-7/+19
Some tiny utilities... wrappers like these may become helpful when we introduce locking.
2008-10-11dirvec: constant pointers in dirvec_find()Max Kellermann2-2/+2
dirvec_find() does not modify the object, thus it should get a const pointer.
2008-10-11directory: moved dirvec struct declaration to dirvec.hMax Kellermann3-7/+7
No idea why it was created in directory.h, but it should be in dirvec.h.
2008-10-11diretory: moved code to directory_save.c, directory_print.cMax Kellermann8-116/+226
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.
2008-10-11database: removed local variable bufferSizeMax Kellermann1-3/+2
Use sizeof(buffer) instead.
2008-10-11database: simplify db_load()Max Kellermann1-47/+42
Removed a superfluous closure.
2008-10-11directory: fix update in root directoryMax Kellermann2-4/+3
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-11directory: path must not be NULLMax Kellermann3-10/+10
For the root directory, let's set path to an empty string. This saves a few checks.
2008-10-11directory: directory_get_path(NULL) is not allowedMax Kellermann1-3/+4
Also convert directory_get_path() to an inline function, which returns a constant string.
2008-10-11songvec: pass const pointersMax Kellermann2-2/+2
Pass const songvec pointers to songvec_find() and songvec_for_each(). [ew: already merged songvec_for_each() cosntification somewhere...]
2008-10-11directory: eliminate CamelCaseMax Kellermann7-50/+50
CamelCase is ugly, rename the functions. [ew: "directory_get_directory" was too confusing, using "directory_get_subdir" instead (old function was named "getSubDirectory")]
2008-10-11database: renamed functions, "db_" prefix and no CamelCaseMax Kellermann12-62/+62
Yet another CamelCase removal patch.
2008-10-11database: removed printDirectoryInfo()Max Kellermann3-12/+4
The same can be achieved with directory_print(db_get_directory()).
2008-10-11directory: moved code to database.cMax Kellermann15-335/+418
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-11directory: converted isRootDirectory() to an inline functionMax Kellermann2-6/+10
The function isRootDirectory() is tiny and can be converted to an inline function. Don't allow name==NULL.
2008-10-11song: use song_file_update() in song_file_load()Max Kellermann1-11/+1
Eliminate duplicated code.
2008-10-11song: song_file_update() returns booleanMax Kellermann2-5/+3
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. [ew: changing to bool semantics but sticking with integer type since bool is C99 and I don't require a C99 compiler, and I don't feel like writing compatibility wrappers to support it. _Bool is usually (always?) a signed int anyways. ]
2008-10-11song: don't check song_is_file() in song_file_update()Max Kellermann1-24/+24
This function was never used on remote songs. Replace the runtime check with an assertion.
2008-10-11song: removed CamelCaseMax Kellermann7-45/+44
CamelCase is ugly... rename all functions.
2008-10-11song: replaced all song constructorsMax Kellermann4-27/+46
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-11playlist: simplified setPlaylistRandomStatus()Max Kellermann1-5/+1
Check the old status before assigning. This saves a temporary variable.