XMLURL.hpp
上传用户: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.  * $Id: XMLURL.hpp,v 1.7 2000/06/02 00:21:38 aruna1 Exp $
  58.  */
  59. #if !defined(XMLURL_HPP)
  60. #define XMLURL_HPP
  61. #include <util/XercesDefs.hpp>
  62. #include <util/XMLException.hpp>
  63. class BinInputStream;
  64. MakeXMLException(MalformedURLException, XMLUTIL_EXPORT)
  65. //
  66. //  This class supports file, http, and ftp style URLs. All others are
  67. //  rejected
  68. //
  69. class XMLUTIL_EXPORT XMLURL
  70. {
  71. public:
  72.     // -----------------------------------------------------------------------
  73.     //  Class types
  74.     //
  75.     //  And they must remain in this order because they are indexes into an
  76.     //  array internally!
  77.     // -----------------------------------------------------------------------
  78.     enum Protocols
  79.     {
  80.         File
  81.         , HTTP
  82.         , FTP
  83.         , Protocols_Count
  84.         , Unknown
  85.     };
  86.     // -----------------------------------------------------------------------
  87.     //  Public static methods
  88.     // -----------------------------------------------------------------------
  89.     Protocols lookupByName(const XMLCh* const protoName);
  90.     // -----------------------------------------------------------------------
  91.     //  Constructors and Destructor
  92.     // -----------------------------------------------------------------------
  93.     XMLURL();
  94.     XMLURL
  95.     (
  96.         const   XMLCh* const    baseURL
  97.         , const XMLCh* const    relativeURL
  98.     );
  99.     XMLURL
  100.     (
  101.         const   XMLCh* const    baseURL
  102.         , const char* const     relativeURL
  103.     );
  104.     XMLURL
  105.     (
  106.         const   XMLURL&         baseURL
  107.         , const XMLCh* const    relativeURL
  108.     );
  109.     XMLURL
  110.     (
  111.         const   XMLURL&         baseURL
  112.         , const char* const     relativeURL
  113.     );
  114.     XMLURL
  115.     (
  116.         const   XMLCh* const    urlText
  117.     );
  118.     XMLURL
  119.     (
  120.         const   char* const     urlText
  121.     );
  122.     XMLURL(const XMLURL& toCopy);
  123.     virtual ~XMLURL();
  124.     // -----------------------------------------------------------------------
  125.     //  Operators
  126.     // -----------------------------------------------------------------------
  127.     XMLURL& operator=(const XMLURL& toAssign);
  128.     bool operator==(const XMLURL& toCompare) const;
  129.     bool operator!=(const XMLURL& toCompare) const;
  130.     // -----------------------------------------------------------------------
  131.     //  Getter methods
  132.     // -----------------------------------------------------------------------
  133.     const XMLCh* getFragment() const;
  134.     const XMLCh* getHost() const;
  135.     const XMLCh* getPassword() const;
  136.     const XMLCh* getPath() const;
  137.     unsigned int getPortNum() const;
  138.     Protocols getProtocol() const;
  139.     const XMLCh* getProtocolName() const;
  140.     const XMLCh* getQuery() const;
  141.     const XMLCh* getURLText() const;
  142.     const XMLCh* getUser() const;
  143.     // -----------------------------------------------------------------------
  144.     //  Setter methods
  145.     // -----------------------------------------------------------------------
  146.     void setURL(const XMLCh* const urlText);
  147.     void setURL
  148.     (
  149.         const   XMLCh* const    baseURL
  150.         , const XMLCh* const    relativeURL
  151.     );
  152.     void setURL
  153.     (
  154.         const   XMLURL&         baseURL
  155.         , const XMLCh* const    relativeURL
  156.     );
  157.     // -----------------------------------------------------------------------
  158.     //  Miscellaneous methods
  159.     // -----------------------------------------------------------------------
  160.     bool isRelative() const;
  161.     BinInputStream* makeNewStream() const;
  162.     void makeRelativeTo(const XMLCh* const baseURLText);
  163.     void makeRelativeTo(const XMLURL& baseURL);
  164. private:
  165.     // -----------------------------------------------------------------------
  166.     //  Private helper methods
  167.     // -----------------------------------------------------------------------
  168.     void buildFullText();
  169.     void cleanup();
  170.     bool conglomerateWithBase(const XMLURL& baseURL, bool useExceptions=true);
  171.     void parse
  172.     (
  173.         const   XMLCh* const    urlText
  174.     );
  175.     void weavePaths(const XMLCh* const basePart);
  176.     // -----------------------------------------------------------------------
  177.     //  Data members
  178.     //
  179.     //  fFragment
  180.     //      The fragment part of the URL, if any. If none, its a null.
  181.     //
  182.     //  fHost
  183.     //      The host part of the URL that was parsed out. This one will often
  184.     //      be null (or "localhost", which also means the current machine.)
  185.     //
  186.     //  fPassword
  187.     //      The password found, if any. If none then its a null.
  188.     //
  189.     //  fPath
  190.     //      The path part of the URL that was parsed out, if any. If none,
  191.     //      then its a null.
  192.     //
  193.     //  fPortNum
  194.     //      The port that was indicated in the URL. If no port was provided
  195.     //      explicitly, then its left zero.
  196.     //
  197.     //  fProtocol
  198.     //      Indicates the type of the URL's source. The text of the prefix
  199.     //      can be gotten from this.
  200.     //
  201.     //  fQuery
  202.     //      The query part of the URL, if any. If none, then its a null.
  203.     //
  204.     //  fUser
  205.     //      The username found, if any. If none, then its a null.
  206.     //
  207.     //  fURLText
  208.     //      This is a copy of the URL text, after it has been taken apart,
  209.     //      made relative if needed, canonicalized, and then put back
  210.     //      together. Its only created upon demand.
  211.     // -----------------------------------------------------------------------
  212.     XMLCh*          fFragment;
  213.     XMLCh*          fHost;
  214.     XMLCh*          fPassword;
  215.     XMLCh*          fPath;
  216.     unsigned int    fPortNum;
  217.     Protocols       fProtocol;
  218.     XMLCh*          fQuery;
  219.     XMLCh*          fUser;
  220.     XMLCh*          fURLText;
  221. };
  222. // ---------------------------------------------------------------------------
  223. //  XMLURL: Public operators
  224. // ---------------------------------------------------------------------------
  225. inline bool XMLURL::operator!=(const XMLURL& toCompare) const
  226. {
  227.     return !operator==(toCompare);
  228. }
  229. // ---------------------------------------------------------------------------
  230. //  XMLURL: Getter methods
  231. // ---------------------------------------------------------------------------
  232. inline const XMLCh* XMLURL::getFragment() const
  233. {
  234.     return fFragment;
  235. }
  236. inline const XMLCh* XMLURL::getHost() const
  237. {
  238.     return fHost;
  239. }
  240. inline const XMLCh* XMLURL::getPassword() const
  241. {
  242.     return fPassword;
  243. }
  244. inline const XMLCh* XMLURL::getPath() const
  245. {
  246.     return fPath;
  247. }
  248. inline XMLURL::Protocols XMLURL::getProtocol() const
  249. {
  250.     return fProtocol;
  251. }
  252. inline const XMLCh* XMLURL::getQuery() const
  253. {
  254.     return fQuery;
  255. }
  256. inline const XMLCh* XMLURL::getUser() const
  257. {
  258.     return fUser;
  259. }
  260. inline const XMLCh* XMLURL::getURLText() const
  261. {
  262.     //
  263.     //  Fault it in if not already. Since this is a const method and we
  264.     //  can't use mutable members due the compilers we have to support,
  265.     //  we have to cast off the constness.
  266.     //
  267.     if (!fURLText)
  268.         ((XMLURL*)this)->buildFullText();
  269.     return fURLText;
  270. }
  271. #endif