aboutsummaryrefslogtreecommitdiffstats
path: root/test (follow)
Commit message (Collapse)AuthorAgeFilesLines
* test: various fixups for building without GLibMax Kellermann2014-02-187-4/+20
|
* ArchivePlugin: pass Path to open()Max Kellermann2014-02-081-1/+1
|
* ArchivePlugin: rename struct archive_plugin to ArchivePluginMax Kellermann2014-02-081-1/+1
|
* storage/local: remove utf8 path from constructorMax Kellermann2014-02-071-3/+4
| | | | Build the UTF-8 version of the path automatically in the constructor.
* StoragePlugin: add method MapToRelativeUTF8()Max Kellermann2014-02-071-16/+8
| | | | Replaces map_to_relative_path() from Mapper.cxx.
* DecoderPlugin: pass Path instance to file_decode() and scan_file()Max Kellermann2014-02-072-7/+9
|
* Mapper: move map_song_detach() to db/DatabaseSong.cxxMax Kellermann2014-02-071-6/+16
| | | | Use Storage::MapUTF8() internally, don't use global variables.
* mixer/Plugin: pass AudioOutput reference to init()Max Kellermann2014-02-061-54/+2
| | | | Passing a void pointer is unsafe.
* Mixer: use reference instead of pointer for MixerPluginMax Kellermann2014-02-051-1/+1
|
* MixerPlugin: add EventLoop& init() parameterMax Kellermann2014-02-052-14/+7
|
* event/Loop: remove the dummy constructor argumentMax Kellermann2014-02-055-5/+5
|
* test/ShutdownHandler: make the constructor "explicit"Max Kellermann2014-02-051-1/+1
|
* db/DatabaseListener: add method OnDatabaseSongRemoved()Max Kellermann2014-02-041-0/+4
| | | | Decouples db/update/Remove.cpp from global variables.
* Instance: add Database attributeMax Kellermann2014-02-041-2/+9
| | | | Move from db/DatabaseGlue.cxx, eliminating global variable.
* db/DatabasePlaylist: pass Database reference aroundMax Kellermann2014-02-041-4/+6
| | | | Reduce global variable usage, move to frontend code.
* SongLoader: new class that merges duplicate codeMax Kellermann2014-02-031-10/+41
| | | | | There was quite a lot of duplicate code for loading DetachedSong objects, with different semantics for "securely" loading local files.
* output: move functions into the AudioOutput structMax Kellermann2014-01-291-1/+0
|
* output: rename source filesMax Kellermann2014-01-281-1/+1
|
* output: rename struct audio_output to AudioOutputMax Kellermann2014-01-281-4/+4
|
* OutputAll: convert to class, move instance to class PartitionMax Kellermann2014-01-281-3/+6
| | | | Another big chunk of code for multi-player support.
* Playlist{Info,Vector}: move to db/Max Kellermann2014-01-271-1/+1
|
* Merge branch 'v0.18.x'Max Kellermann2014-01-271-0/+85
|\
| * IcyMetadataParser: more robust tag parserMax Kellermann2014-01-271-0/+15
| | | | | | | | | | Allow semicolons and single quotes in the stream title. This is not part of any specification, but found in real life.
| * test/test_icy_parser: unit test for IcyMetaDataParser.cxxMax Kellermann2014-01-271-0/+70
| |
* | neighbor: new subsystem to detect file servers on the local networkMax Kellermann2014-01-262-0/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds the NeighborPlugin API which can be used to detect nearby file servers that can be used by input plugins. This list of servers is exported using the new "listneighbors" command. The idle even "neighbor" notifies interested clients when a new neighbor is found or an existing one is lost. There's a lot missing currently: protocol&user documentation, and a way to "mount" remote servers into the music database. Obviously, some code from the UPnP database plugin can be moved to a neighbor plugin.
* | Mixer*: move to mixer/Max Kellermann2014-01-242-3/+3
| |
* | Filter*: move to filter/Max Kellermann2014-01-243-5/+5
| |
* | Database*: move to db/Max Kellermann2014-01-243-8/+8
| |
* | Input*: move to input/Max Kellermann2014-01-248-16/+16
| |
* | Update*: move to update/Max Kellermann2014-01-241-1/+1
| |
* | Config*: move to config/Max Kellermann2014-01-2413-17/+17
| |
* | Queue*: move to queue/Max Kellermann2014-01-241-1/+1
| |
* | Zeroconf*: move to zeroconf/Max Kellermann2014-01-241-1/+1
| |
* | archive/*: move to archive/plugins/Max Kellermann2014-01-244-7/+7
| |
* | decoder/*: move to decoder/plugins/Max Kellermann2014-01-244-6/+6
| |
* | output/*: move to output/plugins/Max Kellermann2014-01-232-5/+5
| |
* | playlist/*: move to playlist/plugins/Max Kellermann2014-01-232-4/+4
| |
* | Encoder*: move to src/encoderMax Kellermann2014-01-232-4/+4
| | | | | | | | .. and move the plugins to src/encoder/plugins/.
* | LightDirectory: new struct replacing Directory in the DB APIMax Kellermann2014-01-221-5/+6
| |
* | PlaylistSong: modify the given song object in-placeMax Kellermann2014-01-211-48/+31
| | | | | | | | Reduce bloat.
* | test: add unit test for playlist_check_translate_song()Max Kellermann2014-01-211-0/+290
| |
* | Merge branch 'v0.18.x'Max Kellermann2014-01-201-2/+2
|\|
| * Queue: rename struct queue to QueueMax Kellermann2014-01-201-2/+2
| | | | | | | | | | Works around a build failure on Solaris because annoyingly, Solaris reserves the name "queue". This rename was pending anyway.
* | LightSong: new class to be used by DatabasePlugin callbacksMax Kellermann2014-01-192-37/+4
| | | | | | | | | | Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread.
* | copyright year 2014Max Kellermann2014-01-1336-36/+36
| |
* | DatabasePlugin: add interface DatabaseListenerMax Kellermann2014-01-111-1/+14
| | | | | | | | Allow database plugins to announce that they have been modified.
* | UPnP database pluginJean-Francois Dockes2014-01-091-0/+9
| | | | | | | | | | | | [mk: renamed source files, applied coding style, reduced bloat, using MPD's threading library, using MPD's error reporting and logging library and refactoring, fixed lots of bugs]
* | DetachedSong: fork of struct SongMax Kellermann2014-01-093-38/+42
| | | | | | | | | | | | From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead.
* | test/DumpDatabase: fix nullptr dereferenceMax Kellermann2014-01-091-1/+1
| |
* | Merge branch 'v0.18.x'Max Kellermann2014-01-081-0/+4
|\|