]>
Commit | Line | Data |
---|---|---|
b1ab9ed8 A |
1 | /* |
2 | * Copyright (c) 2000-2002,2004 Apple Computer, Inc. All Rights Reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | ||
24 | ||
25 | // | |
26 | // url - URL object with decomposition | |
27 | // | |
28 | // This is a wrapper around CoreFoundation CFURL objects, | |
29 | // without any attempt at re-interpretation (other than cleaning | |
30 | // up the obvious CFishness). | |
31 | // | |
32 | #ifndef _H_URL | |
33 | #define _H_URL | |
34 | ||
35 | #include <string> | |
36 | #include "ip++.h" | |
37 | ||
38 | ||
39 | struct __CFURL; | |
40 | using IPPlusPlus::IPPort; | |
41 | ||
42 | ||
43 | namespace Security { | |
44 | namespace Network { | |
45 | ||
46 | ||
47 | // | |
48 | // A thin encapsulation of a URL | |
49 | // | |
50 | class URL { | |
51 | public: | |
52 | URL(); | |
53 | URL(const char *url); | |
54 | URL(const char *url, const URL &base); | |
55 | ~URL(); | |
56 | ||
57 | operator string() const; | |
58 | ||
59 | string scheme() const; | |
60 | string host() const; | |
61 | IPPort port(IPPort defaultPort = 0) const; | |
62 | string path() const; | |
63 | string resourceSpec() const; | |
64 | string fullPath() const; | |
65 | ||
66 | string username() const; | |
67 | string password() const; | |
68 | string basename() const; | |
69 | string extension() const; | |
70 | ||
71 | void recreateURL(const char* url); | |
72 | ||
73 | private: | |
74 | const __CFURL *ref; | |
75 | }; | |
76 | ||
77 | ||
78 | } // end namespace Network | |
79 | } // end namespace Security | |
80 | ||
81 | ||
82 | #endif /* _H_URL */ |