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

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 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) 2001, 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: QName.cpp,v $
  58.  * Revision 1.8  2001/12/06 17:48:36  tng
  59.  * Performance Enhancement.  Added setNPrefix and setNLocalPart methods that allow code to take advantage of the fact that it knows the length of the prefix and local name, when possible.  That can avoid a copy of the prefix into a null-terminated temporary variable before copying into the fPrefix.
  60.  * Also changed the getRawName method so that it would simply return the local part when there is no prefix, instead of allocating another buffer to copy the local part into the fRawName.
  61.  * When there is a prefix, changed the getRawName to copy the prefix and local part into the fRawName using XMLString::moveChars instead of using XMLString::copyString and XMLString::catString.  The catString method has to loop past the prefix portion of the fRawName, which seems like a waste.
  62.  * By Henry Zongaro.
  63.  *
  64.  * Revision 1.7  2001/07/24 18:31:47  knoaman
  65.  * Added support for <group> + extra constraint checking for complexType
  66.  *
  67.  * Revision 1.6  2001/05/11 13:26:28  tng
  68.  * Copyright update.
  69.  *
  70.  * Revision 1.5  2001/04/19 18:17:08  tng
  71.  * Schema: SchemaValidator update, and use QName in Content Model
  72.  *
  73.  * Revision 1.4  2001/03/21 21:56:11  tng
  74.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  75.  *
  76.  * Revision 1.3  2001/02/27 14:48:35  tng
  77.  * Schema: Add CMAny and ContentLeafNameTypeVector, by Pei Yong Zhang
  78.  *
  79.  * Revision 1.2  2001/02/26 21:56:15  tng
  80.  * Schema: QName can also be constructed with rawName.
  81.  *
  82.  * Revision 1.1  2001/02/26 19:44:25  tng
  83.  * Schema: add utility class QName, by Pei Yong Zhang.
  84.  *
  85.  */
  86. #include <util/QName.hpp>
  87. #include <util/Janitor.hpp>
  88. // ---------------------------------------------------------------------------
  89. //  QName: Constructors and Destructor
  90. // ---------------------------------------------------------------------------
  91. QName::QName() :
  92.       fPrefix(0)
  93.     , fPrefixBufSz(0)
  94.     , fLocalPart(0)
  95.     , fLocalPartBufSz(0)
  96.     , fRawName(0)
  97.     , fRawNameBufSz(0)
  98.     , fURIId(0)
  99. {
  100. }
  101. QName::QName(const XMLCh* const        prefix
  102.            , const XMLCh* const        localPart
  103.            , const unsigned int        uriId
  104.             ) :
  105.       fPrefix(0)
  106.     , fPrefixBufSz(0)
  107.     , fLocalPart(0)
  108.     , fLocalPartBufSz(0)
  109.     , fRawName(0)
  110.     , fRawNameBufSz(0)
  111.     , fURIId(0)
  112. {
  113.     try
  114.     {
  115.         //
  116.         //  Just call the local setters to set up everything. Too much
  117.         //  work is required to replicate that functionality here.
  118.         //
  119.         setName(prefix, localPart, uriId);
  120.     }
  121.     catch(...)
  122.     {
  123.         cleanUp();
  124.     }
  125. }
  126. QName::QName(const XMLCh* const        rawName
  127.            , const unsigned int        uriId
  128.             ) :
  129.       fPrefix(0)
  130.     , fPrefixBufSz(0)
  131.     , fLocalPart(0)
  132.     , fLocalPartBufSz(0)
  133.     , fRawName(0)
  134.     , fRawNameBufSz(0)
  135.     , fURIId(0)
  136. {
  137.     try
  138.     {
  139.         //
  140.         //  Just call the local setters to set up everything. Too much
  141.         //  work is required to replicate that functionality here.
  142.         //
  143.         setName(rawName, uriId);
  144.     }
  145.     catch(...)
  146.     {
  147.         cleanUp();
  148.     }
  149. }
  150. QName::~QName()
  151. {
  152. cleanUp();
  153. }
  154. // ---------------------------------------------------------------------------
  155. //  QName: Copy Constructors
  156. // ---------------------------------------------------------------------------
  157. QName::QName(const QName* const qname) :
  158.       fPrefix(0)
  159.     , fPrefixBufSz(0)
  160.     , fLocalPart(0)
  161.     , fLocalPartBufSz(0)
  162.     , fRawName(0)
  163.     , fRawNameBufSz(0)
  164.     , fURIId(0)
  165. {
  166.     unsigned int newLen;
  167.     newLen = XMLString::stringLen(qname->getLocalPart());
  168.     fLocalPartBufSz = newLen + 8;
  169.     fLocalPart = new XMLCh[fLocalPartBufSz + 1];
  170.     XMLString::moveChars(fLocalPart, qname->getLocalPart(), newLen + 1);
  171.     newLen = XMLString::stringLen(qname->getPrefix());
  172.     fPrefixBufSz = newLen + 8;
  173.     fPrefix = new XMLCh[fPrefixBufSz + 1];
  174.     XMLString::moveChars(fPrefix, qname->getPrefix(), newLen + 1);
  175.     fURIId = qname->getURI();
  176. }
  177. // ---------------------------------------------------------------------------
  178. //  QName: Getter methods
  179. // ---------------------------------------------------------------------------
  180. const XMLCh* QName::getRawName() const
  181. {
  182.     //
  183.     //  If there is no buffer, or if there is but we've not faulted in the
  184.     //  value yet, then we have to do that now.
  185.     //
  186.     if (!fRawName || !*fRawName)
  187.     {
  188.         //
  189.         //  If we have a prefix, then do the prefix:name version. Else, its
  190.         //  just the name.
  191.         //
  192.         if (*fPrefix)
  193.         {
  194.             //
  195.             //  Calculate the worst case size buffer we will need. We use the
  196.             //  current high water marks of the prefix and name buffers, so it
  197.             //  might be a little wasteful of memory but we don't have to do
  198.             //  string len operations on the two strings.
  199.             //
  200.             const unsigned int neededLen = fPrefixBufSz + fLocalPartBufSz + 1;
  201.             //
  202.             //  If no buffer, or the current one is too small, then allocate one
  203.             //  and get rid of any old one.
  204.             //
  205.             if (!fRawName || (neededLen > fRawNameBufSz))
  206.             {
  207.                 delete [] fRawName;
  208.                 // We have to cast off the const'ness to do this
  209.                 ((QName*)this)->fRawNameBufSz = neededLen;
  210.                 ((QName*)this)->fRawName = new XMLCh[neededLen + 1];
  211.                 // Make sure its initially empty
  212.                 *fRawName = 0;
  213.             }
  214.             const unsigned int prefixLen = XMLString::stringLen(fPrefix);
  215.             XMLString::moveChars(fRawName, fPrefix, prefixLen);
  216.             fRawName[prefixLen] = chColon;
  217.             XMLString::copyString(&fRawName[prefixLen+1], fLocalPart);
  218.         }
  219.          else
  220.         {
  221.             return fLocalPart;
  222.         }
  223.     }
  224.     return fRawName;
  225. }
  226. XMLCh* QName::getRawName()
  227. {
  228.     //
  229.     //  If there is no buffer, or if there is but we've not faulted in the
  230.     //  value yet, then we have to do that now.
  231.     //
  232.     if (!fRawName || !*fRawName)
  233.     {
  234.         //
  235.         //  If we have a prefix, then do the prefix:name version. Else, its
  236.         //  just the name.
  237.         //
  238.         if (*fPrefix)
  239.         {
  240.             //
  241.             //  Calculate the worst case size buffer we will need. We use the
  242.             //  current high water marks of the prefix and name buffers, so it
  243.             //  might be a little wasteful of memory but we don't have to do
  244.             //  string len operations on the two strings.
  245.             //
  246.             const unsigned int neededLen = fPrefixBufSz + fLocalPartBufSz + 1;
  247.             //
  248.             //  If no buffer, or the current one is too small, then allocate one
  249.             //  and get rid of any old one.
  250.             //
  251.             if (!fRawName || (neededLen > fRawNameBufSz))
  252.             {
  253.                 delete [] fRawName;
  254.                 // We have to cast off the const'ness to do this
  255.                 ((QName*)this)->fRawNameBufSz = neededLen;
  256.                 ((QName*)this)->fRawName = new XMLCh[neededLen + 1];
  257.                 // Make sure its initially empty
  258.                 *fRawName = 0;
  259.             }
  260.             const unsigned int prefixLen = XMLString::stringLen(fPrefix);
  261.             XMLString::moveChars(fRawName, fPrefix, prefixLen);
  262.             fRawName[prefixLen] = chColon;
  263.             XMLString::copyString(&fRawName[prefixLen+1], fLocalPart);
  264.         }
  265.          else
  266.         {
  267.             return fLocalPart;
  268.         }
  269.     }
  270.     return fRawName;
  271. }
  272. // ---------------------------------------------------------------------------
  273. //  QName: Setter methods
  274. // ---------------------------------------------------------------------------
  275. void QName::setName(const XMLCh* const    prefix
  276.                   , const XMLCh* const    localPart
  277.                   , const unsigned int    uriId)
  278. {
  279.     setPrefix(prefix);
  280.     setLocalPart(localPart);
  281.     // And clean up any QName and leave it undone until/if asked for again
  282.     if (fRawName)
  283.         *fRawName = 0;
  284.     // And finally store the URI id parameter
  285.     fURIId = uriId;
  286. }
  287. void QName::setName(const XMLCh* const    rawName
  288.                   , const unsigned int    uriId)
  289. {
  290.     //set the rawName
  291.     unsigned int newLen;
  292.     newLen = XMLString::stringLen(rawName);
  293.     if (!fRawNameBufSz || (newLen > fRawNameBufSz))
  294.     {
  295.         delete [] fRawName;
  296.         fRawNameBufSz = newLen + 8;
  297.         fRawName = new XMLCh[fRawNameBufSz + 1];
  298.     }
  299.     XMLString::moveChars(fRawName, rawName, newLen + 1);
  300.     //find out the prefix and localPart from the rawName
  301.     const int colonInd = XMLString::indexOf(rawName, chColon);
  302.     if (colonInd >= 0)
  303.     {
  304.         setNPrefix(rawName, colonInd);
  305.     }
  306.      else
  307.     {
  308.         // No colon, so we just have a name with no prefix
  309.         setPrefix(XMLUni::fgZeroLenString);
  310.     }
  311.     setNLocalPart(&rawName[colonInd+1], newLen-colonInd-1);
  312.     // And finally store the URI id parameter
  313.     fURIId = uriId;
  314. }
  315. void QName::setPrefix(const XMLCh* prefix)
  316. {
  317.     unsigned int newLen;
  318.     newLen = XMLString::stringLen(prefix);
  319.     if (!fPrefixBufSz || (newLen > fPrefixBufSz))
  320.     {
  321.         delete [] fPrefix;
  322.         fPrefixBufSz = newLen + 8;
  323.         fPrefix = new XMLCh[fPrefixBufSz + 1];
  324.     }
  325.     XMLString::moveChars(fPrefix, prefix, newLen + 1);
  326. }
  327. void QName::setNPrefix(const XMLCh* prefix, const unsigned int newLen)
  328. {
  329.     if (!fPrefixBufSz || (newLen > fPrefixBufSz))
  330.     {
  331.         delete [] fPrefix;
  332.         fPrefixBufSz = newLen + 8;
  333.         fPrefix = new XMLCh[fPrefixBufSz + 1];
  334.     }
  335.     XMLString::moveChars(fPrefix, prefix, newLen);
  336.     fPrefix[newLen] = chNull;
  337. }
  338. void QName::setLocalPart(const XMLCh* localPart)
  339. {
  340.     unsigned int newLen;
  341.     newLen = XMLString::stringLen(localPart);
  342.     if (!fLocalPartBufSz || (newLen > fLocalPartBufSz))
  343.     {
  344.         delete [] fLocalPart;
  345.         fLocalPartBufSz = newLen + 8;
  346.         fLocalPart = new XMLCh[fLocalPartBufSz + 1];
  347.     }
  348.     XMLString::moveChars(fLocalPart, localPart, newLen + 1);
  349. }
  350. void QName::setNLocalPart(const XMLCh* localPart, const unsigned int newLen)
  351. {
  352.     if (!fLocalPartBufSz || (newLen > fLocalPartBufSz))
  353.     {
  354.         delete [] fLocalPart;
  355.         fLocalPartBufSz = newLen + 8;
  356.         fLocalPart = new XMLCh[fLocalPartBufSz + 1];
  357.     }
  358.     XMLString::moveChars(fLocalPart, localPart, newLen);
  359.     fLocalPart[newLen] = chNull;
  360. }
  361. void QName::setValues(const QName& qname)
  362. {
  363.     setPrefix(qname.getPrefix());
  364.     setLocalPart(qname.getLocalPart());
  365.     setURI(qname.getURI());
  366. }
  367. // -----------------------------------------------------------------------
  368. //  comparison
  369. // -----------------------------------------------------------------------
  370. bool QName::operator==(const QName& qname)
  371. {
  372. return (XMLString::compareString(fPrefix, qname.getPrefix())==0) &&
  373.        (XMLString::compareString(fLocalPart, qname.getLocalPart())==0) &&
  374.        (fURIId == qname.getURI());
  375. }
  376. // ---------------------------------------------------------------------------
  377. //  QName: Private, helper methods
  378. // ---------------------------------------------------------------------------
  379. void QName::cleanUp()
  380. {
  381.     delete [] fLocalPart;
  382.     delete [] fPrefix;
  383.     delete [] fRawName;
  384. }