XML.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. #include "XML.h"
  2. using namespace Framework;
  3. using namespace XML;
  4. // Erstellt ein XML Element
  5. // string: entweder der name des Elements oder ein XML Text der geparsed werden soll
  6. Element::Element(Text string)
  7. : Element(string, 0)
  8. {}
  9. // Erstellt ein XML Element
  10. // string: entweder der name des Elements oder ein XML Text der geparsed werden soll
  11. // zParent: Ein Zeiger auf das eltern element (ohne erhöhten reference Counter)
  12. Element::Element(Text string, Element* zParent)
  13. : ReferenceCounter()
  14. {
  15. children = new RCArray< Element >();
  16. attributes = new RCArray< Text >();
  17. attributeValues = new RCArray< Text >();
  18. text = new Text();
  19. name = new Text();
  20. string.removeWhitespaceAfter(0);
  21. string.removeWhitespaceBefore(string.getLength());
  22. setText(string);
  23. if (string[0] == '<' && string[string.getLength() - 1] == '>')
  24. {
  25. string.removeWhitespaceAfter(1);
  26. string.removeWhitespaceBefore(string.getLength() - 1);
  27. int nameEnd = 0;
  28. for (int i = 1; i < string.getLength(); i++)
  29. {
  30. if ((string[i] < 'a' || string[i] > 'z') &&
  31. (string[i] < 'A' || string[i] > 'Z') &&
  32. (string[i] < '0' || string[i] > '9') && string[i] != '-')
  33. {
  34. nameEnd = i;
  35. break;
  36. }
  37. }
  38. name->setText(string.getTeilText(1, nameEnd));
  39. if (string.hatAt(string.getLength() - 1 - name->getLength(), name->getText()) || string[string.getLength() - 2] == '/')
  40. {
  41. string.removeWhitespaceAfter(nameEnd);
  42. // parse attributes
  43. int start = nameEnd;
  44. while (string[nameEnd] != '>' && string[nameEnd] != '/')
  45. {
  46. for (int i = nameEnd + 1; i < string.getLength(); i++)
  47. {
  48. if ((string[i] < 'a' || string[i] > 'z') &&
  49. (string[i] < 'A' || string[i] > 'Z') &&
  50. (string[i] < '0' || string[i] > '9') && string[i] != '-')
  51. {
  52. nameEnd = i;
  53. break;
  54. }
  55. }
  56. Text* attrName = string.getTeilText(start, nameEnd);
  57. string.removeWhitespaceAfter(nameEnd);
  58. if (string[nameEnd] == '=')
  59. {
  60. string.removeWhitespaceAfter(nameEnd + 1);
  61. Text value = "";
  62. if (string[nameEnd + 1] == '"')
  63. {
  64. bool esc = 0;
  65. start = nameEnd + 2;
  66. for (int i = nameEnd + 2; string[i]; i++)
  67. {
  68. if (string[i] == '\\')
  69. esc = !esc;
  70. else
  71. {
  72. if (string[i] == '"' && !esc)
  73. {
  74. nameEnd = i + 1;
  75. break;
  76. }
  77. esc = 0;
  78. }
  79. }
  80. value.setText(string.getTeilText(start, nameEnd - 1));
  81. value.ersetzen("\\\"", "\"");
  82. }
  83. if (string[nameEnd + 1] == '\'')
  84. {
  85. bool esc = 0;
  86. start = nameEnd + 2;
  87. for (int i = nameEnd + 2; string[i]; i++)
  88. {
  89. if (string[i] == '\\')
  90. esc = !esc;
  91. else
  92. {
  93. if (string[i] == '\'' && !esc)
  94. {
  95. nameEnd = i + 1;
  96. break;
  97. }
  98. esc = 0;
  99. }
  100. }
  101. value.setText(string.getTeilText(start, nameEnd - 1));
  102. value.ersetzen("\\'", "'");
  103. }
  104. setAttribute(attrName->getText(), value);
  105. }
  106. else
  107. setAttribute(attrName->getText(), "");
  108. attrName->release();
  109. string.removeWhitespaceAfter(nameEnd);
  110. start = nameEnd;
  111. }
  112. if (string[string.getLength() - 2] != '/')
  113. {
  114. string.removeWhitespaceBefore(string.getLength() - 1 - name->getLength());
  115. if (string[string.getLength() - 2 - name->getLength()] == '/')
  116. {
  117. string.removeWhitespaceBefore(string.getLength() - 2 - name->getLength());
  118. if (string[string.getLength() - 3 - name->getLength()] == '<')
  119. {
  120. text->setText(string.getTeilText(nameEnd + 1, string.getLength() - 3 - name->getLength()));
  121. // parse children
  122. text->removeWhitespaceAfter(0);
  123. text->removeWhitespaceBefore(text->getLength());
  124. if (text->getText()[0] == '<' && text->getText()[text->getLength() - 1] == '>')
  125. {
  126. int start = 0;
  127. int lastStart = -1;
  128. while (start < text->getLength())
  129. {
  130. if (lastStart == start) break;
  131. lastStart = start;
  132. bool esc = 0;
  133. bool inString1 = 0;
  134. bool inString2 = 0;
  135. int poc = 0;
  136. bool lastSlash = 0;
  137. bool lastOpen = 0;
  138. bool openSlash = 0;
  139. for (int i = 0; text->getText()[i]; i++)
  140. {
  141. switch (text->getText()[i])
  142. {
  143. case '\\':
  144. esc = !esc;
  145. lastSlash = 0;
  146. lastOpen = 0;
  147. break;
  148. case '"':
  149. if (!esc && !inString2)
  150. inString1 = !inString1;
  151. esc = 0;
  152. lastSlash = 0;
  153. lastOpen = 0;
  154. break;
  155. case '\'':
  156. if (!esc && !inString1)
  157. inString2 = !inString2;
  158. esc = 0;
  159. lastSlash = 0;
  160. lastOpen = 0;
  161. break;
  162. case '<':
  163. if (!inString1 && !inString2)
  164. lastOpen = 1;
  165. esc = 0;
  166. lastSlash = 0;
  167. break;
  168. case '/':
  169. lastSlash = 0;
  170. if (!inString1 && !inString2)
  171. {
  172. lastSlash = 1;
  173. if (lastOpen)
  174. openSlash = 1;
  175. }
  176. esc = 0;
  177. lastOpen = 0;
  178. break;
  179. case '>':
  180. if (!inString1 && !inString2)
  181. {
  182. if (openSlash)
  183. poc--;
  184. else if (!lastSlash)
  185. poc++;
  186. if (poc == 0)
  187. {
  188. Text* str = text->getTeilText(start, i + 1);
  189. addChild(new Element(str->getText(), this));
  190. str->release();
  191. start = i + 1;
  192. }
  193. }
  194. esc = 0;
  195. lastSlash = 0;
  196. openSlash = 0;
  197. break;
  198. default:
  199. esc = 0;
  200. if (text->getText()[i] != ' ' && text->getText()[i] != '\t' && text->getText()[i] != '\r' && text->getText()[i] != '\n')
  201. {
  202. lastSlash = 0;
  203. lastOpen = 0;
  204. }
  205. }
  206. }
  207. }
  208. }
  209. }
  210. }
  211. }
  212. else
  213. text->setText("");
  214. }
  215. }
  216. parent = zParent;
  217. }
  218. Element::~Element()
  219. {
  220. children->release();
  221. attributes->release();
  222. attributeValues->release();
  223. text->release();
  224. name->release();
  225. }
  226. // ändert ein attribut oder fügt eines hinzu
  227. // attribut: Der Name des Attributes
  228. // value: Der Wert des Attributes
  229. void Element::setAttribute(Text attribut, Text value)
  230. {
  231. for (auto i = attributes->begin(), j = attributeValues->begin(); i && j; i++, j++)
  232. {
  233. if (i->istGleich(attribut))
  234. {
  235. j->setText(value);
  236. return;
  237. }
  238. }
  239. attributes->add(new Text(attribut));
  240. attributeValues->add(new Text(value));
  241. }
  242. // entfernt ein attribut
  243. // attribut: Der Name des Attributes
  244. void Element::removeAttribute(Text attribut)
  245. {
  246. for (int i = 0; i < attributes->getEintragAnzahl(); i++)
  247. {
  248. if (attributes->z(i)->istGleich(attribut))
  249. {
  250. attributes->remove(i);
  251. attributeValues->remove(i);
  252. i--;
  253. }
  254. }
  255. }
  256. // fügt ein child hinzu
  257. // child: Das neue Child Element
  258. void Element::addChild(Element* child)
  259. {
  260. child->parent = this;
  261. children->add(child);
  262. }
  263. // fügt ein child hinzu
  264. // child: Das neue Child Element
  265. void Element::addChildAtFront(Element* child)
  266. {
  267. child->parent = this;
  268. children->add(child, 0);
  269. }
  270. // entfernt ein child
  271. // zChild: das zu entfernende Child
  272. void Element::removeChild(Element* child)
  273. {
  274. for (int i = 0; i < children->getEintragAnzahl(); i++)
  275. {
  276. if (children->z(i) == child)
  277. {
  278. children->remove(i);
  279. i--;
  280. }
  281. }
  282. child->release();
  283. }
  284. // entfernt das i-te child
  285. // i: der Index des childs (bei 0 beginnend)
  286. void Element::removeChild(int i)
  287. {
  288. children->remove(i);
  289. }
  290. // entfernt alle childs
  291. void Element::removeAllChilds()
  292. {
  293. children->leeren();
  294. }
  295. // entfernt eine Liste mit childs
  296. // childs: alle Childs die entfernt werden sollen
  297. void Element::removeChilds(RCArray<Element>* childs)
  298. {
  299. for (auto i : *childs)
  300. removeChild(dynamic_cast<XML::Element*>(i->getThis()));
  301. childs->release();
  302. }
  303. // entfernt dieses Element vom Eltern element
  304. void Element::remove()
  305. {
  306. if (parent)
  307. parent->removeChild(dynamic_cast<XML::Element*>(getThis()));
  308. }
  309. // setzt den Text in dem Element falls es keine childs gibt
  310. // text: dert Text
  311. void Element::setText(Text text)
  312. {
  313. this->text->setText(text);
  314. }
  315. // gibt den Text im Element zurück
  316. Text Element::getText() const
  317. {
  318. return text->getText();
  319. }
  320. // gibt die Anzahl der Childs zurück
  321. int Element::getChildCount() const
  322. {
  323. return children->getEintragAnzahl();
  324. }
  325. // gibt das i-te child zurück
  326. Element* Element::getChild(int i) const
  327. {
  328. return children->get(i);
  329. }
  330. // gibt das i-te child zurück (ohne erhöhten reference Counter)
  331. Element* Element::zChild(int i) const
  332. {
  333. return children->z(i);
  334. }
  335. // gibt das parent element zurück
  336. Element* Element::getParent() const
  337. {
  338. return parent ? dynamic_cast<Element*>(parent->getThis()) : 0;
  339. }
  340. // gibt das parent element zurück (ohne erhöhten reference Counter)
  341. Element* Element::zParent() const
  342. {
  343. return parent;
  344. }
  345. // gibt einen iterator zurück mit dem durch alle childs iteriert werden kann
  346. Iterator< Element* > Element::getChilds() const
  347. {
  348. return children->begin();
  349. }
  350. // gibt einen selector zurück der alle childs beinhaltet
  351. Editor Element::selectChildren() const
  352. {
  353. return Editor(dynamic_cast<RCArray<XML::Element> *>(children->getThis()));
  354. }
  355. // gibt eine Liste mit childs zurück, die einen bestimmten Namen haben
  356. // name: der name der Childs
  357. Editor Element::selectChildsByName(Text name) const
  358. {
  359. RCArray< Element >* tmp = new RCArray< Element >();
  360. for (auto i : *children)
  361. {
  362. if (i->getName().istGleich(name))
  363. tmp->add(dynamic_cast<XML::Element*>(i->getThis()));
  364. }
  365. return Editor(tmp);
  366. }
  367. // gibt eine Liste mit childs zurück, die ein bestimmtes Attribut haben
  368. // attribute: der name des Attributes
  369. Editor Element::selectChildsByAttribute(Text attribute) const
  370. {
  371. RCArray< Element >* tmp = new RCArray< Element >();
  372. for (auto i : *children)
  373. {
  374. if (i->hasAttribute(attribute))
  375. tmp->add(dynamic_cast<XML::Element*>(i->getThis()));
  376. }
  377. return Editor(tmp);
  378. }
  379. // gibt eine Liste mit childs zurück, die ein bestimmtes Attribut mit einem bestimmten wert haben
  380. // attribute: der name des Attributes
  381. // value: der Wert des Attributes
  382. Editor Element::selectChildsByAttribute(Text attribute, Text value) const
  383. {
  384. RCArray< Element >* tmp = new RCArray< Element >();
  385. for (auto i : *children)
  386. {
  387. if (i->hasAttribute(attribute) && i->getAttributeValue(attribute).istGleich(value))
  388. tmp->add(dynamic_cast<XML::Element*>(i->getThis()));
  389. }
  390. return Editor(tmp);
  391. }
  392. // gibt 1 zurück, falls ein Attribut Name existiert, 0 sonnst
  393. bool Element::hasAttribute(Text name) const
  394. {
  395. for (auto i : *attributes)
  396. {
  397. if (i->istGleich(name))
  398. return 1;
  399. }
  400. return 0;
  401. }
  402. // gibt die Anzahl der Attribute zurück
  403. int Element::getAttributeCount() const
  404. {
  405. return attributes->getEintragAnzahl();
  406. }
  407. // gibt den Namen des i-ten Attributes zurück
  408. Text Element::getAttributeName(int i) const
  409. {
  410. return attributes->z(i)->getText();
  411. }
  412. // gibt den Wert des i-ten Attributes zurück
  413. Text Element::getAttributeValue(int i) const
  414. {
  415. return attributeValues->z(i)->getText();
  416. }
  417. // gibt den Wert eines Attributes zurück
  418. // attribut: Der Name des Attributes
  419. Text Element::getAttributeValue(Text attribut) const
  420. {
  421. for (auto i = attributes->begin(), j = attributeValues->begin(); i && j; i++, j++)
  422. {
  423. if (i->istGleich(attribut))
  424. return j->getText();
  425. }
  426. return "";
  427. }
  428. // gibt einen iterator zurück mit dem durch alle Attribut Namen iteriert werden kann
  429. Iterator< Text* > Element::getAttributeNames() const
  430. {
  431. return attributes->begin();
  432. }
  433. // gibt einen iterator zurück mit dem durch alle Attribut Werte iteriert werden kann
  434. Iterator< Text* > Element::getAttributeValues() const
  435. {
  436. return attributeValues->begin();
  437. }
  438. // gibt den Namen des Elementes zurück zurück
  439. Text Element::getName() const
  440. {
  441. return name->getText();
  442. }
  443. // erzeugt einen XML Text der dieses Element und alle childs beinhaltet
  444. Text Element::toString() const
  445. {
  446. Text ret = "<";
  447. ret += name->getText();
  448. if (attributes->getEintragAnzahl())
  449. ret += " ";
  450. for (auto i = attributes->begin(), j = attributeValues->begin(); i && j; i++, j++)
  451. {
  452. ret += i->getText();
  453. if (j->getLength())
  454. {
  455. if (j->hat('"'))
  456. {
  457. ret += "='";
  458. Text txt = j->getText();
  459. txt.ersetzen("'", "\\'");
  460. ret += txt;
  461. ret += "'";
  462. }
  463. else
  464. {
  465. ret += "=\"";
  466. Text txt = j->getText();
  467. txt.ersetzen("\"", "\\\"");
  468. ret += txt;
  469. ret += "\"";
  470. }
  471. }
  472. if (i.hasNext())
  473. ret += " ";
  474. }
  475. if (children->getEintragAnzahl() || text->getLength())
  476. {
  477. ret += ">";
  478. if (children->getEintragAnzahl())
  479. {
  480. for (auto i : *children)
  481. ret += i->toString();
  482. }
  483. else
  484. ret += text->getText();
  485. ret += "</";
  486. ret += name->getText();
  487. ret += ">";
  488. }
  489. else
  490. ret += "/>";
  491. return ret;
  492. }
  493. // Erzeugt eine Kopie ohne referenzen auf dieses objekt
  494. Element* Element::dublicate() const
  495. {
  496. return new Element(toString());
  497. }
  498. // Erzeugt einen neuen XML Editor mit einer Liste von Objekten die editiert werden sollen
  499. Editor::Editor(RCArray< Element >* elements)
  500. : ReferenceCounter()
  501. {
  502. this->elements = new RCArray< Element >();
  503. for (auto i : *elements)
  504. this->elements->add(dynamic_cast<XML::Element*>(i->getThis()));
  505. elements->release();
  506. }
  507. Editor::Editor(const Editor& e)
  508. : Editor(dynamic_cast<RCArray<XML::Element>*>(e.elements->getThis()))
  509. {}
  510. Editor::~Editor()
  511. {
  512. elements->release();
  513. }
  514. // ändert ein attribut oder fügt eines hinzu (auf allen elementen in der Liste)
  515. // attribut: Der Name des Attributes
  516. // value: Der Wert des Attributes
  517. void Editor::setAttribute(Text attribut, Text value)
  518. {
  519. for (auto i : *elements)
  520. i->setAttribute(attribut, value);
  521. }
  522. // entfernt ein attribut (auf allen elementen in der Liste)
  523. // attribut: Der Name des Attributes
  524. void Editor::removeAttribute(Text attribut)
  525. {
  526. for (auto i : *elements)
  527. i->removeAttribute(attribut);
  528. }
  529. // fügt ein child hinzu (auf allen elementen in der Liste)
  530. // child: Das neue Child Element
  531. void Editor::addChild(Element* child)
  532. {
  533. for (auto i : *elements)
  534. i->addChild(child->dublicate());
  535. child->release();
  536. }
  537. // entfernt ein child (auf allen elementen in der Liste)
  538. // zChild: das zu entfernende Child
  539. void Editor::removeChild(Element* child)
  540. {
  541. for (auto i : *elements)
  542. i->removeChild(dynamic_cast<XML::Element*>(child->getThis()));
  543. child->release();
  544. }
  545. // entfernt das i-te child (auf allen elementen in der Liste)
  546. // i: der Index des childs (bei 0 beginnend)
  547. void Editor::removeChild(int i)
  548. {
  549. for (auto j : *elements)
  550. j->removeChild(i);
  551. }
  552. // entfernt alle childs (auf allen elementen in der Liste)
  553. void Editor::removeAllChilds()
  554. {
  555. for (auto i : *elements)
  556. i->removeAllChilds();
  557. }
  558. // entfernt eine Liste mit childs (auf allen elementen in der Liste)
  559. // childs: alle Childs die entfernt werden sollen
  560. void Editor::removeChilds(RCArray<Element>* childs)
  561. {
  562. for (auto i : *elements)
  563. i->removeChilds(dynamic_cast<RCArray<XML::Element> *>(childs->getThis()));
  564. childs->release();
  565. }
  566. // entfernt dieses Element vom Eltern element (auf allen elementen in der Liste)
  567. void Editor::remove()
  568. {
  569. for (auto i : *elements)
  570. i->remove();
  571. }
  572. // setzt den Text in dem Element falls es keine childs gibt (auf allen elementen in der Liste)
  573. // text: dert Text
  574. void Editor::setText(Text text)
  575. {
  576. for (auto i : *elements)
  577. i->setText(text);
  578. }
  579. // Gibt ein Iterator durch alle Elemente zurück
  580. Iterator<Element*> Editor::begin()
  581. {
  582. return elements->begin();
  583. }
  584. //! Gibt das ende des iterators zurück
  585. Iterator<Element*> Editor::end()
  586. {
  587. return elements->end();
  588. }
  589. // gibt einen selector zurück der alle childs beinhaltet
  590. Editor Editor::selectChildren() const
  591. {
  592. RCArray<Element>* list = new RCArray<Element>();
  593. for (auto i : *elements)
  594. {
  595. for (auto j = i->selectChildren().begin(); j; j++)
  596. {
  597. list->add(dynamic_cast<XML::Element*>(j->getThis()));
  598. }
  599. }
  600. return Editor(list);
  601. }
  602. // gibt einen selector zurück der alle parents beinhaltet
  603. Editor Editor::selectParents() const
  604. {
  605. RCArray<Element>* list = new RCArray<Element>();
  606. for (auto i : *elements)
  607. {
  608. if (i->parent)
  609. list->add(dynamic_cast<XML::Element*>(i->parent->getThis()));
  610. }
  611. return Editor(list);
  612. }
  613. // gibt eine Liste mit elementen zurück, die einen bestimmten Namen haben
  614. // name: der name der Childs
  615. Editor Editor::whereNameEquals(Text name) const
  616. {
  617. RCArray<Element>* list = new RCArray<Element>();
  618. for (auto i : *elements)
  619. {
  620. if (i->getName().istGleich(name))
  621. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  622. }
  623. return Editor(list);
  624. }
  625. // gibt eine Liste mit elementen zurück, die ein bestimmtes child haben
  626. // name: der name des childs
  627. Editor Editor::whereChildWithNameExists(Text name) const
  628. {
  629. RCArray<Element>* list = new RCArray<Element>();
  630. for (auto i : *elements)
  631. {
  632. if (i->selectChildsByName(name).elements->getEintragAnzahl())
  633. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  634. }
  635. return Editor(list);
  636. }
  637. // gibt eine Liste mit elementen zurück, die ein bestimmtes child haben
  638. // attribute: der name des attributes
  639. Editor Editor::whereChildWithAttributeExists(Text attribute) const
  640. {
  641. RCArray<Element>* list = new RCArray<Element>();
  642. for (auto i : *elements)
  643. {
  644. if (i->selectChildsByAttribute(attribute).elements->getEintragAnzahl())
  645. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  646. }
  647. return Editor(list);
  648. }
  649. // gibt eine Liste mit elementen zurück, die ein bestimmtes child haben
  650. // attribute: der name des attributes
  651. // value: der Wert des Attributes
  652. Editor Editor::whereChildWithAttributeExists(Text attribute, Text value) const
  653. {
  654. RCArray<Element>* list = new RCArray<Element>();
  655. for (auto i : *elements)
  656. {
  657. if (i->selectChildsByAttribute(attribute, value).elements->getEintragAnzahl())
  658. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  659. }
  660. return Editor(list);
  661. }
  662. // gibt eine Liste mit elementen zurück, die ein bestimmtes Attribut haben
  663. // attribute: der name des Attributes
  664. Editor Editor::whereAttributeExists(Text attribute) const
  665. {
  666. RCArray<Element>* list = new RCArray<Element>();
  667. for (auto i : *elements)
  668. {
  669. if (i->hasAttribute(attribute))
  670. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  671. }
  672. return Editor(list);
  673. }
  674. // gibt eine Liste mit elementen zurück, die ein bestimmtes Attribut mit einem bestimmten wert haben
  675. // attribute: der name des Attributes
  676. // value: der Wert des Attributes
  677. Editor Editor::whereAttributeEquals(Text attribute, Text value) const
  678. {
  679. RCArray<Element>* list = new RCArray<Element>();
  680. for (auto i : *elements)
  681. {
  682. if (i->hasAttribute(attribute) && i->getAttributeValue(attribute).istGleich(value))
  683. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  684. }
  685. return Editor(list);
  686. }
  687. // Gibt einen Editor zurück welcher nurnoch die Elemente enthält die nicht in e sind
  688. // e: Ein Editor mit elementen die nicht enthalten sein sollen
  689. Editor Editor::without(Editor e) const
  690. {
  691. RCArray<Element>* list = new RCArray<Element>();
  692. for (auto i : *elements)
  693. {
  694. bool found = 0;
  695. for (auto j : *e.elements)
  696. found |= i == j;
  697. if (!found)
  698. list->add(dynamic_cast<XML::Element*>(i->getThis()));
  699. }
  700. return Editor(list);
  701. }
  702. // Ruft eine funktion für jedes Element auf
  703. // f: die funktion (nimmt als argument ein Element objekt ohne erhöhten reference Counter)
  704. void Editor::forEach(std::function< void(Element*) > f) const
  705. {
  706. for (auto i : *elements)
  707. f(i);
  708. }
  709. //! gibt 1 zurück, wenn mindestens ein Element gefunden wurde
  710. bool Editor::exists() const
  711. {
  712. return elements->getEintragAnzahl() > 0;
  713. }
  714. //! gibt die anzahl der ausgewählten elemente zurück
  715. int Editor::getSize() const
  716. {
  717. return elements->getEintragAnzahl();
  718. }