Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / url / url_util.h
blob42295250abd560e2076a3beb0491177346d076d2
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef URL_URL_UTIL_H_
6 #define URL_URL_UTIL_H_
8 #include <string>
10 #include "base/strings/string16.h"
11 #include "url/url_canon.h"
12 #include "url/url_export.h"
13 #include "url/url_parse.h"
15 namespace url {
17 // Init ------------------------------------------------------------------------
19 // Initialization is NOT required, it will be implicitly initialized when first
20 // used. However, this implicit initialization is NOT threadsafe. If you are
21 // using this library in a threaded environment and don't have a consistent
22 // "first call" (an example might be calling "AddStandardScheme" with your
23 // special application-specific schemes) then you will want to call initialize
24 // before spawning any threads.
26 // It is OK to call this function more than once, subsequent calls will simply
27 // "noop", unless Shutdown() was called in the mean time. This will also be a
28 // "noop" if other calls to the library have forced an initialization
29 // beforehand.
30 URL_EXPORT void Initialize();
32 // Cleanup is not required, except some strings may leak. For most user
33 // applications, this is fine. If you're using it in a library that may get
34 // loaded and unloaded, you'll want to unload to properly clean up your
35 // library.
36 URL_EXPORT void Shutdown();
38 // Schemes --------------------------------------------------------------------
40 // Adds an application-defined scheme to the internal list of "standard" URL
41 // schemes. This function is not threadsafe and can not be called concurrently
42 // with any other url_util function. It will assert if the list of standard
43 // schemes has been locked (see LockStandardSchemes).
44 URL_EXPORT void AddStandardScheme(const char* new_scheme);
46 // Sets a flag to prevent future calls to AddStandardScheme from succeeding.
48 // This is designed to help prevent errors for multithreaded applications.
49 // Normal usage would be to call AddStandardScheme for your custom schemes at
50 // the beginning of program initialization, and then LockStandardSchemes. This
51 // prevents future callers from mistakenly calling AddStandardScheme when the
52 // program is running with multiple threads, where such usage would be
53 // dangerous.
55 // We could have had AddStandardScheme use a lock instead, but that would add
56 // some platform-specific dependencies we don't otherwise have now, and is
57 // overkill considering the normal usage is so simple.
58 URL_EXPORT void LockStandardSchemes();
60 // Locates the scheme in the given string and places it into |found_scheme|,
61 // which may be NULL to indicate the caller does not care about the range.
63 // Returns whether the given |compare| scheme matches the scheme found in the
64 // input (if any). The |compare| scheme must be a valid canonical scheme or
65 // the result of the comparison is undefined.
66 URL_EXPORT bool FindAndCompareScheme(const char* str,
67 int str_len,
68 const char* compare,
69 Component* found_scheme);
70 URL_EXPORT bool FindAndCompareScheme(const base::char16* str,
71 int str_len,
72 const char* compare,
73 Component* found_scheme);
74 inline bool FindAndCompareScheme(const std::string& str,
75 const char* compare,
76 Component* found_scheme) {
77 return FindAndCompareScheme(str.data(), static_cast<int>(str.size()),
78 compare, found_scheme);
80 inline bool FindAndCompareScheme(const base::string16& str,
81 const char* compare,
82 Component* found_scheme) {
83 return FindAndCompareScheme(str.data(), static_cast<int>(str.size()),
84 compare, found_scheme);
87 // Returns true if the given string represents a standard URL. This means that
88 // either the scheme is in the list of known standard schemes.
89 URL_EXPORT bool IsStandard(const char* spec, const Component& scheme);
90 URL_EXPORT bool IsStandard(const base::char16* spec, const Component& scheme);
92 // TODO(brettw) remove this. This is a temporary compatibility hack to avoid
93 // breaking the WebKit build when this version is synced via Chrome.
94 inline bool IsStandard(const char* spec,
95 int spec_len,
96 const Component& scheme) {
97 return IsStandard(spec, scheme);
100 // URL library wrappers -------------------------------------------------------
102 // Parses the given spec according to the extracted scheme type. Normal users
103 // should use the URL object, although this may be useful if performance is
104 // critical and you don't want to do the heap allocation for the std::string.
106 // As with the Canonicalize* functions, the charset converter can
107 // be NULL to use UTF-8 (it will be faster in this case).
109 // Returns true if a valid URL was produced, false if not. On failure, the
110 // output and parsed structures will still be filled and will be consistent,
111 // but they will not represent a loadable URL.
112 URL_EXPORT bool Canonicalize(const char* spec,
113 int spec_len,
114 bool trim_path_end,
115 CharsetConverter* charset_converter,
116 CanonOutput* output,
117 Parsed* output_parsed);
118 URL_EXPORT bool Canonicalize(const base::char16* spec,
119 int spec_len,
120 bool trim_path_end,
121 CharsetConverter* charset_converter,
122 CanonOutput* output,
123 Parsed* output_parsed);
125 // Resolves a potentially relative URL relative to the given parsed base URL.
126 // The base MUST be valid. The resulting canonical URL and parsed information
127 // will be placed in to the given out variables.
129 // The relative need not be relative. If we discover that it's absolute, this
130 // will produce a canonical version of that URL. See Canonicalize() for more
131 // about the charset_converter.
133 // Returns true if the output is valid, false if the input could not produce
134 // a valid URL.
135 URL_EXPORT bool ResolveRelative(const char* base_spec,
136 int base_spec_len,
137 const Parsed& base_parsed,
138 const char* relative,
139 int relative_length,
140 CharsetConverter* charset_converter,
141 CanonOutput* output,
142 Parsed* output_parsed);
143 URL_EXPORT bool ResolveRelative(const char* base_spec,
144 int base_spec_len,
145 const Parsed& base_parsed,
146 const base::char16* relative,
147 int relative_length,
148 CharsetConverter* charset_converter,
149 CanonOutput* output,
150 Parsed* output_parsed);
152 // Replaces components in the given VALID input url. The new canonical URL info
153 // is written to output and out_parsed.
155 // Returns true if the resulting URL is valid.
156 URL_EXPORT bool ReplaceComponents(const char* spec,
157 int spec_len,
158 const Parsed& parsed,
159 const Replacements<char>& replacements,
160 CharsetConverter* charset_converter,
161 CanonOutput* output,
162 Parsed* out_parsed);
163 URL_EXPORT bool ReplaceComponents(
164 const char* spec,
165 int spec_len,
166 const Parsed& parsed,
167 const Replacements<base::char16>& replacements,
168 CharsetConverter* charset_converter,
169 CanonOutput* output,
170 Parsed* out_parsed);
172 // String helper functions ----------------------------------------------------
174 // Compare the lower-case form of the given string against the given ASCII
175 // string. This is useful for doing checking if an input string matches some
176 // token, and it is optimized to avoid intermediate string copies.
178 // The versions of this function that don't take a b_end assume that the b
179 // string is NULL terminated.
180 URL_EXPORT bool LowerCaseEqualsASCII(const char* a_begin,
181 const char* a_end,
182 const char* b);
183 URL_EXPORT bool LowerCaseEqualsASCII(const char* a_begin,
184 const char* a_end,
185 const char* b_begin,
186 const char* b_end);
187 URL_EXPORT bool LowerCaseEqualsASCII(const base::char16* a_begin,
188 const base::char16* a_end,
189 const char* b);
191 // Unescapes the given string using URL escaping rules.
192 URL_EXPORT void DecodeURLEscapeSequences(const char* input,
193 int length,
194 CanonOutputW* output);
196 // Escapes the given string as defined by the JS method encodeURIComponent. See
197 // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/encodeURIComponent
198 URL_EXPORT void EncodeURIComponent(const char* input,
199 int length,
200 CanonOutput* output);
202 } // namespace url
204 #endif // URL_URL_UTIL_H_