Count as Decoded
Counting code units is the action of finding out how many code points will result from a given sequence of encoded information. Essentially, we run the decoding algorithm loop, but instead of giving the end user the decoded values, we instead simply provide the count for running that bulk operation.
Thusly, we use the algorithm as below to do the work. Given an input
of code_unit
s with an encoding
, an initial count
set at 0, and any necessary additional state
, we can generically predict how many code units will result from a decoding operation by running the following loop:
⏩ Is the
input
value empty? If so, is thestate
finished and have nothing to output? If both are true, return the current results with the the emptyinput
, currentcount
, andstate
, everything is okay ✅!⏩ Otherwise,
Set up an
intermediate
storage location ofcode_point
s, using themax_code_points
of the input encoding, for the next operations.Do the
decode_one
step frominput
(using itsbegin()
andend()
) into theintermediate
code_point
storage location, saving the returnedintermediate_output
from thedecode_one
call.🛑 If it failed, return with the current
input
(unmodified from before this iteration, if possible), currentcount
, andstate
s.
Compute the difference between the
begin(intermediate)
from the original step, and thebegin(intermediate_output)
returned bydecode_one
; add that difference to the currentcount
.
⏩ Update
input
‘sbegin()
value to point to after what was read by thedecode_one
step.⤴️ Go back to the start.
This involves a single encoding type, and so does not need any cooperation to count the code_unit
s. Note that this algorithm doesn’t show what the error handler does; if the error handler “erases” the failure by setting the result type’s .error_code == ztd::text::encoding_error::ok
, then the algorithm will keep going. This is useful to, for example, detect the maximum size of an operation even if it errors and would result in replacement characters being inserted (e.g., from ztd::text::replacement_handler_t).
Check out the API documentation for ztd::text::count_as_decoded to learn more.