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

Unified Diff: packages/intl/tool/generate_locale_data_files.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 months 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
« no previous file with comments | « packages/intl/test/number_test_data.dart ('k') | packages/logging/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/intl/tool/generate_locale_data_files.dart
diff --git a/packages/intl/tool/generate_locale_data_files.dart b/packages/intl/tool/generate_locale_data_files.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e6b49d788066c88382bd133980d183fdd7e62dca
--- /dev/null
+++ b/packages/intl/tool/generate_locale_data_files.dart
@@ -0,0 +1,78 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/**
+ * A utility program to take locale data represented as a Dart map whose keys
+ * are locale names and write it into individual JSON files named by locale.
+ * This should be run any time the locale data changes.
+ *
+ * The files are written under "data/dates", in two subdirectories, "symbols"
+ * and "patterns". In "data/dates" it will also generate "locale_list.dart",
+ * which is sourced by the date_symbol_data... files.
+ */
+
+import '../lib/date_symbol_data_local.dart';
+import '../lib/date_time_patterns.dart';
+import '../lib/intl.dart';
+import 'dart:convert';
+import 'dart:io';
+import '../test/data_directory.dart';
+import 'package:path/path.dart' as path;
+
+main() {
+ initializeDateFormatting("en_IGNORED", null);
+ writeSymbolData();
+ writePatternData();
+ writeLocaleList();
+}
+
+void writeLocaleList() {
+ var file = new File(path.join(dataDirectory, 'locale_list.dart'));
+ var output = file.openWrite();
+ output.write(
+ '// Copyright (c) 2012, the Dart project authors. Please see the '
+ 'AUTHORS file\n// for details. All rights reserved. Use of this source'
+ 'code is governed by a\n// BSD-style license that can be found in the'
+ ' LICENSE file.\n\n'
+ '/// Hard-coded list of all available locales for dates.\n');
+ output.write('final availableLocalesForDateFormatting = const [');
+ List<String> allLocales = DateFormat.allLocalesWithSymbols();
+ allLocales.forEach((locale) {
+ output.write('"$locale"');
+ if (locale == allLocales.last) {
+ output.write('];');
+ } else {
+ output.write(',\n ');
+ }
+ });
+ output.close();
+}
+
+void writeSymbolData() {
+ dateTimeSymbolMap()
+ .forEach((locale, symbols) => writeSymbols(locale, symbols));
+}
+
+void writePatternData() {
+ dateTimePatternMap()
+ .forEach((locale, patterns) => writePatterns(locale, patterns));
+}
+
+void writeSymbols(locale, symbols) {
+ var file = new File(path.join(dataDirectory, 'symbols', '${locale}.json'));
+ var output = file.openWrite();
+ writeToJSON(symbols, output);
+ output.close();
+}
+
+void writePatterns(locale, patterns) {
+ var file = new File(path.join(dataDirectory, 'patterns', '${locale}.json'));
+ file.openWrite()
+ ..write(JSON.encode(patterns))
+ ..close();
+}
+
+void writeToJSON(dynamic data, IOSink out) {
+ out.write(JSON.encode(data.serializeToMap()));
+}
« no previous file with comments | « packages/intl/test/number_test_data.dart ('k') | packages/logging/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698