Files
sdk/compiler/java/com/google/dart/compiler/UrlLibrarySource.java
T
brianwilkerson@google.com cf0cedfdda Fix for issue 2569
Review URL: https://chromiumcodereview.appspot.com//10066047

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6638 260f80e4-7a28-3924-810f-c04153c831b5
2012-04-17 13:38:19 +00:00

67 lines
2.0 KiB
Java

// Copyright (c) 2011, 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.
package com.google.dart.compiler;
import java.io.File;
import java.net.URI;
/**
* A {@link LibrarySource} backed by a URL.
*/
public class UrlLibrarySource extends UrlSource implements LibrarySource {
public UrlLibrarySource(URI uri, SystemLibraryManager slm) {
super(uri, slm);
}
public UrlLibrarySource(URI uri) {
this(uri, null);
}
public UrlLibrarySource(File file) {
super(file);
}
@Override
public String getName() {
return getUri().toString();
}
@Override
public DartSource getSourceFor(final String relPath) {
if (relPath == null || relPath.isEmpty()) {
return null;
}
try {
// Force the creation of an escaped relative URI to deal with spaces, etc.
URI uri = getUri().resolve(new URI(null, null, relPath, null)).normalize();
return new UrlDartSource(uri, relPath, this, systemLibraryManager);
} catch (Throwable e) {
return null;
}
}
@Override
public LibrarySource getImportFor(String relPath) {
if (relPath == null || relPath.isEmpty()) {
return null;
}
try {
// Force the creation of an escaped relative URI to deal with spaces, etc.
URI uri = getUri().resolve(new URI(null, null, relPath, null)).normalize();
String path = uri.getPath();
// Resolve relative reference out of one system library into another
if (SystemLibraryManager.isDartUri(uri) && path != null && path.startsWith("/..")) {
URI fileUri = systemLibraryManager.resolveDartUri(uri);
URI shortUri = systemLibraryManager.getShortUri(fileUri);
if (shortUri != null) {
uri = shortUri;
}
}
return new UrlLibrarySource(uri, systemLibraryManager);
} catch (Throwable e) {
return null;
}
}
}