]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/uri.tex
assert if opening more than one find/replace dialog under the same parent -- this...
[wxWidgets.git] / docs / latex / wx / uri.tex
CommitLineData
dd65d8c8
RN
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: uri.tex
3%% Purpose: wxURI docs
4%% Author: Ryan Norton <wxprojects@comcast.net>
5%% Modified by:
6%% Created: 7/7/2004
7%% RCS-ID: $Id$
8%% Copyright: (c) Ryan Norton
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxURI}}\label{wxuri}
13
14wxURI is used to extract information from
15a URI (Uniform Resource Identifier).
16
17For information about URIs, see
4cc52142 18\urlref{RFC 3986}{http://www.ietf.org/rfc/rfc3986.txt}.
dd65d8c8
RN
19
20In short, a URL \em{is} a URI. In other
153fe6e7 21words, URL is a subset of a URI - all
dd65d8c8
RN
22acceptable URLs are also acceptable URIs.
23
ce321570
RN
24wxURI automatically escapes invalid characters in a string,
25so there is no chance of wxURI "failing" on construction/creation.
26
dd65d8c8
RN
27wxURI supports copy construction and standard assignment
28operators. wxURI can also be inherited from to provide
29furthur functionality.
30
31\wxheading{Derived from}
32
b60b2ec8 33\helpref{wxObject}{wxobject}
dd65d8c8
RN
34
35\wxheading{Include files}
36
37<uri.h>
38
39\latexignore{\rtfignore{\wxheading{Members}}}
40
aed31418 41\membersection{Obtaining individual components}\label{obtainingwxuricomponents}
dd65d8c8
RN
42
43To obtain individual components you can use
ce321570 44one of the following methods
dd65d8c8
RN
45
46\helpref{GetScheme}{wxurigetscheme}\\
4860d40d 47\helpref{GetUserInfo}{wxurigetuserinfo}\\
dd65d8c8
RN
48\helpref{GetServer}{wxurigetserver}\\
49\helpref{GetPort}{wxurigetserver}\\
50\helpref{GetPath}{wxurigetpath}\\
51\helpref{GetQuery}{wxurigetquery}\\
52\helpref{GetFragment}{wxurigetfragment}
53
54However, you should check HasXXX before
ce321570
RN
55calling a get method, which determines whether or not the component referred
56to by the method is defined according to RFC 2396.
57
ed6d7010 58Consider an undefined component equivalent to a
ce321570
RN
59NULL C string.\\
60\\
dd65d8c8 61\helpref{HasScheme}{wxurihasscheme}\\
4860d40d 62\helpref{HasUserInfo}{wxurihasuserinfo}\\
dd65d8c8
RN
63\helpref{HasServer}{wxurihasserver}\\
64\helpref{HasPort}{wxurihasserver}\\
65\helpref{HasPath}{wxurihaspath}\\
66\helpref{HasQuery}{wxurihasquery}\\
67\helpref{HasFragment}{wxurihasfragment}
68
69Example:
70\begin{verbatim}
71//protocol will hold the http protocol (i.e. "http")
72wxString protocol;
73wxURI myuri(wxT("http://mysite.com"));
74if(myuri.HasScheme())
75 protocol = myuri.GetScheme();
76\end{verbatim}
77
dd65d8c8
RN
78\membersection{wxURI::wxURI}\label{wxuriwxuri}
79
80\func{}{wxURI}{\void}
81
153fe6e7 82Creates an empty URI.
dd65d8c8
RN
83
84\func{}{wxURI}{\param{const wxChar* }{uri}}
85
153fe6e7 86Constructor for quick creation.
dd65d8c8
RN
87
88\docparam{uri}{string to initialize with}
89
153fe6e7 90\func{}{wxURI}{\param{const wxURI\& }{uri}}
dd65d8c8
RN
91
92Copies this URI from another URI.
93
94\docparam{uri}{URI (Uniform Resource Identifier) to initialize with}
95
96
86470d43
RN
97\membersection{wxURI::BuildURI}\label{wxuribuilduri}
98
99\constfunc{wxString}{BuildURI}{\void}
100
3103e8a9 101Builds the URI from its individual components and adds proper separators.
86470d43
RN
102
103If the URI is not a reference or is not resolved,
104the URI that is returned from Get is the same one
105passed to Create.
106
107
108\membersection{wxURI::BuildUnescapedURI}\label{wxuribuildunescapeduri}
109
110\constfunc{wxString}{BuildUnescapedURI}{\void}
111
3103e8a9 112Builds the URI from its individual components, adds proper separators, and
86470d43
RN
113returns escape sequences to normal characters.
114
115Note that it is preferred to call this over Unescape(BuildURI()) since
47261ba0 116\helpref{BuildUnescapedURI}{wxuribuildunescapeduri} performs some optimizations over the plain method.
86470d43
RN
117
118
dd65d8c8
RN
119\membersection{wxURI::Create}\label{wxuricreate}
120
ed6d7010 121\func{const wxChar*}{Create}{\param{const wxString&}{uri}}
dd65d8c8 122
e6a156f9 123Creates this URI from the string \arg{uri}.
dd65d8c8 124
ce321570
RN
125Returns the position at which parsing stopped (there
126is no such thing as an "invalid" wxURI).
127
dd65d8c8
RN
128\docparam{uri}{string to initialize from}
129
dd65d8c8
RN
130
131\membersection{wxURI::GetFragment}\label{wxurigetfragment}
132
133\constfunc{const wxString&}{GetFragment}{\void}
134
135Obtains the fragment of this URI.
136
137The fragment of a URI is the last value of the URI,
138and is the value after a '#' character after the path
139of the URI.
140
141\tt{http://mysite.com/mypath\#<fragment>}
142
143\membersection{wxURI::GetHostType}\label{wxurigethosttype}
144
145\constfunc{const HostType\&}{GetHostType}{\void}
146
147Obtains the host type of this URI, which is of type
148wxURI::HostType:
149
150\twocolwidtha{7cm}
151\begin{twocollist}\itemsep=0pt
152\twocolitem{{\bf wxURI\_REGNAME}}{Server is a host name, or the Server component itself is undefined.}
153\twocolitem{{\bf wxURI\_IPV4ADDRESS}}{Server is a IP version 4 address (XXX.XXX.XXX.XXX)}
154\twocolitem{{\bf wxURI\_IPV6ADDRESS}}{Server is a IP version 6 address ((XXX:)XXX::(XXX)XXX:XXX}
155\twocolitem{{\bf wxURI\_IPVFUTURE}}{Server is an IP address, but not versions 4 or 6}
156\end{twocollist}
157
4860d40d
RN
158
159\membersection{wxURI::GetPassword}\label{wxurigetpassword}
160
161\constfunc{const wxString&}{GetPassword}{\void}
162
163Returns the password part of the userinfo component of
164this URI. Note that this is explicitly depreciated by
165RFC 1396 and should generally be avoided if possible.
166
167\tt{http://<user>:<password>@mysite.com/mypath}
168
169
dd65d8c8
RN
170\membersection{wxURI::GetPath}\label{wxurigetpath}
171
172\constfunc{const wxString&}{GetPath}{\void}
173
174Returns the (normalized) path of the URI.
175
176The path component of a URI comes
177directly after the scheme component
178if followed by zero or one slashes ('/'),
179or after the server/port component.
180
181Absolute paths include the leading '/'
182character.
183
184\tt{http://mysite.com<path>}
185
186\membersection{wxURI::GetPort}\label{wxurigetport}
187
188\constfunc{const wxString&}{GetPort}{\void}
189
190Returns a string representation of the URI's port.
191
192The Port of a URI is a value after the server, and
193must come after a colon (:).
194
195\tt{http://mysite.com:<port>}
196
197Note that you can easily get the numeric value of the port
198by using wxAtoi or wxString::Format.
199
200\membersection{wxURI::GetQuery}\label{wxurigetquery}
201
202\constfunc{const wxString&}{GetQuery}{\void}
203
204Returns the Query component of the URI.
205
206The query component is what is commonly passed to a
207cgi application, and must come after the path component,
208and after a '?' character.
209
210\tt{http://mysite.com/mypath?<query>}
211
212
213\membersection{wxURI::GetScheme}\label{wxurigetscheme}
214
215\constfunc{const wxString&}{GetScheme}{\void}
216
217Returns the Scheme component of the URI.
218
219The first part of the uri.
220
221\tt{<scheme>://mysite.com}
222
223
224\membersection{wxURI::GetServer}\label{wxurigetserver}
225
226\constfunc{const wxString&}{GetServer}{\void}
227
228Returns the Server component of the URI.
229
230The server of the uri can be a server name or
231a type of ip address. See
232\helpref{GetHostType}{wxurigethosttype} for the
233possible values for the host type of the
234server component.
235
236\tt{http://<server>/mypath}
237
238
239\membersection{wxURI::GetUser}\label{wxurigetuser}
240
241\constfunc{const wxString&}{GetUser}{\void}
242
4860d40d
RN
243Returns the username part of the userinfo component of
244this URI. Note that this is explicitly depreciated by
245RFC 1396 and should generally be avoided if possible.
246
247\tt{http://<user>:<password>@mysite.com/mypath}
248
249
250\membersection{wxURI::GetUserInfo}\label{wxurigetuserinfo}
251
252\constfunc{const wxString&}{GetUserInfo}{\void}
253
254Returns the UserInfo component of the URI.
dd65d8c8
RN
255
256The component of a URI before the server component
257that is postfixed by a '@' character.
258
4860d40d
RN
259\tt{http://<userinfo>@mysite.com/mypath}
260
dd65d8c8
RN
261
262\membersection{wxURI::HasFragment}\label{wxurihasfragment}
263
264\constfunc{bool}{HasFragment}{\void}
265
e6a156f9 266Returns \true if the Fragment component of the URI exists.
dd65d8c8 267
4860d40d 268
dd65d8c8
RN
269\membersection{wxURI::HasPath}\label{wxurihaspath}
270
271\constfunc{bool}{HasPath}{\void}
272
e6a156f9 273Returns \true if the Path component of the URI exists.
dd65d8c8 274
4860d40d 275
dd65d8c8
RN
276\membersection{wxURI::HasPort}\label{wxurihasport}
277
278\constfunc{bool}{HasPort}{\void}
279
e6a156f9 280Returns \true if the Port component of the URI exists.
dd65d8c8
RN
281
282
283\membersection{wxURI::HasQuery}\label{wxurihasquery}
284
285\constfunc{bool}{HasQuery}{\void}
286
e6a156f9 287Returns \true if the Query component of the URI exists.
dd65d8c8
RN
288
289
290\membersection{wxURI::HasScheme}\label{wxurihasscheme}
291
292\constfunc{bool}{HasScheme}{\void}
293
e6a156f9 294Returns \true if the Scheme component of the URI exists.
dd65d8c8
RN
295
296
297\membersection{wxURI::HasServer}\label{wxurihasserver}
298
299\constfunc{bool}{HasServer}{\void}
300
e6a156f9 301Returns \true if the Server component of the URI exists.
dd65d8c8
RN
302
303
2f43eb98 304\membersection{wxURI::HasUser}\label{wxurihasuserinfo}
dd65d8c8
RN
305
306\constfunc{bool}{HasUser}{\void}
307
e6a156f9 308Returns \true if the User component of the URI exists.
dd65d8c8
RN
309
310
dd65d8c8
RN
311\membersection{wxURI::IsReference}\label{wxuriisreference}
312
313\constfunc{bool}{IsReference}{\void}
314
e6a156f9 315Returns \true if a valid [absolute] URI, otherwise this URI
dd65d8c8 316is a URI reference and not a full URI, and IsReference
e6a156f9 317returns \false.
dd65d8c8
RN
318
319
320\membersection{wxURI::operator ==}\label{wxurioperatorcompare}
321
153fe6e7 322\func{void}{operator ==}{\param{const wxURI\& }{uricomp}}
dd65d8c8 323
e6a156f9
VZ
324Compares this URI to another URI, and returns \true if
325this URI equals \arg{uricomp}, otherwise it returns \false.
dd65d8c8
RN
326
327\docparam{uricomp}{URI to compare to}
328
329
dd65d8c8
RN
330\membersection{wxURI::Resolve}\label{wxuriresolve}
331
8404931e 332\func{void}{Resolve}{\param{const wxURI\& }{base}, \param{int }{flags = \texttt{wxURI\_STRICT}}}
dd65d8c8
RN
333
334Inherits this URI from a base URI - components that do not
335exist in this URI are copied from the base, and if this URI's
336path is not an absolute path (prefixed by a '/'), then this URI's
337path is merged with the base's path.
338
339For instance, resolving "../mydir" from "http://mysite.com/john/doe"
340results in the scheme (http) and server (mysite.com) being copied into
341this URI, since they do not exist. In addition, since the path
342of this URI is not absolute (does not begin with '/'), the path
343of the base's is merged with this URI's path, resulting in the URI
344"http://mysite.com/john/mydir".
345
346\docparam{base}{Base URI to inherit from. Must be a full URI and not a reference}
8404931e 347\docparam{flags}{Currently either \texttt{wxURI\_STRICT} or $0$, in non strict
00a1d2e0 348mode some compatibility layers are enabled to allow loopholes from RFCs prior
8404931e 349to 2396}
dd65d8c8 350
86470d43
RN
351\membersection{wxURI::Unescape}\label{wxuriunescape}
352
353\func{wxString}{Unescape}{\param{const wxString\& }{uri}}
354
355Translates all escape sequences (% hex hex) of \arg{uri} into
356normal characters and returns the result.
357
47261ba0 358This is the preferred over deprecated wxURL::ConvertFromURI.
86470d43 359
47261ba0 360If you want to unescape an entire wxURI, use \helpref{BuildUnescapedURI}{wxuribuildunescapeduri} instead,
86470d43
RN
361as it performs some optimizations over this method.
362
363\docparam{uri}{string with escaped characters to convert}
364
365