MediaWiki master
Wikimedia\ParamValidator\TypeDef\FloatDef Class Reference

Type definition for a floating-point type. More...

Inherits Wikimedia\ParamValidator\TypeDef\NumericDef.

Collaboration diagram for Wikimedia\ParamValidator\TypeDef\FloatDef:

Public Member Functions

 getHelpInfo ( $name, array $settings, array $options)
 Describe parameter settings in human-readable format.Keys in the returned array should generally correspond to PARAM constants.If relevant, a MessageValue describing the type itself should be returned with key ParamValidator::PARAM_TYPE.The default messages for other ParamValidator-defined PARAM constants may be suppressed by returning null as the value for those constants, or replaced by returning a replacement MessageValue. Normally, however, the default messages should not be changed.MessageValues describing any other constraints applied via PARAM constants specific to this class should also be returned.

Stability: stable
to override
Parameters
string$nameParameter name being described.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
(MessageValue|null)[]
Stability: stable
to override

 
 stringifyValue ( $name, $value, array $settings, array $options)
 Convert a value to a string representation.
 
 validate ( $name, $value, array $settings, array $options)
 Validate the value.
 
- Public Member Functions inherited from Wikimedia\ParamValidator\TypeDef\NumericDef
 checkSettings (string $name, $settings, array $options, array $ret)
 Validate a parameter settings array.This is intended for validation of parameter settings during unit or integration testing, and should implement strict checks.The rest of the code should generally be more permissive.
See also
ParamValidator::checkSettings()
Stability: stable
to override
Parameters
string$nameParameter name
array | mixed$settingsDefault value or an array of settings using PARAM_* constants.
array$optionsOptions array, passed through to the TypeDef and Callbacks.
array$ret
  • 'issues': (string[]) Errors detected in $settings, as English text. If the settings are valid, this will be the empty array. Keys on input are ParamValidator constants, allowing the typedef to easily override core validation; this need not be preserved when returned.
  • 'allowedKeys': (string[]) ParamValidator keys that are allowed in $settings.
  • 'messages': (MessageValue[]) Messages to be checked for existence.
Returns
array $ret, with any relevant changes.

 
 getParamInfo ( $name, array $settings, array $options)
 Describe parameter settings in a machine-readable format.Keys should be short strings using lowercase ASCII letters. Values should generally be values that could be encoded in JSON or the like.This is intended to handle PARAM constants specific to this class. It generally shouldn't handle constants defined on ParamValidator itself.

Stability: stable
to override
Parameters
string$nameParameter name.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
array

 
 normalizeSettings (array $settings)
 Normalize a settings array.
Stability: stable
to override
Parameters
array$settings
Returns
array

 
- Public Member Functions inherited from Wikimedia\ParamValidator\TypeDef
 __construct (Callbacks $callbacks)
 
 getEnumValues ( $name, array $settings, array $options)
 Get the values for enum-like parameters.
 
 getValue ( $name, array $settings, array $options)
 Get the value from the request.
 
 supportsArrays ()
 Whether the value may be an array.
 

Protected Attributes

 $valueType = 'double'
 
- Protected Attributes inherited from Wikimedia\ParamValidator\TypeDef\NumericDef
string $valueType = 'integer'
 PHP type (as from gettype()) of values this NumericDef handles.
 
- Protected Attributes inherited from Wikimedia\ParamValidator\TypeDef
Callbacks $callbacks
 

Additional Inherited Members

- Public Attributes inherited from Wikimedia\ParamValidator\TypeDef\NumericDef
const PARAM_IGNORE_RANGE = 'param-ignore-range'
 (bool) Whether to enforce the specified range.
 
const PARAM_MAX = 'param-max'
 (int|float) Maximum allowed value (normal limits)
 
const PARAM_MAX2 = 'param-max2'
 (int|float) Maximum allowed value (high limits)
 
const PARAM_MIN = 'param-min'
 (int|float) Minimum allowed value.
 
- Protected Member Functions inherited from Wikimedia\ParamValidator\TypeDef\NumericDef
 checkRange ( $value, $name, $origValue, array $settings, array $options)
 Check the range of a value.
 
