XmlReader.cpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-10-10
  6. * Changed: 2022-05-13
  7. *
  8. * */
  9. #include <ls_std/io/xml/XmlReader.hpp>
  10. #include <ls_std/core/exception/IllegalArgumentException.hpp>
  11. #include <ls_std/io/FileReader.hpp>
  12. #include <ls_std/io/xml/XmlParser.hpp>
  13. ls::std::io::XmlReader::XmlReader(const ::std::shared_ptr<ls::std::io::XmlDocument> &_document, const ::std::string &_absolutePath)
  14. : ls::std::core::Class("XmlReader"),
  15. xmlFile(ls::std::io::File{""})
  16. {
  17. this->_assignDocument(_document);
  18. this->_assignFile(ls::std::io::File{_absolutePath});
  19. }
  20. ls::std::core::type::byte_field ls::std::io::XmlReader::read()
  21. {
  22. ls::std::core::type::byte_field data = ls::std::io::FileReader{this->xmlFile}.read();
  23. ls::std::io::XmlParser{this->document}.parse(data);
  24. return data;
  25. }
  26. ::std::shared_ptr<ls::std::io::XmlDocument> ls::std::io::XmlReader::getDocument()
  27. {
  28. return this->document;
  29. }
  30. void ls::std::io::XmlReader::setDocument(const ::std::shared_ptr<ls::std::io::XmlDocument> &_document)
  31. {
  32. this->_assignDocument(_document);
  33. }
  34. void ls::std::io::XmlReader::setFile(const ls::std::io::File &_xmlFile)
  35. {
  36. this->_assignFile(_xmlFile);
  37. }
  38. void ls::std::io::XmlReader::_assignDocument(const ::std::shared_ptr<ls::std::io::XmlDocument> &_document)
  39. {
  40. if (_document == nullptr)
  41. {
  42. throw ls::std::core::IllegalArgumentException{};
  43. }
  44. this->document = _document;
  45. }
  46. void ls::std::io::XmlReader::_assignFile(ls::std::io::File _xmlFile)
  47. {
  48. if (!_xmlFile.exists())
  49. {
  50. throw ls::std::core::IllegalArgumentException{};
  51. }
  52. this->xmlFile = _xmlFile;
  53. }