langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/Extern.java
author jjg
Fri, 26 Oct 2012 13:10:56 -0700
changeset 14361 2814fa6977ac
parent 14358 9eda9239cba0
child 14368 6f4c62de6985
permissions -rw-r--r--
8001219: Clean up use of URLs in javadoc Extern class Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
     2
 * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 1264
diff changeset
    23
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
package com.sun.tools.doclets.internal.toolkit.util;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    28
import java.io.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    29
import java.net.*;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    30
import java.util.HashMap;
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    31
import java.util.Map;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
import com.sun.javadoc.*;
14258
8d2148961366 8000663: clean up langtools imports
jjg
parents: 5520
diff changeset
    34
import com.sun.tools.doclets.internal.toolkit.*;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * Process and manage "-link" and "-linkoffline" to external packages. The
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 * options "-link" and "-linkoffline" both depend on the fact that Javadoc now
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
 * generates "package-list"(lists all the packages which are getting
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
 * documented) file in the current or the destination directory, while
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
 * generating the documentation.
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    43
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    44
 *  If you write code that depends on this, you do so at your own risk.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    45
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 14259
diff changeset
    46
 *  deletion without notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
 * @author Atul M Dambalkar
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 * @author Robert Field
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
public class Extern {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
     * Map package names onto Extern Item objects.
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     * Lazily initialized.
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    57
    private Map<String,Item> packageToItemMap;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * The global configuration information for this run.
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
    private final Configuration configuration;
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
     * True if we are using -linkoffline and false if -link is used instead.
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    private boolean linkoffline = false;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     * Stores the info for one external doc set
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
    private class Item {
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
         * Package name, found in the "package-list" file in the {@link path}.
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        final String packageName;
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
         * The URL or the directory path at which the package documentation will be
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
         * avaliable.
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        final String path;
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
         * If given path is directory path then true else if it is a URL then false.
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        final boolean relative;
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
         * Constructor to build a Extern Item object and map it with the package name.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
         * If the same package name is found in the map, then the first mapped
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
         * Item object or offline location will be retained.
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
         *
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
    95
         * @param packageName Package name found in the "package-list" file.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
         * @param path        URL or Directory path from where the "package-list"
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
         * file is picked.
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
         * @param relative    True if path is URL, false if directory path.
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
        Item(String packageName, String path, boolean relative) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            this.packageName = packageName;
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
            this.path = path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            this.relative = relative;
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
            if (packageToItemMap == null) {
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   105
                packageToItemMap = new HashMap<String,Item>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
            if (!packageToItemMap.containsKey(packageName)) { // save the previous
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
                packageToItemMap.put(packageName, this);        // mapped location
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
         * String representation of "this" with packagename and the path.
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
         */
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
        public String toString() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
            return packageName + (relative? " -> " : " => ") + path;
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
    public Extern(Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
        this.configuration = configuration;
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
     * Determine if a doc item is externally documented.
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
     * @param doc A ProgramElementDoc.
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
    public boolean isExternal(ProgramElementDoc doc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        if (packageToItemMap == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
        return packageToItemMap.get(doc.containingPackage().name()) != null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     * Convert a link to be an external link if appropriate.
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
     * @param pkgName The package name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
     * @param relativepath    The relative path.
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   141
     * @param filename    The link to convert.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
     * @return if external return converted link else return null
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
     */
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   144
    public DocLink getExternalLink(String pkgName,
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   145
                                  DocPath relativepath, String filename) {
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   146
        return getExternalLink(pkgName, relativepath, filename, null);
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   147
    }
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   148
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   149
    public DocLink getExternalLink(String pkgName,
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   150
                                  DocPath relativepath, String filename, String memberName) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
        Item fnd = findPackageItem(pkgName);
14358
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   152
        if (fnd == null)
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   153
            return null;
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   154
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   155
        DocPath p = fnd.relative ?
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   156
                relativepath.resolve(fnd.path).resolve(filename) :
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   157
                DocPath.create(fnd.path).resolve(filename);
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   158
9eda9239cba0 8000416: refactor javadoc to provide and use an abstraction for relative URIs
jjg
parents: 14357
diff changeset
   159
        return new DocLink(p, "is-external=true", memberName);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
     * Build the extern package list from given URL or the directory path.
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
     * Flag error if the "-link" or "-linkoffline" option is already used.
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
     * @param url        URL or Directory path.
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
     * @param pkglisturl This can be another URL for "package-list" or ordinary
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
     *                   file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
     * @param reporter   The <code>DocErrorReporter</code> used to report errors.
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   170
     * @param linkoffline True if -linkoffline is used and false if -link is used.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
     */
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   172
    public boolean link(String url, String pkglisturl,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
                              DocErrorReporter reporter, boolean linkoffline) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
        this.linkoffline = linkoffline;
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   175
        try {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   176
            url = adjustEndFileSeparator(url);
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   177
            if (isUrl(pkglisturl)) {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   178
                readPackageListFromURL(url, toURL(pkglisturl));
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   179
            } else {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   180
                readPackageListFromFile(url, new File(pkglisturl));
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   181
            }
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   182
            return true;
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   183
        } catch (Fault f) {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   184
            reporter.printWarning(f.getMessage());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            return false;
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   186
        }
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   187
    }
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   188
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   189
    private URL toURL(String url) throws Fault {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   190
        try {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   191
            return new URL(url);
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   192
        } catch (MalformedURLException e) {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   193
            throw new Fault(configuration.getText("doclet.MalformedURL", url), e);
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   194
        }
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   195
    }
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   196
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   197
    private class Fault extends Exception {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   198
        private static final long serialVersionUID = 0;
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   199
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   200
        Fault(String msg, Exception cause) {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   201
            super(msg, cause);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     * Get the Extern Item object associated with this package name.
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
     *
14259
fb94a1df0d53 8000208: fix langtools javadoc comment issues
jjg
parents: 14258
diff changeset
   208
     * @param pkgName Package name.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
    private Item findPackageItem(String pkgName) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
        if (packageToItemMap == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        }
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   214
        return packageToItemMap.get(pkgName);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
     * If the URL or Directory path is missing end file separator, add that.
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
    private String adjustEndFileSeparator(String url) {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   221
        return url.endsWith("/") ? url : url + '/';
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
     * Fetch the URL and read the "package-list" file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
     * @param urlpath        Path to the packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
     * @param pkglisturlpath URL or the path to the "package-list" file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
     */
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   230
    private void readPackageListFromURL(String urlpath, URL pkglisturlpath)
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   231
            throws Fault {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
        try {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   233
            URL link = pkglisturlpath.toURI().resolve(DocPaths.PACKAGE_LIST.getPath()).toURL();
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   234
            readPackageList(link.openStream(), urlpath, false);
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   235
        } catch (URISyntaxException exc) {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   236
            throw new Fault(configuration.getText("doclet.MalformedURL", pkglisturlpath.toString()), exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
        } catch (MalformedURLException exc) {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   238
            throw new Fault(configuration.getText("doclet.MalformedURL", pkglisturlpath.toString()), exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
        } catch (IOException exc) {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   240
            throw new Fault(configuration.getText("doclet.URL_error", pkglisturlpath.toString()), exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
     * Read the "package-list" file which is available locally.
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
     * @param path URL or directory path to the packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
     * @param pkgListPath Path to the local "package-list" file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
     */
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   250
    private void readPackageListFromFile(String path, File pkgListPath)
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   251
            throws Fault {
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   252
        File file = new File(pkgListPath, "package-list");
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   253
        if (! (file.isAbsolute() || linkoffline)){
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   254
            file = new File(configuration.destDirName, file.getPath());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            if (file.exists() && file.canRead()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
                readPackageList(new FileInputStream(file), path,
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
                    ! ((new File(path)).isAbsolute() || isUrl(path)));
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            } else {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   261
                throw new Fault(configuration.getText("doclet.File_error", file.getPath()), null);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
        } catch (IOException exc) {
14361
2814fa6977ac 8001219: Clean up use of URLs in javadoc Extern class
jjg
parents: 14358
diff changeset
   264
           throw new Fault(configuration.getText("doclet.File_error", file.getPath()), exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     * Read the file "package-list" and for each package name found, create
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     * Extern object and associate it with the package name in the map.
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     * @param input    InputStream from the "package-list" file.
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     * @param path     URL or the directory path to the packages.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     * @param relative Is path relative?
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
    private void readPackageList(InputStream input, String path,
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
                                boolean relative)
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
                         throws IOException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
        BufferedReader in = new BufferedReader(new InputStreamReader(input));
14263
473b1eaede64 8000310: Clean up use of StringBuffer in langtools
jjg
parents: 14260
diff changeset
   280
        StringBuilder strbuf = new StringBuilder();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            int c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            while ((c = in.read()) >= 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
                char ch = (char)c;
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
                if (ch == '\n' || ch == '\r') {
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
                    if (strbuf.length() > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
                        String packname = strbuf.toString();
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                        String packpath = path +
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                                      packname.replace('.', '/') + '/';
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
                        new Item(packname, packpath, relative);
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                        strbuf.setLength(0);
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
                    strbuf.append(ch);
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
        } finally {
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
            input.close();
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
    public boolean isUrl (String urlCandidate) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
            new URL(urlCandidate);
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            //No exception was thrown, so this must really be a URL.
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        } catch (MalformedURLException e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
            //Since exception is thrown, this must be a directory path.
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
}