blob: e5372ee0980373099fc4f93cfdfccdfb2912adb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
//
// IntValidator.cpp
//
// Library: Util
// Package: Options
// Module: IntValidator
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Util/IntValidator.h"
#include "Poco/Util/Option.h"
#include "Poco/Util/OptionException.h"
#include "Poco/NumberParser.h"
#include "Poco/Format.h"
using Poco::NumberParser;
using Poco::format;
namespace Poco {
namespace Util {
IntValidator::IntValidator(int min, int max):
_min(min),
_max(max)
{
}
IntValidator::~IntValidator()
{
}
void IntValidator::validate(const Option& option, const std::string& value)
{
int n;
if (NumberParser::tryParse(value, n))
{
if (n < _min || n > _max)
throw InvalidArgumentException(format("argument for %s must be in range %d to %d", option.fullName(), _min, _max));
}
else throw InvalidArgumentException(format("argument for %s must be an integer", option.fullName()));
}
} } // namespace Poco::Util
|