summaryrefslogtreecommitdiff
path: root/src/Instance.hxx
AgeCommit message (Collapse)Author
2016-03-05Instance: embed EventLoop, no pointerMax Kellermann
2016-03-05Instance: add method Shutdown()Max Kellermann
2016-03-05Instance: use C++11 initializersMax Kellermann
2016-02-26update copyright year to 2016Max Kellermann
2015-01-01Copyright year 2015Max Kellermann
2014-02-09Main: wrap the Storage instance in CompositeStorageMax Kellermann
2014-02-06Instance: narrow "storage" to class StorageMax Kellermann
2014-02-05db/UpdateWalk: move LocalStorage to InstanceMax Kellermann
Keep only a reference.
2014-02-05Instance: add attribute "event_loop"Max Kellermann
Replaces global variable "main_loop".
2014-02-04db/DatabaseListener: add method OnDatabaseSongRemoved()Max Kellermann
Decouples db/update/Remove.cpp from global variables.
2014-02-04Instance: merge DatabaseModified() into OnDatabaseModified()Max Kellermann
2014-02-04Instance: add Database attributeMax Kellermann
Move from db/DatabaseGlue.cxx, eliminating global variable.
2014-02-04Main: create UpdateService instance in glue_db_init_and_load()Max Kellermann
2014-01-30db: add compile-time option to disable databaseMax Kellermann
2014-01-30db/update: convert to OO APIMax Kellermann
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day.
2014-01-26neighbor: new subsystem to detect file servers on the local networkMax Kellermann
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.
2014-01-24Database*: move to db/Max Kellermann
2014-01-13copyright year 2014Max Kellermann
2014-01-11DatabasePlugin: add interface DatabaseListenerMax Kellermann
Allow database plugins to announce that they have been modified.
2014-01-09DetachedSong: fork of struct SongMax Kellermann
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.
2013-10-22Playlist: copy stream tags from the PlayerThreadMax Kellermann
Finally restores an important feature that has been broken for several months when the PlayerThread started working with Song copies instead of pointers to the Queue's Song instances (commit e96779d).
2013-07-28song: convert header to C++Max Kellermann
2013-04-17Main: move global variables to struct InstanceMax Kellermann
More preparations for multi-player support.