Commit 791d6c13 authored by Max Kellermann's avatar Max Kellermann

db/upnp/Directory: eliminate struct StackEl, use std::string

Reduces bloat.
parent 10abb079
...@@ -53,12 +53,7 @@ ParseItemClass(const char *name) ...@@ -53,12 +53,7 @@ ParseItemClass(const char *name)
* An XML parser which builds directory contents from DIDL lite input. * An XML parser which builds directory contents from DIDL lite input.
*/ */
class UPnPDirParser final : public CommonExpatParser { class UPnPDirParser final : public CommonExpatParser {
struct StackEl { std::vector<std::string> m_path;
StackEl(const std::string& nm) : name(nm) {}
std::string name;
};
std::vector<StackEl> m_path;
UPnPDirObject m_tobj; UPnPDirObject m_tobj;
public: public:
...@@ -71,7 +66,7 @@ public: ...@@ -71,7 +66,7 @@ public:
protected: protected:
virtual void StartElement(const XML_Char *name, const XML_Char **attrs) virtual void StartElement(const XML_Char *name, const XML_Char **attrs)
{ {
m_path.push_back(StackEl(name)); m_path.push_back(name);
std::map<std::string,std::string> attributes; std::map<std::string,std::string> attributes;
for (int i = 0; attrs[i] != 0; i += 2) for (int i = 0; attrs[i] != 0; i += 2)
...@@ -161,19 +156,19 @@ protected: ...@@ -161,19 +156,19 @@ protected:
return; return;
std::string str(s, len); std::string str(s, len);
trimstring(str); trimstring(str);
switch (m_path.back().name[0]) { switch (m_path.back()[0]) {
case 'd': case 'd':
if (!m_path.back().name.compare("dc:title")) if (!m_path.back().compare("dc:title"))
m_tobj.m_title += str; m_tobj.m_title += str;
break; break;
case 'r': case 'r':
if (!m_path.back().name.compare("res")) { if (!m_path.back().compare("res")) {
m_tobj.m_props["url"] += str; m_tobj.m_props["url"] += str;
} }
break; break;
case 'u': case 'u':
for (int i = 0; i < nupnptags; i++) { for (int i = 0; i < nupnptags; i++) {
if (!m_path.back().name.compare(upnptags[i])) { if (!m_path.back().compare(upnptags[i])) {
m_tobj.m_props[upnptags[i]] += str; m_tobj.m_props[upnptags[i]] += str;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment