OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library source.sdk_ext; |
| 6 |
| 7 import 'dart:convert'; |
| 8 import 'dart:core' hide Resource; |
| 9 |
| 10 import 'package:analyzer/file_system/file_system.dart'; |
| 11 import 'package:analyzer/src/generated/java_io.dart' show JavaFile; |
| 12 import 'package:analyzer/src/generated/source.dart'; |
| 13 import 'package:analyzer/src/generated/source_io.dart' show FileBasedSource; |
| 14 import 'package:path/path.dart' as pathos; |
| 15 |
| 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 |
| 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 |
| 20 /// for the given library. For example: |
| 21 /// { |
| 22 /// "dart:sky": "../sdk_ext/dart_sky.dart" |
| 23 /// } |
| 24 /// |
| 25 /// If a key doesn't begin with `dart:` it is ignored. |
| 26 class SdkExtUriResolver extends UriResolver { |
| 27 static const String SDK_EXT_NAME = '_sdkext'; |
| 28 static const String DART_COLON_PREFIX = 'dart:'; |
| 29 |
| 30 final Map<String, String> _urlMappings = <String,String>{}; |
| 31 |
| 32 /// Construct a [SdkExtUriResolver] from a package map |
| 33 /// (see [PackageMapProvider]). |
| 34 SdkExtUriResolver(Map<String, List<Folder>> packageMap) { |
| 35 if (packageMap == null) { |
| 36 return; |
| 37 } |
| 38 packageMap.forEach(_processPackage); |
| 39 } |
| 40 |
| 41 /// Number of sdk extensions. |
| 42 int get length => _urlMappings.length; |
| 43 |
| 44 /// Return the path mapping for [libName] or null if there is none. |
| 45 String operator[](String libName) => _urlMappings[libName]; |
| 46 |
| 47 /// Programmatically add a new SDK extension given a JSON description |
| 48 /// ([sdkExtJSON]) and a lib directory ([libDir]). |
| 49 void addSdkExt(String sdkExtJSON, Folder libDir) { |
| 50 _processSdkExt(sdkExtJSON, libDir); |
| 51 } |
| 52 |
| 53 @override |
| 54 Source resolveAbsolute(Uri importUri, [Uri actualUri]) { |
| 55 String libraryName = _libraryName(importUri); |
| 56 String partPath = _partPath(importUri); |
| 57 // Lookup library name in mappings. |
| 58 String mapping = _urlMappings[libraryName]; |
| 59 if (mapping == null) { |
| 60 // Not found. |
| 61 return null; |
| 62 } |
| 63 // This mapping points to the main entry file of the sdk extension. |
| 64 Uri libraryEntry = new Uri.file(mapping); |
| 65 if (!libraryEntry.isAbsolute) { |
| 66 // We expect an absolute path. |
| 67 return null; |
| 68 } |
| 69 |
| 70 if (partPath != null) { |
| 71 return _resolvePart(libraryEntry, partPath, importUri); |
| 72 } else { |
| 73 return _resolveEntry(libraryEntry, importUri); |
| 74 } |
| 75 } |
| 76 |
| 77 @override |
| 78 Uri restoreAbsolute(Source source) { |
| 79 String extensionName = _findExtensionNameFor(source.fullName); |
| 80 if (extensionName != null) { |
| 81 return Uri.parse(extensionName); |
| 82 } |
| 83 // TODO(johnmccutchan): Handle restoring parts. |
| 84 return null; |
| 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 |
| 98 /// Return the library name of [importUri]. |
| 99 String _libraryName(Uri importUri) { |
| 100 var uri = importUri.toString(); |
| 101 int index = uri.indexOf('/'); |
| 102 if (index >= 0) { |
| 103 return uri.substring(0, index); |
| 104 } |
| 105 return uri; |
| 106 } |
| 107 |
| 108 /// Return the part path of [importUri]. |
| 109 String _partPath(Uri importUri) { |
| 110 var uri = importUri.toString(); |
| 111 int index = uri.indexOf('/'); |
| 112 if (index >= 0) { |
| 113 return uri.substring(index + 1); |
| 114 } |
| 115 return null; |
| 116 } |
| 117 |
| 118 /// Given a package [name] and a list of folders ([libDirs]), |
| 119 /// add any found sdk extensions. |
| 120 void _processPackage(String name, List<Folder> libDirs) { |
| 121 for (var libDir in libDirs) { |
| 122 var sdkExt = _readDotSdkExt(libDir); |
| 123 if (sdkExt != null) { |
| 124 _processSdkExt(sdkExt, libDir); |
| 125 } |
| 126 } |
| 127 } |
| 128 |
| 129 /// Given the JSON for an SDK extension ([sdkExtJSON]) and a folder |
| 130 /// ([libDir]), setup the uri mapping. |
| 131 void _processSdkExt(String sdkExtJSON, Folder libDir) { |
| 132 var sdkExt; |
| 133 try { |
| 134 sdkExt = JSON.decode(sdkExtJSON); |
| 135 } catch (e) { |
| 136 return; |
| 137 } |
| 138 if ((sdkExt == null) || (sdkExt is! Map)) { |
| 139 return; |
| 140 } |
| 141 sdkExt.forEach((k, v) => _processSdkExtension(k, v, libDir)); |
| 142 } |
| 143 |
| 144 /// Install the mapping from [name] to [libDir]/[file]. |
| 145 void _processSdkExtension(String name, String file, Folder libDir) { |
| 146 if (!name.startsWith(DART_COLON_PREFIX)) { |
| 147 // SDK extensions must begin with 'dart:'. |
| 148 return; |
| 149 } |
| 150 var key = name; |
| 151 var value = libDir.canonicalizePath(file); |
| 152 _urlMappings[key] = value; |
| 153 } |
| 154 |
| 155 /// Read the contents of [libDir]/[SDK_EXT_NAME] as a string. |
| 156 /// Returns null if the file doesn't exist. |
| 157 String _readDotSdkExt(Folder libDir) { |
| 158 var file = libDir.getChild(SDK_EXT_NAME); |
| 159 try { |
| 160 return file.readAsStringSync(); |
| 161 } on FileSystemException { |
| 162 // File can't be read. |
| 163 return null; |
| 164 } |
| 165 } |
| 166 |
| 167 /// Resolve an import of an sdk extension. |
| 168 Source _resolveEntry(Uri libraryEntry, Uri importUri) { |
| 169 // Library entry. |
| 170 JavaFile javaFile = new JavaFile.fromUri(libraryEntry); |
| 171 return new FileBasedSource(javaFile, importUri); |
| 172 } |
| 173 |
| 174 /// Resolve a 'part' statement inside an sdk extension. |
| 175 Source _resolvePart(Uri libraryEntry, String partPath, Uri importUri) { |
| 176 // Library part. |
| 177 var directory = pathos.dirname(libraryEntry.path); |
| 178 var partUri = new Uri.file(pathos.join(directory, partPath)); |
| 179 assert(partUri.isAbsolute); |
| 180 JavaFile javaFile = new JavaFile.fromUri(partUri); |
| 181 return new FileBasedSource(javaFile, importUri); |
| 182 } |
| 183 } |
OLD | NEW |