aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-03-01command: add command "listfiles"Max Kellermann13-53/+310
Lists files and directories. Supports storage plugins.
2014-02-28DatabasePrint: move code to PrintDirectoryURI()Max Kellermann1-2/+8
2014-02-28DatabasePrint: add API documentationMax Kellermann1-0/+3
2014-02-28{Other,Database}Commands: contract declaration and assignmentMax Kellermann2-12/+6
2014-02-27db/simple: mount pointsMax Kellermann18-24/+600
A SimpleDatabase instance can now "mount" other Database instances at certain locations. This is used to use a new SimpleDatabase instance for each storage mount (issued with the "mount" protocol command). Each such instance has its own database file, stored in the directory that is specified with the "cache_directory" option.
2014-02-27CompositeStorage: add method GetMount()Max Kellermann2-0/+24
2014-02-27db/update/Queue: use std::list instead of std::queueMax Kellermann2-5/+4
The problem with std::queue is that it doesn't give us enough control. The method Clear() is a kludge already, but soon, we'll need filtering.
2014-02-27db/simple: GetRoot() returns referenceMax Kellermann2-3/+3
2014-02-27db/update/Service: allocate UpdateWalk dynamicallyMax Kellermann5-19/+28
2014-02-27Playlist: use the Error library to return errorsMax Kellermann9-82/+83
2014-02-27Playlist*: move to queue/Max Kellermann16-8/+8
2014-02-27db/update: cancel the update on shutdownMax Kellermann6-1/+58
2014-02-27db/UpdateGlue: rename to Service.cxxMax Kellermann2-161/+140
2014-02-26db/simple/Directory: eliminate method LookupSong()Max Kellermann3-30/+19
Move to SimpleDatabase::GetSong() to give that method more control.
2014-02-26db/simple/Directory: LookupDirectory() return remaining URIMax Kellermann3-41/+62
Code can now be reused in LookupSong().
2014-02-26db/simple/Directory: make variables more localMax Kellermann1-4/+2
2014-02-26db/Directory: add DEVICE_* documentationMax Kellermann1-0/+10
2014-02-26db/simple: create dedicated directoryMax Kellermann26-33/+31
2014-02-25db/Song: update API documentation for SimpleDatabasePluginMax Kellermann1-6/+5
2014-02-25db/simple: remove unused method LookupDirectory()Max Kellermann2-14/+0
2014-02-25db/simple: make internal methods "private"Max Kellermann1-1/+1
2014-02-25db/simple: add commentMax Kellermann1-0/+1
2014-02-25db/simple: move Create() upMax Kellermann1-4/+4
2014-02-25DirectorySave: save the flags "DEVICE_INARCHIVE" and "DEVICE_CONTAINER"Max Kellermann1-0/+37
Helps avoid unnecessary archive scans during database update on a fresh MPD process.
2014-02-25DatabaseSave: increase DB_FORMAT versionMax Kellermann1-1/+1
2014-02-25DatabaseSave: add constant OLDEST_DB_FORMATMax Kellermann1-1/+6
2014-02-25DirectorySave: move code to ParseLine()Max Kellermann1-17/+23
2014-02-24DirectorySave: save the mtime only if it is knownMax Kellermann1-2/+3
2014-02-24icu/Collate: pass UErrorCode* to ucol_strcollUTF8()Max Kellermann1-1/+2
Fixes crash after database update.
2014-02-24icu/Collate: initialize the error code before ucol_open()Max Kellermann1-1/+1
Fixes initialization failure.
2014-02-24SongSort, ...: use libicu instead of GLib's g_utf8_*()Max Kellermann8-38/+285
2014-02-24output/httpd/client: eliminate GLibMax Kellermann1-13/+11
2014-02-24output/{shout,win32}: include cleanupMax Kellermann2-3/+0
2014-02-24output/openal: use usleep() instead of g_usleep()Max Kellermann1-2/+2
2014-02-24output/pulse: use setenv() instead of g_setenv()Max Kellermann1-3/+2
There is no advantage in using g_setenv().
2014-02-24output/pulse: remove bogus g_free() callMax Kellermann1-2/+0
2014-02-24decoder/gme: use free() instead of g_free()Max Kellermann1-1/+1
2014-02-24DecoderPlugin: free the container_scan() return value with delete[]Max Kellermann3-7/+5
2014-02-24UriUtil: support ftp:// URLs in uri_remove_auth()Max Kellermann1-0/+2
2014-02-24Main: use INT_MAX instead of G_MAXUINTMax Kellermann1-1/+1
2014-02-23fs/Charset: use "UTF-8" instead of "utf-8" as the default valueMax Kellermann1-2/+2
The upper-case name seems to be the canonical one.
2014-02-23Directory: use PathTraitsUTF8::Build() instead of g_strconcat()Max Kellermann1-13/+4
2014-02-23Directory: pass std::string&& to constructorMax Kellermann2-4/+4
2014-02-22encoder/opus: use xalloc() instead of g_malloc()Max Kellermann1-6/+5
2014-02-22decoder/opus: use new[] instead of g_malloc()Max Kellermann1-6/+2
2014-02-22first Android releaseMax Kellermann1-0/+19
Finally, MPD runs on Android. For some small value of "runs". Very much work left, too much to describe.
2014-02-22output/sles: new output plugin for AndroidMax Kellermann7-0/+817
2014-02-22Main: disable command-line parser and signal handlers on AndroidMax Kellermann1-0/+19
2014-02-22LogBackend: use __android_log_print() on AndroidMax Kellermann2-1/+65
2014-02-22input/curl: include cleanupMax Kellermann2-3/+0