summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-09-05Tag, ...: move to libtag.aMax Kellermann
2013-09-05mpd_error.h: remove obsolete headerMax Kellermann
Migrate the remaining callers to FatalError().
2013-09-05input/curl: enable httpsAles Guzik
2013-09-05PlaylistPlugin: add interface SongEnumeratorMax Kellermann
Replaces struct playlist_provider.
2013-09-05PlaylistPlugin, ConfigGlobal: use nullptr instead of NULLMax Kellermann
2013-09-05use standard snprintf() instead of GLib g_snprintf()Max Kellermann
2013-09-05conf.h: remove obsolete headerMax Kellermann
Use only ConfigData.hxx in plugin sources to reduce header dependencies.
2013-09-05conf.h: move constants to ConfigDefaults.hxxMax Kellermann
2013-09-05InputLegacy: move functions to the input_stream classMax Kellermann
2013-09-04TagTable: un-inline the two functionsMax Kellermann
Reduce header dependencies.
2013-09-04Tag*: move TagTable.hxx to libtag.aMax Kellermann
2013-09-04Tag*: move libtag.a sources to src/tag/Max Kellermann
2013-09-04system/SocketError: un-inline constructorMax Kellermann
Reduces header dependencies.
2013-09-04util/Error: new error passing libraryMax Kellermann
Replaces GLib's GError.
2013-09-04system/resolver: convert to C++Max Kellermann
2013-09-04output/pulse: require libpulse 0.9.16Max Kellermann
Remove all #ifdefs. Old versions of libpulse are not being tested, and thus I'm removing support.
2013-09-04IOThread: pass GError to FatalError()Max Kellermann
Fixes build failure on GLib < 2.32.
2013-09-03DatabaseSave: eliminate redundant db_quark() implementationMax Kellermann
2013-09-03IOThread: use FatalError() on g_thread_create() errorMax Kellermann
New GLib versions don't fail.
2013-09-03input/{mms,despotify}: remove "seek" implementationMax Kellermann
Omitting it has the same effect as returning false unconditionally.
2013-09-03input_stream.h: rename to InputLegacy.hxxMax Kellermann
2013-08-10db_error: convert to C++Max Kellermann
2013-08-10playlist_error: convert to C++Max Kellermann
2013-08-10ack.h: move to protocol/Max Kellermann
2013-08-10alsa/mixer: defer InvalidateSockets() call to I/O threadMax Kellermann
2013-08-10EventLoop: initialise the thread id explicitlyMax Kellermann
2013-08-10ZeroconfAvahi: disable Avahi with epollMax Kellermann
Temporary hotfix until we have integrated avahi into our new event loop.
2013-08-10EventLoop: new implementation using epollMax Kellermann
Implement an event loop without GLib.
2013-08-10mixer/alsa: invoke InvalidateSockets() in constructorMax Kellermann
2013-08-10event/Call: signal the calling threadMax Kellermann
Fixes regression from commit 018f4155.
2013-08-10event/IdleMonitor: new monitor classMax Kellermann
2013-08-10event/MultiSocketMonitor: add struct SingleFDMax Kellermann
Prepare for migrating away from GLib.
2013-08-10event/MultiSocketMonitor: use uint64_t instead of gint64Max Kellermann
Unsigned and portable.
2013-08-10event/MultiSocketMonitor: eliminate virtual method CheckSockets()Max Kellermann
Handle timeout internally.
2013-08-10event/MultiSocketMonitor: PrepareSockets() returns timeoutMax Kellermann
Simplify the API, don't use GLib specific integer type.
2013-08-10glib_compat.h: use monotonic_clock_us() in g_source_get_time()Max Kellermann
2013-08-10glib_compat.h: remove unused wrapper g_file_test()Max Kellermann
2013-08-10decoder/wildmidi: use class Path for the "timidity.cfg" locationMax Kellermann
2013-08-10ConfigData: overload GetBlockPath() with default valueMax Kellermann
2013-08-10ConfigData: use FatalError() instead of MPD_ERROR()Max Kellermann
2013-08-10system/EPollFD: fix typo in Add()Max Kellermann
2013-08-10thread/Id: new class replacing GThread pointersMax Kellermann
Remove a GLib dependencies from class EventLoop and DatabaseLock.
2013-08-08event: add function BlockingCall()Max Kellermann
Replaces io_thread_call(). This approach is more generic and easier to use due to std::function.
2013-08-08EventLoop: add methodd IsInside()Max Kellermann
Track which thread runs the EventLoop and provide a check whether we're currently inside.
2013-08-08EventLoop: un-inline Run() and othersMax Kellermann
Prepare for adding more code.
2013-08-08event/*Monitor: add method GetEventLoop()Max Kellermann
2013-08-08event/SocketMonitor: un-inline Schedule()Max Kellermann
Merge with CommitEventFlags().
2013-08-08event/SocketMonitor: add assertionsMax Kellermann
2013-08-08output/httpd: use "unsigned" instead of "guint"Max Kellermann
2013-08-08Client{Event,Write}: add missing includeMax Kellermann