XMLUTF16Transcoder.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/XMLUTF16Transcoder.hpp>
  61. #include <util/TranscodingException.hpp>
  62. #include <string.h>
  63. // ---------------------------------------------------------------------------
  64. //  XMLUTF16Transcoder: Constructors and Destructor
  65. // ---------------------------------------------------------------------------
  66. XMLUTF16Transcoder::XMLUTF16Transcoder( const   XMLCh* const    encodingName
  67.                                         , const unsigned int    blockSize
  68.                                         , const bool            swapped) :
  69.     XMLTranscoder(encodingName, blockSize)
  70.     , fSwapped(swapped)
  71. {
  72. }
  73. XMLUTF16Transcoder::~XMLUTF16Transcoder()
  74. {
  75. }
  76. // ---------------------------------------------------------------------------
  77. //  XMLUTF16Transcoder: Implementation of the transcoder API
  78. // ---------------------------------------------------------------------------
  79. unsigned int
  80. XMLUTF16Transcoder::transcodeFrom(  const   XMLByte* const       srcData
  81.                                     , const unsigned int         srcCount
  82.                                     ,       XMLCh* const         toFill
  83.                                     , const unsigned int         maxChars
  84.                                     ,       unsigned int&        bytesEaten
  85.                                     ,       unsigned char* const charSizes)
  86. {
  87.     // If debugging, make sure that the block size is legal
  88.     #if defined(XERCES_DEBUG)
  89.     checkBlockSize(maxChars);
  90.     #endif
  91.     //
  92.     //  Calculate the max chars we can do here. Its the lesser of the
  93.     //  max output chars and the number of chars in the source.
  94.     //
  95.     const unsigned int srcChars = srcCount / sizeof(UTF16Ch);
  96.     const unsigned int countToDo = srcChars < maxChars ? srcChars : maxChars;
  97.     // Look at the source data as UTF16 chars
  98.     const UTF16Ch* asUTF16 = (const UTF16Ch*)srcData;
  99.     // And get a mutable pointer to the output
  100.     XMLCh* outPtr = toFill;
  101.     //
  102.     //  If its swapped, we have to do a char by char swap and cast. Else
  103.     //  we have to check whether our XMLCh and UTF16Ch types are the same
  104.     //  size or not. If so, we can optimize by just doing a buffer copy.
  105.     //
  106.     if (fSwapped)
  107.     {
  108.         //
  109.         //  And then do the swapping loop for the count we precalculated. Note
  110.         //  that this also handles size conversion as well if XMLCh is not the
  111.         //  same size as UTF16Ch.
  112.         //
  113.         for (unsigned int index = 0; index < countToDo; index++)
  114.             *outPtr++ = BitOps::swapBytes(*asUTF16++);
  115.     }
  116.      else
  117.     {
  118.         //
  119.         //  If the XMLCh type is the same size as a UTF16 value on this
  120.         //  platform, then we can do just a buffer copy straight to the target
  121.         //  buffer since our source chars are UTF-16 chars. If its not, then
  122.         //  we still have to do a loop and assign each one, in order to
  123.         //  implicitly convert.
  124.         //
  125.         if (sizeof(XMLCh) == sizeof(UTF16Ch))
  126.         {
  127.             //  Notice we convert char count to byte count here!!!
  128.             memcpy(toFill, srcData, countToDo * sizeof(UTF16Ch));
  129.         }
  130.          else
  131.         {
  132.             for (unsigned int index = 0; index < countToDo; index++)
  133.                 *outPtr++ = XMLCh(*asUTF16++);
  134.         }
  135.     }
  136.     // Set the bytes eaten
  137.     bytesEaten = countToDo * sizeof(UTF16Ch);
  138.     // Set the character sizes to the fixed size
  139.     memset(charSizes, sizeof(UTF16Ch), countToDo);
  140.     // Return the chars we transcoded
  141.     return countToDo;
  142. }
  143. unsigned int
  144. XMLUTF16Transcoder::transcodeTo(const   XMLCh* const    srcData
  145.                                 , const unsigned int    srcCount
  146.                                 ,       XMLByte* const  toFill
  147.                                 , const unsigned int    maxBytes
  148.                                 ,       unsigned int&   charsEaten
  149.                                 , const UnRepOpts       options)
  150. {
  151.     // If debugging, make sure that the block size is legal
  152.     #if defined(XERCES_DEBUG)
  153.     checkBlockSize(maxBytes);
  154.     #endif
  155.     //
  156.     //  Calculate the max chars we can do here. Its the lesser of the
  157.     //  chars that we can fit into the output buffer, and the source
  158.     //  chars available.
  159.     //
  160.     const unsigned int maxOutChars = maxBytes / sizeof(UTF16Ch);
  161.     const unsigned int countToDo = srcCount < maxOutChars ? srcCount : maxOutChars;
  162.     //
  163.     //  Get a pointer tot he output buffer in the UTF-16 character format
  164.     //  that we need to work with. And get a mutable pointer to the source
  165.     //  character buffer.
  166.     //
  167.     UTF16Ch*        outPtr = (UTF16Ch*)toFill;
  168.     const XMLCh*    srcPtr = srcData;
  169.     //
  170.     //  If the target format is swapped from our native format, then handle
  171.     //  it one way, else handle it another.
  172.     //
  173.     if (fSwapped)
  174.     {
  175.         //
  176.         //  And then do the swapping loop for the count we precalculated. Note
  177.         //  that this also handles size conversion as well if XMLCh is not the
  178.         //  same size as UTF16Ch.
  179.         //
  180.         for (unsigned int index = 0; index < countToDo; index++)
  181.         {
  182.             // To avoid flakey compilers, use a temp
  183.             const UTF16Ch tmpCh = UTF16Ch(*srcPtr++);
  184.             *outPtr++ = BitOps::swapBytes(tmpCh);
  185.         }
  186.     }
  187.      else
  188.     {
  189.         //
  190.         //  If XMLCh and UTF16Ch are the same size, we can just do a fast
  191.         //  memory copy. Otherwise, we have to do a loop and downcast each
  192.         //  character into its new 16 bit storage.
  193.         //
  194.         if (sizeof(XMLCh) == sizeof(UTF16Ch))
  195.         {
  196.             //  Notice we convert char count to byte count here!!!
  197.             memcpy(toFill, srcData, countToDo * sizeof(UTF16Ch));
  198.         }
  199.          else
  200.         {
  201.             for (unsigned int index = 0; index < countToDo; index++)
  202.                 *outPtr++ = UTF16Ch(*srcPtr++);
  203.         }
  204.     }
  205.     // Set the chars eaten to the calculated number we ate
  206.     charsEaten = countToDo;
  207.     //Return the bytes we ate. Note we convert to a byte count here!
  208.     return countToDo * sizeof(UTF16Ch);
  209. }
  210. bool XMLUTF16Transcoder::canTranscodeTo(const unsigned int toCheck) const
  211. {
  212.     // We can handle anything
  213.     return true;
  214. }