/* * The Apache Software License, Version 1.1 * * Copyright (c) 1999-2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Xerces" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact apache\@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation, and was * originally based on software copyright (c) 1999, International * Business Machines, Inc., http://www.ibm.com . For more information * on the Apache Software Foundation, please see * . */ /** * $Log: iconv_cnv.hpp,v $ * Revision 1.2 2002/11/04 15:14:33 tng * C++ Namespace Support. * * Revision 1.1.1.1 2002/02/01 22:22:36 peiyongz * sane_include * * Revision 1.1 2001/06/25 16:19:34 tng * Rename iconv_cnv.h to iconv_cnv.hpp. AS400 changes by Linda Swan. * * Revision 1.1 2000/02/10 18:08:28 abagchi * Initial checkin * */ #ifndef UCNV_H #define UCNV_H #include "utypes.h" XERCES_CPP_NAMESPACE_BEGIN /** * Creates a UConverter object with the names specified as a C string. * The actual name will be resolved with the alias file. * if NULL is passed for the converter name, it will create one with the * getDefaultName return value. * @param converterName : name of the uconv table * @param err outgoing error status MEMORY_ALLOCATION_ERROR, TABLE_NOT_FOUND * @return the created Unicode converter object, or NULL if an error occured * @see ucnv_openU * @see ucnv_openCCSID * @see ucnv_close */ U_CAPI UConverter* U_EXPORT2 ucnv_open (const char *converterName, UErrorCode * err); /** * Creates a Unicode converter with the names specified as unicode string. The name should be limited to * the ASCII-7 alphanumerics range. The actual name will be resolved with the alias file. * if NULL is passed for the converter name, it will create one with the * getDefaultName return value. * @param converterName : name of the uconv table in a zero terminated Unicode string * @param err outgoing error status MEMORY_ALLOCATION_ERROR, TABLE_NOT_FOUND * @return the created Unicode converter object, or NULL if an error occured * @see ucnv_open * @see ucnv_openCCSID * @see ucnv_close */ U_CAPI UConverter* U_EXPORT2 ucnv_openU (const UChar * name, UErrorCode * err); /** * Creates a UConverter object using a CCSID number. * @param codepage : codepage # of the uconv table * @param platform : codepage's platform (now only IBM supported) * @param err error status MEMORY_ALLOCATION_ERROR, TABLE_NOT_FOUND * @return the created Unicode converter object, or NULL if and error occured * @see ucnv_open * @see ucnv_openU * @see ucnv_close */ U_CAPI void U_EXPORT2 ucnv_close (UConverter * converter); /** * Returns the maximum length of bytes used by a character. This varies between 1 and 4 * @param converter the Unicode converter * @return the maximum number of bytes allowed by this particular converter * @see ucnv_getMinCharSize */ U_CAPI int8_t U_EXPORT2 ucnv_getMaxCharSize (const UConverter * converter); /** * Returns the minimum byte length for characters in this codepage. This is either * 1 or 2 for all supported codepages. * @param converter the Unicode converter * @return the minimum number of bytes allowed by this particular converter * @see ucnv_getMaxCharSize */ U_CAPI int8_t U_EXPORT2 ucnv_getMinCharSize (const UConverter * converter); /** * Transcodes an array of unicode characters to an array of codepage characters. * The source pointer is an I/O parameter, it starts out pointing where the function is * to begin transcoding, and ends up pointing after the first sequence of the bytes * that it encounters that are semantically invalid. * if ucnv_setToUCallBack is called with an action other than STOP * before a call is made to this API, consumed and source should point to the same place * (unless target ends with an imcomplete sequence of bytes and flush is FALSE). * the target buffer buffer needs to be a least the size of the maximum # of bytes per characters * allowed by the target codepage. * @param converter the Unicode converter * @param converter the Unicode converter * @param target : I/O parameter. Input : Points to the beginning of the buffer to copy * codepage characters to. Output : points to after the last codepage character copied * to target. * @param targetLimit the pointer to the end of the target array * @param source the source Unicode character array * @param sourceLimit the pointer to the end of the source array * @param offsets if NULL is passed, nothing will happen to it, otherwise it needs to have the same number * of allocated cells as target. Will fill in offsets from target to source pointer * e.g: offsets[3] is equal to 6, it means that the target[3] was a result of transcoding source[6] * For output data carried across calls -1 will be placed for offsets. * @param flush TRUE if the buffer is the last buffer of the conversion interation * and the conversion will finish with this call, FALSE otherwise. * @param err the error status. ILLEGAL_ARGUMENT_ERROR will be returned if the * converter is NULL. * @see ucnv_fromUChars * @see ucnv_convert * @see ucnv_getMinCharSize * @see ucnv_setToUCallBack */ U_CAPI void U_EXPORT2 ucnv_fromUnicode (UConverter * converter, char **target, const char *targetLimit, const UChar ** source, const UChar * sourceLimit, int32_t* offsets, int flush, UErrorCode * err); /** * Converts an array of codepage characters into an array of unicode characters. * The source pointer is an I/O parameter, it starts out pointing at the place * to begin translating, and ends up pointing after the first sequence of the bytes * that it encounters that are semantically invalid. * if ucnv_setFromUCallBack is called with an action other than STOP * before a call is made to this API, consumed and source should point to the same place * (unless target ends with an imcomplete sequence of bytes and flush is FALSE). * @param converter the Unicode converter * @param target : I/O parameter. Input : Points to the beginning of the buffer to copy * Unicode characters to. Output : points to after the last UChar copied to target. * @param targetLimit the pointer to the end of the target array * @param source the source codepage character array * @param sourceLimit the pointer to the end of the source array * @param offsets if NULL is passed, nothing will happen to it, otherwise it needs to have the same number * of allocated cells as target. Will fill in offsets from target to source pointer * e.g: offsets[3] is equal to 6, it means that the target[3] was a result of transcoding source[6] * For output data carried across calls -1 will be placed for offsets. * @param flush TRUE if the buffer is the last buffer and the conversion will finish * in this call, FALSE otherwise. * @param err the error code status ILLEGAL_ARGUMENT_ERROR will be returned if the * converter is NULL, or if targetLimit and sourceLimit are misaligned. * @see ucnv_toUChars * @see ucnv_getNextUChar * @see ucnv_convert * @see ucnv_setFromUCallBack */ U_CAPI void U_EXPORT2 ucnv_toUnicode (UConverter * converter, UChar ** target, const UChar * targetLimit, const char **source, const char *sourceLimit, int32_t* offsets, int flush, UErrorCode * err); /** * Transcodes the source Unicode string to the target string in a codepage encoding * with the specified Unicode converter. For example, if a Unicode to/from JIS * converter is specified, the source string in Unicode will be transcoded to JIS * encoding. The result will be stored in JIS encoding. * if any problems during conversion are encountered it will SUBSTITUTE with the default (initial) * substitute characters. * This function is a more convenient but less efficient version of \Ref{ucnv_fromUnicode}. * @param converter the Unicode converter * @param source the source Unicode string (zero Terminated) * @param target the target string in codepage encoding (not zero-terminated because some * codepage do not use '\0' as a string terminator * @param targetCapacity Input the number of bytes available in the target buffer * @param err the error status code. * INDEX_OUTOFBOUNDS_ERROR will be returned if the * the # of bytes provided are not enough for transcoding. * ILLEGAL_ARGUMENT_ERROR is returned if the converter is NULL or the source or target string is empty. * BUFFER_OVERFLOW_ERROR when targetSize turns out to be bigger than targetCapacity * @return number of bytes needed in target, regardless of targetCapacity * @see ucnv_fromUnicode * @see ucnv_convert */ U_CAPI int32_t U_EXPORT2 ucnv_fromUChars (const UConverter * converter, char *target, int32_t targetCapacity, const UChar * source, UErrorCode * err); /** * Transcode the source string in codepage encoding to the target string in * Unicode encoding. For example, if a Unicode to/from JIS * converter is specified, the source string in JIS encoding will be transcoded * to Unicode and placed into a provided target buffer. * if any problems during conversion are encountered it will SUBSTITUTE with the Unicode REPLACEMENT char * We recomment, the size of the target buffer needs to be at least as long as the maximum # of bytes per char * in this character set. * A zero-terminator will be placed at the end of the target buffer * This function is a more convenient but less efficient version of \Ref{ucnv_toUnicode}. * @param converter the Unicode converter * @param source the source string in codepage encoding * @param target the target string in Unicode encoding * @param targetCapacity capacity of the target buffer * @param sourceSize : Number of bytes in source to be transcoded * @param err the error status code * MEMORY_ALLOCATION_ERROR will be returned if the * the internal process buffer cannot be allocated for transcoding. * ILLEGAL_ARGUMENT_ERROR is returned if the converter is NULL or * if the source or target string is empty. * BUFFER_OVERFLOW_ERROR when the input buffer is prematurely exhausted and targetSize non-NULL. * @return the number of UChar needed in target (including the zero terminator) * @see ucnv_getNextUChar * @see ucnv_toUnicode * @see ucnv_convert */ U_CAPI int32_t U_EXPORT2 ucnv_toUChars (const UConverter * converter, UChar * target, int32_t targetCapacity, const char *source, int32_t sourceSize, UErrorCode * err); /******************************** * Will convert a codepage buffer one character at a time. * This function was written to be efficient when transcoding small amounts of data at a time. * In that case it will be more efficient than \Ref{ucnv_toUnicode}. * When converting large buffers use \Ref{ucnv_toUnicode}. *@param converter an open UConverter *@param source the address of a pointer to the codepage buffer, will be updated to point after *the bytes consumed in the conversion call. *@param points to the end of the input buffer *@param err fills in error status (see ucnv_toUnicode) *@return a UChar resulting from the partial conversion of source *@see ucnv_toUnicode *@see ucnv_toUChars *@see ucnv_convert */ U_CAPI UChar U_EXPORT2 ucnv_getNextUChar (UConverter * converter, const char **source, const char *sourceLimit, UErrorCode * err); /************************** * Will convert a sequence of bytes from one codepage to another. * This is NOT AN EFFICIENT way to transcode. * use \Ref{ucnv_toUnicode} and \Ref{ucnv_fromUnicode} for efficiency * @param toConverterName: The name of the converter that will be used to encode the output buffer * @param fromConverterName: The name of the converter that will be used to decode the input buffer * @param target: Pointer to the output buffer to write to * @param targetCapacity: on input contains the capacity of target * @param source: Pointer to the input buffer * @param sourceLength: on input contains the capacity of source * @param err: fills in an error status * @return will be filled in with the number of bytes needed in target * @see ucnv_fromUnicode * @see ucnv_toUnicode * @see ucnv_fromUChars * @see ucnv_toUChars * @see ucnv_getNextUChar */ U_CAPI int32_t U_EXPORT2 ucnv_convert (const char *toConverterName, const char *fromConverterName, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode * err); XERCES_CPP_NAMESPACE_END #endif