00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061 #if !defined(XMLURL_HPP)
00062 #define XMLURL_HPP
00063
00064 #include <xercesc/util/XercesDefs.hpp>
00065 #include <xercesc/util/XMLException.hpp>
00066
00067 class BinInputStream;
00068
00069
00070
00071
00072
00073 class XMLURL
00074 {
00075 public:
00076
00077
00078
00079
00080
00081
00082 enum Protocols
00083 {
00084 File
00085 , HTTP
00086 , FTP
00087
00088 , Protocols_Count
00089 , Unknown
00090 };
00091
00092
00093
00094
00095
00096 Protocols lookupByName(const XMLCh* const protoName);
00097
00098
00099
00100
00101
00102 XMLURL();
00103 XMLURL
00104 (
00105 const XMLCh* const baseURL
00106 , const XMLCh* const relativeURL
00107 );
00108 XMLURL
00109 (
00110 const XMLCh* const baseURL
00111 , const char* const relativeURL
00112 );
00113 XMLURL
00114 (
00115 const XMLURL& baseURL
00116 , const XMLCh* const relativeURL
00117 );
00118 XMLURL
00119 (
00120 const XMLURL& baseURL
00121 , const char* const relativeURL
00122 );
00123 XMLURL
00124 (
00125 const XMLCh* const urlText
00126 );
00127 XMLURL
00128 (
00129 const char* const urlText
00130 );
00131 XMLURL(const XMLURL& toCopy);
00132 virtual ~XMLURL();
00133
00134
00135
00136
00137
00138 XMLURL& operator=(const XMLURL& toAssign);
00139 bool operator==(const XMLURL& toCompare) const;
00140 bool operator!=(const XMLURL& toCompare) const;
00141
00142
00143
00144
00145
00146 const XMLCh* getFragment() const;
00147 const XMLCh* getHost() const;
00148 const XMLCh* getPassword() const;
00149 const XMLCh* getPath() const;
00150 unsigned int getPortNum() const;
00151 Protocols getProtocol() const;
00152 const XMLCh* getProtocolName() const;
00153 const XMLCh* getQuery() const;
00154 const XMLCh* getURLText() const;
00155 const XMLCh* getUser() const;
00156
00157
00158
00159
00160
00161 void setURL(const XMLCh* const urlText);
00162 void setURL
00163 (
00164 const XMLCh* const baseURL
00165 , const XMLCh* const relativeURL
00166 );
00167 void setURL
00168 (
00169 const XMLURL& baseURL
00170 , const XMLCh* const relativeURL
00171 );
00172
00173
00174
00175
00176
00177 bool isRelative() const;
00178 BinInputStream* makeNewStream() const;
00179 void makeRelativeTo(const XMLCh* const baseURLText);
00180 void makeRelativeTo(const XMLURL& baseURL);
00181
00182
00183 private:
00184
00185
00186
00187 void buildFullText();
00188 void cleanup();
00189 bool conglomerateWithBase(const XMLURL& baseURL, bool useExceptions=true);
00190 void parse
00191 (
00192 const XMLCh* const urlText
00193 );
00194 void weavePaths(const XMLCh* const basePart);
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233 XMLCh* fFragment;
00234 XMLCh* fHost;
00235 XMLCh* fPassword;
00236 XMLCh* fPath;
00237 unsigned int fPortNum;
00238 Protocols fProtocol;
00239 XMLCh* fQuery;
00240 XMLCh* fUser;
00241 XMLCh* fURLText;
00242 };
00243
00244
00245
00246
00247
00248 inline bool XMLURL::operator!=(const XMLURL& toCompare) const
00249 {
00250 return !operator==(toCompare);
00251 }
00252
00253
00254
00255
00256
00257 inline const XMLCh* XMLURL::getFragment() const
00258 {
00259 return fFragment;
00260 }
00261
00262 inline const XMLCh* XMLURL::getHost() const
00263 {
00264 return fHost;
00265 }
00266
00267 inline const XMLCh* XMLURL::getPassword() const
00268 {
00269 return fPassword;
00270 }
00271
00272 inline const XMLCh* XMLURL::getPath() const
00273 {
00274 return fPath;
00275 }
00276
00277 inline XMLURL::Protocols XMLURL::getProtocol() const
00278 {
00279 return fProtocol;
00280 }
00281
00282 inline const XMLCh* XMLURL::getQuery() const
00283 {
00284 return fQuery;
00285 }
00286
00287 inline const XMLCh* XMLURL::getUser() const
00288 {
00289 return fUser;
00290 }
00291
00292 inline const XMLCh* XMLURL::getURLText() const
00293 {
00294
00295
00296
00297
00298
00299 if (!fURLText)
00300 ((XMLURL*)this)->buildFullText();
00301
00302 return fURLText;
00303 }
00304
00305 MakeXMLException(MalformedURLException, )
00306
00307
00308 #endif