1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-05-05 10:37:12 +02:00
SqMod/vendor/POCO/Util/src/OptionSet.cpp
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
Switched to POCO library for unified platform/library interface.
Deprecated the external module API. It was creating more problems than solving.
Removed most built-in libraries in favor of system libraries for easier maintenance.
Cleaned and secured code with help from static analyzers.
2021-01-30 08:51:39 +02:00

123 lines
2.0 KiB
C++

//
// OptionSet.cpp
//
// Library: Util
// Package: Options
// Module: OptionSet
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Util/OptionSet.h"
#include "Poco/Util/OptionException.h"
#include "Poco/Exception.h"
namespace Poco {
namespace Util {
OptionSet::OptionSet()
{
}
OptionSet::OptionSet(const OptionSet& options):
_options(options._options)
{
}
OptionSet::~OptionSet()
{
}
OptionSet& OptionSet::operator = (const OptionSet& options)
{
if (&options != this)
_options = options._options;
return *this;
}
void OptionSet::addOption(const Option& option)
{
poco_assert (!option.fullName().empty());
OptionVec::const_iterator it = _options.begin();
OptionVec::const_iterator itEnd = _options.end();
for (; it != itEnd; ++it)
{
if (it->fullName() == option.fullName())
{
throw DuplicateOptionException(it->fullName());
}
}
_options.push_back(option);
}
bool OptionSet::hasOption(const std::string& name, bool matchShort) const
{
bool found = false;
for (const auto& opt: _options)
{
if ((matchShort && opt.matchesShort(name)) || (!matchShort && opt.matchesFull(name)))
{
if (!found)
found = true;
else
return false;
}
}
return found;
}
const Option& OptionSet::getOption(const std::string& name, bool matchShort) const
{
const Option* pOption = 0;
for (const auto& opt: _options)
{
if ((matchShort && opt.matchesShort(name)) || (!matchShort && opt.matchesPartial(name)))
{
if (!pOption)
{
pOption = &opt;
if (!matchShort && opt.matchesFull(name))
break;
}
else if (!matchShort && opt.matchesFull(name))
{
pOption = &opt;
break;
}
else throw AmbiguousOptionException(name);
}
}
if (pOption)
return *pOption;
else
throw UnknownOptionException(name);
}
OptionSet::Iterator OptionSet::begin() const
{
return _options.begin();
}
OptionSet::Iterator OptionSet::end() const
{
return _options.end();
}
} } // namespace Poco::Util