Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-02-27 | db/simple: mount points | Max Kellermann | 1 | -0/+3 | |
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-26 | db/simple: create dedicated directory | Max Kellermann | 1 | -2/+2 | |
2014-02-24 | DecoderPlugin: free the container_scan() return value with delete[] | Max Kellermann | 1 | -3/+1 | |
2014-02-07 | DecoderPlugin: pass Path instance to file_decode() and scan_file() | Max Kellermann | 1 | -2/+2 | |
2014-02-05 | db/update: include StorageInterface.hxx instead of LocalStorage.hxx | Max Kellermann | 1 | -1/+1 | |
2014-02-05 | db/UpdateWalk: move LocalStorage to Instance | Max Kellermann | 1 | -0/+1 | |
Keep only a reference. | |||||
2014-02-05 | LocalStorage: new API abstracting filesystem walk | Max Kellermann | 1 | -11/+16 | |
Prepare to make this a new plugin API, for example to use a SMB share for the music_directory. | |||||
2014-01-31 | db/update/Editor: add locking method variants | Max Kellermann | 1 | -3/+1 | |
2014-01-30 | db/update: convert to OO API | Max Kellermann | 1 | -21/+12 | |
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day. | |||||
2014-01-24 | Database*: move to db/ | Max Kellermann | 1 | -3/+3 | |
2014-01-24 | Update*: move to update/ | Max Kellermann | 1 | -0/+0 | |
2014-01-24 | decoder/*: move to decoder/plugins/ | Max Kellermann | 1 | -2/+2 | |
2014-01-19 | Song: make the "parent" attribute mandatory | Max Kellermann | 1 | -1/+1 | |
The Song class is only used for database songs now. A Song without a Directory is not possible anymore. | |||||
2014-01-19 | Song: embed the Tag object statically into class Song | Max Kellermann | 1 | -4/+1 | |
Reduces overhead because we need to manage only one memory allocation. According to valgrind/massif, we save 7%. | |||||
2014-01-13 | copyright year 2014 | Max Kellermann | 1 | -1/+1 | |
2014-01-08 | tag/TagBuilder: rename Commit() to CommitNew() | Max Kellermann | 1 | -1/+1 | |
2013-12-29 | UpdateContainer: pass suffix instead of DecoderPlugin | Max Kellermann | 1 | -2/+14 | |
Instead of using the first DecoderPlugin that supports the suffix, use the first one that actually implements the "container_scan" method. | |||||
2013-11-04 | Log: add level "DEFAULT" | Max Kellermann | 1 | -2/+2 | |
Map LogLevel::INFO to G_LOG_LEVEL_INFO, and LogLevel::DEFAULT to G_LOG_LEVEL_MESSAGE. Now client connect/disconnect message are only logged on log_level "secure". | |||||
2013-10-21 | DecoderPlugin: move functions into the struct | Max Kellermann | 1 | -2/+2 | |
2013-10-21 | decoder_plugin: rename struct to DecoderPlugin | Max Kellermann | 1 | -1/+1 | |
2013-10-19 | *: use references instead of pointers | Max Kellermann | 1 | -9/+9 | |
2013-10-19 | *: use nullptr instead of NULL | Max Kellermann | 1 | -6/+6 | |
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-02 | Log: new logging library API | Max Kellermann | 1 | -1/+4 | |
Prepare to migrate away from GLib. Currently, we're still using GLib as a backend. | |||||
2013-09-26 | TagHandler: use a TagBuilder internally | Max Kellermann | 1 | -3/+8 | |
Reduce heap allocator overhead. | |||||
2013-09-05 | Tag, ...: move to libtag.a | Max Kellermann | 1 | -2/+2 | |
2013-07-30 | tag: convert to C++ | Max Kellermann | 1 | -2/+2 | |
2013-07-30 | tag: move enum tag_type to TagType.h | Max Kellermann | 1 | -0/+1 | |
2013-07-29 | tag_handler: convert to C++ | Max Kellermann | 1 | -4/+1 | |
2013-07-28 | song: convert header to C++ | Max Kellermann | 1 | -2/+2 | |
2013-07-28 | decoder_api: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-30 | UpdateContainer: remove duplicate unlock call | Max Kellermann | 1 | -1/+0 | |
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 | -7/+6 | |
2013-01-07 | decoder_api.h, ...: add "extern C" | Max Kellermann | 1 | -1/+0 | |
2013-01-03 | Directory: rename struct directory to Directory | Max Kellermann | 1 | -6/+5 | |
2013-01-02 | Directory: turn functions to methods | Max Kellermann | 1 | -5/+4 | |
2013-01-02 | Directory: make the header C++ only | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | mapper: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | db_lock: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-02 | update: convert to C++ | Max Kellermann | 1 | -5/+8 | |
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-06-13 | update_walk: move code to update_container.c | Max Kellermann | 1 | -0/+124 | |