The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

939 lines
28KB

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