aboutsummaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Tag: move struct TagItem to TagItem.hxxMax Kellermann2013-09-053-16/+43
|
* Tag: move fix_tag_value() to TagString.cxxMax Kellermann2013-09-053-102/+160
|
* Tag: remove unused methodsMax Kellermann2013-09-052-70/+0
|
* TagNames: make tag_item_names constMax Kellermann2013-09-052-2/+2
|
* Tag: move configuration code to TagConfig.cxxMax Kellermann2013-09-054-50/+103
| | | | Allow using the Tag.cxx library without the Config library.
* Tag, ...: move to libtag.aMax Kellermann2013-09-0576-78/+73
|
* mpd_error.h: remove obsolete headerMax Kellermann2013-09-0518-94/+68
| | | | Migrate the remaining callers to FatalError().
* input/curl: enable httpsAles Guzik2013-09-052-1/+3
|
* PlaylistPlugin: add interface SongEnumeratorMax Kellermann2013-09-0524-311/+200
| | | | Replaces struct playlist_provider.
* PlaylistPlugin, ConfigGlobal: use nullptr instead of NULLMax Kellermann2013-09-053-15/+11
|
* use standard snprintf() instead of GLib g_snprintf()Max Kellermann2013-09-054-26/+28
|
* conf.h: remove obsolete headerMax Kellermann2013-09-0544-73/+64
| | | | | Use only ConfigData.hxx in plugin sources to reduce header dependencies.
* conf.h: move constants to ConfigDefaults.hxxMax Kellermann2013-09-055-9/+28
|
* InputLegacy: move functions to the input_stream classMax Kellermann2013-09-0541-556/+413
|
* TagTable: un-inline the two functionsMax Kellermann2013-09-045-24/+64
| | | | Reduce header dependencies.
* Tag*: move TagTable.hxx to libtag.aMax Kellermann2013-09-045-4/+4
|
* Tag*: move libtag.a sources to src/tag/Max Kellermann2013-09-0420-9/+9
|
* system/SocketError: un-inline constructorMax Kellermann2013-09-043-13/+26
| | | | Reduces header dependencies.
* util/Error: new error passing libraryMax Kellermann2013-09-04236-3115/+3070
| | | | Replaces GLib's GError.
* system/resolver: convert to C++Max Kellermann2013-09-045-23/+13
|
* output/pulse: require libpulse 0.9.16Max Kellermann2013-09-041-51/+3
| | | | | Remove all #ifdefs. Old versions of libpulse are not being tested, and thus I'm removing support.
* IOThread: pass GError to FatalError()Max Kellermann2013-09-041-2/+4
| | | | Fixes build failure on GLib < 2.32.
* DatabaseSave: eliminate redundant db_quark() implementationMax Kellermann2013-09-031-7/+1
|
* IOThread: use FatalError() on g_thread_create() errorMax Kellermann2013-09-033-14/+8
| | | | New GLib versions don't fail.
* input/{mms,despotify}: remove "seek" implementationMax Kellermann2013-09-032-19/+3
| | | | Omitting it has the same effect as returning false unconditionally.
* input_stream.h: rename to InputLegacy.hxxMax Kellermann2013-09-0318-34/+22
|
* db_error: convert to C++Max Kellermann2013-08-105-10/+7
|
* playlist_error: convert to C++Max Kellermann2013-08-105-7/+7
|
* ack.h: move to protocol/Max Kellermann2013-08-103-2/+2
|
* alsa/mixer: defer InvalidateSockets() call to I/O threadMax Kellermann2013-08-101-1/+2
|
* EventLoop: initialise the thread id explicitlyMax Kellermann2013-08-101-1/+2
|
* ZeroconfAvahi: disable Avahi with epollMax Kellermann2013-08-101-0/+1
| | | | | Temporary hotfix until we have integrated avahi into our new event loop.
* EventLoop: new implementation using epollMax Kellermann2013-08-1014-16/+716
| | | | Implement an event loop without GLib.
* mixer/alsa: invoke InvalidateSockets() in constructorMax Kellermann2013-08-101-1/+3
|
* event/Call: signal the calling threadMax Kellermann2013-08-101-0/+5
| | | | Fixes regression from commit 018f4155.
* event/IdleMonitor: new monitor classMax Kellermann2013-08-102-0/+130
|
* event/MultiSocketMonitor: add struct SingleFDMax Kellermann2013-08-102-8/+32
| | | | Prepare for migrating away from GLib.
* event/MultiSocketMonitor: use uint64_t instead of gint64Max Kellermann2013-08-102-5/+6
| | | | Unsigned and portable.
* event/MultiSocketMonitor: eliminate virtual method CheckSockets()Max Kellermann2013-08-103-36/+16
| | | | Handle timeout internally.
* event/MultiSocketMonitor: PrepareSockets() returns timeoutMax Kellermann2013-08-103-11/+17
| | | | Simplify the API, don't use GLib specific integer type.
* glib_compat.h: use monotonic_clock_us() in g_source_get_time()Max Kellermann2013-08-101-3/+3
|
* glib_compat.h: remove unused wrapper g_file_test()Max Kellermann2013-08-101-28/+0
|
* decoder/wildmidi: use class Path for the "timidity.cfg" locationMax Kellermann2013-08-101-10/+14
|
* ConfigData: overload GetBlockPath() with default valueMax Kellermann2013-08-102-5/+21
|
* ConfigData: use FatalError() instead of MPD_ERROR()Max Kellermann2013-08-101-5/+6
|
* system/EPollFD: fix typo in Add()Max Kellermann2013-08-101-1/+1
|
* thread/Id: new class replacing GThread pointersMax Kellermann2013-08-105-15/+116
| | | | Remove a GLib dependencies from class EventLoop and DatabaseLock.
* event: add function BlockingCall()Max Kellermann2013-08-085-108/+129
| | | | | Replaces io_thread_call(). This approach is more generic and easier to use due to std::function.
* EventLoop: add methodd IsInside()Max Kellermann2013-08-082-2/+26
| | | | | Track which thread runs the EventLoop and provide a check whether we're currently inside.
* EventLoop: un-inline Run() and othersMax Kellermann2013-08-082-22/+61
| | | | Prepare for adding more code.