OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library source.sdk_ext; | 5 library source.sdk_ext; |
6 | 6 |
7 import 'dart:convert'; | 7 import 'dart:convert'; |
8 import 'dart:core' hide Resource; | 8 import 'dart:core' hide Resource; |
9 | 9 |
10 import 'package:analyzer/file_system/file_system.dart'; | 10 import 'package:analyzer/file_system/file_system.dart'; |
11 import 'package:analyzer/src/generated/java_io.dart' show JavaFile; | 11 import 'package:analyzer/src/generated/java_io.dart' show JavaFile; |
12 import 'package:analyzer/src/generated/source.dart'; | 12 import 'package:analyzer/src/generated/source.dart'; |
13 import 'package:analyzer/src/generated/source_io.dart' show FileBasedSource; | 13 import 'package:analyzer/src/generated/source_io.dart' show FileBasedSource; |
14 import 'package:path/path.dart' as pathos; | 14 import 'package:path/path.dart' as pathos; |
15 | 15 |
16 /// Given a packageMap (see [PackageMapProvider]), check in each package's lib | 16 /// Given a packageMap (see [PackageMapProvider]), check in each package's lib |
17 /// directory for the existence of a `_sdkext` file. This file must contain a | 17 /// directory for the existence of a `_sdkext` file. This file must contain a |
18 /// JSON encoded map. Each key in the map is a `dart:` library name. Each value | 18 /// JSON encoded map. Each key in the map is a `dart:` library name. Each value |
19 /// is a path (relative to the directory containing `_sdkext`) to a dart script | 19 /// is a path (relative to the directory containing `_sdkext`) to a dart script |
20 /// for the given library. For example: | 20 /// for the given library. For example: |
21 /// { | 21 /// { |
22 /// "dart:sky": "../sdk_ext/dart_sky.dart" | 22 /// "dart:sky": "../sdk_ext/dart_sky.dart" |
23 /// } | 23 /// } |
24 /// | 24 /// |
25 /// If a key doesn't begin with `dart:` it is ignored. | 25 /// If a key doesn't begin with `dart:` it is ignored. |
26 class SdkExtUriResolver extends UriResolver { | 26 class SdkExtUriResolver extends UriResolver { |
27 static const String SDK_EXT_NAME = '_sdkext'; | 27 static const String SDK_EXT_NAME = '_sdkext'; |
28 static const String DART_COLON_PREFIX = 'dart:'; | 28 static const String DART_COLON_PREFIX = 'dart:'; |
29 | 29 |
30 final Map<String, String> _urlMappings = <String,String>{}; | 30 final Map<String, String> _urlMappings = <String, String>{}; |
31 | 31 |
32 /// Construct a [SdkExtUriResolver] from a package map | 32 /// Construct a [SdkExtUriResolver] from a package map |
33 /// (see [PackageMapProvider]). | 33 /// (see [PackageMapProvider]). |
34 SdkExtUriResolver(Map<String, List<Folder>> packageMap) { | 34 SdkExtUriResolver(Map<String, List<Folder>> packageMap) { |
35 if (packageMap == null) { | 35 if (packageMap == null) { |
36 return; | 36 return; |
37 } | 37 } |
38 packageMap.forEach(_processPackage); | 38 packageMap.forEach(_processPackage); |
39 } | 39 } |
40 | 40 |
41 /// Number of sdk extensions. | 41 /// Number of sdk extensions. |
42 int get length => _urlMappings.length; | 42 int get length => _urlMappings.length; |
43 | 43 |
44 /// Return the path mapping for [libName] or null if there is none. | 44 /// Return the path mapping for [libName] or null if there is none. |
45 String operator[](String libName) => _urlMappings[libName]; | 45 String operator [](String libName) => _urlMappings[libName]; |
46 | 46 |
47 /// Programmatically add a new SDK extension given a JSON description | 47 /// Programmatically add a new SDK extension given a JSON description |
48 /// ([sdkExtJSON]) and a lib directory ([libDir]). | 48 /// ([sdkExtJSON]) and a lib directory ([libDir]). |
49 void addSdkExt(String sdkExtJSON, Folder libDir) { | 49 void addSdkExt(String sdkExtJSON, Folder libDir) { |
50 _processSdkExt(sdkExtJSON, libDir); | 50 _processSdkExt(sdkExtJSON, libDir); |
51 } | 51 } |
52 | 52 |
53 @override | 53 @override |
54 Source resolveAbsolute(Uri importUri) { | 54 Source resolveAbsolute(Uri importUri, [Uri actualUri]) { |
55 String libraryName = _libraryName(importUri); | 55 String libraryName = _libraryName(importUri); |
56 String partPath = _partPath(importUri); | 56 String partPath = _partPath(importUri); |
57 // Lookup library name in mappings. | 57 // Lookup library name in mappings. |
58 String mapping = _urlMappings[libraryName]; | 58 String mapping = _urlMappings[libraryName]; |
59 if (mapping == null) { | 59 if (mapping == null) { |
60 // Not found. | 60 // Not found. |
61 return null; | 61 return null; |
62 } | 62 } |
63 // This mapping points to the main entry file of the sdk extension. | 63 // This mapping points to the main entry file of the sdk extension. |
64 Uri libraryEntry = new Uri.file(mapping); | 64 Uri libraryEntry = new Uri.file(mapping); |
65 if (!libraryEntry.isAbsolute) { | 65 if (!libraryEntry.isAbsolute) { |
66 // We expect an absolute path. | 66 // We expect an absolute path. |
67 return null; | 67 return null; |
68 } | 68 } |
69 | 69 |
70 if (partPath != null) { | 70 if (partPath != null) { |
71 return _resolvePart(libraryEntry, partPath, importUri); | 71 return _resolvePart(libraryEntry, partPath, importUri); |
72 } else { | 72 } else { |
73 return _resolveEntry(libraryEntry, importUri); | 73 return _resolveEntry(libraryEntry, importUri); |
74 } | 74 } |
75 } | 75 } |
76 | 76 |
77 @override | 77 @override |
78 Uri restoreAbsolute(Source source) { | 78 Uri restoreAbsolute(Source source) { |
79 String libraryName = _libraryName(source.uri); | 79 String extensionName = _findExtensionNameFor(source.fullName); |
80 if (_registeredSdkExtension(libraryName)) { | 80 if (extensionName != null) { |
81 return source.uri; | 81 return Uri.parse(extensionName); |
82 } | 82 } |
| 83 // TODO(johnmccutchan): Handle restoring parts. |
83 return null; | 84 return null; |
84 } | 85 } |
85 | 86 |
| 87 /// Return the extension name for [fullName] or `null`. |
| 88 String _findExtensionNameFor(String fullName) { |
| 89 var result; |
| 90 _urlMappings.forEach((extensionName, pathMapping) { |
| 91 if (pathMapping == fullName) { |
| 92 result = extensionName; |
| 93 } |
| 94 }); |
| 95 return result; |
| 96 } |
| 97 |
86 /// Return the library name of [importUri]. | 98 /// Return the library name of [importUri]. |
87 String _libraryName(Uri importUri) { | 99 String _libraryName(Uri importUri) { |
88 var uri = importUri.toString(); | 100 var uri = importUri.toString(); |
89 int index = uri.indexOf('/'); | 101 int index = uri.indexOf('/'); |
90 if (index >= 0) { | 102 if (index >= 0) { |
91 return uri.substring(0, index); | 103 return uri.substring(0, index); |
92 } | 104 } |
93 return uri; | 105 return uri; |
94 } | 106 } |
95 | 107 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 String _readDotSdkExt(Folder libDir) { | 157 String _readDotSdkExt(Folder libDir) { |
146 var file = libDir.getChild(SDK_EXT_NAME); | 158 var file = libDir.getChild(SDK_EXT_NAME); |
147 try { | 159 try { |
148 return file.readAsStringSync(); | 160 return file.readAsStringSync(); |
149 } on FileSystemException { | 161 } on FileSystemException { |
150 // File can't be read. | 162 // File can't be read. |
151 return null; | 163 return null; |
152 } | 164 } |
153 } | 165 } |
154 | 166 |
155 /// Returns true if [libraryName] is a registered sdk extension. | |
156 bool _registeredSdkExtension(String libraryName) { | |
157 return _urlMappings[libraryName] != null; | |
158 } | |
159 | |
160 /// Resolve an import of an sdk extension. | 167 /// Resolve an import of an sdk extension. |
161 Source _resolveEntry(Uri libraryEntry, Uri importUri) { | 168 Source _resolveEntry(Uri libraryEntry, Uri importUri) { |
162 // Library entry. | 169 // Library entry. |
163 JavaFile javaFile = new JavaFile.fromUri(libraryEntry); | 170 JavaFile javaFile = new JavaFile.fromUri(libraryEntry); |
164 return new FileBasedSource(javaFile, importUri); | 171 return new FileBasedSource(javaFile, importUri); |
165 } | 172 } |
166 | 173 |
167 /// Resolve a 'part' statement inside an sdk extension. | 174 /// Resolve a 'part' statement inside an sdk extension. |
168 Source _resolvePart(Uri libraryEntry, String partPath, Uri importUri) { | 175 Source _resolvePart(Uri libraryEntry, String partPath, Uri importUri) { |
169 // Library part. | 176 // Library part. |
170 var directory = pathos.dirname(libraryEntry.path); | 177 var directory = pathos.dirname(libraryEntry.path); |
171 var partUri = new Uri.file(pathos.join(directory, partPath)); | 178 var partUri = new Uri.file(pathos.join(directory, partPath)); |
172 assert(partUri.isAbsolute); | 179 assert(partUri.isAbsolute); |
173 JavaFile javaFile = new JavaFile.fromUri(partUri); | 180 JavaFile javaFile = new JavaFile.fromUri(partUri); |
174 return new FileBasedSource(javaFile, importUri); | 181 return new FileBasedSource(javaFile, importUri); |
175 } | 182 } |
176 } | 183 } |
OLD | NEW |