Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

946 lines
28KB

  1. /*
  2. ==============================================================================
  3. This file is part of the Water library.
  4. Copyright (c) 2016 ROLI Ltd.
  5. Copyright (C) 2017-2019 Filipe Coelho <falktx@falktx.com>
  6. Permission is granted to use this software under the terms of the ISC license
  7. http://www.isc.org/downloads/software-support-policy/isc-license/
  8. Permission to use, copy, modify, and/or distribute this software for any
  9. purpose with or without fee is hereby granted, provided that the above
  10. copyright notice and this permission notice appear in all copies.
  11. THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
  12. TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  13. FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
  14. OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  15. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  17. OF THIS SOFTWARE.
  18. ==============================================================================
  19. */
  20. #include "XmlElement.h"
  21. #include "../streams/MemoryOutputStream.h"
  22. #include "../streams/OutputStream.h"
  23. #include "../text/NewLine.h"
  24. #include "../text/StringPool.h"
  25. namespace water {
  26. inline bool isValidXmlNameStartCharacter (const water_uchar character) noexcept
  27. {
  28. return character == ':'
  29. || character == '_'
  30. || (character >= 'a' && character <= 'z')
  31. || (character >= 'A' && character <= 'Z')
  32. || (character >= 0xc0 && character <= 0xd6)
  33. || (character >= 0xd8 && character <= 0xf6)
  34. || (character >= 0xf8 && character <= 0x2ff)
  35. || (character >= 0x370 && character <= 0x37d)
  36. || (character >= 0x37f && character <= 0x1fff)
  37. || (character >= 0x200c && character <= 0x200d)
  38. || (character >= 0x2070 && character <= 0x218f)
  39. || (character >= 0x2c00 && character <= 0x2fef)
  40. || (character >= 0x3001 && character <= 0xd7ff)
  41. || (character >= 0xf900 && character <= 0xfdcf)
  42. || (character >= 0xfdf0 && character <= 0xfffd)
  43. || (character >= 0x10000 && character <= 0xeffff);
  44. }
  45. inline bool isValidXmlNameBodyCharacter (const water_uchar character) noexcept
  46. {
  47. return isValidXmlNameStartCharacter (character)
  48. || character == '-'
  49. || character == '.'
  50. || character == 0xb7
  51. || (character >= '0' && character <= '9')
  52. || (character >= 0x300 && character <= 0x036f)
  53. || (character >= 0x203f && character <= 0x2040);
  54. }
  55. XmlElement::XmlAttributeNode::XmlAttributeNode (const XmlAttributeNode& other) noexcept
  56. : name (other.name),
  57. value (other.value)
  58. {
  59. }
  60. XmlElement::XmlAttributeNode::XmlAttributeNode (const Identifier& n, const String& v) noexcept
  61. : name (n), value (v)
  62. {
  63. wassert (isValidXmlName (name));
  64. }
  65. XmlElement::XmlAttributeNode::XmlAttributeNode (String::CharPointerType nameStart, String::CharPointerType nameEnd)
  66. : name (nameStart, nameEnd)
  67. {
  68. wassert (isValidXmlName (name));
  69. }
  70. //==============================================================================
  71. XmlElement::XmlElement (const String& tag)
  72. : tagName (StringPool::getGlobalPool().getPooledString (tag))
  73. {
  74. wassert (isValidXmlName (tagName));
  75. }
  76. XmlElement::XmlElement (const char* tag)
  77. : tagName (StringPool::getGlobalPool().getPooledString (tag))
  78. {
  79. wassert (isValidXmlName (tagName));
  80. }
  81. XmlElement::XmlElement (StringRef tag)
  82. : tagName (StringPool::getGlobalPool().getPooledString (tag))
  83. {
  84. wassert (isValidXmlName (tagName));
  85. }
  86. XmlElement::XmlElement (const Identifier& tag)
  87. : tagName (tag.toString())
  88. {
  89. wassert (isValidXmlName (tagName));
  90. }
  91. XmlElement::XmlElement (String::CharPointerType tagNameStart, String::CharPointerType tagNameEnd)
  92. : tagName (StringPool::getGlobalPool().getPooledString (tagNameStart, tagNameEnd))
  93. {
  94. wassert (isValidXmlName (tagName));
  95. }
  96. XmlElement::XmlElement (int /*dummy*/) noexcept
  97. {
  98. }
  99. XmlElement::XmlElement (const XmlElement& other)
  100. : tagName (other.tagName)
  101. {
  102. copyChildrenAndAttributesFrom (other);
  103. }
  104. XmlElement& XmlElement::operator= (const XmlElement& other)
  105. {
  106. if (this != &other)
  107. {
  108. removeAllAttributes();
  109. deleteAllChildElements();
  110. tagName = other.tagName;
  111. copyChildrenAndAttributesFrom (other);
  112. }
  113. return *this;
  114. }
  115. #if WATER_COMPILER_SUPPORTS_MOVE_SEMANTICS
  116. XmlElement::XmlElement (XmlElement&& other) noexcept
  117. : nextListItem (static_cast<LinkedListPointer<XmlElement>&&> (other.nextListItem)),
  118. firstChildElement (static_cast<LinkedListPointer<XmlElement>&&> (other.firstChildElement)),
  119. attributes (static_cast<LinkedListPointer<XmlAttributeNode>&&> (other.attributes)),
  120. tagName (static_cast<String&&> (other.tagName))
  121. {
  122. }
  123. XmlElement& XmlElement::operator= (XmlElement&& other) noexcept
  124. {
  125. wassert (this != &other); // hopefully the compiler should make this situation impossible!
  126. removeAllAttributes();
  127. deleteAllChildElements();
  128. nextListItem = static_cast<LinkedListPointer<XmlElement>&&> (other.nextListItem);
  129. firstChildElement = static_cast<LinkedListPointer<XmlElement>&&> (other.firstChildElement);
  130. attributes = static_cast<LinkedListPointer<XmlAttributeNode>&&> (other.attributes);
  131. tagName = static_cast<String&&> (other.tagName);
  132. return *this;
  133. }
  134. #endif
  135. void XmlElement::copyChildrenAndAttributesFrom (const XmlElement& other)
  136. {
  137. wassert (firstChildElement.get() == nullptr);
  138. firstChildElement.addCopyOfList (other.firstChildElement);
  139. wassert (attributes.get() == nullptr);
  140. attributes.addCopyOfList (other.attributes);
  141. }
  142. XmlElement::~XmlElement() noexcept
  143. {
  144. firstChildElement.deleteAll();
  145. attributes.deleteAll();
  146. }
  147. //==============================================================================
  148. namespace XmlOutputFunctions
  149. {
  150. #if 0 // (These functions are just used to generate the lookup table used below)
  151. bool isLegalXmlCharSlow (const water_uchar character) noexcept
  152. {
  153. if ((character >= 'a' && character <= 'z')
  154. || (character >= 'A' && character <= 'Z')
  155. || (character >= '0' && character <= '9'))
  156. return true;
  157. const char* t = " .,;:-()_+=?!'#@[]/\\*%~{}$|";
  158. do
  159. {
  160. if (((water_uchar) (uint8) *t) == character)
  161. return true;
  162. }
  163. while (*++t != 0);
  164. return false;
  165. }
  166. void generateLegalCharLookupTable()
  167. {
  168. uint8 n[32] = { 0 };
  169. for (int i = 0; i < 256; ++i)
  170. if (isLegalXmlCharSlow (i))
  171. n[i >> 3] |= (1 << (i & 7));
  172. String s;
  173. for (int i = 0; i < 32; ++i)
  174. s << (int) n[i] << ", ";
  175. DBG (s);
  176. }
  177. #endif
  178. static bool isLegalXmlChar (const uint32 c) noexcept
  179. {
  180. static const unsigned char legalChars[] = { 0, 0, 0, 0, 187, 255, 255, 175, 255,
  181. 255, 255, 191, 254, 255, 255, 127 };
  182. return c < sizeof (legalChars) * 8
  183. && (legalChars [c >> 3] & (1 << (c & 7))) != 0;
  184. }
  185. static void escapeIllegalXmlChars (OutputStream& outputStream, const String& text, const bool changeNewLines)
  186. {
  187. String::CharPointerType t (text.getCharPointer());
  188. for (;;)
  189. {
  190. const uint32 character = (uint32) t.getAndAdvance();
  191. if (character == 0)
  192. break;
  193. if (isLegalXmlChar (character))
  194. {
  195. outputStream << (char) character;
  196. }
  197. else
  198. {
  199. switch (character)
  200. {
  201. case '&': outputStream << "&amp;"; break;
  202. case '"': outputStream << "&quot;"; break;
  203. case '>': outputStream << "&gt;"; break;
  204. case '<': outputStream << "&lt;"; break;
  205. case '\n':
  206. case '\r':
  207. if (! changeNewLines)
  208. {
  209. outputStream << (char) character;
  210. break;
  211. }
  212. // fall-through
  213. default:
  214. outputStream << "&#" << ((int) character) << ';';
  215. break;
  216. }
  217. }
  218. }
  219. }
  220. static void writeSpaces (OutputStream& out, const size_t numSpaces)
  221. {
  222. out.writeRepeatedByte (' ', numSpaces);
  223. }
  224. }
  225. void XmlElement::writeElementAsText (OutputStream& outputStream,
  226. const int indentationLevel,
  227. const int lineWrapLength) const
  228. {
  229. using namespace XmlOutputFunctions;
  230. NewLine newLine;
  231. if (indentationLevel >= 0)
  232. writeSpaces (outputStream, (size_t) indentationLevel);
  233. if (! isTextElement())
  234. {
  235. outputStream.writeByte ('<');
  236. outputStream << tagName;
  237. {
  238. const size_t attIndent = (size_t) (indentationLevel + tagName.length() + 1);
  239. int lineLen = 0;
  240. for (const XmlAttributeNode* att = attributes; att != nullptr; att = att->nextListItem)
  241. {
  242. if (lineLen > lineWrapLength && indentationLevel >= 0)
  243. {
  244. outputStream << newLine;
  245. writeSpaces (outputStream, attIndent);
  246. lineLen = 0;
  247. }
  248. const int64 startPos = outputStream.getPosition();
  249. outputStream.writeByte (' ');
  250. outputStream << att->name;
  251. outputStream.write ("=\"", 2);
  252. escapeIllegalXmlChars (outputStream, att->value, true);
  253. outputStream.writeByte ('"');
  254. lineLen += (int) (outputStream.getPosition() - startPos);
  255. }
  256. }
  257. if (firstChildElement != nullptr)
  258. {
  259. outputStream.writeByte ('>');
  260. bool lastWasTextNode = false;
  261. for (XmlElement* child = firstChildElement; child != nullptr; child = child->nextListItem)
  262. {
  263. if (child->isTextElement())
  264. {
  265. escapeIllegalXmlChars (outputStream, child->getText(), false);
  266. lastWasTextNode = true;
  267. }
  268. else
  269. {
  270. if (indentationLevel >= 0 && ! lastWasTextNode)
  271. outputStream << newLine;
  272. child->writeElementAsText (outputStream,
  273. lastWasTextNode ? 0 : (indentationLevel + (indentationLevel >= 0 ? 2 : 0)), lineWrapLength);
  274. lastWasTextNode = false;
  275. }
  276. }
  277. if (indentationLevel >= 0 && ! lastWasTextNode)
  278. {
  279. outputStream << newLine;
  280. writeSpaces (outputStream, (size_t) indentationLevel);
  281. }
  282. outputStream.write ("</", 2);
  283. outputStream << tagName;
  284. outputStream.writeByte ('>');
  285. }
  286. else
  287. {
  288. outputStream.write ("/>", 2);
  289. }
  290. }
  291. else
  292. {
  293. escapeIllegalXmlChars (outputStream, getText(), false);
  294. }
  295. }
  296. String XmlElement::createDocument (StringRef dtdToUse,
  297. const bool allOnOneLine,
  298. const bool includeXmlHeader,
  299. StringRef encodingType,
  300. const int lineWrapLength) const
  301. {
  302. MemoryOutputStream mem (2048);
  303. writeToStream (mem, dtdToUse, allOnOneLine, includeXmlHeader, encodingType, lineWrapLength);
  304. return mem.toUTF8();
  305. }
  306. void XmlElement::writeToStream (OutputStream& output,
  307. StringRef dtdToUse,
  308. const bool allOnOneLine,
  309. const bool includeXmlHeader,
  310. StringRef encodingType,
  311. const int lineWrapLength) const
  312. {
  313. using namespace XmlOutputFunctions;
  314. NewLine newLine;
  315. if (includeXmlHeader)
  316. {
  317. output << "<?xml version=\"1.0\" encoding=\"" << encodingType << "\"?>";
  318. if (allOnOneLine)
  319. output.writeByte (' ');
  320. else
  321. output << newLine << newLine;
  322. }
  323. if (dtdToUse.isNotEmpty())
  324. {
  325. output << dtdToUse;
  326. if (allOnOneLine)
  327. output.writeByte (' ');
  328. else
  329. output << newLine;
  330. }
  331. writeElementAsText (output, allOnOneLine ? -1 : 0, lineWrapLength);
  332. if (! allOnOneLine)
  333. output << newLine;
  334. }
  335. #if 0
  336. bool XmlElement::writeToFile (const File& file,
  337. StringRef dtdToUse,
  338. StringRef encodingType,
  339. const int lineWrapLength) const
  340. {
  341. TemporaryFile tempFile (file);
  342. {
  343. FileOutputStream out (tempFile.getFile());
  344. if (! out.openedOk())
  345. return false;
  346. writeToStream (out, dtdToUse, false, true, encodingType, lineWrapLength);
  347. out.flush(); // (called explicitly to force an fsync on posix)
  348. if (out.getStatus().failed())
  349. return false;
  350. }
  351. return tempFile.overwriteTargetFileWithTemporary();
  352. }
  353. #endif
  354. //==============================================================================
  355. bool XmlElement::hasTagName (StringRef possibleTagName) const noexcept
  356. {
  357. const bool matches = tagName.equalsIgnoreCase (possibleTagName);
  358. // XML tags should be case-sensitive, so although this method allows a
  359. // case-insensitive match to pass, you should try to avoid this.
  360. wassert ((! matches) || tagName == possibleTagName);
  361. return matches;
  362. }
  363. String XmlElement::getNamespace() const
  364. {
  365. return tagName.upToFirstOccurrenceOf (":", false, false);
  366. }
  367. String XmlElement::getTagNameWithoutNamespace() const
  368. {
  369. return tagName.fromLastOccurrenceOf (":", false, false);
  370. }
  371. bool XmlElement::hasTagNameIgnoringNamespace (StringRef possibleTagName) const
  372. {
  373. return hasTagName (possibleTagName) || getTagNameWithoutNamespace() == possibleTagName;
  374. }
  375. XmlElement* XmlElement::getNextElementWithTagName (StringRef requiredTagName) const
  376. {
  377. XmlElement* e = nextListItem;
  378. while (e != nullptr && ! e->hasTagName (requiredTagName))
  379. e = e->nextListItem;
  380. return e;
  381. }
  382. //==============================================================================
  383. int XmlElement::getNumAttributes() const noexcept
  384. {
  385. return attributes.size();
  386. }
  387. static const String& getEmptyStringRef() noexcept
  388. {
  389. static String empty;
  390. return empty;
  391. }
  392. const String& XmlElement::getAttributeName (const int index) const noexcept
  393. {
  394. if (const XmlAttributeNode* const att = attributes [index])
  395. return att->name.toString();
  396. return getEmptyStringRef();
  397. }
  398. const String& XmlElement::getAttributeValue (const int index) const noexcept
  399. {
  400. if (const XmlAttributeNode* const att = attributes [index])
  401. return att->value;
  402. return getEmptyStringRef();
  403. }
  404. XmlElement::XmlAttributeNode* XmlElement::getAttribute (StringRef attributeName) const noexcept
  405. {
  406. for (XmlAttributeNode* att = attributes; att != nullptr; att = att->nextListItem)
  407. if (att->name == attributeName)
  408. return att;
  409. return nullptr;
  410. }
  411. bool XmlElement::hasAttribute (StringRef attributeName) const noexcept
  412. {
  413. return getAttribute (attributeName) != nullptr;
  414. }
  415. //==============================================================================
  416. const String& XmlElement::getStringAttribute (StringRef attributeName) const noexcept
  417. {
  418. if (const XmlAttributeNode* att = getAttribute (attributeName))
  419. return att->value;
  420. return getEmptyStringRef();
  421. }
  422. String XmlElement::getStringAttribute (StringRef attributeName, const String& defaultReturnValue) const
  423. {
  424. if (const XmlAttributeNode* att = getAttribute (attributeName))
  425. return att->value;
  426. return defaultReturnValue;
  427. }
  428. int XmlElement::getIntAttribute (StringRef attributeName, const int defaultReturnValue) const
  429. {
  430. if (const XmlAttributeNode* att = getAttribute (attributeName))
  431. return att->value.getIntValue();
  432. return defaultReturnValue;
  433. }
  434. double XmlElement::getDoubleAttribute (StringRef attributeName, const double defaultReturnValue) const
  435. {
  436. if (const XmlAttributeNode* att = getAttribute (attributeName))
  437. return att->value.getDoubleValue();
  438. return defaultReturnValue;
  439. }
  440. bool XmlElement::getBoolAttribute (StringRef attributeName, const bool defaultReturnValue) const
  441. {
  442. if (const XmlAttributeNode* att = getAttribute (attributeName))
  443. {
  444. const water_uchar firstChar = *(att->value.getCharPointer().findEndOfWhitespace());
  445. return firstChar == '1'
  446. || firstChar == 't'
  447. || firstChar == 'y'
  448. || firstChar == 'T'
  449. || firstChar == 'Y';
  450. }
  451. return defaultReturnValue;
  452. }
  453. bool XmlElement::compareAttribute (StringRef attributeName,
  454. StringRef stringToCompareAgainst,
  455. const bool ignoreCase) const noexcept
  456. {
  457. if (const XmlAttributeNode* att = getAttribute (attributeName))
  458. return ignoreCase ? att->value.equalsIgnoreCase (stringToCompareAgainst)
  459. : att->value == stringToCompareAgainst;
  460. return false;
  461. }
  462. //==============================================================================
  463. void XmlElement::setAttribute (const Identifier& attributeName, const String& value)
  464. {
  465. if (attributes == nullptr)
  466. {
  467. attributes = new XmlAttributeNode (attributeName, value);
  468. }
  469. else
  470. {
  471. for (XmlAttributeNode* att = attributes; ; att = att->nextListItem)
  472. {
  473. if (att->name == attributeName)
  474. {
  475. att->value = value;
  476. break;
  477. }
  478. if (att->nextListItem == nullptr)
  479. {
  480. att->nextListItem = new XmlAttributeNode (attributeName, value);
  481. break;
  482. }
  483. }
  484. }
  485. }
  486. void XmlElement::setAttribute (const Identifier& attributeName, const int number)
  487. {
  488. setAttribute (attributeName, String (number));
  489. }
  490. void XmlElement::setAttribute (const Identifier& attributeName, const double number)
  491. {
  492. setAttribute (attributeName, String (number, 20));
  493. }
  494. void XmlElement::removeAttribute (const Identifier& attributeName) noexcept
  495. {
  496. for (LinkedListPointer<XmlAttributeNode>* att = &attributes;
  497. att->get() != nullptr;
  498. att = &(att->get()->nextListItem))
  499. {
  500. if (att->get()->name == attributeName)
  501. {
  502. delete att->removeNext();
  503. break;
  504. }
  505. }
  506. }
  507. void XmlElement::removeAllAttributes() noexcept
  508. {
  509. attributes.deleteAll();
  510. }
  511. //==============================================================================
  512. int XmlElement::getNumChildElements() const noexcept
  513. {
  514. return firstChildElement.size();
  515. }
  516. XmlElement* XmlElement::getChildElement (const int index) const noexcept
  517. {
  518. return firstChildElement [index].get();
  519. }
  520. XmlElement* XmlElement::getChildByName (StringRef childName) const noexcept
  521. {
  522. wassert (! childName.isEmpty());
  523. for (XmlElement* child = firstChildElement; child != nullptr; child = child->nextListItem)
  524. if (child->hasTagName (childName))
  525. return child;
  526. return nullptr;
  527. }
  528. XmlElement* XmlElement::getChildByAttribute (StringRef attributeName, StringRef attributeValue) const noexcept
  529. {
  530. wassert (! attributeName.isEmpty());
  531. for (XmlElement* child = firstChildElement; child != nullptr; child = child->nextListItem)
  532. if (child->compareAttribute (attributeName, attributeValue))
  533. return child;
  534. return nullptr;
  535. }
  536. void XmlElement::addChildElement (XmlElement* const newNode) noexcept
  537. {
  538. if (newNode != nullptr)
  539. {
  540. // The element being added must not be a child of another node!
  541. wassert (newNode->nextListItem == nullptr);
  542. firstChildElement.append (newNode);
  543. }
  544. }
  545. void XmlElement::insertChildElement (XmlElement* const newNode, int indexToInsertAt) noexcept
  546. {
  547. if (newNode != nullptr)
  548. {
  549. // The element being added must not be a child of another node!
  550. wassert (newNode->nextListItem == nullptr);
  551. firstChildElement.insertAtIndex (indexToInsertAt, newNode);
  552. }
  553. }
  554. void XmlElement::prependChildElement (XmlElement* newNode) noexcept
  555. {
  556. if (newNode != nullptr)
  557. {
  558. // The element being added must not be a child of another node!
  559. wassert (newNode->nextListItem == nullptr);
  560. firstChildElement.insertNext (newNode);
  561. }
  562. }
  563. XmlElement* XmlElement::createNewChildElement (StringRef childTagName)
  564. {
  565. XmlElement* const newElement = new XmlElement (childTagName);
  566. addChildElement (newElement);
  567. return newElement;
  568. }
  569. bool XmlElement::replaceChildElement (XmlElement* const currentChildElement,
  570. XmlElement* const newNode) noexcept
  571. {
  572. if (newNode != nullptr)
  573. {
  574. if (LinkedListPointer<XmlElement>* const p = firstChildElement.findPointerTo (currentChildElement))
  575. {
  576. if (currentChildElement != newNode)
  577. delete p->replaceNext (newNode);
  578. return true;
  579. }
  580. }
  581. return false;
  582. }
  583. void XmlElement::removeChildElement (XmlElement* const childToRemove,
  584. const bool shouldDeleteTheChild) noexcept
  585. {
  586. if (childToRemove != nullptr)
  587. {
  588. firstChildElement.remove (childToRemove);
  589. if (shouldDeleteTheChild)
  590. delete childToRemove;
  591. }
  592. }
  593. bool XmlElement::isEquivalentTo (const XmlElement* const other,
  594. const bool ignoreOrderOfAttributes) const noexcept
  595. {
  596. if (this != other)
  597. {
  598. if (other == nullptr || tagName != other->tagName)
  599. return false;
  600. if (ignoreOrderOfAttributes)
  601. {
  602. int totalAtts = 0;
  603. for (const XmlAttributeNode* att = attributes; att != nullptr; att = att->nextListItem)
  604. {
  605. if (! other->compareAttribute (att->name, att->value))
  606. return false;
  607. ++totalAtts;
  608. }
  609. if (totalAtts != other->getNumAttributes())
  610. return false;
  611. }
  612. else
  613. {
  614. const XmlAttributeNode* thisAtt = attributes;
  615. const XmlAttributeNode* otherAtt = other->attributes;
  616. for (;;)
  617. {
  618. if (thisAtt == nullptr || otherAtt == nullptr)
  619. {
  620. if (thisAtt == otherAtt) // both nullptr, so it's a match
  621. break;
  622. return false;
  623. }
  624. if (thisAtt->name != otherAtt->name
  625. || thisAtt->value != otherAtt->value)
  626. {
  627. return false;
  628. }
  629. thisAtt = thisAtt->nextListItem;
  630. otherAtt = otherAtt->nextListItem;
  631. }
  632. }
  633. const XmlElement* thisChild = firstChildElement;
  634. const XmlElement* otherChild = other->firstChildElement;
  635. for (;;)
  636. {
  637. if (thisChild == nullptr || otherChild == nullptr)
  638. {
  639. if (thisChild == otherChild) // both 0, so it's a match
  640. break;
  641. return false;
  642. }
  643. if (! thisChild->isEquivalentTo (otherChild, ignoreOrderOfAttributes))
  644. return false;
  645. thisChild = thisChild->nextListItem;
  646. otherChild = otherChild->nextListItem;
  647. }
  648. }
  649. return true;
  650. }
  651. void XmlElement::deleteAllChildElements() noexcept
  652. {
  653. firstChildElement.deleteAll();
  654. }
  655. void XmlElement::deleteAllChildElementsWithTagName (StringRef name) noexcept
  656. {
  657. for (XmlElement* child = firstChildElement; child != nullptr;)
  658. {
  659. XmlElement* const nextChild = child->nextListItem;
  660. if (child->hasTagName (name))
  661. removeChildElement (child, true);
  662. child = nextChild;
  663. }
  664. }
  665. bool XmlElement::containsChildElement (const XmlElement* const possibleChild) const noexcept
  666. {
  667. return firstChildElement.contains (possibleChild);
  668. }
  669. XmlElement* XmlElement::findParentElementOf (const XmlElement* const elementToLookFor) noexcept
  670. {
  671. if (this == elementToLookFor || elementToLookFor == nullptr)
  672. return nullptr;
  673. for (XmlElement* child = firstChildElement; child != nullptr; child = child->nextListItem)
  674. {
  675. if (elementToLookFor == child)
  676. return this;
  677. if (XmlElement* const found = child->findParentElementOf (elementToLookFor))
  678. return found;
  679. }
  680. return nullptr;
  681. }
  682. void XmlElement::getChildElementsAsArray (XmlElement** elems) const noexcept
  683. {
  684. firstChildElement.copyToArray (elems);
  685. }
  686. void XmlElement::reorderChildElements (XmlElement** const elems, const int num) noexcept
  687. {
  688. XmlElement* e = firstChildElement = elems[0];
  689. for (int i = 1; i < num; ++i)
  690. {
  691. e->nextListItem = elems[i];
  692. e = e->nextListItem;
  693. }
  694. e->nextListItem = nullptr;
  695. }
  696. //==============================================================================
  697. bool XmlElement::isTextElement() const noexcept
  698. {
  699. return tagName.isEmpty();
  700. }
  701. static const String water_xmltextContentAttributeName ()
  702. {
  703. return String ("text");
  704. }
  705. const String& XmlElement::getText() const noexcept
  706. {
  707. wassert (isTextElement()); // you're trying to get the text from an element that
  708. // isn't actually a text element.. If this contains text sub-nodes, you
  709. // probably want to use getAllSubText instead.
  710. return getStringAttribute (water_xmltextContentAttributeName());
  711. }
  712. void XmlElement::setText (const String& newText)
  713. {
  714. CARLA_SAFE_ASSERT_RETURN(isTextElement(),);
  715. setAttribute (water_xmltextContentAttributeName(), newText);
  716. }
  717. String XmlElement::getAllSubText() const
  718. {
  719. if (isTextElement())
  720. return getText();
  721. if (getNumChildElements() == 1)
  722. return firstChildElement.get()->getAllSubText();
  723. MemoryOutputStream mem (1024);
  724. for (const XmlElement* child = firstChildElement; child != nullptr; child = child->nextListItem)
  725. mem << child->getAllSubText();
  726. return mem.toUTF8();
  727. }
  728. String XmlElement::getChildElementAllSubText (StringRef childTagName, const String& defaultReturnValue) const
  729. {
  730. if (const XmlElement* const child = getChildByName (childTagName))
  731. return child->getAllSubText();
  732. return defaultReturnValue;
  733. }
  734. XmlElement* XmlElement::createTextElement (const String& text)
  735. {
  736. XmlElement* const e = new XmlElement ((int) 0);
  737. e->setAttribute (water_xmltextContentAttributeName(), text);
  738. return e;
  739. }
  740. bool XmlElement::isValidXmlName (StringRef text) noexcept
  741. {
  742. if (text.isEmpty() || ! isValidXmlNameStartCharacter (text.text.getAndAdvance()))
  743. return false;
  744. for (;;)
  745. {
  746. if (text.isEmpty())
  747. return true;
  748. if (! isValidXmlNameBodyCharacter (text.text.getAndAdvance()))
  749. return false;
  750. }
  751. }
  752. void XmlElement::addTextElement (const String& text)
  753. {
  754. addChildElement (createTextElement (text));
  755. }
  756. void XmlElement::deleteAllTextElements() noexcept
  757. {
  758. for (XmlElement* child = firstChildElement; child != nullptr;)
  759. {
  760. XmlElement* const next = child->nextListItem;
  761. if (child->isTextElement())
  762. removeChildElement (child, true);
  763. child = next;
  764. }
  765. }
  766. }