Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Unified Diff: chrome/common/extensions/extension_l10n_util.cc

Issue 5643002: Add utility function to determine if a locale is valid syntax; this will... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/extension_l10n_util.cc
===================================================================
--- chrome/common/extensions/extension_l10n_util.cc (revision 67716)
+++ chrome/common/extensions/extension_l10n_util.cc (working copy)
@@ -240,6 +240,51 @@
return true;
}
+
+bool IsValidLocaleSyntax(const std::string& locale) {
+ // This implements a simple approximation of RFC 5646; it will accept all
jungshik at Google 2010/12/10 18:32:17 nit: BCP 47 (Best Current Practice 47 : http://www
+ // valid strings and reject (but not all) invalid ones.
+
+ // Check that the length is plausible.
+ if (locale.size() < 2 || locale.size() >= ULOC_FULLNAME_CAPACITY)
+ return false;
+
+ // Check that all characters are alphanumeric, hyphen, or underscore.
Nebojša Ćirić 2010/12/10 17:19:13 What about @ and = signs in de-DE@collation=phoneb
+ for (size_t i = 0; i < locale.size(); i++) {
+ char ch = locale[i];
+ if (!isalnum(ch) && ch != '-' && ch != '_')
jungshik at Google 2010/12/10 18:32:17 isalnum is locale-dependent (C-library locale) and
Nebojša Ćirić 2010/12/10 18:38:50 I think IsAsciiAlpha && IsAsciiDigit would work he
+ return false;
+ }
+
+ // Check that the initial token before the first hyphen or underscore is
+ // 1, 2, or 3 characters, and all others are 1 - 8 characters.
+ // (Tokenize/StringTokenizer don't work here, they collapse multiple
+ // delimiters into one.)
+ int token_len = 0;
+ int token_index = 0;
+ for (size_t i = 0; i < locale.size(); i++) {
+ char ch = locale[i];
+ if (ch == '-' || ch == '_') {
+ if (token_index == 0 && (token_len < 1 || token_len > 3)) {
jungshik at Google 2010/12/10 18:32:17 can you tighten up a bit here? although BCP 47 res
+ return false;
+ } else if (token_len < 1 || token_len > 8) {
+ return false;
+ }
+ token_index++;
+ token_len = 0;
+ } else {
+ token_len++;
+ }
+ }
+ if (token_index == 0 && (token_len < 1 || token_len > 3)) {
+ return false;
+ } else if (token_len < 1 || token_len > 8) {
+ return false;
+ }
+
+ return true;
+}
Nebojša Ćirić 2010/12/10 17:19:13 I think app/l10n_util would be a better place for
jungshik at Google 2010/12/10 18:32:17 I agree
+
// Loads contents of the messages file for given locale. If file is not found,
// or there was parsing error we return NULL and set |error|.
// Caller owns the returned object.
« no previous file with comments | « chrome/common/extensions/extension_l10n_util.h ('k') | chrome/common/extensions/extension_l10n_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698