aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/plugins/UpnpDatabasePlugin.cxx (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-14db/upnp/Object: add attribute "tag"Max Kellermann1-37/+2
Replaces "m_title" and "m_props". More bloat removed.
2014-01-14db/upnp: move upnp_tags to Tags.cxxMax Kellermann1-11/+1
2014-01-14db/upnp/Object: disallow copying, always moveMax Kellermann1-5/+4
Reduce bloat.
2014-01-14db/upnp: getTagValue() returns string pointerMax Kellermann1-19/+13
Reduce bloat.
2014-01-14db/upnp/Directory: merge m_containers and m_itemsMax Kellermann1-52/+59
There is no use in duplicating these containers. It only means that we have to search both, duplicating the code.
2014-01-14db/upnp: pass const reference to getTagValue()Max Kellermann1-1/+1
2014-01-14db/upnp: Namei() returns error when no object was foundMax Kellermann1-2/+5
Don't fail silently.
2014-01-14db/upnp/Object: add attribute "name"Max Kellermann1-19/+5
Call titleToPathElt() only once for each object.
2014-01-14db/upnp: use std::replace() in titleToPath()Max Kellermann1-10/+4
2014-01-14db/upnp: pass std::string to titleToPathElt()Max Kellermann1-2/+2
2014-01-14db/upnp: don't sanitize the title tagMax Kellermann1-2/+2
We need this only for path names.
2014-01-13copyright year 2014Max Kellermann1-1/+1
2014-01-13db/upnp: add fallback for emplace()Max Kellermann1-1/+6
The method emplace() was added in gcc 4.8. This commit restores compatibility with gcc 4.7.
2014-01-11db/upnp/Object: add attribute "url"Max Kellermann1-1/+1
Don't store in the std::map.
2014-01-11db/upnp/Directory: parse durationMax Kellermann1-13/+2
Don't put all <res/> attributes to the attributes map; parse the "duration" attribute as soon as we receive it, and store it in an integer attribute. This reduces bloat.
2014-01-11db/upnp: move stringToTokens() to Util.cxxMax Kellermann1-36/+1
2014-01-11db/upnp: move lazy Open() call to new class LazyDatabaseMax Kellermann1-29/+9
Generic approach for the workaround.
2014-01-11DatabasePlugin: add interface DatabaseListenerMax Kellermann1-2/+5
Allow database plugins to announce that they have been modified.
2014-01-10db/upnp: remove "upnplog" optionMax Kellermann1-6/+1
We have removed all libupnp logging calls, and we don't need to debug libupnp.
2014-01-10db/upnp/Object: use strictly-typed enumsMax Kellermann1-32/+53
At the same time, rename the enum types and the class attributes, and add an "UNKNOWN" type/class. The latter avoids the "-1" hack.
2014-01-10db/upnp: getprop() returns const char *Max Kellermann1-16/+16
Return the return value, instead returning it in a reference parameter. Reduces bloat by reducing unnecessary std::string usage.
2014-01-10db/upnp: don't set mtime, start_ms, end_msMax Kellermann1-5/+0
Not necessary or useful.
2014-01-10db/upnp: use TagTable in upnpItemToSong()Max Kellermann1-25/+14
Reduces bloat by eliminating one std::map.
2014-01-09UPnP database pluginJean-Francois Dockes1-0/+923
[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]