1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 12:54:00 +00:00
OpenMW/components/fallback/validate.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
763 B
C++
Raw Normal View History

#include "validate.hpp"
#include <boost/any.hpp>
#include <boost/program_options/errors.hpp>
void Fallback::validate(boost::any& v, std::vector<std::string> const& tokens, FallbackMap*, int)
{
if (v.empty())
{
v = boost::any(FallbackMap());
}
FallbackMap* map = boost::any_cast<FallbackMap>(&v);
2020-10-23 12:13:47 +00:00
for (const auto& token : tokens)
{
2021-10-17 22:40:34 +00:00
size_t sep = token.find(',');
if (sep < 1 || sep == token.length() - 1 || sep == std::string::npos)
throw boost::program_options::validation_error(
boost::program_options::validation_error::invalid_option_value);
2021-10-17 22:40:34 +00:00
std::string key(token.substr(0, sep));
std::string value(token.substr(sep + 1));
map->mMap[key] = value;
}
}