|
libidn
1.25
|
00001 /* punycode.h --- Declarations for punycode functions. 00002 Copyright (C) 2002-2012 Simon Josefsson 00003 00004 This file is part of GNU Libidn. 00005 00006 GNU Libidn is free software: you can redistribute it and/or 00007 modify it under the terms of either: 00008 00009 * the GNU Lesser General Public License as published by the Free 00010 Software Foundation; either version 3 of the License, or (at 00011 your option) any later version. 00012 00013 or 00014 00015 * the GNU General Public License as published by the Free 00016 Software Foundation; either version 2 of the License, or (at 00017 your option) any later version. 00018 00019 or both in parallel, as here. 00020 00021 GNU Libidn is distributed in the hope that it will be useful, 00022 but WITHOUT ANY WARRANTY; without even the implied warranty of 00023 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00024 General Public License for more details. 00025 00026 You should have received copies of the GNU General Public License and 00027 the GNU Lesser General Public License along with this program. If 00028 not, see <http://www.gnu.org/licenses/>. */ 00029 00030 /* 00031 * This file contains content derived from RFC 3492bis written by Adam 00032 * M. Costello. 00033 * 00034 * Disclaimer and license: Regarding this entire document or any 00035 * portion of it (including the pseudocode and C code), the author 00036 * makes no guarantees and is not responsible for any damage resulting 00037 * from its use. The author grants irrevocable permission to anyone 00038 * to use, modify, and distribute it in any way that does not diminish 00039 * the rights of anyone else to use, modify, and distribute it, 00040 * provided that redistributed derivative works do not contain 00041 * misleading author or version information. Derivative works need 00042 * not be licensed under similar terms. 00043 * 00044 * Copyright (C) The Internet Society (2003). All Rights Reserved. 00045 * 00046 * This document and translations of it may be copied and furnished to 00047 * others, and derivative works that comment on or otherwise explain it 00048 * or assist in its implementation may be prepared, copied, published 00049 * and distributed, in whole or in part, without restriction of any 00050 * kind, provided that the above copyright notice and this paragraph are 00051 * included on all such copies and derivative works. However, this 00052 * document itself may not be modified in any way, such as by removing 00053 * the copyright notice or references to the Internet Society or other 00054 * Internet organizations, except as needed for the purpose of 00055 * developing Internet standards in which case the procedures for 00056 * copyrights defined in the Internet Standards process must be 00057 * followed, or as required to translate it into languages other than 00058 * English. 00059 * 00060 * The limited permissions granted above are perpetual and will not be 00061 * revoked by the Internet Society or its successors or assigns. 00062 * 00063 * This document and the information contained herein is provided on an 00064 * "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING 00065 * TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING 00066 * BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION 00067 * HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF 00068 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. 00069 */ 00070 00071 #ifndef PUNYCODE_H 00072 # define PUNYCODE_H 00073 00074 # ifndef IDNAPI 00075 # if defined LIBIDN_BUILDING && defined HAVE_VISIBILITY && HAVE_VISIBILITY 00076 # define IDNAPI __attribute__((__visibility__("default"))) 00077 # elif defined LIBIDN_BUILDING && defined _MSC_VER && ! defined LIBIDN_STATIC 00078 # define IDNAPI __declspec(dllexport) 00079 # elif defined _MSC_VER && ! defined LIBIDN_STATIC 00080 # define IDNAPI __declspec(dllimport) 00081 # else 00082 # define IDNAPI 00083 # endif 00084 # endif 00085 00086 #ifdef __cplusplus 00087 extern "C" 00088 { 00089 #endif 00090 00091 #include <stddef.h> /* size_t */ 00092 #include <idn-int.h> /* uint32_t */ 00093 00094 enum punycode_status 00095 { 00096 punycode_success = 0, 00097 punycode_bad_input = 1, /* Input is invalid. */ 00098 punycode_big_output = 2, /* Output would exceed the space provided. */ 00099 punycode_overflow = 3 /* Wider integers needed to process input. */ 00100 }; 00101 00102 typedef enum 00103 { 00104 PUNYCODE_SUCCESS = punycode_success, 00105 PUNYCODE_BAD_INPUT = punycode_bad_input, 00106 PUNYCODE_BIG_OUTPUT = punycode_big_output, 00107 PUNYCODE_OVERFLOW = punycode_overflow 00108 } Punycode_status; 00109 00110 extern IDNAPI const char *punycode_strerror (Punycode_status rc); 00111 00112 /* punycode_uint needs to be unsigned and needs to be */ 00113 /* at least 26 bits wide. */ 00114 00115 typedef uint32_t punycode_uint; 00116 00117 extern IDNAPI int punycode_encode (size_t input_length, 00118 const punycode_uint input[], 00119 const unsigned char case_flags[], 00120 size_t * output_length, char output[]); 00121 00122 /* 00123 punycode_encode() converts a sequence of code points (presumed to be 00124 Unicode code points) to Punycode. 00125 00126 Input arguments (to be supplied by the caller): 00127 00128 input_length 00129 The number of code points in the input array and the number 00130 of flags in the case_flags array. 00131 00132 input 00133 An array of code points. They are presumed to be Unicode 00134 code points, but that is not strictly REQUIRED. The 00135 array contains code points, not code units. UTF-16 uses 00136 code units D800 through DFFF to refer to code points 00137 10000..10FFFF. The code points D800..DFFF do not occur in 00138 any valid Unicode string. The code points that can occur in 00139 Unicode strings (0..D7FF and E000..10FFFF) are also called 00140 Unicode scalar values. 00141 00142 case_flags 00143 A null pointer or an array of boolean values parallel to 00144 the input array. Nonzero (true, flagged) suggests that the 00145 corresponding Unicode character be forced to uppercase after 00146 being decoded (if possible), and zero (false, unflagged) 00147 suggests that it be forced to lowercase (if possible). 00148 ASCII code points (0..7F) are encoded literally, except that 00149 ASCII letters are forced to uppercase or lowercase according 00150 to the corresponding case flags. If case_flags is a null 00151 pointer then ASCII letters are left as they are, and other 00152 code points are treated as unflagged. 00153 00154 Output arguments (to be filled in by the function): 00155 00156 output 00157 An array of ASCII code points. It is *not* null-terminated; 00158 it will contain zeros if and only if the input contains 00159 zeros. (Of course the caller can leave room for a 00160 terminator and add one if needed.) 00161 00162 Input/output arguments (to be supplied by the caller and overwritten 00163 by the function): 00164 00165 output_length 00166 The caller passes in the maximum number of ASCII code points 00167 that it can receive. On successful return it will contain 00168 the number of ASCII code points actually output. 00169 00170 Return value: 00171 00172 Can be any of the punycode_status values defined above except 00173 punycode_bad_input. If not punycode_success, then output_size 00174 and output might contain garbage. 00175 */ 00176 00177 extern IDNAPI int punycode_decode (size_t input_length, 00178 const char input[], 00179 size_t * output_length, 00180 punycode_uint output[], 00181 unsigned char case_flags[]); 00182 00183 /* 00184 punycode_decode() converts Punycode to a sequence of code points 00185 (presumed to be Unicode code points). 00186 00187 Input arguments (to be supplied by the caller): 00188 00189 input_length 00190 The number of ASCII code points in the input array. 00191 00192 input 00193 An array of ASCII code points (0..7F). 00194 00195 Output arguments (to be filled in by the function): 00196 00197 output 00198 An array of code points like the input argument of 00199 punycode_encode() (see above). 00200 00201 case_flags 00202 A null pointer (if the flags are not needed by the caller) 00203 or an array of boolean values parallel to the output array. 00204 Nonzero (true, flagged) suggests that the corresponding 00205 Unicode character be forced to uppercase by the caller (if 00206 possible), and zero (false, unflagged) suggests that it 00207 be forced to lowercase (if possible). ASCII code points 00208 (0..7F) are output already in the proper case, but their 00209 flags will be set appropriately so that applying the flags 00210 would be harmless. 00211 00212 Input/output arguments (to be supplied by the caller and overwritten 00213 by the function): 00214 00215 output_length 00216 The caller passes in the maximum number of code points 00217 that it can receive into the output array (which is also 00218 the maximum number of flags that it can receive into the 00219 case_flags array, if case_flags is not a null pointer). On 00220 successful return it will contain the number of code points 00221 actually output (which is also the number of flags actually 00222 output, if case_flags is not a null pointer). The decoder 00223 will never need to output more code points than the number 00224 of ASCII code points in the input, because of the way the 00225 encoding is defined. The number of code points output 00226 cannot exceed the maximum possible value of a punycode_uint, 00227 even if the supplied output_length is greater than that. 00228 00229 Return value: 00230 00231 Can be any of the punycode_status values defined above. If not 00232 punycode_success, then output_length, output, and case_flags 00233 might contain garbage. 00234 */ 00235 00236 #ifdef __cplusplus 00237 } 00238 #endif 00239 #endif /* PUNYCODE_H */
1.7.6.1