aboutsummaryrefslogtreecommitdiffstats
path: root/src/database.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-12directory: always maintain sorted properties vectorsEric Wong1-4/+0
This allows clients to see sorted results while we're updating the DB and removes the need for us to have to sort manually. We'll have to write separate routines for managing stored playlists with songvecs eventually; but that's for another day.
2008-10-12directory: make music_root global and avoid runtime initializationEric Wong1-22/+6
mpd can't function without music_root; so don't bother allocating it on the heap nor checking to see if it's initialized. Don't allow directory_new() to create a directory w/o a parent or with an empty path, either: root is root and there can be only one</highlander>.
2008-10-11directory: don't use identical struct and variable namesEric Wong1-10/+9
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: job ID must be positiveMax Kellermann1-1/+1
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: don't export updateDirectory()Max Kellermann1-1/+9
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-11diretory: moved code to directory_save.c, directory_print.cMax Kellermann1-0/+1
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: path must not be NULLMax Kellermann1-2/+2
For the root directory, let's set path to an empty string. This saves a few checks.
2008-10-11directory: eliminate CamelCaseMax Kellermann1-9/+9
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 Kellermann1-17/+17
Yet another CamelCase removal patch.
2008-10-11database: removed printDirectoryInfo()Max Kellermann1-9/+0
The same can be achieved with directory_print(db_get_directory()).
2008-10-11directory: moved code to database.cMax Kellermann1-281/+53
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 Kellermann1-5/+5
The function isRootDirectory() is tiny and can be converted to an inline function. Don't allow name==NULL.
2008-10-11song: removed CamelCaseMax Kellermann1-1/+1
CamelCase is ugly... rename all functions.
2008-10-11song: converted typedef Song to struct songMax Kellermann1-6/+6
Again, a data type which can be forward-declared. [ew: * used "struct mpd_song" instead to avoid token duplication (like I did with "struct mpd_tag") as there's no good abbreviation for "song" and identical tokens on the same line don't read well * rewritten using perl -i -p -e 's/\bSong\b/struct mpd_song/g' src/*.[ch] since it was too hard to merge * also, I don't care much for forward declarations ]
2008-10-11directory: converted typedef Directory to struct directoryMax Kellermann1-27/+30
The struct can be forward-declared by other headers, which relaxes the header dependencies.
2008-10-11update: merged exploreDirectory() into updateDirectory()Max Kellermann1-1/+1
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-11directory: added directory_is_empty()Max Kellermann1-1/+1
directory_is_empty() is a tiny inline function which determine if a directory has any child objects (sub directories or songs).
2008-10-11directory: moved code to update.cMax Kellermann1-560/+10
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/+27
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-30/+56
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-05Assert if we don't have song or song->url setEric Wong1-2/+2
song objects cannot exist without a path or URL
2008-10-05song: 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-05song: 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-05directory: fix writeDirectoryDBEric Wong1-2/+4
Wow, I must have been halfway asleep when I did that...
2008-10-04directory: 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-03directory: simplify list update handling logicEric Wong1-59/+61
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-03directory: 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: remove redundant sanitizePathDupEric Wong1-15/+7
We already sanitize and duplicated our paths before calling updateInit() to get pre-pthread_create() error-checking along with heap allocation reduction because we don't have to redupe because our parent stack went away.
2008-09-29update: move path sanitation up the stack to avoid extra copiesEric Wong1-12/+26
Remove yet another use of our old malloc-happy linked list implementation and replace it with a simple array of strings. This also implements more eager error handling of invalid paths (still centralized in updateInit) so we can filter out bad paths before we spawn a thread. This also does its part to fix the "update" command inside list mode which lost its static variable in ada24f9a921ff95d874195acf253b5a9dd12213d (although it was broken and requires the fix in 769939b62f7557f8e7c483223d68a8b39af43e37, too).
2008-09-28clean up updateInit calling and error handlingEric Wong1-8/+4
Move error reporting to command.c so directory.c does not deal with client error handling any more.
2008-09-28directory: isRootDirectory() is a one-linerEric Wong1-4/+1
Improving the signal to noise ratio...
2008-09-28directory: writeDirectoryInfo propagates errorsEric Wong1-28/+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-28directory: make it clear that DIRECTORY_MTIME is deprecatedEric Wong1-1/+1
A long time ago in an mpd far away...
2008-09-28directory: remove "Mp3" referencesEric Wong1-17/+17
MPD has supported more audio formats than just MP3 for over five years...
2008-09-28directory: remove shortname arguments everywhereEric Wong1-79/+40
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-28directory: 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-28directory: remove unused CPP definesEric Wong1-4/+0
We no longer for for updates
2008-09-28songvec_free => songvec_destroyEric Wong1-1/+1
"free" implies the songvec structure itself is freed, which is not the case.
2008-09-28directory.c: kill unnecessary includesEric Wong1-4/+0
2008-09-28directory: update playlist version if updatedEric Wong1-1/+6
If we updated the mpd metadata database; then there's a chance some of those songs in the playlist will have updated metadata. So be on the safe side and increment the playlist version number if _any_ song changed (this is how all released versions of mpd did it, too). This bug was introduced recently when making "update" threaded. Thanks to stonecrest for the bug report.
2008-09-23Revert "directory: serialize freeSong() within the main thread"Eric Wong1-9/+1
This reverts commit efefaee1f9535012be2fbfea8f0f870904daad5d. Conflicts: src/directory.c
2008-09-23directory: use songvec_free to prevent memory leaks.Eric Wong1-2/+1
2008-09-23directory: fix leak introduced with threaded updateEric Wong1-1/+1
Use freeList() instead of free() to free all elements in the list.
2008-09-23directory: serialize freeSong() within the main threadEric Wong1-1/+10
It's possible the playlist will be accessing a song that is to be freed in the update thread. Rather than going through the complexity (and potential to make mistakes) of locking the playlist (as well as losing CPU cycles/pipelining due to barriers with mutexes), we'll just line up all songs to be freed in the main thread. It's relatively uncommon to call freeSong() heavily (as it is to update); so the extra, temporary memory usage won't be very noticeable. Additionally, if a song is renamed and it contains unique tag item; this has the additional side effect of preventing unnecessary fragmentation where an item is freed and shortly reallocated.
2008-09-22Remove EINTR checking for open(2)Eric Wong1-2/+1
open(2) should only interrupt on "slow" devices, afaik...
2008-09-22directory: don't leak file handles if we get a corrupt dbEric Wong1-1/+1