Value Checkers
is_nonempty_value
Check if a value is not empty.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is not empty |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
is_bool_like
Checks if a value is a bool or can be converted into a bool. It is case-insensitive, meaning that the words can also be capitalised.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
|
is_color
Checks if a value is a color value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
48 49 50 51 52 53 54 55 56 57 58 59 |
|
is_date
Checks if a value is a date value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
is_geoname
Checks if a value is a geoname value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
85 86 87 88 89 90 91 92 93 94 95 |
|
is_decimal
Checks if a value is a float, an integer, or a string which can be converted into a float.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if conforms to the above-mentioned criteria. |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
is_integer
Checks if a value is an integer or a string which can be converted into an integer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if conforms to the above-mentioned criteria. |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
is_string_like
Checks if a value is a string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is a string |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
|
is_timestamp
Checks if a value is a valid timestamp.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
value to check |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it conforms |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
162 163 164 165 166 167 168 169 170 171 172 173 |
|
find_geometry_problem
Validates if a value is a valid geometry object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
geometry object |
required |
Returns:
Type | Description |
---|---|
str
|
String with the validation message if it fails, else an empty string. |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|
is_dsp_iri
Check if a value is a valid internal DSP IRI.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
IRI |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is valid, else false |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
199 200 201 202 203 204 205 206 207 208 209 |
|
is_dsp_ark
Checks if a value is a valid ARK.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
Any
|
ARK |
required |
Returns:
Type | Description |
---|---|
bool
|
True if it is valid, else false |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
212 213 214 215 216 217 218 219 220 221 222 |
|
check_richtext_syntax
DSP richtexts must be convertible into valid XML.
This checker escapes the reserved characters <
, >
and &
,
but only if they are not part of a standard standoff tag or escape sequence.
Then, it tries to parse the resulting XML.
Note: Only DSP standard standoff tags are allowed in richtexts. They are documented here.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
richtext
|
str
|
richtext to check |
required |
Warns:
Type | Description |
---|---|
DspToolsUserWarning
|
if the input contains XML syntax problems |
Source code in dsp/dsp-tools/src/dsp_tools/xmllib/value_checkers.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|