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 const char* GetCanonicalEncodingNameByAliasName(const std::string& alias_name) { | |
28 for (auto& encoding_name : kCanonicalEncodingNames) { | |
29 if (alias_name == encoding_name) | |
30 return alias_name.c_str(); | |
dcheng
2017/01/03 21:52:54
return encoding_name; is safer (there's no guarant
Jinsuk Kim
2017/01/03 23:42:30
Done.
| |
31 } | |
32 const char* standards[3] = {"HTML", "MIME", "IANA"}; | |
dcheng
2017/01/03 21:52:54
static, and name this kStandards
Jinsuk Kim
2017/01/03 23:42:30
Done.
| |
33 for (auto& standard : standards) { | |
34 UErrorCode error_code = U_ZERO_ERROR; | |
35 const char* canonical_name = | |
36 ucnv_getStandardName(alias_name.c_str(), standard, &error_code); | |
37 if (U_SUCCESS(error_code) && canonical_name) | |
38 return canonical_name; | |
39 } | |
40 return nullptr; | |
41 } | |
42 } // namespace base | |
OLD | NEW |