KVDocument.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-12-25
  6. * Changed: 2020-12-25
  7. *
  8. * */
  9. #include <ls_std/io/kv/KVDocument.hpp>
  10. ls_std::KVDocument::KVDocument() : ls_std::Class("KVDocument")
  11. {}
  12. bool ls_std::KVDocument::addPair(ls_std::KVPair _pair)
  13. {
  14. bool added {};
  15. if(!this->_hasPair(_pair.getKey())) {
  16. std::pair<ls_std::kv_key, ls_std::KVPair> pair = std::make_pair(_pair.getKey(), _pair);
  17. added = this->pairs.insert(pair).second;
  18. }
  19. return added;
  20. }
  21. void ls_std::KVDocument::clear()
  22. {
  23. this->pairs.clear();
  24. }
  25. std::map<ls_std::kv_key, ls_std::KVPair> ls_std::KVDocument::getPairs()
  26. {
  27. return this->pairs;
  28. }
  29. bool ls_std::KVDocument::hasPair(const ls_std::kv_key &_key)
  30. {
  31. return this->_hasPair(_key);
  32. }
  33. void ls_std::KVDocument::removePair(const ls_std::kv_key &_key)
  34. {
  35. if(_hasPair(_key)) {
  36. this->pairs.erase(_key);
  37. }
  38. }
  39. bool ls_std::KVDocument::_hasPair(const ls_std::kv_key& _key)
  40. {
  41. return this->pairs.find(_key) != this->pairs.end();
  42. }