/*
 * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package jdk.javadoc.internal.doclets.toolkit.util;

import java.io.*;
import java.net.*;
import java.util.HashMap;
import java.util.Map;

import javax.lang.model.element.Element;
import javax.lang.model.element.PackageElement;
import javax.tools.Diagnostic;
import javax.tools.DocumentationTool;

import jdk.javadoc.doclet.Reporter;
import jdk.javadoc.internal.doclets.toolkit.BaseConfiguration;

Process and manage "-link" and "-linkoffline" to external packages. The options "-link" and "-linkoffline" both depend on the fact that Javadoc now generates "package-list"(lists all the packages which are getting documented) file in the current or the destination directory, while generating the documentation.

This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.

Author:Atul M Dambalkar, Robert Field
/** * Process and manage "-link" and "-linkoffline" to external packages. The * options "-link" and "-linkoffline" both depend on the fact that Javadoc now * generates "package-list"(lists all the packages which are getting * documented) file in the current or the destination directory, while * generating the documentation. * * <p><b>This is NOT part of any supported API. * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> * * @author Atul M Dambalkar * @author Robert Field */
public class Extern {
Map element names onto Extern Item objects. Lazily initialized.
/** * Map element names onto Extern Item objects. * Lazily initialized. */
private Map<String, Item> elementToItemMap;
The global configuration information for this run.
/** * The global configuration information for this run. */
private final BaseConfiguration configuration;
True if we are using -linkoffline and false if -link is used instead.
/** * True if we are using -linkoffline and false if -link is used instead. */
private boolean linkoffline = false;
Stores the info for one external doc set
/** * Stores the info for one external doc set */
private class Item {
Element name, found in the "element-list" file in the path.
/** * Element name, found in the "element-list" file in the {@link path}. */
final String elementName;
The URL or the directory path at which the element documentation will be avaliable.
/** * The URL or the directory path at which the element documentation will be * avaliable. */
final String path;
If given path is directory path then true else if it is a URL then false.
/** * If given path is directory path then true else if it is a URL then false. */
final boolean relative;
If the item is a module then true else if it is a package then false.
/** * If the item is a module then true else if it is a package then false. */
boolean isModule = false;
Constructor to build a Extern Item object and map it with the element name. If the same element name is found in the map, then the first mapped Item object or offline location will be retained.
Params:
  • elementName – Element name found in the "element-list" file.
  • path – URL or Directory path from where the "element-list" file is picked.
  • relative – True if path is URL, false if directory path.
  • isModule – True if the item is a module. False if it is a package.
/** * Constructor to build a Extern Item object and map it with the element name. * If the same element name is found in the map, then the first mapped * Item object or offline location will be retained. * * @param elementName Element name found in the "element-list" file. * @param path URL or Directory path from where the "element-list" * file is picked. * @param relative True if path is URL, false if directory path. * @param isModule True if the item is a module. False if it is a package. */
Item(String elementName, String path, boolean relative, boolean isModule) { this.elementName = elementName; this.path = path; this.relative = relative; this.isModule = isModule; if (elementToItemMap == null) { elementToItemMap = new HashMap<>(); } if (!elementToItemMap.containsKey(elementName)) { // save the previous elementToItemMap.put(elementName, this); // mapped location } }
String representation of "this" with elementname and the path.
/** * String representation of "this" with elementname and the path. */
@Override public String toString() { return elementName + (relative? " -> " : " => ") + path; } } public Extern(BaseConfiguration configuration) { this.configuration = configuration; }
Determine if a element item is externally documented.
Params:
  • element – an Element.
Returns:true if the element is externally documented
/** * Determine if a element item is externally documented. * * @param element an Element. * @return true if the element is externally documented */
public boolean isExternal(Element element) { if (elementToItemMap == null) { return false; } PackageElement pe = configuration.utils.containingPackage(element); if (pe.isUnnamed()) { return false; } return elementToItemMap.get(configuration.utils.getPackageName(pe)) != null; }
Determine if a element item is a module or not.
Params:
  • elementName – name of the element.
Returns:true if the element is a module
/** * Determine if a element item is a module or not. * * @param elementName name of the element. * @return true if the element is a module */
public boolean isModule(String elementName) { Item elem = findElementItem(elementName); return (elem == null) ? false : elem.isModule; }
Convert a link to be an external link if appropriate.
Params:
  • elemName – The element name.
  • relativepath – The relative path.
  • filename – The link to convert.
Returns:if external return converted link else return null
/** * Convert a link to be an external link if appropriate. * * @param elemName The element name. * @param relativepath The relative path. * @param filename The link to convert. * @return if external return converted link else return null */
public DocLink getExternalLink(String elemName, DocPath relativepath, String filename) { return getExternalLink(elemName, relativepath, filename, null); } public DocLink getExternalLink(String elemName, DocPath relativepath, String filename, String memberName) { Item fnd = findElementItem(elemName); if (fnd == null) return null; DocPath p = fnd.relative ? relativepath.resolve(fnd.path).resolve(filename) : DocPath.create(fnd.path).resolve(filename); return new DocLink(p, "is-external=true", memberName); }
Build the extern element list from given URL or the directory path, as specified with the "-link" flag. Flag error if the "-link" or "-linkoffline" option is already used.
Params:
  • url – URL or Directory path.
  • reporter – The DocErrorReporter used to report errors.
Throws:
Returns:true if successful, false otherwise
/** * Build the extern element list from given URL or the directory path, * as specified with the "-link" flag. * Flag error if the "-link" or "-linkoffline" option is already used. * * @param url URL or Directory path. * @param reporter The <code>DocErrorReporter</code> used to report errors. * @return true if successful, false otherwise * @throws DocFileIOException if there is a problem reading a element list file */
public boolean link(String url, Reporter reporter) throws DocFileIOException { return link(url, url, reporter, false); }
Build the extern element list from given URL or the directory path, as specified with the "-linkoffline" flag. Flag error if the "-link" or "-linkoffline" option is already used.
Params:
  • url – URL or Directory path.
  • elemlisturl – This can be another URL for "element-list" or ordinary file.
  • reporter – The DocErrorReporter used to report errors.
Throws:
Returns:true if successful, false otherwise
/** * Build the extern element list from given URL or the directory path, * as specified with the "-linkoffline" flag. * Flag error if the "-link" or "-linkoffline" option is already used. * * @param url URL or Directory path. * @param elemlisturl This can be another URL for "element-list" or ordinary * file. * @param reporter The <code>DocErrorReporter</code> used to report errors. * @return true if successful, false otherwise * @throws DocFileIOException if there is a problem reading the element list file */
public boolean link(String url, String elemlisturl, Reporter reporter) throws DocFileIOException { return link(url, elemlisturl, reporter, true); } /* * Build the extern element list from given URL or the directory path. * Flag error if the "-link" or "-linkoffline" option is already used. * * @param url URL or Directory path. * @param elemlisturl This can be another URL for "element-list" or ordinary * file. * @param reporter The <code>DocErrorReporter</code> used to report errors. * @param linkoffline True if -linkoffline is used and false if -link is used. * @return true if successful, false otherwise * @throws DocFileIOException if there is a problem reading the element list file */ private boolean link(String url, String elemlisturl, Reporter reporter, boolean linkoffline) throws DocFileIOException { this.linkoffline = linkoffline; try { url = adjustEndFileSeparator(url); if (isUrl(elemlisturl)) { readElementListFromURL(url, toURL(adjustEndFileSeparator(elemlisturl))); } else { readElementListFromFile(url, DocFile.createFileForInput(configuration, elemlisturl)); } return true; } catch (Fault f) { reporter.print(Diagnostic.Kind.ERROR, f.getMessage()); return false; } } private URL toURL(String url) throws Fault { try { return new URL(url); } catch (MalformedURLException e) { throw new Fault(configuration.getText("doclet.MalformedURL", url), e); } } private class Fault extends Exception { private static final long serialVersionUID = 0; Fault(String msg, Exception cause) { super(msg, cause); } }
Get the Extern Item object associated with this element name.
Params:
  • elemName – Element name.
/** * Get the Extern Item object associated with this element name. * * @param elemName Element name. */
private Item findElementItem(String elemName) { if (elementToItemMap == null) { return null; } return elementToItemMap.get(elemName); }
If the URL or Directory path is missing end file separator, add that.
/** * If the URL or Directory path is missing end file separator, add that. */
private String adjustEndFileSeparator(String url) { return url.endsWith("/") ? url : url + '/'; }
Fetch the URL and read the "element-list" file.
Params:
  • urlpath – Path to the elements.
  • elemlisturlpath – URL or the path to the "element-list" file.
/** * Fetch the URL and read the "element-list" file. * * @param urlpath Path to the elements. * @param elemlisturlpath URL or the path to the "element-list" file. */
private void readElementListFromURL(String urlpath, URL elemlisturlpath) throws Fault { try { URL link = elemlisturlpath.toURI().resolve(DocPaths.ELEMENT_LIST.getPath()).toURL(); readElementList(link.openStream(), urlpath, false); } catch (URISyntaxException | MalformedURLException exc) { throw new Fault(configuration.getText("doclet.MalformedURL", elemlisturlpath.toString()), exc); } catch (IOException exc) { readAlternateURL(urlpath, elemlisturlpath); } }
Fetch the URL and read the "package-list" file.
Params:
  • urlpath – Path to the packages.
  • elemlisturlpath – URL or the path to the "package-list" file.
/** * Fetch the URL and read the "package-list" file. * * @param urlpath Path to the packages. * @param elemlisturlpath URL or the path to the "package-list" file. */
private void readAlternateURL(String urlpath, URL elemlisturlpath) throws Fault { try { URL link = elemlisturlpath.toURI().resolve(DocPaths.PACKAGE_LIST.getPath()).toURL(); readElementList(link.openStream(), urlpath, false); } catch (URISyntaxException | MalformedURLException exc) { throw new Fault(configuration.getText("doclet.MalformedURL", elemlisturlpath.toString()), exc); } catch (IOException exc) { throw new Fault(configuration.getText("doclet.URL_error", elemlisturlpath.toString()), exc); } }
Read the "element-list" file which is available locally.
Params:
  • path – URL or directory path to the elements.
  • elemListPath – Path to the local "element-list" file.
Throws:
  • Fault – if an error occurs that can be treated as a warning
  • DocFileIOException – if there is a problem opening the element list file
/** * Read the "element-list" file which is available locally. * * @param path URL or directory path to the elements. * @param elemListPath Path to the local "element-list" file. * @throws Fault if an error occurs that can be treated as a warning * @throws DocFileIOException if there is a problem opening the element list file */
private void readElementListFromFile(String path, DocFile elemListPath) throws Fault, DocFileIOException { DocFile file = elemListPath.resolve(DocPaths.ELEMENT_LIST); if (! (file.isAbsolute() || linkoffline)){ file = file.resolveAgainst(DocumentationTool.Location.DOCUMENTATION_OUTPUT); } if (file.exists()) { readElementList(file, path); } else { DocFile file1 = elemListPath.resolve(DocPaths.PACKAGE_LIST); if (!(file1.isAbsolute() || linkoffline)) { file1 = file1.resolveAgainst(DocumentationTool.Location.DOCUMENTATION_OUTPUT); } if (file1.exists()) { readElementList(file1, path); } else { throw new Fault(configuration.getText("doclet.File_error", file.getPath()), null); } } } private void readElementList(DocFile file, String path) throws Fault, DocFileIOException { try { if (file.canRead()) { boolean pathIsRelative = !isUrl(path) && !DocFile.createFileForInput(configuration, path).isAbsolute(); readElementList(file.openInputStream(), path, pathIsRelative); } else { throw new Fault(configuration.getText("doclet.File_error", file.getPath()), null); } } catch (IOException exc) { throw new Fault(configuration.getText("doclet.File_error", file.getPath()), exc); } }
Read the file "element-list" and for each element name found, create Extern object and associate it with the element name in the map.
Params:
  • input – InputStream from the "element-list" file.
  • path – URL or the directory path to the elements.
  • relative – Is path relative?
Throws:
  • IOException – if there is a problem reading or closing the stream
/** * Read the file "element-list" and for each element name found, create * Extern object and associate it with the element name in the map. * * @param input InputStream from the "element-list" file. * @param path URL or the directory path to the elements. * @param relative Is path relative? * @throws IOException if there is a problem reading or closing the stream */
private void readElementList(InputStream input, String path, boolean relative) throws IOException { try (BufferedReader in = new BufferedReader(new InputStreamReader(input))) { in.lines().forEach((elemname) -> { if (elemname.length() > 0) { boolean module; String elempath; if (elemname.startsWith(DocletConstants.MODULE_PREFIX)) { elemname = elemname.replace(DocletConstants.MODULE_PREFIX, ""); elempath = path; module = true; } else { elempath = path + elemname.replace('.', '/') + '/'; module = false; } Item ignore = new Item(elemname, elempath, relative, module); } }); } } public boolean isUrl (String urlCandidate) { try { URL ignore = new URL(urlCandidate); //No exception was thrown, so this must really be a URL. return true; } catch (MalformedURLException e) { //Since exception is thrown, this must be a directory path. return false; } } }