Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / netwerk / base / public / nsIURLParser.idl
blob11c3e8e9aadd14a0de7e4443bfd8aca47bb02eb3
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Andreas Otte.
19 * Portions created by the Initial Developer are Copyright (C) 2000
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
23 * Darin Fisher <darin@netscape.com>
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
39 #include "nsISupports.idl"
41 /**
42 * nsIURLParser specifies the interface to an URL parser that attempts to
43 * follow the definitions of RFC 2396.
45 [scriptable, uuid(7281076d-cf37-464a-815e-698235802604)]
46 interface nsIURLParser : nsISupports
48 /**
49 * The string to parse in the following methods may be given as a null
50 * terminated string, in which case the length argument should be -1.
52 * Out parameters of the following methods are all optional (ie. the caller
53 * may pass-in a NULL value if the corresponding results are not needed).
54 * Signed out parameters may hold a value of -1 if the corresponding result
55 * is not part of the string being parsed.
57 * The parsing routines attempt to be as forgiving as possible.
60 /**
61 * ParseSpec breaks the URL string up into its 3 major components: a scheme,
62 * an authority section (hostname, etc.), and a path.
64 * spec = <scheme>://<authority><path>
66 void parseURL (in string spec, in long specLen,
67 out unsigned long schemePos, out long schemeLen,
68 out unsigned long authorityPos, out long authorityLen,
69 out unsigned long pathPos, out long pathLen);
71 /**
72 * ParseAuthority breaks the authority string up into its 4 components:
73 * username, password, hostname, and hostport.
75 * auth = <username>:<password>@<hostname>:<port>
77 void parseAuthority (in string authority, in long authorityLen,
78 out unsigned long usernamePos, out long usernameLen,
79 out unsigned long passwordPos, out long passwordLen,
80 out unsigned long hostnamePos, out long hostnameLen,
81 out long port);
83 /**
84 * userinfo = <username>:<password>
86 void parseUserInfo (in string userinfo, in long userinfoLen,
87 out unsigned long usernamePos, out long usernameLen,
88 out unsigned long passwordPos, out long passwordLen);
90 /**
91 * serverinfo = <hostname>:<port>
93 void parseServerInfo (in string serverinfo, in long serverinfoLen,
94 out unsigned long hostnamePos, out long hostnameLen,
95 out long port);
97 /**
98 * ParsePath breaks the path string up into its 4 major components: a file path,
99 * a param string, a query string, and a reference string.
101 * path = <filepath>;<param>?<query>#<ref>
103 void parsePath (in string path, in long pathLen,
104 out unsigned long filepathPos, out long filepathLen,
105 out unsigned long paramPos, out long paramLen,
106 out unsigned long queryPos, out long queryLen,
107 out unsigned long refPos, out long refLen);
110 * ParseFilePath breaks the file path string up into: the directory portion,
111 * file base name, and file extension.
113 * filepath = <directory><basename>.<extension>
115 void parseFilePath (in string filepath, in long filepathLen,
116 out unsigned long directoryPos, out long directoryLen,
117 out unsigned long basenamePos, out long basenameLen,
118 out unsigned long extensionPos, out long extensionLen);
121 * filename = <basename>.<extension>
123 void parseFileName (in string filename, in long filenameLen,
124 out unsigned long basenamePos, out long basenameLen,
125 out unsigned long extensionPos, out long extensionLen);
128 %{C++
129 // url parser key for use with the category manager
130 // mapping from scheme to url parser.
131 #define NS_IURLPARSER_KEY "@mozilla.org/urlparser;1"