Newer
Older
#include "MantidKernel/ArrayLengthValidator.h"
#include <boost/make_shared.hpp>
using namespace Mantid::Kernel;
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
namespace Mantid {
namespace Kernel {
//----------------------------------------------------------------------------------------------
/** No arg constructor
*/
template <typename TYPE>
ArrayLengthValidator<TYPE>::ArrayLengthValidator()
: TypedValidator<std::vector<TYPE>>(), m_arraySize(size_t(0)),
m_hasArraySize(false), m_arraySizeMin(size_t(0)),
m_hasArraySizeMin(false), m_arraySizeMax(size_t(0)),
m_hasArraySizeMax(false) {}
//----------------------------------------------------------------------------------------------
/** Constructor
* @param len:: the legth of the array
*/
template <typename TYPE>
ArrayLengthValidator<TYPE>::ArrayLengthValidator(const size_t len)
: TypedValidator<std::vector<TYPE>>(), m_arraySize(size_t(len)),
m_hasArraySize(true), m_arraySizeMin(size_t(0)), m_hasArraySizeMin(false),
m_arraySizeMax(size_t(0)), m_hasArraySizeMax(false) {}
//----------------------------------------------------------------------------------------------
/** Constructor
* @param lenmin:: the minimum legth of the array
* @param lenmax:: the maximum legth of the array
*/
template <typename TYPE>
ArrayLengthValidator<TYPE>::ArrayLengthValidator(const size_t lenmin,
const size_t lenmax)
: TypedValidator<std::vector<TYPE>>(), m_arraySize(size_t(0)),
m_hasArraySize(false), m_arraySizeMin(size_t(lenmin)),
m_hasArraySizeMin(true), m_arraySizeMax(size_t(lenmax)),
m_hasArraySizeMax(true) {}
//----------------------------------------------------------------------------------------------
/** Destructor
*/
template <typename TYPE> ArrayLengthValidator<TYPE>::~ArrayLengthValidator() {}
/**
Check if length is set
@returns true/false
*/
template <typename TYPE> bool ArrayLengthValidator<TYPE>::hasLength() const {
return this->m_hasArraySize;
}
/**
Check if minimum length is set
@returns true/false
*/
template <typename TYPE> bool ArrayLengthValidator<TYPE>::hasMinLength() const {
return this->m_hasArraySizeMin;
}
/**
Check if maximum length is set
@returns true/false
*/
template <typename TYPE> bool ArrayLengthValidator<TYPE>::hasMaxLength() const {
return this->m_hasArraySizeMax;
}
/**
Function to retun the set length
@returns m_arraySize
*/
template <typename TYPE>
const size_t &ArrayLengthValidator<TYPE>::getLength() const {
return this->m_arraySize;
}
/**
Function to retun the set minimum length
@returns m_arraySize
*/
template <typename TYPE>
const size_t &ArrayLengthValidator<TYPE>::getMinLength() const {
return this->m_arraySizeMin;
}
/**
Function to retun the set maximum length
@returns m_arraySize
*/
template <typename TYPE>
const size_t &ArrayLengthValidator<TYPE>::getMaxLength() const {
return this->m_arraySizeMax;
}
/**
Function to set the length. It will automatically clear the minimum and
maximum
@param value:: size_t type
*/
template <typename TYPE>
void ArrayLengthValidator<TYPE>::setLength(const size_t &value) {
this->m_hasArraySize = true;
this->m_arraySize = value;
this->clearLengthMax();
this->clearLengthMin();
}
/**
Function to set the minimum length. It will automatically clear the set length
@param value:: size_t type
*/
template <typename TYPE>
void ArrayLengthValidator<TYPE>::setLengthMin(const size_t &value) {
this->m_hasArraySizeMin = true;
this->m_arraySizeMin = value;
this->clearLength();
}
/**
Function to set the maximum length. It will automatically clear the set length
@param value:: size_t type
*/
template <typename TYPE>
void ArrayLengthValidator<TYPE>::setLengthMax(const size_t &value) {
this->m_hasArraySizeMax = true;
this->m_arraySizeMax = value;
this->clearLength();
}
/**
Function to unset the length. It sets m_hasArraySize to false, and the
m_arraySize to 0
*/
template <typename TYPE> void ArrayLengthValidator<TYPE>::clearLength() {
this->m_hasArraySize = false;
this->m_arraySize = size_t(0);
}
/**
Function to unset the minimum length. It sets m_hasArraySizeMin to false, and
the m_arraySizeMin to 0
*/
template <typename TYPE> void ArrayLengthValidator<TYPE>::clearLengthMin() {
this->m_hasArraySizeMin = false;
this->m_arraySizeMin = size_t(0);
}
/**
Function to unset the maximum length. It sets m_hasArraySizeMax to false, and
the m_arraySizeMax to 0
*/
template <typename TYPE> void ArrayLengthValidator<TYPE>::clearLengthMax() {
this->m_hasArraySizeMax = false;
this->m_arraySizeMax = size_t(0);
}
/**
Clone function
@returns a clone of the validator
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
template <typename TYPE>
IValidator_sptr ArrayLengthValidator<TYPE>::clone() const {
return boost::make_shared<ArrayLengthValidator>(*this);
}
/**
Private function to check validity
@returns a string. The string is emty if everything is OK, otherwise returns the
error
*/
template <typename TYPE>
std::string ArrayLengthValidator<TYPE>::checkValidity(
const std::vector<TYPE> &value) const {
if (this->hasLength() && value.size() != this->m_arraySize) {
return "Incorrect size";
}
if (this->hasMinLength() && value.size() < this->m_arraySizeMin) {
return "Array size too short";
}
if (this->hasMaxLength() && value.size() > this->m_arraySizeMax) {
return "Array size too long";
}
return "";
}
// Required explicit instantiations
template class ArrayLengthValidator<double>;
template class ArrayLengthValidator<int32_t>;
template class ArrayLengthValidator<int64_t>;
template class ArrayLengthValidator<std::string>;
#if defined(_WIN32) || defined(__clang__) && defined(__APPLE__)
template class ArrayLengthValidator<long>;
#endif
} // namespace Mantid
} // namespace Kernel