Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-08-11 | db/simple: compress the database file using gzip | Max Kellermann | 1 | -1/+6 | |
2014-04-24 | DatabaseCommands: "list" allows grouping | Max Kellermann | 1 | -2/+2 | |
2014-02-27 | db/simple: mount points | Max Kellermann | 1 | -0/+30 | |
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-27 | db/simple: GetRoot() returns reference | Max Kellermann | 1 | -2/+2 | |
2014-02-26 | db/simple: create dedicated directory | Max Kellermann | 1 | -0/+0 | |
2014-02-25 | db/simple: remove unused method LookupDirectory() | Max Kellermann | 1 | -3/+0 | |
2014-02-25 | db/simple: make internal methods "private" | Max Kellermann | 1 | -1/+1 | |
2014-02-25 | db/simple: add comment | Max Kellermann | 1 | -0/+1 | |
2014-02-25 | db/simple: move Create() up | Max Kellermann | 1 | -4/+4 | |
2014-02-19 | db/Interface: add attribute "plugin" | Max Kellermann | 1 | -2/+1 | |
The new method IsPlugin() replaces the "is_simple" flag. | |||||
2014-02-19 | DatabasePlugin: split header | Max Kellermann | 1 | -1/+5 | |
2014-02-04 | Instance: add Database attribute | Max Kellermann | 1 | -0/+3 | |
Move from db/DatabaseGlue.cxx, eliminating global variable. | |||||
2014-02-04 | db/update/Service: add SimpleDatabase reference | Max Kellermann | 1 | -0/+4 | |
Don't use the global variables from the DatabaseSimple library. | |||||
2014-01-24 | Database*: move to db/ | Max Kellermann | 1 | -2/+2 | |
2014-01-19 | LightSong: new class to be used by DatabasePlugin callbacks | Max Kellermann | 1 | -3/+9 | |
Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread. | |||||
2014-01-19 | db/simple: make borrowed_song_count "mutable" | Max Kellermann | 1 | -1/+1 | |
Simpler to use than const_cast. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-11 | DatabasePlugin: add interface DatabaseListener | Max Kellermann | 1 | -1/+2 | |
Allow database plugins to announce that they have been modified. | |||||
2013-11-22 | DatabasePlugin: add method GetUpdateStamp() | Max Kellermann | 1 | -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 2013 | Max Kellermann | 1 | -1/+1 | |
2013-10-20 | TagType: rename enum tag_type to TagType | Max Kellermann | 1 | -1/+1 | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | 1 | -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-15 | gcc.h: rename to Compiler.h | Max Kellermann | 1 | -1/+1 | |
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -10/+10 | |
Replaces GLib's GError. | |||||
2013-08-04 | DatabasePlugin: pass config_param reference | Max Kellermann | 1 | -2/+2 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -2/+2 | |
2013-02-02 | SimpleDatabasePlugin: use file system API, log in UTF-8 | Denis Krjuchkov | 1 | -0/+1 | |
2013-01-22 | Path: move to fs subdirectory | Denis Krjuchkov | 1 | -1/+1 | |
2013-01-18 | Path: new class "Path" wraps filesystem path strings | Max Kellermann | 1 | -2/+5 | |
2013-01-03 | Directory: rename struct directory to Directory | Max Kellermann | 1 | -4/+4 | |
2013-01-02 | don't include stdbool.h in C++ sources | Max Kellermann | 1 | -1/+0 | |
The "bool" type is built-in. | |||||
2012-08-16 | DatabasePlugin: add method ReturnSong() | Max Kellermann | 1 | -0/+6 | |
Allow the plugin to allocate the GetSong() return value. | |||||
2012-08-15 | DatabasePlugin: add method GetStats() | Max Kellermann | 1 | -0/+5 | |
Optimize the ProxyDatabase by invoking "stats" on the peer, instead of visiting all songs. | |||||
2012-08-15 | DatabasePlugin: add method VisitUniqueTags() | Max Kellermann | 1 | -0/+5 | |
Optimize the ProxyDatabase by invoking "list" on the peer, instead of visiting all songs. | |||||
2012-08-07 | db_selection: rename to DatabaseSelection | Max Kellermann | 1 | -1/+1 | |
2012-08-07 | Database{Plugin,Visitor}: pass references | Max Kellermann | 1 | -1/+1 | |
2012-08-02 | DatabasePlugin: make Visit() const | Max Kellermann | 1 | -2/+2 | |
2012-08-02 | gcc.h: re-add gcc_const and gcc_pure | Max Kellermann | 1 | -5/+4 | |
Remove GLib dependency from some headers. | |||||
2012-08-01 | db_plugin: convert to C++ | Max Kellermann | 1 | -0/+84 | |