]>
Commit | Line | Data |
---|---|---|
dd65d8c8 RN |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: uri.cpp | |
3 | // Purpose: Implementation of a uri parser | |
4 | // Author: Ryan Norton | |
5 | // Created: 10/26/04 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2004 Ryan Norton | |
8 | // Licence: wxWindows | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // =========================================================================== | |
12 | // declarations | |
13 | // =========================================================================== | |
14 | ||
15 | // --------------------------------------------------------------------------- | |
16 | // headers | |
17 | // --------------------------------------------------------------------------- | |
18 | ||
dd65d8c8 RN |
19 | // For compilers that support precompilation, includes "wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
26 | #include "wx/uri.h" | |
27 | ||
28 | // --------------------------------------------------------------------------- | |
29 | // definitions | |
30 | // --------------------------------------------------------------------------- | |
31 | ||
4115960d | 32 | IMPLEMENT_CLASS(wxURI, wxObject) |
dd65d8c8 RN |
33 | |
34 | // =========================================================================== | |
35 | // implementation | |
36 | // =========================================================================== | |
37 | ||
38 | // --------------------------------------------------------------------------- | |
39 | // utilities | |
40 | // --------------------------------------------------------------------------- | |
41 | ||
42 | // --------------------------------------------------------------------------- | |
43 | // | |
44 | // wxURI | |
45 | // | |
46 | // --------------------------------------------------------------------------- | |
47 | ||
48 | // --------------------------------------------------------------------------- | |
49 | // Constructors | |
50 | // --------------------------------------------------------------------------- | |
51 | ||
52 | wxURI::wxURI() : m_hostType(wxURI_REGNAME), m_fields(0) | |
53 | { | |
54 | } | |
846978d7 | 55 | |
dd65d8c8 RN |
56 | wxURI::wxURI(const wxString& uri) : m_hostType(wxURI_REGNAME), m_fields(0) |
57 | { | |
58 | Create(uri); | |
59 | } | |
60 | ||
60431236 | 61 | wxURI::wxURI(const wxURI& uri) : wxObject(), m_hostType(wxURI_REGNAME), m_fields(0) |
dd65d8c8 | 62 | { |
b60b2ec8 | 63 | Assign(uri); |
dd65d8c8 RN |
64 | } |
65 | ||
66 | // --------------------------------------------------------------------------- | |
67 | // Destructor and cleanup | |
68 | // --------------------------------------------------------------------------- | |
69 | ||
70 | wxURI::~wxURI() | |
71 | { | |
72 | Clear(); | |
73 | } | |
74 | ||
75 | void wxURI::Clear() | |
76 | { | |
4860d40d | 77 | m_scheme = m_userinfo = m_server = m_port = m_path = |
525d8583 | 78 | m_query = m_fragment = wxEmptyString; |
dd65d8c8 RN |
79 | |
80 | m_hostType = wxURI_REGNAME; | |
81 | ||
82 | m_fields = 0; | |
83 | } | |
84 | ||
85 | // --------------------------------------------------------------------------- | |
86 | // Create | |
87 | // | |
846978d7 | 88 | // This creates the URI - all we do here is call the main parsing method |
dd65d8c8 RN |
89 | // --------------------------------------------------------------------------- |
90 | ||
86470d43 | 91 | const wxChar* wxURI::Create(const wxString& uri) |
846978d7 | 92 | { |
dd65d8c8 RN |
93 | if (m_fields) |
94 | Clear(); | |
95 | ||
846978d7 WS |
96 | return Parse(uri); |
97 | } | |
dd65d8c8 RN |
98 | |
99 | // --------------------------------------------------------------------------- | |
ce321570 | 100 | // Escape Methods |
dd65d8c8 | 101 | // |
846978d7 | 102 | // TranslateEscape unencodes a 3 character URL escape sequence |
ce321570 | 103 | // |
dd65d8c8 | 104 | // Escape encodes an invalid URI character into a 3 character sequence |
ce321570 | 105 | // |
dd65d8c8 RN |
106 | // IsEscape determines if the input string contains an escape sequence, |
107 | // if it does, then it moves the input string past the escape sequence | |
ce321570 RN |
108 | // |
109 | // Unescape unencodes all 3 character URL escape sequences in a wxString | |
dd65d8c8 RN |
110 | // --------------------------------------------------------------------------- |
111 | ||
86470d43 | 112 | wxChar wxURI::TranslateEscape(const wxChar* s) |
dd65d8c8 | 113 | { |
6f0344c7 | 114 | wxASSERT_MSG( IsHex(s[0]) && IsHex(s[1]), wxT("Invalid escape sequence!")); |
8404931e | 115 | |
17a1ebd1 | 116 | return wx_truncate_cast(wxChar, (CharToHex(s[0]) << 4 ) | CharToHex(s[1])); |
dd65d8c8 RN |
117 | } |
118 | ||
86470d43 RN |
119 | wxString wxURI::Unescape(const wxString& uri) |
120 | { | |
121 | wxString new_uri; | |
122 | ||
123 | for(size_t i = 0; i < uri.length(); ++i) | |
124 | { | |
125 | if (uri[i] == wxT('%')) | |
126 | { | |
127 | new_uri += wxURI::TranslateEscape( &(uri.c_str()[i+1]) ); | |
128 | i += 2; | |
129 | } | |
d8d7193d RN |
130 | else |
131 | new_uri += uri[i]; | |
86470d43 RN |
132 | } |
133 | ||
134 | return new_uri; | |
135 | } | |
136 | ||
dd65d8c8 RN |
137 | void wxURI::Escape(wxString& s, const wxChar& c) |
138 | { | |
139 | const wxChar* hdig = wxT("0123456789abcdef"); | |
ce321570 | 140 | s += wxT('%'); |
dd65d8c8 | 141 | s += hdig[(c >> 4) & 15]; |
846978d7 | 142 | s += hdig[c & 15]; |
dd65d8c8 RN |
143 | } |
144 | ||
145 | bool wxURI::IsEscape(const wxChar*& uri) | |
146 | { | |
ce321570 RN |
147 | // pct-encoded = "%" HEXDIG HEXDIG |
148 | if(*uri == wxT('%') && IsHex(*(uri+1)) && IsHex(*(uri+2))) | |
dd65d8c8 | 149 | return true; |
dd65d8c8 RN |
150 | else |
151 | return false; | |
152 | } | |
153 | ||
4860d40d RN |
154 | // --------------------------------------------------------------------------- |
155 | // GetUser | |
156 | // GetPassword | |
157 | // | |
158 | // Gets the username and password via the old URL method. | |
159 | // --------------------------------------------------------------------------- | |
160 | wxString wxURI::GetUser() const | |
161 | { | |
162 | size_t dwPasswordPos = m_userinfo.find(':'); | |
163 | ||
164 | if (dwPasswordPos == wxString::npos) | |
165 | dwPasswordPos = 0; | |
166 | ||
167 | return m_userinfo(0, dwPasswordPos); | |
168 | } | |
169 | ||
170 | wxString wxURI::GetPassword() const | |
171 | { | |
172 | size_t dwPasswordPos = m_userinfo.find(':'); | |
173 | ||
174 | if (dwPasswordPos == wxString::npos) | |
175 | return wxT(""); | |
176 | else | |
177 | return m_userinfo(dwPasswordPos+1, m_userinfo.length() + 1); | |
178 | } | |
179 | ||
dd65d8c8 | 180 | // --------------------------------------------------------------------------- |
86470d43 | 181 | // BuildURI |
dd65d8c8 | 182 | // |
846978d7 | 183 | // BuildURI() builds the entire URI into a useable |
dd65d8c8 | 184 | // representation, including proper identification characters such as slashes |
ce321570 RN |
185 | // |
186 | // BuildUnescapedURI() does the same thing as BuildURI(), only it unescapes | |
187 | // the components that accept escape sequences | |
dd65d8c8 RN |
188 | // --------------------------------------------------------------------------- |
189 | ||
86470d43 | 190 | wxString wxURI::BuildURI() const |
846978d7 | 191 | { |
dd65d8c8 RN |
192 | wxString ret; |
193 | ||
194 | if (HasScheme()) | |
195 | ret = ret + m_scheme + wxT(":"); | |
196 | ||
197 | if (HasServer()) | |
198 | { | |
199 | ret += wxT("//"); | |
200 | ||
4860d40d RN |
201 | if (HasUserInfo()) |
202 | ret = ret + m_userinfo + wxT("@"); | |
dd65d8c8 RN |
203 | |
204 | ret += m_server; | |
205 | ||
206 | if (HasPort()) | |
207 | ret = ret + wxT(":") + m_port; | |
208 | } | |
209 | ||
210 | ret += m_path; | |
211 | ||
212 | if (HasQuery()) | |
213 | ret = ret + wxT("?") + m_query; | |
214 | ||
215 | if (HasFragment()) | |
216 | ret = ret + wxT("#") + m_fragment; | |
217 | ||
218 | return ret; | |
219 | } | |
220 | ||
86470d43 RN |
221 | wxString wxURI::BuildUnescapedURI() const |
222 | { | |
223 | wxString ret; | |
224 | ||
225 | if (HasScheme()) | |
226 | ret = ret + m_scheme + wxT(":"); | |
227 | ||
228 | if (HasServer()) | |
229 | { | |
230 | ret += wxT("//"); | |
231 | ||
4860d40d RN |
232 | if (HasUserInfo()) |
233 | ret = ret + wxURI::Unescape(m_userinfo) + wxT("@"); | |
86470d43 RN |
234 | |
235 | if (m_hostType == wxURI_REGNAME) | |
236 | ret += wxURI::Unescape(m_server); | |
237 | else | |
238 | ret += m_server; | |
239 | ||
240 | if (HasPort()) | |
241 | ret = ret + wxT(":") + m_port; | |
242 | } | |
243 | ||
244 | ret += wxURI::Unescape(m_path); | |
245 | ||
246 | if (HasQuery()) | |
247 | ret = ret + wxT("?") + wxURI::Unescape(m_query); | |
248 | ||
249 | if (HasFragment()) | |
250 | ret = ret + wxT("#") + wxURI::Unescape(m_fragment); | |
251 | ||
252 | return ret; | |
253 | } | |
254 | ||
dd65d8c8 | 255 | // --------------------------------------------------------------------------- |
ce321570 | 256 | // Assignment |
dd65d8c8 RN |
257 | // --------------------------------------------------------------------------- |
258 | ||
b60b2ec8 RN |
259 | wxURI& wxURI::Assign(const wxURI& uri) |
260 | { | |
261 | //assign fields | |
262 | m_fields = uri.m_fields; | |
263 | ||
264 | //ref over components | |
265 | m_scheme = uri.m_scheme; | |
4860d40d | 266 | m_userinfo = uri.m_userinfo; |
b60b2ec8 RN |
267 | m_server = uri.m_server; |
268 | m_hostType = uri.m_hostType; | |
269 | m_port = uri.m_port; | |
270 | m_path = uri.m_path; | |
271 | m_query = uri.m_query; | |
272 | m_fragment = uri.m_fragment; | |
dd65d8c8 RN |
273 | |
274 | return *this; | |
275 | } | |
276 | ||
ce321570 RN |
277 | wxURI& wxURI::operator = (const wxURI& uri) |
278 | { | |
279 | return Assign(uri); | |
280 | } | |
281 | ||
b60b2ec8 | 282 | wxURI& wxURI::operator = (const wxString& string) |
846978d7 | 283 | { |
dd65d8c8 RN |
284 | Create(string); |
285 | return *this; | |
286 | } | |
287 | ||
ce321570 RN |
288 | // --------------------------------------------------------------------------- |
289 | // Comparison | |
290 | // --------------------------------------------------------------------------- | |
291 | ||
dd65d8c8 | 292 | bool wxURI::operator == (const wxURI& uri) const |
846978d7 | 293 | { |
dd65d8c8 RN |
294 | if (HasScheme()) |
295 | { | |
296 | if(m_scheme != uri.m_scheme) | |
297 | return false; | |
298 | } | |
299 | else if (uri.HasScheme()) | |
300 | return false; | |
301 | ||
302 | ||
303 | if (HasServer()) | |
304 | { | |
4860d40d | 305 | if (HasUserInfo()) |
dd65d8c8 | 306 | { |
4860d40d | 307 | if (m_userinfo != uri.m_userinfo) |
dd65d8c8 RN |
308 | return false; |
309 | } | |
4860d40d | 310 | else if (uri.HasUserInfo()) |
dd65d8c8 RN |
311 | return false; |
312 | ||
313 | if (m_server != uri.m_server || | |
314 | m_hostType != uri.m_hostType) | |
315 | return false; | |
316 | ||
317 | if (HasPort()) | |
318 | { | |
319 | if(m_port != uri.m_port) | |
320 | return false; | |
321 | } | |
322 | else if (uri.HasPort()) | |
323 | return false; | |
324 | } | |
325 | else if (uri.HasServer()) | |
326 | return false; | |
327 | ||
328 | ||
329 | if (HasPath()) | |
330 | { | |
331 | if(m_path != uri.m_path) | |
332 | return false; | |
333 | } | |
334 | else if (uri.HasPath()) | |
335 | return false; | |
336 | ||
337 | if (HasQuery()) | |
338 | { | |
339 | if (m_query != uri.m_query) | |
340 | return false; | |
341 | } | |
342 | else if (uri.HasQuery()) | |
343 | return false; | |
344 | ||
345 | if (HasFragment()) | |
346 | { | |
347 | if (m_fragment != uri.m_fragment) | |
348 | return false; | |
349 | } | |
350 | else if (uri.HasFragment()) | |
351 | return false; | |
352 | ||
353 | return true; | |
354 | } | |
355 | ||
356 | // --------------------------------------------------------------------------- | |
357 | // IsReference | |
358 | // | |
359 | // if there is no authority or scheme, it is a reference | |
360 | // --------------------------------------------------------------------------- | |
361 | ||
362 | bool wxURI::IsReference() const | |
363 | { return !HasScheme() || !HasServer(); } | |
364 | ||
365 | // --------------------------------------------------------------------------- | |
366 | // Parse | |
367 | // | |
368 | // Master URI parsing method. Just calls the individual parsing methods | |
369 | // | |
370 | // URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ] | |
4cc52142 | 371 | // URI-reference = URI / relative |
dd65d8c8 RN |
372 | // --------------------------------------------------------------------------- |
373 | ||
374 | const wxChar* wxURI::Parse(const wxChar* uri) | |
375 | { | |
376 | uri = ParseScheme(uri); | |
377 | uri = ParseAuthority(uri); | |
378 | uri = ParsePath(uri); | |
379 | uri = ParseQuery(uri); | |
380 | return ParseFragment(uri); | |
381 | } | |
382 | ||
383 | // --------------------------------------------------------------------------- | |
384 | // ParseXXX | |
385 | // | |
386 | // Individual parsers for each URI component | |
387 | // --------------------------------------------------------------------------- | |
388 | ||
389 | const wxChar* wxURI::ParseScheme(const wxChar* uri) | |
390 | { | |
391 | wxASSERT(uri != NULL); | |
392 | ||
393 | //copy of the uri - used for figuring out | |
394 | //length of each component | |
395 | const wxChar* uricopy = uri; | |
396 | ||
397 | //Does the uri have a scheme (first character alpha)? | |
398 | if (IsAlpha(*uri)) | |
399 | { | |
400 | m_scheme += *uri++; | |
401 | ||
402 | //scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) | |
846978d7 | 403 | while (IsAlpha(*uri) || IsDigit(*uri) || |
ce321570 RN |
404 | *uri == wxT('+') || |
405 | *uri == wxT('-') || | |
846978d7 WS |
406 | *uri == wxT('.')) |
407 | { | |
408 | m_scheme += *uri++; | |
dd65d8c8 RN |
409 | } |
410 | ||
411 | //valid scheme? | |
ce321570 | 412 | if (*uri == wxT(':')) |
846978d7 | 413 | { |
dd65d8c8 RN |
414 | //mark the scheme as valid |
415 | m_fields |= wxURI_SCHEME; | |
416 | ||
417 | //move reference point up to input buffer | |
418 | uricopy = ++uri; | |
419 | } | |
846978d7 | 420 | else |
dd65d8c8 | 421 | //relative uri with relative path reference |
525d8583 | 422 | m_scheme = wxEmptyString; |
dd65d8c8 | 423 | } |
846978d7 | 424 | // else |
dd65d8c8 RN |
425 | //relative uri with _possible_ relative path reference |
426 | ||
427 | return uricopy; | |
428 | } | |
429 | ||
430 | const wxChar* wxURI::ParseAuthority(const wxChar* uri) | |
431 | { | |
432 | // authority = [ userinfo "@" ] host [ ":" port ] | |
846978d7 | 433 | if (*uri == wxT('/') && *(uri+1) == wxT('/')) |
dd65d8c8 | 434 | { |
97ad053b | 435 | //skip past the two slashes |
dd65d8c8 RN |
436 | uri += 2; |
437 | ||
97ad053b VZ |
438 | // ############# DEVIATION FROM RFC ######################### |
439 | // Don't parse the server component for file URIs | |
440 | if(m_scheme != wxT("file")) | |
441 | { | |
442 | //normal way | |
4860d40d | 443 | uri = ParseUserInfo(uri); |
dd65d8c8 RN |
444 | uri = ParseServer(uri); |
445 | return ParsePort(uri); | |
97ad053b | 446 | } |
dd65d8c8 RN |
447 | } |
448 | ||
449 | return uri; | |
450 | } | |
451 | ||
4860d40d | 452 | const wxChar* wxURI::ParseUserInfo(const wxChar* uri) |
dd65d8c8 RN |
453 | { |
454 | wxASSERT(uri != NULL); | |
455 | ||
456 | //copy of the uri - used for figuring out | |
457 | //length of each component | |
458 | const wxChar* uricopy = uri; | |
459 | ||
460 | // userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) | |
846978d7 | 461 | while(*uri && *uri != wxT('@') && *uri != wxT('/') && *uri != wxT('#') && *uri != wxT('?')) |
dd65d8c8 | 462 | { |
24ca04e7 | 463 | if(IsUnreserved(*uri) || |
ce321570 | 464 | IsSubDelim(*uri) || *uri == wxT(':')) |
4860d40d | 465 | m_userinfo += *uri++; |
24ca04e7 VZ |
466 | else if (IsEscape(uri)) |
467 | { | |
468 | m_userinfo += *uri++; | |
469 | m_userinfo += *uri++; | |
470 | m_userinfo += *uri++; | |
471 | } | |
dd65d8c8 | 472 | else |
4860d40d | 473 | Escape(m_userinfo, *uri++); |
dd65d8c8 RN |
474 | } |
475 | ||
ce321570 | 476 | if(*uri == wxT('@')) |
dd65d8c8 RN |
477 | { |
478 | //valid userinfo | |
4860d40d | 479 | m_fields |= wxURI_USERINFO; |
dd65d8c8 RN |
480 | |
481 | uricopy = ++uri; | |
482 | } | |
483 | else | |
4860d40d | 484 | m_userinfo = wxEmptyString; |
dd65d8c8 RN |
485 | |
486 | return uricopy; | |
487 | } | |
488 | ||
489 | const wxChar* wxURI::ParseServer(const wxChar* uri) | |
490 | { | |
491 | wxASSERT(uri != NULL); | |
492 | ||
493 | //copy of the uri - used for figuring out | |
494 | //length of each component | |
495 | const wxChar* uricopy = uri; | |
496 | ||
497 | // host = IP-literal / IPv4address / reg-name | |
498 | // IP-literal = "[" ( IPv6address / IPvFuture ) "]" | |
ce321570 | 499 | if (*uri == wxT('[')) |
dd65d8c8 | 500 | { |
e854db32 RN |
501 | ++uri; //some compilers don't support *&ing a ++* |
502 | if (ParseIPv6address(uri) && *uri == wxT(']')) | |
dd65d8c8 RN |
503 | { |
504 | ++uri; | |
505 | m_hostType = wxURI_IPV6ADDRESS; | |
846978d7 | 506 | |
dd65d8c8 | 507 | wxStringBufferLength theBuffer(m_server, uri - uricopy); |
2c09fb3b | 508 | wxTmemcpy(theBuffer, uricopy, uri-uricopy); |
dd65d8c8 RN |
509 | theBuffer.SetLength(uri-uricopy); |
510 | } | |
511 | else | |
512 | { | |
513 | uri = uricopy; | |
514 | ||
e854db32 RN |
515 | ++uri; //some compilers don't support *&ing a ++* |
516 | if (ParseIPvFuture(uri) && *uri == wxT(']')) | |
dd65d8c8 RN |
517 | { |
518 | ++uri; | |
846978d7 WS |
519 | m_hostType = wxURI_IPVFUTURE; |
520 | ||
dd65d8c8 | 521 | wxStringBufferLength theBuffer(m_server, uri - uricopy); |
2c09fb3b | 522 | wxTmemcpy(theBuffer, uricopy, uri-uricopy); |
dd65d8c8 RN |
523 | theBuffer.SetLength(uri-uricopy); |
524 | } | |
846978d7 | 525 | else |
dd65d8c8 RN |
526 | uri = uricopy; |
527 | } | |
528 | } | |
846978d7 | 529 | else |
dd65d8c8 RN |
530 | { |
531 | if (ParseIPv4address(uri)) | |
532 | { | |
533 | m_hostType = wxURI_IPV4ADDRESS; | |
534 | ||
535 | wxStringBufferLength theBuffer(m_server, uri - uricopy); | |
2c09fb3b | 536 | wxTmemcpy(theBuffer, uricopy, uri-uricopy); |
dd65d8c8 RN |
537 | theBuffer.SetLength(uri-uricopy); |
538 | } | |
846978d7 | 539 | else |
dd65d8c8 RN |
540 | uri = uricopy; |
541 | } | |
542 | ||
543 | if(m_hostType == wxURI_REGNAME) | |
544 | { | |
545 | uri = uricopy; | |
546 | // reg-name = *( unreserved / pct-encoded / sub-delims ) | |
846978d7 | 547 | while(*uri && *uri != wxT('/') && *uri != wxT(':') && *uri != wxT('#') && *uri != wxT('?')) |
dd65d8c8 | 548 | { |
24ca04e7 VZ |
549 | if(IsUnreserved(*uri) || IsSubDelim(*uri)) |
550 | m_server += *uri++; | |
551 | else if (IsEscape(uri)) | |
552 | { | |
dd65d8c8 | 553 | m_server += *uri++; |
24ca04e7 VZ |
554 | m_server += *uri++; |
555 | m_server += *uri++; | |
556 | } | |
dd65d8c8 RN |
557 | else |
558 | Escape(m_server, *uri++); | |
846978d7 | 559 | } |
dd65d8c8 RN |
560 | } |
561 | ||
562 | //mark the server as valid | |
563 | m_fields |= wxURI_SERVER; | |
564 | ||
565 | return uri; | |
566 | } | |
567 | ||
846978d7 | 568 | |
dd65d8c8 RN |
569 | const wxChar* wxURI::ParsePort(const wxChar* uri) |
570 | { | |
571 | wxASSERT(uri != NULL); | |
572 | ||
573 | // port = *DIGIT | |
ce321570 | 574 | if(*uri == wxT(':')) |
dd65d8c8 RN |
575 | { |
576 | ++uri; | |
846978d7 | 577 | while(IsDigit(*uri)) |
dd65d8c8 RN |
578 | { |
579 | m_port += *uri++; | |
846978d7 | 580 | } |
dd65d8c8 RN |
581 | |
582 | //mark the port as valid | |
583 | m_fields |= wxURI_PORT; | |
584 | } | |
585 | ||
586 | return uri; | |
587 | } | |
588 | ||
8404931e | 589 | const wxChar* wxURI::ParsePath(const wxChar* uri, bool bReference, bool bNormalize) |
dd65d8c8 RN |
590 | { |
591 | wxASSERT(uri != NULL); | |
592 | ||
593 | //copy of the uri - used for figuring out | |
594 | //length of each component | |
595 | const wxChar* uricopy = uri; | |
596 | ||
597 | /// hier-part = "//" authority path-abempty | |
598 | /// / path-absolute | |
599 | /// / path-rootless | |
600 | /// / path-empty | |
601 | /// | |
602 | /// relative-part = "//" authority path-abempty | |
603 | /// / path-absolute | |
604 | /// / path-noscheme | |
605 | /// / path-empty | |
606 | /// | |
607 | /// path-abempty = *( "/" segment ) | |
608 | /// path-absolute = "/" [ segment-nz *( "/" segment ) ] | |
609 | /// path-noscheme = segment-nz-nc *( "/" segment ) | |
610 | /// path-rootless = segment-nz *( "/" segment ) | |
611 | /// path-empty = 0<pchar> | |
612 | /// | |
613 | /// segment = *pchar | |
614 | /// segment-nz = 1*pchar | |
615 | /// segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" ) | |
616 | /// ; non-zero-length segment without any colon ":" | |
617 | /// | |
618 | /// pchar = unreserved / pct-encoded / sub-delims / ":" / "@" | |
ce321570 | 619 | if (*uri == wxT('/')) |
dd65d8c8 RN |
620 | { |
621 | m_path += *uri++; | |
622 | ||
846978d7 WS |
623 | while(*uri && *uri != wxT('#') && *uri != wxT('?')) |
624 | { | |
24ca04e7 | 625 | if( IsUnreserved(*uri) || IsSubDelim(*uri) || |
ce321570 | 626 | *uri == wxT(':') || *uri == wxT('@') || *uri == wxT('/')) |
846978d7 | 627 | m_path += *uri++; |
24ca04e7 VZ |
628 | else if (IsEscape(uri)) |
629 | { | |
630 | m_path += *uri++; | |
631 | m_path += *uri++; | |
632 | m_path += *uri++; | |
633 | } | |
846978d7 WS |
634 | else |
635 | Escape(m_path, *uri++); | |
dd65d8c8 RN |
636 | } |
637 | ||
638 | if (bNormalize) | |
639 | { | |
640 | wxStringBufferLength theBuffer(m_path, m_path.length() + 1); | |
d21d3f21 | 641 | #if wxUSE_STL |
2c09fb3b | 642 | wxTmemcpy(theBuffer, m_path.c_str(), m_path.length()+1); |
d21d3f21 | 643 | #endif |
dd65d8c8 RN |
644 | Normalize(theBuffer, true); |
645 | theBuffer.SetLength(wxStrlen(theBuffer)); | |
646 | } | |
647 | //mark the path as valid | |
648 | m_fields |= wxURI_PATH; | |
649 | } | |
650 | else if(*uri) //Relative path | |
651 | { | |
652 | if (bReference) | |
653 | { | |
654 | //no colon allowed | |
846978d7 | 655 | while(*uri && *uri != wxT('#') && *uri != wxT('?')) |
dd65d8c8 | 656 | { |
24ca04e7 | 657 | if(IsUnreserved(*uri) || IsSubDelim(*uri) || |
ce321570 | 658 | *uri == wxT('@') || *uri == wxT('/')) |
846978d7 | 659 | m_path += *uri++; |
24ca04e7 VZ |
660 | else if (IsEscape(uri)) |
661 | { | |
662 | m_path += *uri++; | |
663 | m_path += *uri++; | |
664 | m_path += *uri++; | |
665 | } | |
846978d7 WS |
666 | else |
667 | Escape(m_path, *uri++); | |
dd65d8c8 | 668 | } |
846978d7 | 669 | } |
dd65d8c8 RN |
670 | else |
671 | { | |
846978d7 | 672 | while(*uri && *uri != wxT('#') && *uri != wxT('?')) |
dd65d8c8 | 673 | { |
24ca04e7 | 674 | if(IsUnreserved(*uri) || IsSubDelim(*uri) || |
ce321570 | 675 | *uri == wxT(':') || *uri == wxT('@') || *uri == wxT('/')) |
846978d7 | 676 | m_path += *uri++; |
24ca04e7 VZ |
677 | else if (IsEscape(uri)) |
678 | { | |
679 | m_path += *uri++; | |
680 | m_path += *uri++; | |
681 | m_path += *uri++; | |
682 | } | |
846978d7 WS |
683 | else |
684 | Escape(m_path, *uri++); | |
dd65d8c8 RN |
685 | } |
686 | } | |
687 | ||
688 | if (uri != uricopy) | |
846978d7 | 689 | { |
dd65d8c8 RN |
690 | if (bNormalize) |
691 | { | |
692 | wxStringBufferLength theBuffer(m_path, m_path.length() + 1); | |
d21d3f21 | 693 | #if wxUSE_STL |
2c09fb3b | 694 | wxTmemcpy(theBuffer, m_path.c_str(), m_path.length()+1); |
d21d3f21 | 695 | #endif |
dd65d8c8 RN |
696 | Normalize(theBuffer); |
697 | theBuffer.SetLength(wxStrlen(theBuffer)); | |
698 | } | |
699 | ||
700 | //mark the path as valid | |
701 | m_fields |= wxURI_PATH; | |
702 | } | |
703 | } | |
704 | ||
705 | return uri; | |
706 | } | |
707 | ||
708 | ||
709 | const wxChar* wxURI::ParseQuery(const wxChar* uri) | |
710 | { | |
711 | wxASSERT(uri != NULL); | |
712 | ||
713 | // query = *( pchar / "/" / "?" ) | |
ce321570 | 714 | if (*uri == wxT('?')) |
dd65d8c8 RN |
715 | { |
716 | ++uri; | |
ce321570 | 717 | while(*uri && *uri != wxT('#')) |
dd65d8c8 | 718 | { |
24ca04e7 | 719 | if (IsUnreserved(*uri) || IsSubDelim(*uri) || |
ce321570 | 720 | *uri == wxT(':') || *uri == wxT('@') || *uri == wxT('/') || *uri == wxT('?')) |
846978d7 | 721 | m_query += *uri++; |
24ca04e7 VZ |
722 | else if (IsEscape(uri)) |
723 | { | |
724 | m_query += *uri++; | |
725 | m_query += *uri++; | |
726 | m_query += *uri++; | |
727 | } | |
dd65d8c8 | 728 | else |
846978d7 | 729 | Escape(m_query, *uri++); |
dd65d8c8 RN |
730 | } |
731 | ||
732 | //mark the server as valid | |
733 | m_fields |= wxURI_QUERY; | |
734 | } | |
735 | ||
736 | return uri; | |
737 | } | |
738 | ||
739 | ||
740 | const wxChar* wxURI::ParseFragment(const wxChar* uri) | |
741 | { | |
742 | wxASSERT(uri != NULL); | |
743 | ||
744 | // fragment = *( pchar / "/" / "?" ) | |
ce321570 | 745 | if (*uri == wxT('#')) |
dd65d8c8 RN |
746 | { |
747 | ++uri; | |
748 | while(*uri) | |
749 | { | |
24ca04e7 | 750 | if (IsUnreserved(*uri) || IsSubDelim(*uri) || |
ce321570 | 751 | *uri == wxT(':') || *uri == wxT('@') || *uri == wxT('/') || *uri == wxT('?')) |
846978d7 | 752 | m_fragment += *uri++; |
24ca04e7 VZ |
753 | else if (IsEscape(uri)) |
754 | { | |
755 | m_fragment += *uri++; | |
756 | m_fragment += *uri++; | |
757 | m_fragment += *uri++; | |
758 | } | |
dd65d8c8 | 759 | else |
846978d7 | 760 | Escape(m_fragment, *uri++); |
dd65d8c8 RN |
761 | } |
762 | ||
763 | //mark the server as valid | |
764 | m_fields |= wxURI_FRAGMENT; | |
765 | } | |
766 | ||
767 | return uri; | |
768 | } | |
769 | ||
770 | // --------------------------------------------------------------------------- | |
ce321570 | 771 | // Resolve |
dd65d8c8 | 772 | // |
ce321570 | 773 | // Builds missing components of this uri from a base uri |
dd65d8c8 | 774 | // |
ce321570 RN |
775 | // A version of the algorithm outlined in the RFC is used here |
776 | // (it is shown in comments) | |
777 | // | |
846978d7 | 778 | // Note that an empty URI inherits all components |
dd65d8c8 RN |
779 | // --------------------------------------------------------------------------- |
780 | ||
8404931e | 781 | void wxURI::Resolve(const wxURI& base, int flags) |
dd65d8c8 | 782 | { |
846978d7 | 783 | wxASSERT_MSG(!base.IsReference(), |
dd65d8c8 RN |
784 | wxT("wxURI to inherit from must not be a reference!")); |
785 | ||
ce321570 | 786 | // If we arn't being strict, enable the older (pre-RFC2396) |
dd65d8c8 RN |
787 | // loophole that allows this uri to inherit other |
788 | // properties from the base uri - even if the scheme | |
789 | // is defined | |
8404931e VZ |
790 | if ( !(flags & wxURI_STRICT) && |
791 | HasScheme() && base.HasScheme() && | |
792 | m_scheme == base.m_scheme ) | |
846978d7 | 793 | { |
dd65d8c8 RN |
794 | m_fields -= wxURI_SCHEME; |
795 | } | |
796 | ||
797 | ||
798 | // Do nothing if this is an absolute wxURI | |
799 | // if defined(R.scheme) then | |
800 | // T.scheme = R.scheme; | |
801 | // T.authority = R.authority; | |
802 | // T.path = remove_dot_segments(R.path); | |
803 | // T.query = R.query; | |
804 | if (HasScheme()) | |
805 | { | |
806 | return; | |
807 | } | |
808 | ||
ea4daac4 | 809 | //No scheme - inherit |
dd65d8c8 RN |
810 | m_scheme = base.m_scheme; |
811 | m_fields |= wxURI_SCHEME; | |
812 | ||
813 | // All we need to do for relative URIs with an | |
814 | // authority component is just inherit the scheme | |
815 | // if defined(R.authority) then | |
816 | // T.authority = R.authority; | |
817 | // T.path = remove_dot_segments(R.path); | |
818 | // T.query = R.query; | |
819 | if (HasServer()) | |
820 | { | |
821 | return; | |
822 | } | |
823 | ||
824 | //No authority - inherit | |
4860d40d | 825 | if (base.HasUserInfo()) |
dd65d8c8 | 826 | { |
4860d40d RN |
827 | m_userinfo = base.m_userinfo; |
828 | m_fields |= wxURI_USERINFO; | |
dd65d8c8 | 829 | } |
846978d7 | 830 | |
dd65d8c8 RN |
831 | m_server = base.m_server; |
832 | m_hostType = base.m_hostType; | |
833 | m_fields |= wxURI_SERVER; | |
846978d7 | 834 | |
dd65d8c8 RN |
835 | if (base.HasPort()) |
836 | { | |
837 | m_port = base.m_port; | |
838 | m_fields |= wxURI_PORT; | |
839 | } | |
846978d7 | 840 | |
dd65d8c8 RN |
841 | |
842 | // Simple path inheritance from base | |
843 | if (!HasPath()) | |
844 | { | |
845 | // T.path = Base.path; | |
846 | m_path = base.m_path; | |
847 | m_fields |= wxURI_PATH; | |
846978d7 | 848 | |
dd65d8c8 RN |
849 | |
850 | // if defined(R.query) then | |
851 | // T.query = R.query; | |
852 | // else | |
853 | // T.query = Base.query; | |
854 | // endif; | |
855 | if (!HasQuery()) | |
856 | { | |
857 | m_query = base.m_query; | |
858 | m_fields |= wxURI_QUERY; | |
859 | } | |
860 | } | |
861 | else | |
862 | { | |
863 | // if (R.path starts-with "/") then | |
864 | // T.path = remove_dot_segments(R.path); | |
865 | // else | |
866 | // T.path = merge(Base.path, R.path); | |
867 | // T.path = remove_dot_segments(T.path); | |
868 | // endif; | |
869 | // T.query = R.query; | |
ce321570 | 870 | if (m_path[0u] != wxT('/')) |
dd65d8c8 | 871 | { |
ea4daac4 | 872 | //Merge paths |
dd65d8c8 RN |
873 | const wxChar* op = m_path.c_str(); |
874 | const wxChar* bp = base.m_path.c_str() + base.m_path.Length(); | |
875 | ||
876 | //not a ending directory? move up | |
ce321570 | 877 | if (base.m_path[0] && *(bp-1) != wxT('/')) |
dd65d8c8 RN |
878 | UpTree(base.m_path, bp); |
879 | ||
880 | //normalize directories | |
846978d7 | 881 | while(*op == wxT('.') && *(op+1) == wxT('.') && |
ce321570 | 882 | (*(op+2) == '\0' || *(op+2) == wxT('/')) ) |
dd65d8c8 RN |
883 | { |
884 | UpTree(base.m_path, bp); | |
885 | ||
886 | if (*(op+2) == '\0') | |
887 | op += 2; | |
888 | else | |
889 | op += 3; | |
890 | } | |
891 | ||
d8746da2 DS |
892 | m_path = base.m_path.substr(0, bp - base.m_path.c_str()) + |
893 | m_path.substr((op - m_path.c_str()), m_path.Length()); | |
dd65d8c8 RN |
894 | } |
895 | } | |
ce321570 | 896 | |
846978d7 | 897 | //T.fragment = R.fragment; |
dd65d8c8 RN |
898 | } |
899 | ||
900 | // --------------------------------------------------------------------------- | |
846978d7 | 901 | // UpTree |
dd65d8c8 | 902 | // |
ce321570 | 903 | // Moves a URI path up a directory |
dd65d8c8 RN |
904 | // --------------------------------------------------------------------------- |
905 | ||
ce321570 | 906 | //static |
dd65d8c8 RN |
907 | void wxURI::UpTree(const wxChar* uristart, const wxChar*& uri) |
908 | { | |
ce321570 | 909 | if (uri != uristart && *(uri-1) == wxT('/')) |
dd65d8c8 RN |
910 | { |
911 | uri -= 2; | |
912 | } | |
846978d7 | 913 | |
dd65d8c8 RN |
914 | for(;uri != uristart; --uri) |
915 | { | |
ce321570 | 916 | if (*uri == wxT('/')) |
dd65d8c8 RN |
917 | { |
918 | ++uri; | |
919 | break; | |
920 | } | |
921 | } | |
922 | ||
923 | //!!!TODO:HACK!!!// | |
ce321570 | 924 | if (uri == uristart && *uri == wxT('/')) |
dd65d8c8 RN |
925 | ++uri; |
926 | //!!!// | |
927 | } | |
928 | ||
ce321570 RN |
929 | // --------------------------------------------------------------------------- |
930 | // Normalize | |
931 | // | |
932 | // Normalizes directories in-place | |
933 | // | |
934 | // I.E. ./ and . are ignored | |
935 | // | |
936 | // ../ and .. are removed if a directory is before it, along | |
937 | // with that directory (leading .. and ../ are kept) | |
938 | // --------------------------------------------------------------------------- | |
939 | ||
940 | //static | |
8404931e | 941 | void wxURI::Normalize(wxChar* s, bool bIgnoreLeads) |
dd65d8c8 RN |
942 | { |
943 | wxChar* cp = s; | |
944 | wxChar* bp = s; | |
945 | ||
ce321570 | 946 | if(s[0] == wxT('/')) |
dd65d8c8 RN |
947 | ++bp; |
948 | ||
949 | while(*cp) | |
950 | { | |
ce321570 RN |
951 | if (*cp == wxT('.') && (*(cp+1) == wxT('/') || *(cp+1) == '\0') |
952 | && (bp == cp || *(cp-1) == wxT('/'))) | |
dd65d8c8 RN |
953 | { |
954 | //. _or_ ./ - ignore | |
955 | if (*(cp+1) == '\0') | |
956 | cp += 1; | |
957 | else | |
958 | cp += 2; | |
959 | } | |
846978d7 | 960 | else if (*cp == wxT('.') && *(cp+1) == wxT('.') && |
ce321570 RN |
961 | (*(cp+2) == wxT('/') || *(cp+2) == '\0') |
962 | && (bp == cp || *(cp-1) == wxT('/'))) | |
dd65d8c8 RN |
963 | { |
964 | //.. _or_ ../ - go up the tree | |
965 | if (s != bp) | |
966 | { | |
967 | UpTree((const wxChar*)bp, (const wxChar*&)s); | |
968 | ||
969 | if (*(cp+2) == '\0') | |
970 | cp += 2; | |
971 | else | |
972 | cp += 3; | |
973 | } | |
974 | else if (!bIgnoreLeads) | |
975 | ||
976 | { | |
977 | *bp++ = *cp++; | |
978 | *bp++ = *cp++; | |
979 | if (*cp) | |
980 | *bp++ = *cp++; | |
981 | ||
982 | s = bp; | |
983 | } | |
984 | else | |
985 | { | |
986 | if (*(cp+2) == '\0') | |
987 | cp += 2; | |
988 | else | |
989 | cp += 3; | |
990 | } | |
991 | } | |
992 | else | |
846978d7 | 993 | *s++ = *cp++; |
dd65d8c8 RN |
994 | } |
995 | ||
996 | *s = '\0'; | |
997 | } | |
998 | ||
999 | // --------------------------------------------------------------------------- | |
ce321570 RN |
1000 | // ParseH16 |
1001 | // | |
1002 | // Parses 1 to 4 hex values. Returns true if the first character of the input | |
846978d7 | 1003 | // string is a valid hex character. It is the caller's responsability to move |
ce321570 RN |
1004 | // the input string back to its original position on failure. |
1005 | // --------------------------------------------------------------------------- | |
1006 | ||
1007 | bool wxURI::ParseH16(const wxChar*& uri) | |
1008 | { | |
1009 | // h16 = 1*4HEXDIG | |
1010 | if(!IsHex(*++uri)) | |
1011 | return false; | |
1012 | ||
1013 | if(IsHex(*++uri) && IsHex(*++uri) && IsHex(*++uri)) | |
1014 | ++uri; | |
1015 | ||
1016 | return true; | |
1017 | } | |
1018 | ||
1019 | // --------------------------------------------------------------------------- | |
1020 | // ParseIPXXX | |
1021 | // | |
846978d7 WS |
1022 | // Parses a certain version of an IP address and moves the input string past |
1023 | // it. Returns true if the input string contains the proper version of an ip | |
1024 | // address. It is the caller's responsability to move the input string back | |
ce321570 | 1025 | // to its original position on failure. |
dd65d8c8 RN |
1026 | // --------------------------------------------------------------------------- |
1027 | ||
1028 | bool wxURI::ParseIPv4address(const wxChar*& uri) | |
1029 | { | |
1030 | //IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet | |
1031 | // | |
1032 | //dec-octet = DIGIT ; 0-9 | |
1033 | // / %x31-39 DIGIT ; 10-99 | |
1034 | // / "1" 2DIGIT ; 100-199 | |
1035 | // / "2" %x30-34 DIGIT ; 200-249 | |
1036 | // / "25" %x30-35 ; 250-255 | |
1037 | size_t iIPv4 = 0; | |
1038 | if (IsDigit(*uri)) | |
1039 | { | |
1040 | ++iIPv4; | |
1041 | ||
846978d7 | 1042 | |
dd65d8c8 RN |
1043 | //each ip part must be between 0-255 (dupe of version in for loop) |
1044 | if( IsDigit(*++uri) && IsDigit(*++uri) && | |
1045 | //100 or less (note !) | |
846978d7 WS |
1046 | !( (*(uri-2) < wxT('2')) || |
1047 | //240 or less | |
1048 | (*(uri-2) == wxT('2') && | |
ce321570 | 1049 | (*(uri-1) < wxT('5') || (*(uri-1) == wxT('5') && *uri <= wxT('5'))) |
dd65d8c8 RN |
1050 | ) |
1051 | ) | |
1052 | ) | |
1053 | { | |
1054 | return false; | |
1055 | } | |
1056 | ||
1057 | if(IsDigit(*uri))++uri; | |
1058 | ||
1059 | //compilers should unroll this loop | |
1060 | for(; iIPv4 < 4; ++iIPv4) | |
1061 | { | |
ce321570 | 1062 | if (*uri != wxT('.') || !IsDigit(*++uri)) |
dd65d8c8 RN |
1063 | break; |
1064 | ||
1065 | //each ip part must be between 0-255 | |
1066 | if( IsDigit(*++uri) && IsDigit(*++uri) && | |
1067 | //100 or less (note !) | |
846978d7 WS |
1068 | !( (*(uri-2) < wxT('2')) || |
1069 | //240 or less | |
1070 | (*(uri-2) == wxT('2') && | |
ce321570 | 1071 | (*(uri-1) < wxT('5') || (*(uri-1) == wxT('5') && *uri <= wxT('5'))) |
dd65d8c8 RN |
1072 | ) |
1073 | ) | |
1074 | ) | |
1075 | { | |
1076 | return false; | |
1077 | } | |
1078 | if(IsDigit(*uri))++uri; | |
1079 | } | |
1080 | } | |
1081 | return iIPv4 == 4; | |
1082 | } | |
1083 | ||
dd65d8c8 RN |
1084 | bool wxURI::ParseIPv6address(const wxChar*& uri) |
1085 | { | |
1086 | // IPv6address = 6( h16 ":" ) ls32 | |
1087 | // / "::" 5( h16 ":" ) ls32 | |
1088 | // / [ h16 ] "::" 4( h16 ":" ) ls32 | |
1089 | // / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32 | |
1090 | // / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32 | |
1091 | // / [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32 | |
1092 | // / [ *4( h16 ":" ) h16 ] "::" ls32 | |
1093 | // / [ *5( h16 ":" ) h16 ] "::" h16 | |
1094 | // / [ *6( h16 ":" ) h16 ] "::" | |
1095 | ||
1096 | size_t numPrefix = 0, | |
1097 | maxPostfix; | |
1098 | ||
1099 | bool bEndHex = false; | |
1100 | ||
1101 | for( ; numPrefix < 6; ++numPrefix) | |
1102 | { | |
1103 | if(!ParseH16(uri)) | |
1104 | { | |
1105 | --uri; | |
1106 | bEndHex = true; | |
1107 | break; | |
1108 | } | |
846978d7 | 1109 | |
ce321570 | 1110 | if(*uri != wxT(':')) |
dd65d8c8 RN |
1111 | { |
1112 | break; | |
1113 | } | |
1114 | } | |
1115 | ||
1116 | if(!bEndHex && !ParseH16(uri)) | |
1117 | { | |
1118 | --uri; | |
1119 | ||
1120 | if (numPrefix) | |
1121 | return false; | |
1122 | ||
ce321570 | 1123 | if (*uri == wxT(':')) |
dd65d8c8 | 1124 | { |
ce321570 | 1125 | if (*++uri != wxT(':')) |
dd65d8c8 RN |
1126 | return false; |
1127 | ||
1128 | maxPostfix = 5; | |
1129 | } | |
1130 | else | |
1131 | maxPostfix = 6; | |
1132 | } | |
1133 | else | |
1134 | { | |
ce321570 | 1135 | if (*uri != wxT(':') || *(uri+1) != wxT(':')) |
dd65d8c8 RN |
1136 | { |
1137 | if (numPrefix != 6) | |
1138 | return false; | |
1139 | ||
ce321570 | 1140 | while (*--uri != wxT(':')) {} |
dd65d8c8 RN |
1141 | ++uri; |
1142 | ||
1143 | const wxChar* uristart = uri; | |
1144 | //parse ls32 | |
1145 | // ls32 = ( h16 ":" h16 ) / IPv4address | |
846978d7 | 1146 | if (ParseH16(uri) && *uri == wxT(':') && ParseH16(uri)) |
dd65d8c8 RN |
1147 | return true; |
1148 | ||
1149 | uri = uristart; | |
1150 | ||
1151 | if (ParseIPv4address(uri)) | |
1152 | return true; | |
1153 | else | |
1154 | return false; | |
1155 | } | |
1156 | else | |
1157 | { | |
1158 | uri += 2; | |
846978d7 | 1159 | |
dd65d8c8 RN |
1160 | if (numPrefix > 3) |
1161 | maxPostfix = 0; | |
1162 | else | |
1163 | maxPostfix = 4 - numPrefix; | |
1164 | } | |
1165 | } | |
1166 | ||
1167 | bool bAllowAltEnding = maxPostfix == 0; | |
1168 | ||
1169 | for(; maxPostfix != 0; --maxPostfix) | |
1170 | { | |
ce321570 | 1171 | if(!ParseH16(uri) || *uri != wxT(':')) |
dd65d8c8 RN |
1172 | return false; |
1173 | } | |
1174 | ||
1175 | if(numPrefix <= 4) | |
1176 | { | |
1177 | const wxChar* uristart = uri; | |
1178 | //parse ls32 | |
1179 | // ls32 = ( h16 ":" h16 ) / IPv4address | |
846978d7 | 1180 | if (ParseH16(uri) && *uri == wxT(':') && ParseH16(uri)) |
dd65d8c8 RN |
1181 | return true; |
1182 | ||
1183 | uri = uristart; | |
1184 | ||
1185 | if (ParseIPv4address(uri)) | |
1186 | return true; | |
1187 | ||
1188 | uri = uristart; | |
846978d7 | 1189 | |
dd65d8c8 RN |
1190 | if (!bAllowAltEnding) |
1191 | return false; | |
1192 | } | |
1193 | ||
1194 | if(numPrefix <= 5 && ParseH16(uri)) | |
1195 | return true; | |
1196 | ||
1197 | return true; | |
1198 | } | |
1199 | ||
1200 | bool wxURI::ParseIPvFuture(const wxChar*& uri) | |
1201 | { | |
1202 | // IPvFuture = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) | |
ce321570 | 1203 | if (*++uri != wxT('v') || !IsHex(*++uri)) |
dd65d8c8 RN |
1204 | return false; |
1205 | ||
1206 | while (IsHex(*++uri)) {} | |
1207 | ||
ce321570 | 1208 | if (*uri != wxT('.') || !(IsUnreserved(*++uri) || IsSubDelim(*uri) || *uri == wxT(':'))) |
dd65d8c8 RN |
1209 | return false; |
1210 | ||
ce321570 | 1211 | while(IsUnreserved(*++uri) || IsSubDelim(*uri) || *uri == wxT(':')) {} |
dd65d8c8 RN |
1212 | |
1213 | return true; | |
1214 | } | |
1215 | ||
1216 | ||
1217 | // --------------------------------------------------------------------------- | |
ce321570 RN |
1218 | // CharToHex |
1219 | // | |
846978d7 | 1220 | // Converts a character into a numeric hexidecimal value, or 0 if the |
ce321570 | 1221 | // passed in character is not a valid hex character |
dd65d8c8 RN |
1222 | // --------------------------------------------------------------------------- |
1223 | ||
ce321570 | 1224 | //static |
409a7ba7 | 1225 | wxChar wxURI::CharToHex(const wxChar& c) |
dd65d8c8 | 1226 | { |
1676a194 WS |
1227 | if ((c >= wxT('A')) && (c <= wxT('Z'))) return wxChar(c - wxT('A') + 0x0A); |
1228 | if ((c >= wxT('a')) && (c <= wxT('z'))) return wxChar(c - wxT('a') + 0x0a); | |
1229 | if ((c >= wxT('0')) && (c <= wxT('9'))) return wxChar(c - wxT('0') + 0x00); | |
dd65d8c8 | 1230 | |
846978d7 | 1231 | return 0; |
dd65d8c8 RN |
1232 | } |
1233 | ||
ce321570 RN |
1234 | // --------------------------------------------------------------------------- |
1235 | // IsXXX | |
1236 | // | |
1237 | // Returns true if the passed in character meets the criteria of the method | |
1238 | // --------------------------------------------------------------------------- | |
1239 | ||
dd65d8c8 RN |
1240 | //! unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" |
1241 | bool wxURI::IsUnreserved (const wxChar& c) | |
846978d7 | 1242 | { return IsAlpha(c) || IsDigit(c) || |
ce321570 RN |
1243 | c == wxT('-') || |
1244 | c == wxT('.') || | |
1245 | c == wxT('_') || | |
1246 | c == wxT('~') //tilde | |
846978d7 | 1247 | ; |
dd65d8c8 RN |
1248 | } |
1249 | ||
1250 | bool wxURI::IsReserved (const wxChar& c) | |
846978d7 | 1251 | { |
dd65d8c8 RN |
1252 | return IsGenDelim(c) || IsSubDelim(c); |
1253 | } | |
1254 | ||
1255 | //! gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" | |
1256 | bool wxURI::IsGenDelim (const wxChar& c) | |
1257 | { | |
ce321570 RN |
1258 | return c == wxT(':') || |
1259 | c == wxT('/') || | |
1260 | c == wxT('?') || | |
1261 | c == wxT('#') || | |
1262 | c == wxT('[') || | |
1263 | c == wxT(']') || | |
1264 | c == wxT('@'); | |
dd65d8c8 RN |
1265 | } |
1266 | ||
1267 | //! sub-delims = "!" / "$" / "&" / "'" / "(" / ")" | |
1268 | //! / "*" / "+" / "," / ";" / "=" | |
1269 | bool wxURI::IsSubDelim (const wxChar& c) | |
1270 | { | |
ce321570 RN |
1271 | return c == wxT('!') || |
1272 | c == wxT('$') || | |
1273 | c == wxT('&') || | |
1274 | c == wxT('\'') || | |
1275 | c == wxT('(') || | |
1276 | c == wxT(')') || | |
1277 | c == wxT('*') || | |
1278 | c == wxT('+') || | |
1279 | c == wxT(',') || | |
1280 | c == wxT(';') || | |
846978d7 | 1281 | c == wxT('=') |
dd65d8c8 RN |
1282 | ; |
1283 | } | |
1284 | ||
1285 | bool wxURI::IsHex(const wxChar& c) | |
ce321570 | 1286 | { return IsDigit(c) || (c >= wxT('a') && c <= wxT('f')) || (c >= wxT('A') && c <= wxT('F')); } |
dd65d8c8 RN |
1287 | |
1288 | bool wxURI::IsAlpha(const wxChar& c) | |
ce321570 | 1289 | { return (c >= wxT('a') && c <= wxT('z')) || (c >= wxT('A') && c <= wxT('Z')); } |
dd65d8c8 RN |
1290 | |
1291 | bool wxURI::IsDigit(const wxChar& c) | |
ce321570 | 1292 | { return c >= wxT('0') && c <= wxT('9'); } |
dd65d8c8 RN |
1293 | |
1294 | ||
dd65d8c8 RN |
1295 | //end of uri.cpp |
1296 | ||
1297 | ||
1298 |