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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2001 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.  * $Log: TransService.hpp,v $
  58.  * Revision 1.14  2001/11/01 23:37:07  jasons
  59.  * 2001-11-01  Jason E. Stewart  <jason@openinformatics.com>
  60.  *
  61.  *  * src/util/TransService.hpp (Repository):
  62.  *  Updated Doxygen documentation for XMLTranscoder class
  63.  *
  64.  * Revision 1.13  2001/05/11 13:26:30  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.12  2001/01/25 19:19:32  tng
  68.  * Let user add their encoding to the intrinsic mapping table.  Added by Khaled Noaman.
  69.  *
  70.  * Revision 1.11  2000/04/12 22:57:45  roddey
  71.  * A couple of fixes to comments and parameter names to make them
  72.  * more correct.
  73.  *
  74.  * Revision 1.10  2000/03/28 19:43:19  roddey
  75.  * Fixes for signed/unsigned warnings. New work for two way transcoding
  76.  * stuff.
  77.  *
  78.  * Revision 1.9  2000/03/17 23:59:54  roddey
  79.  * Initial updates for two way transcoding support
  80.  *
  81.  * Revision 1.8  2000/03/02 19:54:46  roddey
  82.  * This checkin includes many changes done while waiting for the
  83.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  84.  * available elsewhere.
  85.  *
  86.  * Revision 1.7  2000/02/24 20:05:25  abagchi
  87.  * Swat for removing Log from API docs
  88.  *
  89.  * Revision 1.6  2000/02/06 07:48:04  rahulj
  90.  * Year 2K copyright swat.
  91.  *
  92.  * Revision 1.5  2000/01/25 22:49:55  roddey
  93.  * Moved the supportsSrcOfs() method from the individual transcoder to the
  94.  * transcoding service, where it should have been to begin with.
  95.  *
  96.  * Revision 1.4  2000/01/25 19:19:07  roddey
  97.  * Simple addition of a getId() method to the xcode and netacess abstractions to
  98.  * allow each impl to give back an id string.
  99.  *
  100.  * Revision 1.3  1999/12/18 00:18:10  roddey
  101.  * More changes to support the new, completely orthagonal support for
  102.  * intrinsic encodings.
  103.  *
  104.  * Revision 1.2  1999/12/15 19:41:28  roddey
  105.  * Support for the new transcoder system, where even intrinsic encodings are
  106.  * done via the same transcoder abstraction as external ones.
  107.  *
  108.  * Revision 1.1.1.1  1999/11/09 01:05:16  twl
  109.  * Initial checkin
  110.  *
  111.  * Revision 1.2  1999/11/08 20:45:16  rahul
  112.  * Swat for adding in Product name and CVS comment log variable.
  113.  *
  114.  */
  115. #ifndef TRANSSERVICE_HPP
  116. #define TRANSSERVICE_HPP
  117. #include <util/XercesDefs.hpp>
  118. // Forward references
  119. class XMLPlatformUtils;
  120. class XMLLCPTranscoder;
  121. class XMLTranscoder;
  122. class ENameMap;
  123. //
  124. //  This class is an abstract base class which are used to abstract the
  125. //  transcoding services that Xerces uses. The parser's actual transcoding
  126. //  needs are small so it is desirable to allow different implementations
  127. //  to be provided.
  128. //
  129. //  The transcoding service has to provide a couple of required string
  130. //  and character operations, but its most important service is the creation
  131. //  of transcoder objects. There are two types of transcoders, which are
  132. //  discussed below in the XMLTranscoder class' description.
  133. //
  134. class XMLUTIL_EXPORT XMLTransService
  135. {
  136. public :
  137.     // -----------------------------------------------------------------------
  138.     //  Class specific types
  139.     // -----------------------------------------------------------------------
  140.     enum Codes
  141.     {
  142.         Ok
  143.         , UnsupportedEncoding
  144.         , InternalFailure
  145.         , SupportFilesNotFound
  146.     };
  147.     struct TransRec
  148.     {
  149.         XMLCh       intCh;
  150.         XMLByte     extCh;
  151.     };
  152.     // -----------------------------------------------------------------------
  153.     //  Public constructors and destructor
  154.     // -----------------------------------------------------------------------
  155.     virtual ~XMLTransService();
  156.     // -----------------------------------------------------------------------
  157.     //  Non-virtual API
  158.     // -----------------------------------------------------------------------
  159.     XMLTranscoder* makeNewTranscoderFor
  160.     (
  161.         const   XMLCh* const            encodingName
  162.         ,       XMLTransService::Codes& resValue
  163.         , const unsigned int            blockSize
  164.     );
  165.     XMLTranscoder* makeNewTranscoderFor
  166.     (
  167.         const   char* const             encodingName
  168.         ,       XMLTransService::Codes& resValue
  169.         , const unsigned int            blockSize
  170.     );
  171.     // -----------------------------------------------------------------------
  172.     //  The virtual transcoding service API
  173.     // -----------------------------------------------------------------------
  174.     virtual int compareIString
  175.     (
  176.         const   XMLCh* const    comp1
  177.         , const XMLCh* const    comp2
  178.     ) = 0;
  179.     virtual int compareNIString
  180.     (
  181.         const   XMLCh* const    comp1
  182.         , const XMLCh* const    comp2
  183.         , const unsigned int    maxChars
  184.     ) = 0;
  185.     virtual const XMLCh* getId() const = 0;
  186.     virtual bool isSpace(const XMLCh toCheck) const = 0;
  187.     virtual XMLLCPTranscoder* makeNewLCPTranscoder() = 0;
  188.     virtual bool supportsSrcOfs() const = 0;
  189.     virtual void upperCase(XMLCh* const toUpperCase) const = 0;
  190. // -----------------------------------------------------------------------
  191.     // Allow users to add their own encodings to the intrinsinc mapping
  192. // table
  193. // Usage:
  194. // XMLTransService::addEncoding (
  195. // gMyEncodingNameString
  196.     // , new ENameMapFor<MyTransClassType>(gMyEncodingNameString)
  197. // );
  198.     // -----------------------------------------------------------------------
  199. static void addEncoding(const XMLCh* const encoding, ENameMap* const ownMapping);
  200. protected :
  201.     // -----------------------------------------------------------------------
  202.     //  Hidden constructors
  203.     // -----------------------------------------------------------------------
  204.     XMLTransService();
  205.     // -----------------------------------------------------------------------
  206.     //  Protected virtual methods.
  207.     // -----------------------------------------------------------------------
  208.     virtual XMLTranscoder* makeNewXMLTranscoder
  209.     (
  210.         const   XMLCh* const            encodingName
  211.         ,       XMLTransService::Codes& resValue
  212.         , const unsigned int            blockSize
  213.     ) = 0;
  214. private :
  215.     // -----------------------------------------------------------------------
  216.     //  Unimplemented constructors and operators
  217.     // -----------------------------------------------------------------------
  218.     XMLTransService(const XMLTransService&);
  219.     void operator=(const XMLTransService&);
  220.     // -----------------------------------------------------------------------
  221.     //  Hidden init method for platform utils to call
  222.     // -----------------------------------------------------------------------
  223.     friend class XMLPlatformUtils;
  224.     void initTransService();
  225. };
  226. /**
  227.   * <code>DOMString</code> is the generic string class that stores all strings
  228.   * used in the DOM C++ API.
  229.   *
  230.   * Though this class supports most of the common string operations to manipulate
  231.   * strings, it is not meant to be a comphrehensive string class.
  232.   */
  233. /** 
  234.   *   <code>XMLTranscoder</code> is for transcoding non-local code
  235.   *   page encodings, i.e.  named encodings. These are used internally
  236.   *   by the scanner to internalize raw XML into the internal Unicode
  237.   *   format, and by writer classes to convert that internal Unicode
  238.   *   format (which comes out of the parser) back out to a format that
  239.   *   the receiving client code wants to use.
  240.   */
  241. class XMLUTIL_EXPORT XMLTranscoder
  242. {
  243. public :
  244. /** 
  245.  * This enum is used by the <code>transcodeTo()</code> method
  246.  * to indicate how to react to unrepresentable characters. The
  247.  * <code>transcodeFrom()</code> method always works the
  248.  * same. It will consider any invalid data to be an error and
  249.  * throw.
  250.  */
  251.     enum UnRepOpts
  252.     {
  253.         UnRep_Throw /**< Throw an exception */
  254.         , UnRep_RepChar /**< Use the replacement char */
  255.     };
  256. /** @name Destructor. */
  257. //@{
  258.  /**
  259.   * Destructor for XMLTranscoder
  260.   *
  261.   */
  262.     virtual ~XMLTranscoder();
  263. //@}
  264.     /** @name The virtual transcoding interface */
  265.     //@{
  266.     /** Converts from the encoding of the service to the internal XMLCh* encoding
  267.       *
  268.       * @param srcData the source buffer to be transcoded
  269.       * @param srcCount number of characters in the source buffer
  270.       * @param toFill the destination buffer
  271.       * @param maxChars the max number of characters in the destination buffer
  272.       * @param bytesEaten after transcoding, this will hold the number of bytes
  273.       *    that were processed from the source buffer
  274.       * @param charSizes an array which must be at least as big as maxChars
  275.       *    into which will be inserted values that indicate how many
  276.       *    bytes from the input went into each XMLCh that was created
  277.       *    into toFill. Since many encodings use variable numbers of
  278.       *    byte per character, this provides a means to find out what
  279.       *    bytes in the input went into making a particular output
  280.       *    UTF-16 character.
  281.       * @return Returns the number of chars put into the target buffer
  282.       */
  283.     virtual unsigned int transcodeFrom
  284.     (
  285.         const   XMLByte* const          srcData
  286.         , const unsigned int            srcCount
  287.         ,       XMLCh* const            toFill
  288.         , const unsigned int            maxChars
  289.         ,       unsigned int&           bytesEaten
  290.         ,       unsigned char* const    charSizes
  291.     ) = 0;
  292.     /** Converts from the internal XMLCh* encoding to the encoding of the service
  293.       *
  294.       * @param srcData    the source buffer to be transcoded
  295.       * @param srcCount   number of characters in the source buffer
  296.       * @param toFill     the destination buffer
  297.       * @param maxBytes   the max number of bytes in the destination buffer
  298.       * @param charsEaten after transcoding, this will hold the number of chars
  299.       *    that were processed from the source buffer
  300.       * @param options    options to pass to the transcoder that explain how to 
  301.       *    respond to an unrepresentable character
  302.       * @return Returns the number of chars put into the target buffer
  303.       */
  304.     virtual unsigned int transcodeTo
  305.     (
  306.         const   XMLCh* const    srcData
  307.         , const unsigned int    srcCount
  308.         ,       XMLByte* const  toFill
  309.         , const unsigned int    maxBytes
  310.         ,       unsigned int&   charsEaten
  311.         , const UnRepOpts       options
  312.     ) = 0;
  313.     /** Query whether the transcoder can handle a given character
  314.       *
  315.       * @param toCheck   the character code point to check
  316.       */
  317.     virtual bool canTranscodeTo
  318.     (
  319.         const   unsigned int    toCheck
  320.     )   const = 0;
  321.     //@}
  322.     /** @name Getter methods */
  323.     //@{
  324.     /** Get the internal block size
  325.      *
  326.        * @return The block size indicated in the constructor. This
  327.        *   lets the derived class preallocate appopriately sized
  328.        *   buffers. This sets the maximum number of characters which can
  329.        *   be internalized per call to <code>transcodeFrom()</code> and
  330.        *   <code>transcodeTo()</code>.
  331.        */
  332.     unsigned int getBlockSize() const;
  333.     /** Get the encoding name
  334.       *
  335.       * @return the name of the encoding that this
  336.       *    <code>XMLTranscoder</code> object is for
  337.       */
  338.     const XMLCh* getEncodingName() const;
  339. //@}
  340. protected :
  341.     // -----------------------------------------------------------------------
  342.     //  Hidden constructors
  343.     // -----------------------------------------------------------------------
  344.     XMLTranscoder
  345.     (
  346.         const   XMLCh* const    encodingName
  347.         , const unsigned int    blockSize
  348.     );
  349.     // -----------------------------------------------------------------------
  350.     //  Protected helper methods
  351.     // -----------------------------------------------------------------------
  352.     void checkBlockSize(const unsigned int toCheck);
  353. private :
  354.     // -----------------------------------------------------------------------
  355.     //  Unimplemented constructors and operators
  356.     // -----------------------------------------------------------------------
  357.     XMLTranscoder(const XMLTranscoder&);
  358.     void operator=(const XMLTranscoder&);
  359.     // -----------------------------------------------------------------------
  360.     //  Private data members
  361.     //
  362.     //  fBlockSize
  363.     //      This is the block size indicated in the constructor. This lets
  364.     //      the derived class preallocate appopriately sized buffers. This
  365.     //      sets the maximum number of characters which can be internalized
  366.     //      per call to transcodeFrom() and transcodeTo().
  367.     //
  368.     //  fEncodingName
  369.     //      This is the name of the encoding this encoder is for. All basic
  370.     //      XML transcoder's are for named encodings.
  371.     // -----------------------------------------------------------------------
  372.     unsigned int    fBlockSize;
  373.     XMLCh*          fEncodingName;
  374. };
  375. //
  376. //  This class is a specialized transcoder that only transcodes between
  377. //  the internal XMLCh format and the local code page. It is specialized
  378. //  for the very common job of translating data from the client app's
  379. //  native code page to the internal format and vice versa.
  380. //
  381. class XMLUTIL_EXPORT XMLLCPTranscoder
  382. {
  383. public :
  384.     // -----------------------------------------------------------------------
  385.     //  Public constructors and destructor
  386.     // -----------------------------------------------------------------------
  387.     virtual ~XMLLCPTranscoder();
  388.     // -----------------------------------------------------------------------
  389.     //  The virtual transcoder API
  390.     //
  391.     //  NOTE:   All these APIs don't include null terminator characters in
  392.     //          their parameters. So calcRequiredSize() returns the number
  393.     //          of actual chars, not including the null. maxBytes and maxChars
  394.     //          parameters refer to actual chars, not including the null so
  395.     //          its assumed that the buffer is physically one char or byte
  396.     //          larger.
  397.     // -----------------------------------------------------------------------
  398.     virtual unsigned int calcRequiredSize(const char* const srcText) = 0;
  399.     virtual unsigned int calcRequiredSize(const XMLCh* const srcText) = 0;
  400.     virtual char* transcode(const XMLCh* const toTranscode) = 0;
  401.     virtual XMLCh* transcode(const char* const toTranscode) = 0;
  402.     virtual bool transcode
  403.     (
  404.         const   char* const     toTranscode
  405.         ,       XMLCh* const    toFill
  406.         , const unsigned int    maxChars
  407.     ) = 0;
  408.     virtual bool transcode
  409.     (
  410.         const   XMLCh* const    toTranscode
  411.         ,       char* const     toFill
  412.         , const unsigned int    maxBytes
  413.     ) = 0;
  414. protected :
  415.     // -----------------------------------------------------------------------
  416.     //  Hidden constructors
  417.     // -----------------------------------------------------------------------
  418.     XMLLCPTranscoder();
  419. private :
  420.     // -----------------------------------------------------------------------
  421.     //  Unimplemented constructors and operators
  422.     // -----------------------------------------------------------------------
  423.     XMLLCPTranscoder(const XMLLCPTranscoder&);
  424.     void operator=(const XMLLCPTranscoder&);
  425. };
  426. // ---------------------------------------------------------------------------
  427. //  XMLTranscoder: Protected helper methods
  428. // ---------------------------------------------------------------------------
  429. inline unsigned int XMLTranscoder::getBlockSize() const
  430. {
  431.     return fBlockSize;
  432. }
  433. inline const XMLCh* XMLTranscoder::getEncodingName() const
  434. {
  435.     return fEncodingName;
  436. }
  437. #endif