diff options
author | Peter Powell <petpow@saberuk.com> | 2018-06-29 11:26:51 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2018-07-10 21:14:56 +0100 |
commit | e22383c6f4f4c5f16e40e04db0f14ad4b357a142 (patch) | |
tree | 521ebd5d0b899942df032c72f861b88270e75fd7 | |
parent | 39b51a7c11e384603102c01de1c46c28e7699046 (diff) |
Add a ConfigTag::getString overload that calls a validation method.
-rw-r--r-- | include/configreader.h | 2 | ||||
-rw-r--r-- | src/configparser.cpp | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index a82420b4e..b603f2e10 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -43,6 +43,8 @@ class CoreExport ConfigTag : public refcountbase const int src_line; /** Get the value of an option, using def if it does not exist */ + std::string getString(const std::string& key, const std::string& def, const TR1NS::function<bool(const std::string&)>& validator); + /** Get the value of an option, using def if it does not exist */ std::string getString(const std::string& key, const std::string& def = "", size_t minlen = 0, size_t maxlen = UINT32_MAX); /** Get the value of an option, using def if it does not exist */ long getInt(const std::string& key, long def, long min = LONG_MIN, long max = LONG_MAX); diff --git a/src/configparser.cpp b/src/configparser.cpp index 8a3042eba..627cd78e1 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -402,6 +402,21 @@ bool ConfigTag::readString(const std::string& key, std::string& value, bool allo return false; } +std::string ConfigTag::getString(const std::string& key, const std::string& def, const TR1NS::function<bool(const std::string&)>& validator) +{ + std::string res; + if (!readString(key, res)) + return def; + + if (!validator(res)) + { + ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "WARNING: The value of <%s:%s> is not valid; value set to %s.", + tag.c_str(), key.c_str(), def.c_str()); + return def; + } + return res; +} + std::string ConfigTag::getString(const std::string& key, const std::string& def, size_t minlen, size_t maxlen) { std::string res; |