Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Unicode::Stringprep

Name Unicode::Stringprep
Version 1.105
Located at /usr/share/perl5
File /usr/share/perl5/Unicode/Stringprep.pm
Is Core No
Search CPAN for this module Unicode::Stringprep
Documentation Unicode::Stringprep
Module Details Unicode::Stringprep

NAME

Unicode::Stringprep - Preparation of Internationalized Strings (RFC 3454)


SYNOPSIS

  use Unicode::Stringprep;
  use Unicode::Stringprep::Mapping;
  use Unicode::Stringprep::Prohibited;
  my $prepper = Unicode::Stringprep->new(
    3.2,
    [ { 32 => '<SPACE>'},  ],
    'KC',
    [ @Unicode::Stringprep::Prohibited::C12, @Unicode::Stringprep::Prohibited::C22,
      @Unicode::Stringprep::Prohibited::C3, @Unicode::Stringprep::Prohibited::C4,
      @Unicode::Stringprep::Prohibited::C5, @Unicode::Stringprep::Prohibited::C6,
      @Unicode::Stringprep::Prohibited::C7, @Unicode::Stringprep::Prohibited::C8,
      @Unicode::Stringprep::Prohibited::C9 ],
    1, 0 );
  $output = $prepper->($input)


DESCRIPTION

This module implements the stringprep framework for preparing Unicode text strings in order to increase the likelihood that string input and string comparison work in ways that make sense for typical users throughout the world. The stringprep protocol is useful for protocol identifier values, company and personal names, internationalized domain names, and other text strings.

The stringprep framework does not specify how protocols should prepare text strings. Protocols must create profiles of stringprep in order to fully specify the processing options.


FUNCTIONS

This module provides a single function, new, that creates a perl function implementing a stringprep profile.

This module exports nothing.

new($unicode_version, $mapping_tables, $unicode_normalization, $prohibited_tables, $bidi_check, $unassigned_check)
Creates a blessed function reference that implements a stringprep profile.

This function takes the following parameters:

$unicode_version
The Unicode version specified by the stringprep profile.

Currently, this parameter must be 3.2 (numeric).

$mapping_tables
The mapping tables used for stringprep.

The parameter may be a reference to a hash or an array, or undef. A hash must map Unicode codepoints (as integers, e. g. 0x0020 for U+0020) to replacement strings (as perl strings). An array may contain pairs of Unicode codepoints and replacement strings as well as references to nested hashes and arrays.

the Unicode::Stringprep::Mapping manpage provides the tables from RFC 3454, Appendix B.

For further information on the mapping step, see RFC 3454, section 3.

$unicode_normalization
The Unicode normalization to be used.

Currently, undef/'' (no normalization) and 'KC' (compatibility composed) are specified for stringprep.

For further information on the normalization step, see RFC 3454, section 4.

Normalization form KC will also enable checks for some problem sequences for which the normalization can't be implemented in an interoperable way.

For more information, see CAVEATS below.

$prohibited_tables
The list of prohibited output characters for stringprep.

The parameter may be a reference to an array, or undef. The array contains pairs of codepoints, which define the start and end of a Unicode character range (as integers). The end character may be undef, specifying a single-character range. The array may also contain references to nested arrays.

the Unicode::Stringprep::Prohibited manpage provides the tables from RFC 3454, Appendix C.

For further information on the prohibition checking step, see RFC 3454, section 5.

$bidi_check
Whether to employ checks for confusing bidirectional text. A boolean value.

For further information on the bidi checking step, see RFC 3454, section 6.

$unassigned_check
Whether to check for and prohibit unassigned characters. A boolean value.

The check must be used when creating stored strings. It should not be used for query strings, increasing the chance that newly assigned characters work as expected.

For further information on stored and query strings, see RFC 3454, section 7.

The function returned can be called with a single parameter, the string to be prepared, and returns the prepared string. It will die if the input string cannot be successfully prepared because it would contain invalid output (so use eval if necessary).

For performance reasons, it is strongly recommended to call the new function as few times as possible, i. e. exactly once per stringprep profile. It might also be better not to use this module directly but to use (or write) a module implementing a profile, such as the Authen::SASL::SASLprep manpage.


IMPLEMENTING PROFILES

You can easily implement a stringprep profile without subclassing:

  package ACME::ExamplePrep;
  use Unicode::Stringprep;
  use Unicode::Stringprep::Mapping;
  use Unicode::Stringprep::Prohibited;
  *exampleprep = Unicode::Stringprep->new(
    3.2,
    [ \@Unicode::Stringprep::Mapping::B1, ],
    '',
    [ \@Unicode::Stringprep::Prohibited::C12,
      \@Unicode::Stringprep::Prohibited::C22, ],
    1,
  );

This binds ACME::ExamplePrep::exampleprep to the function created by Unicode::Stringprep->new.

Usually, it is not necessary to subclass this module. Sublassing this module is not recommended.


DATA TABLES

The following modules contain the data tables from RFC 3454. These modules are automatically loaded when loading Unicode::Stringprep.


CAVEATS

In Unicode 3.2 to 4.0.1, the specification of UAX #15: Unicode Normalization Forms for forms NFC and NFKC is not logically self-consistent. This has been fixed in Corrigendum #5 (http://unicode.org/versions/corrigendum5.html).

Unfortunately, this yields two ways to implement NFC and NFKC in Unicode 3.2, on which the Stringprep standard is based: one based on a literal interpretation of the original specification and one based on the corrected specification. The output of these implementations differs for a small class of strings, all of which can't appear in meaningful text. See UAX #15, section 19 http://unicode.org/reports/tr15/#Stability_Prior_to_Unicode41 for details.

This module will check for these strings and, if normalization is done, prohibit them in output as it is not possible to interoperate under these circumstandes.

Please note that due to this, the normalization step may cause the preparation to fail. That is, the preparation function may die even if there are no prohibited characters and no checks for bidi sequences and unassigned characters, which may be surprising.


AUTHOR

Claus Färber <CFAERBER@cpan.org>


LICENSE

Copyright 2007-2009 Claus Färber.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


SEE ALSO

the Unicode::Normalize manpage, RFC 3454 (http://www.ietf.org/rfc/rfc3454.txt)

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026