blob: c2a3205f25150396cb3a86c75c59e7b3db1d9699 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.debugger.jpda.js;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.netbeans.api.debugger.jpda.JPDAClassType;
import org.netbeans.api.project.Project;
import org.netbeans.api.project.ProjectManager;
import org.netbeans.modules.debugger.jpda.js.source.Source;
import org.netbeans.spi.debugger.ContextProvider;
import org.netbeans.spi.debugger.jpda.SourcePathProvider;
import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileUtil;
/**
*
* @author Martin
*/
@SourcePathProvider.Registration(path = "netbeans-JPDASession")
public class FirstSourceURLProvider extends SourcePathProvider {
private static final String[] NO_SOURCE_ROOTS = new String[]{};
private static final String pathPrefix = "jdk/nashorn/internal/scripts/"; // NOI18N
private final ContextProvider contextProvider;
private SourcePathProvider sourcePath;
private Set<FileObject> rootDirs;
private final Object rootDirsLock = new Object();
public FirstSourceURLProvider(ContextProvider contextProvider) {
this.contextProvider = contextProvider;
}
@Override
public String getURL(String relativePath, boolean global) {
if (relativePath.startsWith(pathPrefix)) {
relativePath = relativePath.substring(pathPrefix.length());
synchronized (rootDirsLock) {
if (rootDirs == null) {
sourcePath = getSourcePathProvider();
sourcePath.addPropertyChangeListener(new SourcePathListener());
rootDirs = computeModuleRoots();
}
for (FileObject root : rootDirs) {
FileObject fo = root.getFileObject(relativePath);
if (fo != null) {
return fo.toURL().toExternalForm();
}
}
}
}
return null;
}
public String getURL(JPDAClassType clazz, String stratum) {
if (!(stratum == null || JSUtils.JS_STRATUM.equals(stratum)) ||
!clazz.getName().startsWith(JSUtils.NASHORN_SCRIPT)) {
return null;
}
Source source = Source.getSource(clazz);
if (source == null) {
return null;
}
URL url = source.getRuntimeURL();
if (url == null) {
url = source.getUrl();
}
if (url != null) {
return url.toExternalForm();
} else {
return null;
}
}
@Override
public String getRelativePath(String url, char directorySeparator, boolean includeExtension) {
return null;
}
@Override
public String[] getSourceRoots() {
return NO_SOURCE_ROOTS;
}
@Override
public void setSourceRoots(String[] sourceRoots) {
}
@Override
public String[] getOriginalSourceRoots() {
return NO_SOURCE_ROOTS;
}
@Override
public void addPropertyChangeListener(PropertyChangeListener l) {
}
@Override
public void removePropertyChangeListener(PropertyChangeListener l) {
}
private SourcePathProvider getSourcePathProvider() {
List<? extends SourcePathProvider> spps = contextProvider.lookup(null, SourcePathProvider.class);
for (SourcePathProvider spp : spps) {
if ("SourcePathProviderImpl".equals(spp.getClass().getSimpleName())) {
return spp;
}
}
throw new RuntimeException("No SourcePathProviderImpl");
}
private Set<FileObject> computeModuleRoots() {
Set<FileObject> projectDirectories = new LinkedHashSet<>();
String[] sourceRoots = sourcePath.getSourceRoots();
for (String src : sourceRoots) {
FileObject fo = getFileObject(src);
if (fo == null) {
continue;
}
Project p = getProject(fo);
if (p == null) {
continue;
}
projectDirectories.add(p.getProjectDirectory());
}
return projectDirectories;
}
/**
* Returns FileObject for given String.
*/
private static FileObject getFileObject (String file) {
File f = new File (file);
FileObject fo = FileUtil.toFileObject (FileUtil.normalizeFile(f));
//String path = null;
if (fo == null && file.contains("!/")) {
int index = file.indexOf("!/");
f = new File(file.substring(0, index));
fo = FileUtil.toFileObject (f);
//path = file.substring(index + "!/".length());
}
/*
if (fo != null && FileUtil.isArchiveFile (fo)) {
fo = FileUtil.getArchiveRoot (fo);
if (path !=null) {
fo = fo.getFileObject(path);
}
}*/
return fo;
}
private Project getProject(FileObject fo) {
FileObject f = fo;
while (f != null) {
f = f.getParent();
if (f != null && ProjectManager.getDefault().isProject(f)) {
break;
}
}
if (f != null) {
try {
return ProjectManager.getDefault().findProject(f);
} catch (IOException | IllegalArgumentException ex) {
}
}
return null;
}
private class SourcePathListener implements PropertyChangeListener {
@Override
public void propertyChange(PropertyChangeEvent evt) {
synchronized (rootDirsLock) {
if (rootDirs != null) {
// If initialized already, recompute:
rootDirs = computeModuleRoots();
}
}
}
}
}