XML256TableTranscoder.cpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:9k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  * 
  4.  * Copyright (c) 1999-2000 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 "Xerces" 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, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. // ---------------------------------------------------------------------------
  57. //  Includes
  58. // ---------------------------------------------------------------------------
  59. #include <util/BitOps.hpp>
  60. #include <util/TranscodingException.hpp>
  61. #include <util/XML256TableTranscoder.hpp>
  62. #include <util/XMLString.hpp>
  63. #include <string.h>
  64. // ---------------------------------------------------------------------------
  65. //  XML256TableTranscoder: Public Destructor
  66. // ---------------------------------------------------------------------------
  67. XML256TableTranscoder::~XML256TableTranscoder()
  68. {
  69.     // We don't own the tables, we just reference them
  70. }
  71. // ---------------------------------------------------------------------------
  72. //  XML256TableTranscoder: Implementation of the transcoder API
  73. // ---------------------------------------------------------------------------
  74. unsigned int
  75. XML256TableTranscoder::transcodeFrom(const  XMLByte* const       srcData
  76.                                     , const unsigned int         srcCount
  77.                                     ,       XMLCh* const         toFill
  78.                                     , const unsigned int         maxChars
  79.                                     ,       unsigned int&        bytesEaten
  80.                                     ,       unsigned char* const charSizes)
  81. {
  82.     // If debugging, make sure that the block size is legal
  83.     #if defined(XERCES_DEBUG)
  84.     checkBlockSize(maxChars);
  85.     #endif
  86.     //
  87.     //  Calculate the max chars we can do here. Its the lesser of the
  88.     //  max output chars and the number of chars in the source.
  89.     //
  90.     const unsigned int countToDo = srcCount < maxChars ? srcCount : maxChars;
  91.     //
  92.     //  Loop through the count we have to do and map each char via the
  93.     //  lookup table.
  94.     //
  95.     const XMLByte*  srcPtr = srcData;
  96.     const XMLByte*  endPtr = (srcPtr + countToDo);
  97.     XMLCh*          outPtr = toFill;
  98.     while (srcPtr < endPtr)
  99.     {
  100.         const XMLCh uniCh = fFromTable[*srcPtr++];
  101.         if (uniCh != 0xFFFF)
  102.         {
  103.             *outPtr++ = uniCh;
  104.             continue;
  105.         }
  106.     }
  107.     // Set the bytes eaten
  108.     bytesEaten = countToDo;
  109.     // Set the character sizes to the fixed size
  110.     memset(charSizes, 1, countToDo);
  111.     // Return the chars we transcoded
  112.     return countToDo;
  113. }
  114. unsigned int
  115. XML256TableTranscoder::transcodeTo( const   XMLCh* const    srcData
  116.                                     , const unsigned int    srcCount
  117.                                     ,       XMLByte* const  toFill
  118.                                     , const unsigned int    maxBytes
  119.                                     ,       unsigned int&   charsEaten
  120.                                     , const UnRepOpts       options)
  121. {
  122.     // If debugging, make sure that the block size is legal
  123.     #if defined(XERCES_DEBUG)
  124.     checkBlockSize(maxBytes);
  125.     #endif
  126.     //
  127.     //  Calculate the max chars we can do here. Its the lesser of the
  128.     //  max output chars and the number of chars in the source.
  129.     //
  130.     const unsigned int countToDo = srcCount < maxBytes ? srcCount : maxBytes;
  131.     //
  132.     //  Loop through the count we have to do and map each char via the
  133.     //  lookup table.
  134.     //
  135.     const XMLCh*    srcPtr = srcData;
  136.     const XMLCh*    endPtr = (srcPtr + countToDo);
  137.     XMLByte*        outPtr = toFill;
  138.     XMLByte         nextOut;
  139.     while (srcPtr < endPtr)
  140.     {
  141.         //
  142.         //  Get the next src char out to a temp, then do a binary search
  143.         //  of the 'to' table for this entry.
  144.         //
  145.         if ((nextOut = xlatOneTo(*srcPtr)))
  146.         {
  147.             *outPtr++ = nextOut;
  148.             srcPtr++;
  149.             continue;
  150.         }
  151.         //
  152.         //  Its not representable so, according to the options, either
  153.         //  throw or use the replacement.
  154.         //
  155.         if (options == UnRep_Throw)
  156.         {
  157.             XMLCh tmpBuf[16];
  158.             XMLString::binToText((unsigned int)*srcPtr, tmpBuf, 16, 16);
  159.             ThrowXML2
  160.             (
  161.                 TranscodingException
  162.                 , XMLExcepts::Trans_Unrepresentable
  163.                 , tmpBuf
  164.                 , getEncodingName()
  165.             );
  166.         }
  167.         // Eat the source char and use the replacement char
  168.         srcPtr++;
  169.         *outPtr++ = 0x3F;
  170.     }
  171.     // Set the chars eaten
  172.     charsEaten = countToDo;
  173.     // Return the bytes we transcoded
  174.     return countToDo;
  175. }
  176. bool XML256TableTranscoder::canTranscodeTo(const unsigned int toCheck) const
  177. {
  178.     return (xlatOneTo(toCheck) != 0);
  179. }
  180. // ---------------------------------------------------------------------------
  181. //  XML256TableTranscoder: Hidden constructor
  182. // ---------------------------------------------------------------------------
  183. XML256TableTranscoder::
  184. XML256TableTranscoder(  const   XMLCh* const                     encodingName
  185.                         , const unsigned int                     blockSize
  186.                         , const XMLCh* const                     fromTable
  187.                         , const XMLTransService::TransRec* const toTable
  188.                         , const unsigned int                     toTableSize) :
  189.     XMLTranscoder(encodingName, blockSize)
  190.     , fFromTable(fromTable)
  191.     , fToSize(toTableSize)
  192.     , fToTable(toTable)
  193. {
  194. }
  195. // ---------------------------------------------------------------------------
  196. //  XML256TableTranscoder: Private helper methods
  197. // ---------------------------------------------------------------------------
  198. XMLByte XML256TableTranscoder::xlatOneTo(const XMLCh toXlat) const
  199. {
  200.     unsigned int    lowOfs = 0;
  201.     unsigned int    hiOfs = fToSize - 1;
  202.     XMLByte         curByte = 0;
  203.     do
  204.     {
  205.         // Calc the mid point of the low and high offset.
  206.         const unsigned int midOfs = ((hiOfs - lowOfs) / 2) + lowOfs;
  207.         //
  208.         //  If our test char is greater than the mid point char, then
  209.         //  we move up to the upper half. Else we move to the lower
  210.         //  half. If its equal, then its our guy.
  211.         //
  212.         if (toXlat > fToTable[midOfs].intCh)
  213.         {
  214.             lowOfs = midOfs;
  215.         }
  216.          else if (toXlat < fToTable[midOfs].intCh)
  217.         {
  218.             hiOfs = midOfs;
  219.         }
  220.          else
  221.         {
  222.             return fToTable[midOfs].extCh;
  223.         }
  224.     }   while (lowOfs + 1 < hiOfs);
  225.     // Check the high end of the range otherwise the
  226.     // last item in the table may never be found.
  227.         if (toXlat == fToTable[hiOfs].intCh)
  228.         {
  229.             return fToTable[hiOfs].extCh;
  230.         }
  231.     return 0;
  232. }