blob: d0e67136f2dd91a83fc359836255a4ac369a2806 [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.javafx2.platform;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import org.netbeans.api.annotations.common.NonNull;
import org.netbeans.api.java.platform.JavaPlatform;
import org.netbeans.modules.java.j2seplatform.spi.J2SEPlatformDefaultJavadoc;
import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileUtil;
import org.openide.modules.SpecificationVersion;
import org.openide.util.Exceptions;
import org.openide.util.lookup.ServiceProvider;
/**
* Default Javadoc for JavaFX.
* @author Tomas Zezula
*/
@ServiceProvider(service = J2SEPlatformDefaultJavadoc.class, position = 200, path="org-netbeans-api-java/platform/j2seplatform/defaultJavadocProviders")
public final class JavaFxDefaultJavadocImpl implements J2SEPlatformDefaultJavadoc {
private static final Map<SpecificationVersion,String> OFFICIAL_JAVADOC;
static {
final Map<SpecificationVersion,String> jdocs = new HashMap<>();
jdocs.put(new SpecificationVersion("1.7"), "https://docs.oracle.com/javafx/2/api/"); //NOI18N
jdocs.put(new SpecificationVersion("1.8"), "https://docs.oracle.com/javase/8/javafx/api/"); //NOI18N
OFFICIAL_JAVADOC = Collections.unmodifiableMap(jdocs);
}
@Override
@NonNull
public Collection<URI> getDefaultJavadoc(@NonNull final JavaPlatform platform) {
final List<URI> result = new ArrayList<>();
final JavadocFilter filter = new JavadocFilter();
for (FileObject installFolder : platform.getInstallFolders()) {
for (FileObject file : installFolder.getChildren()) {
final Collection<? extends URI> roots = filter.accept(file);
result.addAll(roots);
}
}
if (!result.isEmpty()) {
return Collections.unmodifiableCollection(result);
}
final SpecificationVersion spec = platform.getSpecification().getVersion();
final String uri = OFFICIAL_JAVADOC.get(spec);
if (uri != null) {
try {
return Collections.singletonList(new URI(uri));
} catch (URISyntaxException ex) {
Exceptions.printStackTrace(ex);
}
}
return Collections.<URI>emptyList();
}
private static final class JavadocFilter {
private static final Pattern DOCS_FILE_PATTERN = Pattern.compile(".*docs.*\\.(zip|jar)",Pattern.CASE_INSENSITIVE); //NOI18N
private static final Pattern JAVAFX_FILE_PATTERN = Pattern.compile(".*j(ava)?fx.*", Pattern.CASE_INSENSITIVE); //NOI18N
private static final Collection<String> DOCS_PATHS;
static {
final List<String> paths = new ArrayList<>(3);
paths.add("api/"); //NOI18N
DOCS_PATHS = Collections.unmodifiableList(paths);
}
@NonNull
Collection<? extends URI> accept(@NonNull final FileObject fo) {
if (fo.canRead() && fo.isData()) {
final String nameExt = fo.getNameExt();
if (DOCS_FILE_PATTERN.matcher(nameExt).matches() && JAVAFX_FILE_PATTERN.matcher(nameExt).matches()) {
final FileObject root = FileUtil.getArchiveRoot(fo);
if (root != null) {
final List<URI> roots = new ArrayList<>(DOCS_PATHS.size());
for (String path : DOCS_PATHS) {
final FileObject docRoot = root.getFileObject(path);
if (docRoot != null) {
roots.add(docRoot.toURI());
}
}
return Collections.unmodifiableCollection(roots);
}
}
}
return Collections.emptySet();
}
}
}