Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Database*: move to db/ | Max Kellermann | 2014-01-24 | 1 | -785/+0 |
| | |||||
* | Config*: move to config/ | Max Kellermann | 2014-01-24 | 1 | -1/+1 |
| | |||||
* | db/upnp: strict vpath checks for the "root" directory | Max Kellermann | 2014-01-23 | 1 | -0/+20 |
| | |||||
* | db/upnp: move code to VisitObject() | Max Kellermann | 2014-01-23 | 1 | -22/+33 |
| | |||||
* | db/upnp: merge two PathTraitsUTF8::Build() calls | Max Kellermann | 2014-01-23 | 1 | -16/+4 |
| | |||||
* | db/upnp: move code to VisitItem() | Max Kellermann | 2014-01-23 | 1 | -61/+56 |
| | |||||
* | db/upnp: fix subdirectory paths in "listallinfo" | Max Kellermann | 2014-01-23 | 1 | -3/+3 |
| | | | | Add missing server name prefix. | ||||
* | base_uri | Max Kellermann | 2014-01-23 | 1 | -0/+4 |
| | |||||
* | db/upnp: pass char* to visitSong() | Max Kellermann | 2014-01-23 | 1 | -6/+6 |
| | | | | Don't use std::string, reduce bloat. | ||||
* | db/upnp: call VisitDirectory on servers, even in recursive mode | Max Kellermann | 2014-01-22 | 1 | -14/+10 |
| | |||||
* | db/upnp: make several methods "const" | Max Kellermann | 2014-01-22 | 1 | -12/+12 |
| | |||||
* | db/upnp: inline Configure() | Max Kellermann | 2014-01-22 | 1 | -1/+1 |
| | |||||
* | db/upnp: don't duplicate song data for VisitSong | Max Kellermann | 2014-01-22 | 1 | -2/+9 |
| | | | | Not necessary because we control the LightSong's life cycle. | ||||
* | db/proxy: merge redundant string::push_back() calls | Max Kellermann | 2014-01-22 | 1 | -4/+2 |
| | |||||
* | db/upnp: use PathTraitsUTF8::Build() | Max Kellermann | 2014-01-22 | 1 | -5/+14 |
| | |||||
* | LightDirectory: new struct replacing Directory in the DB API | Max Kellermann | 2014-01-22 | 1 | -9/+4 |
| | |||||
* | db/upnp: append characters instead of single-character strings | Max Kellermann | 2014-01-22 | 1 | -2/+2 |
| | |||||
* | db/upnp: use string::push_back() instead of string::append() | Max Kellermann | 2014-01-22 | 1 | -5/+5 |
| | |||||
* | db/upnp: use std::list instead of std::set for SearchCapabilities | Max Kellermann | 2014-01-22 | 1 | -1/+1 |
| | | | | Reduce bloat. We never used the set lookup. | ||||
* | db/upnp: merge duplicate branches in Namei() | Max Kellermann | 2014-01-21 | 1 | -25/+10 |
| | |||||
* | db/upnp: simplify Namei() | Max Kellermann | 2014-01-21 | 1 | -7/+6 |
| | |||||
* | db/upnp: use std::list instead of std::vector | Max Kellermann | 2014-01-21 | 1 | -6/+7 |
| | | | | Reduce overhead. | ||||
* | db/upnp: use iterator in Namei() | Max Kellermann | 2014-01-21 | 1 | -4/+5 |
| | |||||
* | db/upnp: move "objid" declaration down | Max Kellermann | 2014-01-21 | 1 | -2/+2 |
| | | | | Don't allocate the object when it's not needed. | ||||
* | db/upnp: eliminate redundant Namei() parameter "oobjid" | Max Kellermann | 2014-01-21 | 1 | -12/+7 |
| | | | | | The caller should better obtain the object id from the returned UPnPDirObject instance. | ||||
* | db/upnp: remove redundant objid.empty() check from VisitServer() | Max Kellermann | 2014-01-21 | 1 | -4/+0 |
| | | | | If Namei() succeeds, the object id is guaranteed to be set. | ||||
* | db/upnp: use std::move() to extract server name | Max Kellermann | 2014-01-21 | 1 | -1/+1 |
| | | | | Reduce runtime overhead. | ||||
* | db/upnp: use vector::front() instead of [0] | Max Kellermann | 2014-01-21 | 1 | -5/+5 |
| | |||||
* | db/upnp: don't construct redundant empty vector<string> in Visit() | Max Kellermann | 2014-01-21 | 1 | -1/+1 |
| | | | | We know already that vpath is empty, let's use this instance. | ||||
* | db/upnp: simplify GetSong() | Max Kellermann | 2014-01-21 | 1 | -20/+18 |
| | |||||
* | LightSong: add attribute "real_uri" | Max Kellermann | 2014-01-21 | 1 | -24/+18 |
| | | | | | The UPnP database plugin can now show relative song URIs for remote songs. | ||||
* | db/upnp: fix empty song URI | Max Kellermann | 2014-01-21 | 1 | -3/+6 |
| | | | | Fall back to UPnPDirObject::url if there is no override. | ||||
* | LightSong: new class to be used by DatabasePlugin callbacks | Max Kellermann | 2014-01-19 | 1 | -31/+40 |
| | | | | | Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread. | ||||
* | Song: embed the Tag object statically into class Song | Max Kellermann | 2014-01-19 | 1 | -1/+1 |
| | | | | | Reduces overhead because we need to manage only one memory allocation. According to valgrind/massif, we save 7%. | ||||
* | db/upnp: move Tag from UPnPDirObject to Song | Max Kellermann | 2014-01-18 | 1 | -11/+14 |
| | | | | | The UPnPDirObject is a temporary object, we can move its contents. This reduces runtime overhead. | ||||
* | db/upnp: use getServer() in Visit() | Max Kellermann | 2014-01-18 | 1 | -17/+9 |
| | | | | Reduce bloat. | ||||
* | db/upnp/Discovery: eliminate Error attribute | Max Kellermann | 2014-01-18 | 1 | -21/+4 |
| | | | | | Move code to method Start() and add Error& parameters to several methods. | ||||
* | db/upnp: remove unnecessary m_superdir nullptr checks | Max Kellermann | 2014-01-18 | 1 | -3/+3 |
| | |||||
* | db/upnp: pass ContentDirectoryService references | Max Kellermann | 2014-01-18 | 1 | -27/+27 |
| | |||||
* | db/upnp: include cleanup | Max Kellermann | 2014-01-18 | 1 | -1/+0 |
| | |||||
* | db/upnp: don't use LazyDatabase | Max Kellermann | 2014-01-18 | 1 | -2/+1 |
| | | | | Now that MPD forks early, this workaround is obsolete. | ||||
* | db/upnp: move the LibUPnP instance to class UpnpDatabase | Max Kellermann | 2014-01-16 | 1 | -9/+17 |
| | | | | Delete the object when closing the database. | ||||
* | db/upnp: move the UPnPDeviceDirectory instance to class UpnpDatabase | Max Kellermann | 2014-01-16 | 1 | -4/+6 |
| | | | | Delete the object when closing the database. | ||||
* | db/upnp: don't initialize attributes to nullptr | Max Kellermann | 2014-01-16 | 1 | -4/+0 |
| | | | | Not necessary, these are not used. | ||||
* | db/upnp: remove redundant m_root nullptr checks | Max Kellermann | 2014-01-16 | 1 | -5/+1 |
| | |||||
* | db/upnp/Object: add attribute "tag" | Max Kellermann | 2014-01-14 | 1 | -37/+2 |
| | | | | Replaces "m_title" and "m_props". More bloat removed. | ||||
* | db/upnp: move upnp_tags to Tags.cxx | Max Kellermann | 2014-01-14 | 1 | -11/+1 |
| | |||||
* | db/upnp/Object: disallow copying, always move | Max Kellermann | 2014-01-14 | 1 | -5/+4 |
| | | | | Reduce bloat. | ||||
* | db/upnp: getTagValue() returns string pointer | Max Kellermann | 2014-01-14 | 1 | -19/+13 |
| | | | | Reduce bloat. | ||||
* | db/upnp/Directory: merge m_containers and m_items | Max Kellermann | 2014-01-14 | 1 | -52/+59 |
| | | | | | There is no use in duplicating these containers. It only means that we have to search both, duplicating the code. |