- Protected Member Functions inherited from Wikimedia\ParamValidator\TypeDef
 failure ( $failure, $name, $value, array $settings, array $options, $fatal=true)
 Record a failure message.
 
 failureMessage ( $code, array $data=null, $suffix=null)
 Create a DataMessageValue representing a failure.
 

Detailed Description

Type definition for a floating-point type.

A valid representation consists of:

  • an optional sign (+ or -)
  • a decimal number, using . as the decimal separator and no grouping
  • an optional E-notation suffix: the letter 'e' or 'E', an optional sign, and an integer

Thus, for example, "12", "-.4", "6.022e23", or "+1.7e-10".

The result from validate() is a PHP float.

Failure codes:

  • 'badfloat': The value was invalid. No data.
  • 'badfloat-notfinite': The value was in a valid format, but conversion resulted in infinity or NAN.
Since
1.34
Stability: unstable

Definition at line 29 of file FloatDef.php.

Member Function Documentation

◆ getHelpInfo()

Wikimedia\ParamValidator\TypeDef\FloatDef::getHelpInfo ( $name,
array $settings,
array $options )

Describe parameter settings in human-readable format.Keys in the returned array should generally correspond to PARAM constants.If relevant, a MessageValue describing the type itself should be returned with key ParamValidator::PARAM_TYPE.The default messages for other ParamValidator-defined PARAM constants may be suppressed by returning null as the value for those constants, or replaced by returning a replacement MessageValue. Normally, however, the default messages should not be changed.MessageValues describing any other constraints applied via PARAM constants specific to this class should also be returned.

Stability: stable
to override
Parameters
string$nameParameter name being described.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
(MessageValue|null)[]
Stability: stable
to override

Stability: stable
to override

Reimplemented from Wikimedia\ParamValidator\TypeDef\NumericDef.

Definition at line 53 of file FloatDef.php.

References Wikimedia\ParamValidator\ParamValidator\PARAM_ISMULTI, and Wikimedia\ParamValidator\ParamValidator\PARAM_TYPE.

◆ stringifyValue()

Wikimedia\ParamValidator\TypeDef\FloatDef::stringifyValue ( $name,
$value,
array $settings,
array $options )

Convert a value to a string representation.

This is intended as the inverse of getValue() and validate(): this should accept anything returned by those methods or expected to be used as PARAM_DEFAULT, and if the string from this method is passed in as client input or PARAM_DEFAULT it should give equivalent output from validate().

Parameters
string$nameParameter name being converted.
mixed$valueParameter value being converted. Do not pass null.
array$settingsParameter settings array.
array$optionsOptions array.
Returns
string|null Return null if there is no representation of $value reasonably satisfying the description given.

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 47 of file FloatDef.php.

◆ validate()

Wikimedia\ParamValidator\TypeDef\FloatDef::validate ( $name,
$value,
array $settings,
array $options )

Validate the value.

When ParamValidator is processing a multi-valued parameter, this will be called once for each of the supplied values. Which may mean zero calls.

When getValue() returned null, this will not be called.

Parameters
string$nameParameter name being validated.
mixed$valueValue to validate, from getValue().
array$settingsParameter settings array.
array$optionsOptions array. Note the following values that may be set by ParamValidator:
  • is-default: (bool) If present and true, the value was taken from PARAM_DEFAULT rather that being supplied by the client.
  • values-list: (string[]) If defined, values of a multi-valued parameter are being processed (and this array holds the full set of values).
Returns
mixed Validated value
Exceptions
ValidationExceptionif the value is invalid

Reimplemented from Wikimedia\ParamValidator\TypeDef.

Definition at line 33 of file FloatDef.php.

References Wikimedia\ParamValidator\TypeDef\NumericDef\checkRange(), and Wikimedia\ParamValidator\TypeDef\failure().

Member Data Documentation

◆ $valueType

Wikimedia\ParamValidator\TypeDef\FloatDef::$valueType = 'double'
protected

Definition at line 31 of file FloatDef.php.


The documentation for this class was generated from the following file: