123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-20
- * Changed: 2022-05-20
- *
- * */
- #include <ls_std/io/logging/LogLevel.hpp>
- #include <ls_std/core/exception/IllegalArgumentException.hpp>
- ls::std::io::LogLevel::LogLevel(const ls::std::io::LogLevelValue &_value)
- : ls::std::core::Class("LogLevel"),
- value(_value)
- {
- this->_init();
- }
- ls::std::io::LogLevel::LogLevel() : ls::std::core::Class("LogLevel")
- {
- this->_init();
- }
- ls::std::io::LogLevel::operator unsigned char() const
- {
- return this->value;
- }
- ls::std::io::LogLevel &ls::std::io::LogLevel::operator=(const ls::std::io::LogLevelValue &_value)
- {
- this->value = _value;
- return *this;
- }
- bool ls::std::io::LogLevel::operator<(const ls::std::io::LogLevelValue &_value)
- {
- return this->value < _value;
- }
- bool ls::std::io::LogLevel::operator<=(const ls::std::io::LogLevelValue &_value)
- {
- return this->value <= _value;
- }
- bool ls::std::io::LogLevel::operator>(const ls::std::io::LogLevelValue &_value)
- {
- return this->value > _value;
- }
- bool ls::std::io::LogLevel::operator>=(const ls::std::io::LogLevelValue &_value)
- {
- return this->value >= _value;
- }
- bool ls::std::io::LogLevel::operator==(const ls::std::io::LogLevelValue &_value)
- {
- return this->value == _value;
- }
- void ls::std::io::LogLevel::setLogLevel(const ls::std::io::LogLevelValue &_value)
- {
- this->value = _value;
- }
- void ls::std::io::LogLevel::setLogLevel(const ::std::string &_value)
- {
- if (this->_isValidLogLevelString(_value))
- {
- this->value = _getValueFromString(_value);
- }
- else
- {
- throw ls::std::core::IllegalArgumentException{};
- }
- }
- ::std::string ls::std::io::LogLevel::toString() const
- {
- return this->level.at(this->value);
- }
- ls::std::io::LogLevelValue ls::std::io::LogLevel::_getValueFromString(const ::std::string &_value)
- {
- ls::std::io::LogLevelValue logLevelValue{};
- for (const auto &logLevelString : this->level)
- {
- if (logLevelString.second == _value)
- {
- logLevelValue = (ls::std::io::LogLevelValue) logLevelString.first;
- break;
- }
- }
- return logLevelValue;
- }
- void ls::std::io::LogLevel::_init()
- {
- this->level.insert({ls::std::io::LogLevelValue::FATAL, "FATAL"});
- this->level.insert({ls::std::io::LogLevelValue::ERR, "ERROR"});
- this->level.insert({ls::std::io::LogLevelValue::WARN, "WARN"});
- this->level.insert({ls::std::io::LogLevelValue::INFO, "INFO"});
- this->level.insert({ls::std::io::LogLevelValue::DEBUG, "DEBUG"});
- this->level.insert({ls::std::io::LogLevelValue::TRACE, "TRACE"});
- }
- bool ls::std::io::LogLevel::_isValidLogLevelString(const ::std::string &_value)
- {
- bool isValidString{};
- for (const auto &logLevelString : this->level)
- {
- isValidString = logLevelString.second == _value;
- if (isValidString)
- {
- break;
- }
- }
- return isValidString;
- }
|