OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2012 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. | |
4 | |
5 #import "net/base/mac/url_conversions.h" | |
6 | |
7 #import <Foundation/Foundation.h> | |
8 | |
9 #include "base/mac/scoped_nsobject.h" | |
10 #include "net/base/escape.h" | |
11 #include "url/gurl.h" | |
12 #include "url/url_canon.h" | |
13 | |
14 namespace net { | |
15 | |
16 NSURL* NSURLWithGURL(const GURL& url) { | |
17 if (!url.is_valid()) | |
18 return nil; | |
19 | |
20 // NSURL strictly enforces RFC 1738 which requires that certain characters | |
21 // are always encoded. These characters are: "<", ">", """, "#", "%", "{", | |
22 // "}", "|", "\", "^", "~", "[", "]", and "`". | |
23 // | |
24 // GURL leaves these characters unencoded in the path, query, and ref. This | |
mmenke
2014/12/03 15:30:13
Maybe "GURL leaves some of these characters..."
erikchen
2014/12/03 18:14:01
Done.
| |
25 // function manually encodes those components, and then passes the result to | |
26 // NSURL. | |
27 GURL::Replacements replacements; | |
28 std::string escaped_path = EscapeNSURLPrecursor(url.path()); | |
29 std::string escaped_query = EscapeNSURLPrecursor(url.query()); | |
30 std::string escaped_ref = EscapeNSURLPrecursor(url.ref()); | |
31 if (!escaped_path.empty()) { | |
32 replacements.SetPath(escaped_path.c_str(), | |
33 url::Component(0, escaped_path.size())); | |
34 } | |
35 if (!escaped_query.empty()) { | |
36 replacements.SetQuery(escaped_query.c_str(), | |
37 url::Component(0, escaped_query.size())); | |
38 } | |
39 if (!escaped_ref.empty()) { | |
40 replacements.SetRef(escaped_ref.c_str(), | |
41 url::Component(0, escaped_ref.size())); | |
42 } | |
43 GURL escaped_url = url.ReplaceComponents(replacements); | |
44 | |
45 base::scoped_nsobject<NSString> escaped_url_string( | |
46 [[NSString alloc] initWithUTF8String:escaped_url.spec().c_str()]); | |
47 return [NSURL URLWithString:escaped_url_string]; | |
mmenke
2014/12/03 15:30:12
Returning a NSString from a scoped_nsobject doesn'
droger
2014/12/03 15:39:51
This code looks fine.
In objective C, everything i
| |
48 } | |
49 | |
50 GURL GURLWithNSURL(NSURL* url) { | |
51 if (url) | |
52 return GURL([[url absoluteString] UTF8String]); | |
53 return GURL(); | |
54 } | |
55 | |
56 } // namespace net | |
OLD | NEW |