aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/plugins/upnp/UpnpDatabasePlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-08-24db/UniqueTags, tag/Set, ...: use typedef tag_mask_tMax Kellermann1-2/+2
2015-06-25SongFilter: return "const char *" instead of std::stringMax Kellermann1-2/+2
2015-02-02lib/upnp/Discovery: apply naming conventionMax Kellermann1-4/+4
2015-01-21config/Param: split block-specific attributes to new struct ConfigBlockMax Kellermann1-6/+6
The old struct config_param remains only for top-level string options.
2015-01-21ConfigData: move struct config_param to Param.hxxMax Kellermann1-1/+1
2015-01-01Copyright year 2015Max Kellermann1-1/+1
2014-12-26db/lazy, input/mms: add "override" keywordsMax Kellermann1-2/+4
Fixes -Winconsistent-missing-override (clang 3.6).
2014-11-28Compiler.h: add macro CLANG_OR_GCC_VERSION()Max Kellermann1-1/+1
2014-11-08db/upnp/Object: apply coding styleMax Kellermann1-7/+7
2014-08-29db/upnp: use DatabaseStats::Clear()Max Kellermann1-4/+1
2014-08-28db/LightSong: use std::chrono::duration for start_ms and end_msMax Kellermann1-2/+2
2014-04-24DatabaseCommands: "list" allows groupingMax Kellermann1-7/+12
2014-02-19db/upnp: move plugin source to upnp directoryMax Kellermann1-2/+2
2014-02-19DatabasePlugin: add attribute "flags"Max Kellermann1-0/+1
2014-02-19db/Interface: add attribute "plugin"Max Kellermann1-0/+2
The new method IsPlugin() replaces the "is_simple" flag.
2014-02-19DatabasePlugin: split headerMax Kellermann1-0/+2
2014-01-26db/upnp: remove sleep(2) callMax Kellermann1-3/+0
This call was unnecessary. It is a bad idea anyway to block the MPD process for some arbitrary amount of time.
2014-01-26upnp: initialize the client handle only onceMax Kellermann1-16/+10
Eliminate class LibUPnP and move the code to ClientInit.cxx. Its initialization function can be called multiple times, but UpnpRegisterClient() is called at most once.
2014-01-26upnp/discovery: use a plain UpnpClient_Handle instead of class LibUPnPMax Kellermann1-1/+1
2014-01-26db/upnp: move generic code to lib/upnp/Max Kellermann1-5/+5
2014-01-26db/upnp: rename variablesMax Kellermann1-21/+21
2014-01-24Database*: move to db/Max Kellermann1-5/+5
2014-01-24Config*: move to config/Max Kellermann1-1/+1
2014-01-23db/upnp: strict vpath checks for the "root" directoryMax Kellermann1-0/+20
2014-01-23db/upnp: move code to VisitObject()Max Kellermann1-22/+33
2014-01-23db/upnp: merge two PathTraitsUTF8::Build() callsMax Kellermann1-16/+4
2014-01-23db/upnp: move code to VisitItem()Max Kellermann1-61/+56
2014-01-23db/upnp: fix subdirectory paths in "listallinfo"Max Kellermann1-3/+3
Add missing server name prefix.
2014-01-23base_uriMax Kellermann1-0/+4
2014-01-23db/upnp: pass char* to visitSong()Max Kellermann1-6/+6
Don't use std::string, reduce bloat.
2014-01-22db/upnp: call VisitDirectory on servers, even in recursive modeMax Kellermann1-14/+10
2014-01-22db/upnp: make several methods "const"Max Kellermann1-12/+12
2014-01-22db/upnp: inline Configure()Max Kellermann1-1/+1
2014-01-22db/upnp: don't duplicate song data for VisitSongMax Kellermann1-2/+9
Not necessary because we control the LightSong's life cycle.
2014-01-22db/proxy: merge redundant string::push_back() callsMax Kellermann1-4/+2
2014-01-22db/upnp: use PathTraitsUTF8::Build()Max Kellermann1-5/+14
2014-01-22LightDirectory: new struct replacing Directory in the DB APIMax Kellermann1-9/+4
2014-01-22db/upnp: append characters instead of single-character stringsMax Kellermann1-2/+2
2014-01-22db/upnp: use string::push_back() instead of string::append()Max Kellermann1-5/+5
2014-01-22db/upnp: use std::list instead of std::set for SearchCapabilitiesMax Kellermann1-1/+1
Reduce bloat. We never used the set lookup.
2014-01-21db/upnp: merge duplicate branches in Namei()Max Kellermann1-25/+10
2014-01-21db/upnp: simplify Namei()Max Kellermann1-7/+6
2014-01-21db/upnp: use std::list instead of std::vectorMax Kellermann1-6/+7
Reduce overhead.
2014-01-21db/upnp: use iterator in Namei()Max Kellermann1-4/+5
2014-01-21db/upnp: move "objid" declaration downMax Kellermann1-2/+2
Don't allocate the object when it's not needed.
2014-01-21db/upnp: eliminate redundant Namei() parameter "oobjid"Max Kellermann1-12/+7
The caller should better obtain the object id from the returned UPnPDirObject instance.
2014-01-21db/upnp: remove redundant objid.empty() check from VisitServer()Max Kellermann1-4/+0
If Namei() succeeds, the object id is guaranteed to be set.
2014-01-21db/upnp: use std::move() to extract server nameMax Kellermann1-1/+1
Reduce runtime overhead.
2014-01-21db/upnp: use vector::front() instead of [0]Max Kellermann1-5/+5
2014-01-21db/upnp: don't construct redundant empty vector<string> in Visit()Max Kellermann1-1/+1
We know already that vpath is empty, let's use this instance.