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

Unified Diff: packages/analyzer/lib/source/analysis_options_provider.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/analyzer/lib/plugin/task.dart ('k') | packages/analyzer/lib/source/package_map_provider.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/analyzer/lib/source/analysis_options_provider.dart
diff --git a/packages/analyzer/lib/source/analysis_options_provider.dart b/packages/analyzer/lib/source/analysis_options_provider.dart
new file mode 100644
index 0000000000000000000000000000000000000000..1c05375fc1f32483327cc97d59ccfca9a49dc4ba
--- /dev/null
+++ b/packages/analyzer/lib/source/analysis_options_provider.dart
@@ -0,0 +1,67 @@
+// Copyright (c) 2015, 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.
+
+library source.analysis_options_provider;
+
+import 'package:analyzer/file_system/file_system.dart';
+import 'package:yaml/yaml.dart';
+
+/// Provide the options found in the `.analysis_options` file.
+class AnalysisOptionsProvider {
+ /// The name of the analysis options source file.
+ static const String ANALYSIS_OPTIONS_NAME = '.analysis_options';
+
+ /// Provide the options found in [root]/[ANALYSIS_OPTIONS_NAME].
+ /// Return an empty options map if the file does not exist.
+ Map<String, YamlNode> getOptions(Folder root) {
+ var optionsSource =
+ _readAnalysisOptionsFile(root.getChild(ANALYSIS_OPTIONS_NAME));
+ return getOptionsFromString(optionsSource);
+ }
+
+ /// Provide the options found in [file].
+ /// Return an empty options map if the file does not exist.
+ Map<String, YamlNode> getOptionsFromFile(File file) {
+ var optionsSource = _readAnalysisOptionsFile(file);
+ return getOptionsFromString(optionsSource);
+ }
+
+ /// Provide the options found in [optionsSource].
+ /// Return an empty options map if the source is null.
+ Map<String, YamlNode> getOptionsFromString(String optionsSource) {
+ var options = <String, YamlNode>{};
+ if (optionsSource == null) {
+ return options;
+ }
+ var doc = loadYaml(optionsSource);
+ if ((doc != null) && (doc is! YamlMap)) {
+ throw new Exception(
+ 'Bad options file format (expected map, got ${doc.runtimeType})\n'
+ 'contents of options file:\n'
+ '$optionsSource\n');
+ }
+ if (doc is YamlMap) {
+ doc.forEach((k, v) {
+ if (k is! String) {
+ throw new Exception(
+ 'Bad options file format (expected String scope key, '
+ 'got ${k.runtimeType})');
+ }
+ options[k] = v;
+ });
+ }
+ return options;
+ }
+
+ /// Read the contents of [file] as a string.
+ /// Returns null if file does not exist.
+ String _readAnalysisOptionsFile(File file) {
+ try {
+ return file.readAsStringSync();
+ } on FileSystemException {
+ // File can't be read.
+ return null;
+ }
+ }
+}
« no previous file with comments | « packages/analyzer/lib/plugin/task.dart ('k') | packages/analyzer/lib/source/package_map_provider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698