Progress & Future WorkΒΆ

This is where the status and progress of the library will be kept up to date. You can also check the Issue Tracker for specific issues and things being worked on! We also maintain a very large list of encodings, so you can check if a specific encoding you are looking for is supported (and if you will need to implement an Encoding Object for it).

Copyable StateΒΆ

Right now, all state parameters are assumed to be move-only. This is detrimental to creating cheap views like .code_points() on basic_text_view, and harms other types as well. Work should be done either to make copyable state, or allow passing state in more effectively (we currently do the passing technique at the moment).

  • ☐ Do all states need to be copyable? Can it be done selectively? (At the moment: basic_text_view and text_view very well may need it, and as more Shift-State encodings become a part of the library, even more need…)

Transcoding Iterators/Transcode View βœ…ΒΆ

Right now these types would not work especially well for input and output ranges. They should be modified just like the internal ztd::text::__txt_detail::__encoding_iterator class types, so that they work with input_iterator and output_iterator types.

  • β˜‘ Improve constructor delegation and make sure to explicitly implement default construction vs. letting it happen with =default (which does not work for some of the base types present).

  • β˜‘ Modify implementation to cache data and position when an input or output iterator is detected.

  • β˜‘ Return const value_type& for reference to enable C++20 ranges to work properly.

  • β˜‘ Mark as enable_borrowed_range when C++20 is detected.

NormalizationΒΆ

ztd::text::nfkd/nfk/nfc/nfkc/fcc are all skeletons right now that need to be filled out for the purposes of giving this library normalization views.

  • ☐ nfkc

  • ☐ nfc

  • ☐ nfkd

  • ☐ nfd

  • ☐ Hook up to basic_text_view and basic_text when finished

basic_text_viewΒΆ

ztd::text::basic_text_view<Encoding, NormalizationForm, Range, ...> is to be the premiere view for looking at text and preserving both the normalization and encoding form during insertion and erasure. It is not fully implemented yet, even though basic skeletons exist for it in the code base.

  • ☐ Grapheme Cluster Iterators

  • β˜‘ Code Point iterators

  • ☐ Grapheme Cluster Iterators

  • ☐ Comparison operators (If the normalization form is the same and is_bitwise_transcoding_compatible, then memcmp. If just normalization form and encoding is same, memcmp. Otherwise, code point by code point comparison.)

basic_textΒΆ

ztd::text::basic_text<Encoding, NormalizationForm, Storage, ...> is to be the premiere container for storing text and preserving both the normalization and encoding form during insertion and erasure. It is not fully implemented yet, even though basic skeletons exist for it in the code base.

  • β˜‘ Code Point iterators/ranges

  • ☐ Grapheme Cluster Iterators

  • ☐ Comparison operators (If the normalization form is the same and is_bitwise_transcoding_compatible, then memcmp. If just normalization form and encoding is same, memcmp. Otherwise, code point by code point comparison.)

  • ☐ Insertion (Fast normalization-preserving splicing/inserting algorithm)

  • ☐ Deletion

  • ☐ Converting Constructors between compatible types (errors the same way lossy conversion protection describes if they are not compatible, forcing a user to pass in an error handler.)

iconvΒΆ

There should be an encoding that loads iconv dynamically from the system, if it is present, before using it to do conversions.

cuneicodeΒΆ

There should be a cuneicode-based encoding, for the update C implementation of all of these things.