home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2004 May / Gamestar_62_2004-05_dvd.iso / Programy / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F251786_apr_xlate.h < prev    next >
C/C++ Source or Header  |  2003-03-03  |  8KB  |  197 lines

  1. /* ====================================================================
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2000-2003 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Apache" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation.  For more
  51.  * information on the Apache Software Foundation, please see
  52.  * <http://www.apache.org/>.
  53.  */
  54.  
  55. #ifndef APR_XLATE_H
  56. #define APR_XLATE_H
  57.  
  58. #include "apu.h"
  59. #include "apr_pools.h"
  60. #include "apr_errno.h"
  61.  
  62. #ifdef __cplusplus
  63. extern "C" {
  64. #endif /* __cplusplus */
  65.  
  66. /**
  67.  * @file apr_xlate.h
  68.  * @brief APR I18N translation library
  69.  */
  70.  
  71. /**
  72.  * @defgroup APR_XLATE I18N translation library
  73.  * @ingroup APR
  74.  * @{
  75.  */
  76. /** Opaque translation buffer */
  77. typedef struct apr_xlate_t            apr_xlate_t;
  78.  
  79. /**
  80.  * Set up for converting text from one charset to another.
  81.  * @param convset The handle to be filled in by this function
  82.  * @param topage The name of the target charset
  83.  * @param frompage The name of the source charset
  84.  * @param pool The pool to use
  85.  * @remark
  86.  *  Specify APR_DEFAULT_CHARSET for one of the charset
  87.  *  names to indicate the charset of the source code at
  88.  *  compile time.  This is useful if there are literal
  89.  *  strings in the source code which must be translated
  90.  *  according to the charset of the source code.
  91.  *  APR_DEFAULT_CHARSET is not useful if the source code
  92.  *  of the caller was not encoded in the same charset as
  93.  *  APR at compile time.
  94.  *
  95.  * @remark
  96.  *  Specify APR_LOCALE_CHARSET for one of the charset
  97.  *  names to indicate the charset of the current locale.
  98.  *
  99.  * @remark
  100.  *  Return APR_EINVAL if unable to procure a convset, or APR_ENOTIMPL
  101.  *  if charset transcoding is not available in this instance of
  102.  *  apr-util at all (i.e., APR_HAS_XLATE is undefined).
  103.  */
  104. APU_DECLARE(apr_status_t) apr_xlate_open(apr_xlate_t **convset, 
  105.                                          const char *topage, 
  106.                                          const char *frompage, 
  107.                                          apr_pool_t *pool);
  108.  
  109. /** 
  110.  * This is to indicate the charset of the sourcecode at compile time
  111.  * names to indicate the charset of the source code at
  112.  * compile time.  This is useful if there are literal
  113.  * strings in the source code which must be translated
  114.  * according to the charset of the source code.
  115.  */
  116. #define APR_DEFAULT_CHARSET (const char *)0
  117. /**
  118.  * To indicate charset names of the current locale 
  119.  */
  120. #define APR_LOCALE_CHARSET (const char *)1
  121.  
  122. /**
  123.  * Find out whether or not the specified conversion is single-byte-only.
  124.  * @param convset The handle allocated by apr_xlate_open, specifying the 
  125.  *                parameters of conversion
  126.  * @param onoff Output: whether or not the conversion is single-byte-only
  127.  * @remark
  128.  *  Return APR_ENOTIMPL if charset transcoding is not available
  129.  *  in this instance of apr-util (i.e., APR_HAS_XLATE is undefined).
  130.  */
  131. APU_DECLARE(apr_status_t) apr_xlate_sb_get(apr_xlate_t *convset, int *onoff);
  132.  
  133. /** @deprecated @see apr_xlate_sb_get */
  134. APU_DECLARE(apr_status_t) apr_xlate_get_sb(apr_xlate_t *convset, int *onoff);
  135.  
  136. /**
  137.  * Convert a buffer of text from one codepage to another.
  138.  * @param convset The handle allocated by apr_xlate_open, specifying 
  139.  *                the parameters of conversion
  140.  * @param inbuf The address of the source buffer
  141.  * @param inbytes_left Input: the amount of input data to be translated
  142.  *                     Output: the amount of input data not yet translated    
  143.  * @param outbuf The address of the destination buffer
  144.  * @param outbytes_left Input: the size of the output buffer
  145.  *                      Output: the amount of the output buffer not yet used
  146.  * @remark
  147.  *  Return APR_ENOTIMPL if charset transcoding is not available
  148.  *  in this instance of apr-util (i.e., APR_HAS_XLATE is undefined).
  149.  */
  150. APU_DECLARE(apr_status_t) apr_xlate_conv_buffer(apr_xlate_t *convset, 
  151.                                                 const char *inbuf, 
  152.                                                 apr_size_t *inbytes_left, 
  153.                                                 char *outbuf,
  154.                                                 apr_size_t *outbytes_left);
  155.  
  156. /* @see apr_file_io.h the comment in apr_file_io.h about this hack */
  157. #ifdef APR_NOT_DONE_YET
  158. /**
  159.  * The purpose of apr_xlate_conv_char is to translate one character
  160.  * at a time.  This needs to be written carefully so that it works
  161.  * with double-byte character sets. 
  162.  * @param convset The handle allocated by apr_xlate_open, specifying the
  163.  *                parameters of conversion
  164.  * @param inchar The character to convert
  165.  * @param outchar The converted character
  166.  */
  167. APU_DECLARE(apr_status_t) apr_xlate_conv_char(apr_xlate_t *convset, 
  168.                                               char inchar, char outchar);
  169. #endif
  170.  
  171. /**
  172.  * Convert a single-byte character from one charset to another.
  173.  * @param convset The handle allocated by apr_xlate_open, specifying the 
  174.  *                parameters of conversion
  175.  * @param inchar The single-byte character to convert.
  176.  * @warning This only works when converting between single-byte character sets.
  177.  *          -1 will be returned if the conversion can't be performed.
  178.  */
  179. APU_DECLARE(apr_int32_t) apr_xlate_conv_byte(apr_xlate_t *convset, 
  180.                                              unsigned char inchar);
  181.  
  182. /**
  183.  * Close a codepage translation handle.
  184.  * @param convset The codepage translation handle to close
  185.  * @remark
  186.  *  Return APR_ENOTIMPL if charset transcoding is not available
  187.  *  in this instance of apr-util (i.e., APR_HAS_XLATE is undefined).
  188.  */
  189. APU_DECLARE(apr_status_t) apr_xlate_close(apr_xlate_t *convset);
  190.  
  191. /** @} */
  192. #ifdef __cplusplus
  193. }
  194. #endif
  195.  
  196. #endif  /* ! APR_XLATE_H */
  197.