validate_decodable_as

ztd::text::validate_decodable_as is a function that takes an input sequence of code_units and attempts to validate that they can be turned into the code_points of the provided encoding. Unlike the ztd::text::count_as_decoded function, this does not take an error handler. Any error, even if it would be corrected over, produces a stop in the algorithm and a validate_result/stateless_validate_result object gets returned with the .valid member set to false.

The overloads of this function increase the level of control with each passed argument. At the last overload with four arguments, the function attempts to work call some extension points or falls back to the base function call in this order:

  • The text_validate_decodable_as(input, encoding, decode_state) extension point, if possible.

  • The text_validate_decodable_as(input, encoding, decode_state, encode_state) extension point, if possible.

  • An internal, implementation-defined customization point.

  • The basic_validate_decodable_as base function.

The base function call, basic_validate_decodable_as, simply performs the core validating loop using the Lucky 7 design. The reason the last overload takes 2 state arguments is due to how the base implementation works from the core validating loop. If during the 3-argument overload it is detected that text_validate_decodable_as(input, encoding, decode_state) can be called, it will be called without attempt to create an encode_state value with ztd::text::make_encode_state(…).

During the basic_validate_decodable_as loop, if it detects that there is a preferable text_validate_decodable_as_one, it will call that method as text_validate_decodable_as_one(input, encoding, decode_state) inside of the loop rather than doing the core design.

The ztd::text::validate_result type only includes the decode_state in all cases.

Note

πŸ‘‰ This means that if you implement none of the extension points whatsoever, implementing the basic decode_one and encode_one functions on your Encoding Object type will guarantee a proper, working implementation.

Note

πŸ‘‰ If you need to call the β€œbasic” form of this function that takes no secret implementation shortcuts or user-defined extension points, then call basic_validate_decodable_as directly. This can be useful to stop infinity loops when your extension points cannot handle certain inputs and thereby needs to β€œdelegate” to the basic case.


Functions

template<typename _Input, typename _Encoding, typename _DecodeState, typename _EncodeState>
constexpr auto basic_validate_decodable_as(_Input &&__input, _Encoding &&__encoding, _DecodeState &__decode_state, _EncodeState &__encode_state)

Validates the code units of the __input according to the __encoding with the given states __decode_state and __encode_state to see if it can be turned into code points.

Remark

This function explicitly does not call any extension points. It defers to doing a typical loop over the code points to verify it can be decoded into code points, and then encoded back into code units, with no errors and with the exact same value sequence as the original.

Parameters:
  • __input – [in] The input range of code units to validate is possible for encoding into code points.

  • __encoding – [in] The encoding to verify can properly encode the input of code units.

  • __decode_state – [in] The state to use for the decoding portion of the validation check.

  • __encode_state – [in] The state to use for the encoding portion of the validation check.

template<typename _Input, typename _Encoding, typename _DecodeState, typename _EncodeState>
constexpr auto validate_decodable_as(_Input &&__input, _Encoding &&__encoding, _DecodeState &__decode_state, _EncodeState &__encode_state)

Validates the code units of the __input according to the __encoding with the given states __decode_state and __encode_state to see if it can be turned into code points.

Remark

This functions checks to see if extension points for text_validate_decodable_as is available taking the available 4 parameters. If so, it calls this. Otherwise, it defers to ztd::text::validate_decodable_as.

Parameters:
  • __input – [in] The input range of code units to validate is possible for encoding into code points.

  • __encoding – [in] The encoding to verify can properly encode the input of code units.

  • __decode_state – [in] The state to use for the decoding portion of the validation check.

  • __encode_state – [in] The state to use for the encoding portion of the validation check.

template<typename _Input, typename _Encoding, typename _DecodeState>
constexpr auto validate_decodable_as(_Input &&__input, _Encoding &&__encoding, _DecodeState &__decode_state)

Validates the code units of the __input according to the __encoding with the given state __decode_state to see if it can be turned into code points.

Remark

This functions checks to see if extension points for text_validate_decodable_as is available taking the available 3 parameters. If so, it calls this. Otherwise, it creates an encoding state through ztd::text::make_encode_state before calling ztd::text::validate_decodable_as(__input, __encoding, __decode_state, __encode_state).

Parameters:
  • __input – [in] The input range of code units to validate is possible for encoding into code points.

  • __encoding – [in] The encoding to verify can properly encode the input of code units.

  • __decode_state – [in] The state to use for the decoding portion of the validation check.

template<typename _Input, typename _Encoding>
constexpr auto validate_decodable_as(_Input &&__input, _Encoding &&__encoding)

Validates the code units of the __input according to the __encoding to see if they can be turned into code points.

Remark

This functions creates an encoding state through ztd::text::make_decode_state before calling the next overload of ztd::text::validate_decodable_as.

Parameters:
  • __input – [in] The input range of code units to validate is possible for encoding into code points.

  • __encoding – [in] The encoding to verify can properly encode the input of code units.

template<typename _Input>
constexpr auto validate_decodable_as(_Input &&__input)

Validates the code units of the __input to see if it can be turned into code points.

Remark

This functions creates an encoding by passing the value_type of the __input range through ztd::text::default_code_unit_encoding.

Parameters:

__input – [in] The input range of code units to validate is possible for encoding into code points.

Returns:

A ztd::text::stateless_validate_result detailing whether or not the input code points can be turned into code units of the corresponding encoding.