OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 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 #include "base/i18n/character_encoding.h" | |
6 | |
7 #include "base/macros.h" | |
8 #include "third_party/icu/source/common/unicode/ucnv.h" | |
9 | |
10 namespace base { | |
11 namespace { | |
12 | |
13 // An array of all supported canonical encoding names. | |
14 const char* const kCanonicalEncodingNames[] = { | |
15 "Big5", "EUC-JP", "EUC-KR", "gb18030", | |
16 "GBK", "IBM866", "ISO-2022-JP", "ISO-8859-10", | |
17 "ISO-8859-13", "ISO-8859-14", "ISO-8859-15", "ISO-8859-16", | |
18 "ISO-8859-2", "ISO-8859-3", "ISO-8859-4", "ISO-8859-5", | |
19 "ISO-8859-6", "ISO-8859-7", "ISO-8859-8", "ISO-8859-8-I", | |
20 "KOI8-R", "KOI8-U", "macintosh", "Shift_JIS", | |
21 "UTF-16LE", "UTF-8", "windows-1250", "windows-1251", | |
22 "windows-1252", "windows-1253", "windows-1254", "windows-1255", | |
23 "windows-1256", "windows-1257", "windows-1258", "windows-874"}; | |
24 | |
25 } // namespace | |
26 | |
27 std::string GetCanonicalEncodingNameByAliasName(const std::string& alias_name) { | |
28 for (size_t i = 0; i < arraysize(kCanonicalEncodingNames); ++i) { | |
jungshik at Google
2016/12/15 18:35:01
nit: why don't you use a new C++ for-each syntax h
Jinsuk Kim
2016/12/16 00:03:10
Done.
| |
29 if (alias_name == kCanonicalEncodingNames[i]) | |
30 return alias_name; | |
31 } | |
32 const char* standards[3] = {"HTML", "MIME", "IANA"}; | |
33 for (size_t i = 0; i < arraysize(standards); ++i) { | |
jungshik at Google
2016/12/15 18:35:01
ditto
Jinsuk Kim
2016/12/16 00:03:10
Done.
| |
34 UErrorCode error_code = U_ZERO_ERROR; | |
35 const char* canonical_name = | |
36 ucnv_getCanonicalName(alias_name.c_str(), standards[i], &error_code); | |
jungshik at Google
2016/12/15 18:35:01
ucnv_getStandardName() has to be used here.
Jinsuk Kim
2016/12/16 00:03:10
Done.
| |
37 if (U_SUCCESS(error_code) && canonical_name) | |
38 return canonical_name; | |
39 } | |
40 return std::string(); | |
41 } | |
42 } // namespace base | |
OLD | NEW |