GBKļƒ

A legacy encoding typically for Chinese languages.

Aliasļƒ

constexpr basic_gbk<char> ztd::text::gbk = {}ļƒ

An instance of basic_gbk for ease of use.

Base Templatesļƒ

template<typename _CodeUnit = char, typename _CodePoint = unicode_code_point>
class basic_gbk : public __basic_gb18030<basic_gbk<char, unicode_code_point>, char, unicode_code_point, true>ļƒ

The single-byte GBK encoding, primarily for use with Chinese text.

Template Parameters:
  • _CodeUnit ā€“ The default code unit type to use when outputting encoded units.

  • _CodePoint ā€“ The code point type to use when outputting decoded units.

Public Types

using code_unit = charļƒ

Shift-JIS is generally stored as minimum-8-bit values in a sequence.

using code_point = unicode_code_pointļƒ

Shift-JIS outputs Unicode Scalar Values.

using state = __txt_detail::__empty_stateļƒ

Shift-JIS requires no state.

using is_decode_injective = ::std::true_typeļƒ

Marks this encoding as injective for the decode portion of its encoding actions.

using is_encode_injective = ::std::integral_constant<bool, !_IsGbk>ļƒ

Marks this encoding as injective for the encode portion of its encoding actions. This is true for GB18030, and not true for pure GBK.

using is_unicode_encoding = ::std::integral_constant<bool, !_IsGbk>ļƒ

GB18030-style encodings are Unicode Encodings (can encode all Unicode code points). GBK cannot.

Public Functions

inline constexpr ztd::span<const code_unit, _IsGbk ? 1 : 4> replacement_code_units() const noexceptļƒ

A fixed-size replacement for either the GBK or GB18030 encoding.

inline constexpr ztd::span<const code_point, 1> replacement_code_points() const noexceptļƒ

A fixed-size replacement for either the GBK or GB18030 encoding.

Public Static Functions

static inline constexpr auto decode_one(_Input &&__input, _Output &&__output, _ErrorHandler &&__error_handler, state &__state) noexceptļƒ

Decodes a single complete unit of information as __code_point points and produces a result with the input and output ranges moved past what was successfully read and written; or, produces an error and returns the input and output ranges untouched.

Remark

To the best ability of the implementation, the iterators will be returned untouched (e.g., the input models at least a view and a forward_range). If it is not possible, returned ranges may be incremented even if an error occurs due to the semantics of any view that models an input_range.

Parameters:
  • __input ā€“ [in] The input view to read __code_point uunits from.

  • __output ā€“ [in] The output view to write __code_point points into.

  • __error_handler ā€“ [in] The error handler to invoke if encoding fails.

  • __state ā€“ [inout] The necessary state information. For this encoding, the state is empty and means very little.

Returns:

A ztd::text::decode_result object that contains the input range, output range, error handler, and a reference to the passed-in state.

static inline constexpr auto encode_one(_Input &&__input, _Output &&__output, _ErrorHandler &&__error_handler, state &__state) noexceptļƒ

Encodes a single complete unit of information as __code_point units and produces a result with the input and output ranges moved past what was successfully read and written; or, produces an error and returns the input and output ranges untouched.

Remark

To the best ability of the implementation, the iterators will be returned untouched (e.g., the input models at least a view and a forward_range). If it is not possible, returned ranges may be incremented even if an error occurs due to the semantics of any view that models an input_range.

Parameters:
  • __input ā€“ [in] The input view to read __code_point points from.

  • __output ā€“ [in] The output view to write __code_point units into.

  • __error_handler ā€“ [in] The error handler to invoke if encoding fails.

  • __state ā€“ [inout] The necessary state information. For this encoding, the state is empty and means very little.

Returns:

A ztd::text::encode_result object that contains the input range, output range, error handler, and a reference to the passed-in state.

Public Static Attributes

static constexpr std::size_t max_code_pointsļƒ

The Shift-JIS encoding can put out at most 1 code_point units per decoding action.

static constexpr std::size_t max_code_unitsļƒ

The Shift-JIS encoding can put out at most 4 code_point units per encoding action.