Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-08-07 | ConfigPath: return a Path object | Max Kellermann | 1 | -12/+3 | |
Migrate all callers to use Path directly, instead of doing the conversion in each caller. | |||||
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 2 | -4/+4 | |
2013-08-04 | DatabasePlugin: pass config_param reference | Max Kellermann | 3 | -11/+11 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -7/+7 | |
2013-07-30 | tag: move enum tag_type to TagType.h | Max Kellermann | 1 | -0/+1 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 3 | -21/+21 | |
2013-02-02 | SimpleDatabasePlugin: use file system API, log in UTF-8 | Denis Krjuchkov | 2 | -25/+24 | |
2013-01-28 | db/Proxy: explicitly request first element of array | Max Kellermann | 1 | -2/+2 | |
Works around gcc 4.6 bug. | |||||
2013-01-28 | Path::FromUTF8() returns nulled instance on error, add error handling where ↵ | Denis Krjuchkov | 1 | -0/+6 | |
required | |||||
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 | 2 | -4/+8 | |
2013-01-07 | decoder_api.h, ...: add "extern C" | Max Kellermann | 2 | -5/+1 | |
2013-01-03 | TextFile: convert to a class | Max Kellermann | 1 | -7/+4 | |
2013-01-03 | Directory: rename struct directory to Directory | Max Kellermann | 3 | -12/+11 | |
2013-01-02 | Directory: turn functions to methods | Max Kellermann | 2 | -16/+14 | |
2013-01-02 | Directory: make the header C++ only | Max Kellermann | 2 | -4/+2 | |
2013-01-02 | PlaylistInfo: rename class, use std::string | Max Kellermann | 1 | -7/+3 | |
2013-01-02 | db_lock: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2013-01-02 | don't include stdbool.h in C++ sources | Max Kellermann | 1 | -1/+0 | |
The "bool" type is built-in. | |||||
2013-01-02 | playlist_vector: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | db_save, state_file: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2012-09-05 | db/SimpleDatabasePlugin: fix memory leak in Visit() | Max Kellermann | 1 | -7/+11 | |
When visiting a song, GetSong() was called, but this object was never returned by calling ReturnSong(). This patch locks the database only once in Visit() and passes the original song object to the visitor, avoiding the copy. | |||||
2012-09-05 | db_lock: add C++ helper class ScopeDatabaseLock | Max Kellermann | 1 | -11/+6 | |
2012-08-29 | SongFilter: convert to a C++ class | Max Kellermann | 1 | -1/+1 | |
2012-08-29 | DatabaseSelection: add method Match() | Max Kellermann | 1 | -2/+1 | |
2012-08-29 | locate: rename to SongFilter.cxx | Max Kellermann | 1 | -1/+1 | |
2012-08-16 | ProxyDatabase: implement GetSong() | Max Kellermann | 1 | -3/+26 | |
2012-08-16 | ProxyDatabase: clear libmpdclient errors in CheckError() | Max Kellermann | 1 | -1/+2 | |
Auto-recover from soft errors. | |||||
2012-08-16 | DatabasePlugin: add method ReturnSong() | Max Kellermann | 3 | -0/+38 | |
Allow the plugin to allocate the GetSong() return value. | |||||
2012-08-15 | ProxyDatabase: pass "detached" objects to visitors | Max Kellermann | 1 | -39/+34 | |
Fixes wrong object URIs with duplicate base names. | |||||
2012-08-15 | DatabasePlugin: add method GetStats() | Max Kellermann | 3 | -0/+37 | |
Optimize the ProxyDatabase by invoking "stats" on the peer, instead of visiting all songs. | |||||
2012-08-15 | DatabasePlugin: add method VisitUniqueTags() | Max Kellermann | 3 | -0/+68 | |
Optimize the ProxyDatabase by invoking "list" on the peer, instead of visiting all songs. | |||||
2012-08-15 | ProxyDatabase: obey visitor return values | Max Kellermann | 1 | -8/+11 | |
2012-08-15 | ProxyDatabasePlugin: add OO wrapper for mpd_entity | Max Kellermann | 1 | -11/+32 | |
Let the C++ compiler take care for freeing the objects safely. | |||||
2012-08-15 | ProxyDatabasePlugin: move tag table to the global name space | Max Kellermann | 1 | -25/+25 | |
2012-08-15 | db_visitor: delete obsolete header | Max Kellermann | 2 | -4/+0 | |
2012-08-08 | ProxyDatabasePlugin: obey the "recursive" flag | Max Kellermann | 1 | -2/+3 | |
2012-08-08 | ProxyDatabasePlugin: use an artificial "root" directory | Max Kellermann | 1 | -2/+9 | |
Fixes assertion failures in the Directory library. | |||||
2012-08-08 | ProxyDatabasePlugin: new database plugin using libmpdclient | Max Kellermann | 2 | -0/+372 | |
Implementation incomplete, but sort-of-works. DumpDatabase works, but MPD is still hard-coded on the "simple" plugin. | |||||
2012-08-08 | DatabaseSelection: add "match" attribute | Max Kellermann | 1 | -2/+5 | |
Let the database plugin do the match. | |||||
2012-08-07 | db_selection: rename to DatabaseSelection | Max Kellermann | 2 | -3/+3 | |
2012-08-07 | Database{Plugin,Visitor}: pass references | Max Kellermann | 2 | -8/+8 | |
2012-08-02 | DatabasePlugin: make Visit() const | Max Kellermann | 2 | -4/+4 | |
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 | 3 | -184/+184 | |
2012-07-10 | require GLib 2.16 | Max Kellermann | 1 | -1/+0 | |
GLib 2.16 was released more than 4 years ago. Let's remove some cruft from the glib_compat.h header, and avoid new cruft to it. | |||||
2012-02-02 | directory: require the caller to lock the db_mutex | Max Kellermann | 1 | -2/+11 | |
Reduce the number of lock/unlock cycles, and make database handling safer. | |||||
2012-01-24 | directory: replace dirvec with doubly linked list | Max Kellermann | 1 | -2/+6 | |
Random access is not needed, and a linked list is easier to manage: we don't need to (re-)allocate the pointer array. | |||||
2012-01-24 | directory: simplify constructors and clarify API documentation | Max Kellermann | 1 | -2/+2 | |
Pass only the "name" to a directory, instead of the full (relative) path. | |||||
2012-01-12 | db/simple: pass the correct GError pointer | Max Kellermann | 1 | -1/+1 | |