Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-03-17 | *: doxygen fixups | Max Kellermann | 1 | -1/+2 | |
2015-03-03 | *: change C-style prototypes, drop "(void)" | Max Kellermann | 1 | -1/+1 | |
2015-03-03 | system/FileDescriptor: new wrapper class for a file descriptor | Max Kellermann | 2 | -6/+8 | |
2015-03-03 | db/update/Container: convert vtrack name to FS charset | Max Kellermann | 1 | -1/+4 | |
2015-02-28 | fs/FileInfo: new library providing GetFileInfo() | Max Kellermann | 1 | -8/+7 | |
Replaces StatFile(), with a portable data object. | |||||
2015-02-28 | storage/FileInfo: rename to StorageFileInfo | Max Kellermann | 7 | -36/+38 | |
2015-02-25 | db/ExcludeList: use the TextFile class instead of stdio.h | Max Kellermann | 1 | -17/+24 | |
2015-01-29 | db/update/Walk: use std::unique_ptr instead of std::auto_ptr | Max Kellermann | 1 | -1/+1 | |
std::auto_ptr is deprecated, and std::unique_ptr is much better anyway. | |||||
2015-01-21 | config/Option: convert to strictly-typed enum | Max Kellermann | 1 | -2/+2 | |
2015-01-01 | Copyright year 2015 | Max Kellermann | 27 | -27/+27 | |
2014-12-04 | playlist, InotifySource, ...: update GLib comments | Max Kellermann | 1 | -2/+2 | |
2014-10-01 | storage/Interface: include cleanup | Max Kellermann | 1 | -0/+1 | |
2014-08-30 | *: add missing Compiler.h includes | Max Kellermann | 5 | -0/+5 | |
Necessary for "final" on gcc 4.6. | |||||
2014-08-06 | db/update/InotifySource: remove FifoBuffer | Max Kellermann | 2 | -16/+15 | |
Eliminate support for partial reads. The Linux kernel will never return partial results, so this buffering was unnecessary. | |||||
2014-06-16 | Directory: eliminate attribute "have_stat" | Max Kellermann | 1 | -2/+1 | |
Check for 0 in "device" and "inode" instead. | |||||
2014-06-16 | db/simple: use class boost::intrusive::list | Max Kellermann | 2 | -41/+37 | |
Remove the C list_head library and use type-safe C++ instead. | |||||
2014-03-01 | db/update/ExcludeList: make no-op if GLib is disabled | Max Kellermann | 2 | -0/+22 | |
Quick hack to allow using the database without GLib (for Android). | |||||
2014-02-27 | db/simple: mount points | Max Kellermann | 6 | -17/+160 | |
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/update/Queue: use std::list instead of std::queue | Max Kellermann | 2 | -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-27 | db/simple: GetRoot() returns reference | Max Kellermann | 1 | -1/+1 | |
2014-02-27 | db/update/Service: allocate UpdateWalk dynamically | Max Kellermann | 5 | -19/+28 | |
2014-02-27 | db/update: cancel the update on shutdown | Max Kellermann | 5 | -1/+55 | |
2014-02-27 | db/UpdateGlue: rename to Service.cxx | Max Kellermann | 2 | -161/+140 | |
2014-02-26 | db/simple: create dedicated directory | Max Kellermann | 8 | -13/+13 | |
2014-02-24 | DecoderPlugin: free the container_scan() return value with delete[] | Max Kellermann | 1 | -3/+1 | |
2014-02-17 | util/StringUtil: add function Strip() | Max Kellermann | 1 | -2/+2 | |
Replaces g_strstrip(). | |||||
2014-02-09 | db/update/Walk: disable FindAncestorLoop() if device/inode==0 | Max Kellermann | 1 | -0/+5 | |
2014-02-09 | db/update/Walk: document FindAncestorLoop() | Max Kellermann | 1 | -0/+6 | |
2014-02-09 | db/update/Walk: rename find_inode_ancestor() to FindAncestorLoop() | Max Kellermann | 1 | -4/+4 | |
2014-02-08 | ArchivePlugin: pass Path to open() | Max Kellermann | 1 | -1/+1 | |
2014-02-08 | ArchivePlugin: rename struct archive_plugin to ArchivePlugin | Max Kellermann | 2 | -5/+4 | |
2014-02-07 | InotifyUpdate: use class Storage instead of Mapper.cxx | Max Kellermann | 2 | -4/+7 | |
2014-02-07 | InotifyUpdate: use the root name instead of mapper_get_music_directory_fs() | Max Kellermann | 1 | -1/+1 | |
The root WatchDirectory instance already contains the music directory, and we don't need to fetch it again. | |||||
2014-02-07 | InotifyUpdate: move functions into the WatchDirectory class | Max Kellermann | 1 | -13/+18 | |
2014-02-07 | InotifyUpdate: remove unnecessary #ifdefs | Max Kellermann | 1 | -18/+0 | |
2014-02-07 | StoragePlugin: add method MapToRelativeUTF8() | Max Kellermann | 1 | -3/+8 | |
Replaces map_to_relative_path() from Mapper.cxx. | |||||
2014-02-07 | DecoderPlugin: pass Path instance to file_decode() and scan_file() | Max Kellermann | 1 | -2/+2 | |
2014-02-06 | fixed leaked LocalDirectoryReader *const reader in UpdateWalk::UpdateDirectory | geneticdrift | 1 | -3/+3 | |
2014-02-06 | SongUpdate: use the Storage interface, support remote files | Max Kellermann | 2 | -3/+3 | |
This commit finally allows the database update to scan remote files, e.g. using the smbclient storage plugin. However, it is not yet possible to configure that, therefore the feature is not accessible yet. | |||||
2014-02-05 | db/update: include StorageInterface.hxx instead of LocalStorage.hxx | Max Kellermann | 2 | -2/+2 | |
2014-02-05 | storage: add abstract interface | Max Kellermann | 6 | -25/+25 | |
Prepare for the plugin interface. | |||||
2014-02-05 | db/UpdateWalk: move LocalStorage to Instance | Max Kellermann | 6 | -7/+13 | |
Keep only a reference. | |||||
2014-02-05 | db/update/Remove: initialize attribute "removed_song" | Max Kellermann | 1 | -1/+2 | |
Fixes bogus assertion failure. | |||||
2014-02-05 | LocalStorage: new API abstracting filesystem walk | Max Kellermann | 7 | -174/+211 | |
Prepare to make this a new plugin API, for example to use a SMB share for the music_directory. | |||||
2014-02-05 | db/UpdateIO: add "pure" attributes | Max Kellermann | 1 | -0/+4 | |
2014-02-05 | db/UpdateGlue: relax assertion | Max Kellermann | 1 | -2/+2 | |
Fixes assertion failure when update gets launched during MPD startup. | |||||
2014-02-04 | db/DatabaseListener: add method OnDatabaseSongRemoved() | Max Kellermann | 6 | -28/+13 | |
Decouples db/update/Remove.cpp from global variables. | |||||
2014-02-04 | db/update/Service: use DatabaseListener instead of Instance | Max Kellermann | 2 | -5/+11 | |
Don't use the global variable "instance". | |||||
2014-02-04 | db/update/Service: use EventLoop::IsInside() | Max Kellermann | 1 | -2/+6 | |
Don't use the global variable "main_thread". | |||||
2014-02-04 | db/update/Service: initialize "progress" and "update_task_id" | Max Kellermann | 1 | -1/+3 | |
Database update was randomly broken due to these uninitialized variables. |