aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/plugins/LazyDatabase.hxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-24Database*: move to db/Max Kellermann1-1/+1
2014-01-19LightSong: new class to be used by DatabasePlugin callbacksMax Kellermann1-3/+3
Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread.
2014-01-13copyright year 2014Max Kellermann1-1/+1
2014-01-11db/upnp: move lazy Open() call to new class LazyDatabaseMax Kellermann1-48/+17
Generic approach for the workaround.
2014-01-11DatabasePlugin: add interface DatabaseListenerMax Kellermann1-1/+2
Allow database plugins to announce that they have been modified.
2013-11-22DatabasePlugin: add method GetUpdateStamp()Max Kellermann1-7/+4
Refactor SimpleDatabase::GetLastModified() to be generic for all plugins. Remove the SimpleDatabase assumption from db_stats_print(), allowing it to be implemented by all database plugins.
2013-10-30*: update copyright year to 2013Max Kellermann1-1/+1
2013-10-20TagType: rename enum tag_type to TagTypeMax Kellermann1-1/+1
2013-10-17fs/Path: rename to AllocatedPathMax Kellermann1-3/+3
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object.
2013-10-15gcc.h: rename to Compiler.hMax Kellermann1-1/+1
2013-09-04util/Error: new error passing libraryMax Kellermann1-10/+10
Replaces GLib's GError.
2013-08-04DatabasePlugin: pass config_param referenceMax Kellermann1-2/+2
2013-07-28song: convert header to C++Max Kellermann1-2/+2
2013-02-02SimpleDatabasePlugin: use file system API, log in UTF-8Denis Krjuchkov1-0/+1
2013-01-22Path: move to fs subdirectoryDenis Krjuchkov1-1/+1
2013-01-18Path: new class "Path" wraps filesystem path stringsMax Kellermann1-2/+5
2013-01-03Directory: rename struct directory to DirectoryMax Kellermann1-4/+4
2013-01-02don't include stdbool.h in C++ sourcesMax Kellermann1-1/+0
The "bool" type is built-in.
2012-08-16DatabasePlugin: add method ReturnSong()Max Kellermann1-0/+6
Allow the plugin to allocate the GetSong() return value.
2012-08-15DatabasePlugin: add method GetStats()Max Kellermann1-0/+5
Optimize the ProxyDatabase by invoking "stats" on the peer, instead of visiting all songs.
2012-08-15DatabasePlugin: add method VisitUniqueTags()Max Kellermann1-0/+5
Optimize the ProxyDatabase by invoking "list" on the peer, instead of visiting all songs.
2012-08-07db_selection: rename to DatabaseSelectionMax Kellermann1-1/+1
2012-08-07Database{Plugin,Visitor}: pass referencesMax Kellermann1-1/+1
2012-08-02DatabasePlugin: make Visit() constMax Kellermann1-2/+2
2012-08-02gcc.h: re-add gcc_const and gcc_pureMax Kellermann1-5/+4
Remove GLib dependency from some headers.
2012-08-01db_plugin: convert to C++Max Kellermann1-0/+84