-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseNumericalInput.cpp
88 lines (85 loc) · 2.21 KB
/
parseNumericalInput.cpp
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// parseNumericalInput class definitions
#include "parseNumericalInput.h"
#include <cctype>
#include <stdexcept>
using std::cout;
using std::domain_error;
using std::endl;
using std::getline;
using std::istream;
using std::isdigit;
using std::string;
using std::vector;
parseNumericalInput::parseNumericalInput (const string& delimiters):
delimiters(delimiters)
{
}
// returns whether substring numerical or not
bool parseNumericalInput::isSubstringNumerical
(
const string& buffer,
const string::size_type& begIdx,
const string::size_type& endIdx
) const
{
for(string::size_type i = begIdx; i < endIdx; ++i)
{
if(!isdigit(buffer.at(i)))
return false;
}
return true;
}
istream& parseNumericalInput::parseNonNegativeNumbers(istream& in, int numbersCount)
{
// if an input stream is in bad state, do nothing
if(in)
{
string buffer;
while(getline(in, buffer))
{
// if an empty string entered, show the message to start a next attempt
if(buffer.empty() || buffer.find_first_not_of(delimiters) == string::npos)
{
cout << "Please enter the data requested" << endl;
continue;
}
else
{
std::string::size_type begIdx;
std::string::size_type endIdx = 0;
// loop invariant: number of numbers parsed is i
for(int i = 0; i < numbersCount; ++i)
{
// the beginning of the next number search:
begIdx = buffer.find_first_not_of(delimiters, endIdx);
endIdx = buffer.find_first_of(delimiters, begIdx);
if(endIdx == string::npos)
endIdx = buffer.length();
if(begIdx == string::npos)
{
char buf[12];
_itoa_s(numbersCount, buf, 12, 10);
string message("Number of values entered is lower than " + static_cast<string>(buf));
throw domain_error(message);
}
if(!isSubstringNumerical(buffer, begIdx, endIdx))
throw domain_error("Entered value is not numerical");
values.push_back
(
atoi(buffer.substr(begIdx, endIdx - begIdx).c_str())
);
}
}
return in;
}
// if the input stream got a bad state for some reason (end of file, etc.)
// return it in a bad state to indicate a bad input
return in;
}
else
return in;
}
const vector<int> parseNumericalInput::getValues() const
{
return values;
}