1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-11-26
- * Changed: 2021-07-14
- *
- * */
- #include <ls_std/event/Event.hpp>
- #include <ls_std/exception/IllegalArgumentException.hpp>
- ls_std::Event::Event(const ls_std::event_id &_id) : ls_std::Class("Event")
- {
- this->_assignId(_id);
- }
- bool ls_std::Event::addParameter(const ls_std::event_parameter &_eventParameter)
- {
- bool wasAdded{};
- if (!this->_hasParameter(_eventParameter.first))
- {
- wasAdded = this->parameterList.insert(_eventParameter).second;
- }
- return wasAdded;
- }
- void ls_std::Event::clearParameterList()
- {
- this->parameterList.clear();
- }
- ls_std::event_id ls_std::Event::getId()
- {
- return this->id;
- }
- ls_std::event_parameter_list ls_std::Event::getParameterList()
- {
- return this->parameterList;
- }
- bool ls_std::Event::removeParameter(const ls_std::event_parameter_id &_id)
- {
- return this->parameterList.erase(_id) == 1;
- }
- void ls_std::Event::setId(const ls_std::event_id &_id)
- {
- this->_assignId(_id);
- }
- void ls_std::Event::_assignId(const ls_std::event_id &_id)
- {
- if (_id.empty())
- {
- throw ls_std::IllegalArgumentException{};
- }
- this->id = _id;
- }
- bool ls_std::Event::_hasParameter(const ls_std::event_id &_id)
- {
- return this->parameterList.find(_id) != this->parameterList.end();
- }
|