aboutsummaryrefslogtreecommitdiffstats
path: root/src/db (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-01-23db/upnp/Discovery: use std::list instead of std::mapMax Kellermann2-16/+33
There will only be very few items, and that does not justify the bloat of std::map.
2014-01-23db/upnp/Discovery: move code to LockAdd(), LockRemove()Max Kellermann2-9/+21
2014-01-23db/upnp/Discovery: un-inline the destructorMax Kellermann2-0/+6
2014-01-23db/upnp: un-inline a few destructorsMax Kellermann8-0/+49
Reduce bloat.
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 Kellermann3-22/+22
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/upnp: emplace/move in csvToStrings()Max Kellermann1-2/+2
2014-01-22db/upnp: require an empty token list in csvToStrings()Max Kellermann1-6/+4
2014-01-22db/proxy: simplify csvToStrings()Max Kellermann1-47/+17
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-22db/proxy: fix for libmpdclient < 2.9Max Kellermann1-0/+4
2014-01-22db/proxy: copy "Last-Modified" from remote directoriesMax Kellermann1-1/+2
2014-01-22LightDirectory: new struct replacing Directory in the DB APIMax Kellermann3-25/+18
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/Discovery: unlock mutex before deleting DiscoveredTaskMax Kellermann1-1/+2
2014-01-22db/upnp/Discovery: eliminate two strlen() callsMax Kellermann1-4/+4
2014-01-22db/upnp: use std::list instead of std::set for SearchCapabilitiesMax Kellermann4-9/+7
Reduce bloat. We never used the set lookup.
2014-01-22db/upnp: check offset<total at end of loopMax Kellermann1-16/+7
2014-01-22db/upnp: break when zero objects have been returnedMax Kellermann1-0/+3
2014-01-22db/upnp: free responses manuallyMax Kellermann1-21/+6
2014-01-22db/upnp: break when count==0Max Kellermann1-6/+3
Make this non-fatal. Just stop reading more objects.
2014-01-22db/upnp: use ParseUnsigned() instead of atoi()Max Kellermann1-16/+10
2014-01-22db/upnp: pass unsigned integers to readDirSlice()Max Kellermann2-17/+17
2014-01-22db/upnp: inline ContentDirectoryService::readDirSlice()Max Kellermann1-1/+1
2014-01-22db/upnp: remove special case for "*"Max Kellermann1-3/+1
Passing this to csvToStrings() will do the same.
2014-01-22db/upnp: obtain char* from ixmlwrap::getFirstElementValue()Max Kellermann1-9/+13
Fixes crash when there's no SearchCaps element.
2014-01-22db/upnp/Util: pass char* to csvToStrings()Max Kellermann3-8/+12
2014-01-22db/upnp: require an empty input capability setMax Kellermann1-1/+2
2014-01-22db/upnp/Util: handle absolute URI paths properly in caturl()Max Kellermann1-7/+20
Fixes problems with some UPnP servers.
2014-01-22db/upnp/Util: use string::back(), string::front()Max Kellermann1-5/+5
2014-01-22db/upnp/Device: clear the "value" pointer on unknown elementMax Kellermann1-0/+2
Avoid appending to an obsolete string object.
2014-01-22db/upnp/Device: replace std::vector with a std::string pointerMax Kellermann3-47/+50
2014-01-22db/upnp/Device: remove unused UPnPService attributesMax Kellermann2-16/+0
2014-01-22db/upnp/Directory: "emplace" items into the vectorMax Kellermann1-1/+1
2014-01-22db/upnp/Device: emplace/move the UPnPService into the vectorMax Kellermann1-1/+1
Reduce overhead.
2014-01-22db/upnp/Util: "emplace" items into the listMax Kellermann1-3/+3
Reduce overhead.
2014-01-22db/upnp/Directory: replace std::vector with a simple enumMax Kellermann1-20/+34
Reduce bloat.
2014-01-22db/upnp/Directory: join all CDATA nodes for tag valuesMax Kellermann1-11/+43
Expat can call CharacterData() multiple times if the CDATA contains entity references. We need to collect all of them in one large string.
2014-01-22db/upnp/Directory: make "m_dir" privateMax Kellermann1-1/+2