langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/Util.java
author ksrini
Fri, 27 Jun 2014 17:54:54 -0700
changeset 25300 3b8a5067fe29
parent 25004 b33effe4f252
child 25449 3c14a2e16bd6
permissions -rw-r--r--
8047162: [javadoc] index files are non deterministic Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
     2
 * Copyright (c) 1999, 2014, 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: 2212
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: 2212
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: 2212
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2212
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
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 1864
diff changeset
    28
import java.io.*;
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
    29
import java.lang.annotation.Documented;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
    30
import java.lang.annotation.ElementType;
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
    31
import java.lang.annotation.Target;
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
    32
import java.text.Collator;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 1864
diff changeset
    33
import java.util.*;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
    34
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
    35
import javax.tools.StandardLocation;
1869
0e193a8f3520 6794582: javadoc should read files using a FileManager
jjg
parents: 1864
diff changeset
    36
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import com.sun.javadoc.*;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
    38
import com.sun.javadoc.AnnotationDesc.ElementValuePair;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import com.sun.tools.doclets.internal.toolkit.*;
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
    40
import com.sun.tools.javac.util.StringUtils;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
 * Utilities Class for Doclets.
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 *
14260
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 9606
diff changeset
    45
 *  <p><b>This is NOT part of any supported API.
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 9606
diff changeset
    46
 *  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: 9606
diff changeset
    47
 *  This code and its internal interfaces are subject to change or
727a84636f12 8000665: fix "internal API" comments on javadoc files
jjg
parents: 9606
diff changeset
    48
 *  deletion without notice.</b>
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
 * @author Atul M Dambalkar
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
 * @author Jamie Ho
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
public class Util {
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
     * Return array of class members whose documentation is to be generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
     * If the member is deprecated do not include such a member in the
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
     * returned array.
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
     * @param  members             Array of members to choose from.
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
     * @return ProgramElementDoc[] Array of eligible members for whom
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
     *                             documentation is getting generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    public static ProgramElementDoc[] excludeDeprecatedMembers(
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        ProgramElementDoc[] members) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            toProgramElementDocArray(excludeDeprecatedMembersAsList(members));
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
     * Return array of class members whose documentation is to be generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
     * If the member is deprecated do not include such a member in the
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
     * returned array.
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
     * @param  members    Array of members to choose from.
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
     * @return List       List of eligible members for whom
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
     *                    documentation is getting generated.
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    78
    public static List<ProgramElementDoc> excludeDeprecatedMembersAsList(
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
        ProgramElementDoc[] members) {
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
    80
        List<ProgramElementDoc> list = new ArrayList<>();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
    81
        for (ProgramElementDoc member : members) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
    82
            if (member.tags("deprecated").length == 0) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
    83
                list.add(member);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        Collections.sort(list);
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        return list;
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     * Return the list of ProgramElementDoc objects as Array.
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
     */
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
    93
    public static ProgramElementDoc[] toProgramElementDocArray(List<ProgramElementDoc> list) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        ProgramElementDoc[] pgmarr = new ProgramElementDoc[list.size()];
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        for (int i = 0; i < list.size(); i++) {
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
    96
            pgmarr[i] = list.get(i);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        return pgmarr;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
     * Return true if a non-public member found in the given array.
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
     * @param  members Array of members to look into.
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
     * @return boolean True if non-public member found, false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
    public static boolean nonPublicMemberFound(ProgramElementDoc[] members) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   108
        for (ProgramElementDoc member : members) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   109
            if (!member.isPublic()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
     * Search for the given method in the given class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
     * @param  cd        Class to search into.
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
     * @param  method    Method to be searched.
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
     * @return MethodDoc Method found, null otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
    public static MethodDoc findMethod(ClassDoc cd, MethodDoc method) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
        MethodDoc[] methods = cd.methods();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   125
        for (MethodDoc m : methods) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   126
            if (executableMembersEqual(method, m)) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   127
                return m;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
        return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
     * @param member1 the first method to compare.
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
     * @param member2 the second method to compare.
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
     * @return true if member1 overrides/hides or is overriden/hidden by member2.
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
    public static boolean executableMembersEqual(ExecutableMemberDoc member1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            ExecutableMemberDoc member2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
        if (! (member1 instanceof MethodDoc && member2 instanceof MethodDoc))
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
        MethodDoc method1 = (MethodDoc) member1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
        MethodDoc method2 = (MethodDoc) member2;
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
        if (method1.isStatic() && method2.isStatic()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
            Parameter[] targetParams = method1.parameters();
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
            Parameter[] currentParams;
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
            if (method1.name().equals(method2.name()) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
                   (currentParams = method2.parameters()).length ==
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
                targetParams.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
                int j;
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
                for (j = 0; j < targetParams.length; j++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
                    if (! (targetParams[j].typeName().equals(
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
                              currentParams[j].typeName()) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
                                   currentParams[j].type() instanceof TypeVariable ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
                                   targetParams[j].type() instanceof TypeVariable)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
                        break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
                if (j == targetParams.length) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
                    return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
                return method1.overrides(method2) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
                method2.overrides(method1) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
                                member1 == member2;
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
    /**
9303
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
   174
     * According to
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
   175
     * <cite>The Java&trade; Language Specification</cite>,
eae35c201e19 7032975: API files in javax.annotation.processing need to be updated for references to JLS
jjh
parents: 8631
diff changeset
   176
     * all the outer classes and static inner classes are core classes.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
    public static boolean isCoreClass(ClassDoc cd) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
        return cd.containingClass() == null || cd.isStatic();
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
    public static boolean matches(ProgramElementDoc doc1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            ProgramElementDoc doc2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
        if (doc1 instanceof ExecutableMemberDoc &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            doc2 instanceof ExecutableMemberDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            ExecutableMemberDoc ed1 = (ExecutableMemberDoc)doc1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
            ExecutableMemberDoc ed2 = (ExecutableMemberDoc)doc2;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
            return executableMembersEqual(ed1, ed2);
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            return doc1.name().equals(doc2.name());
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
     * Copy the given directory contents from the source package directory
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
     * to the generated documentation directory. For example for a package
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
     * java.lang this method find out the source location of the package using
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
     * {@link SourcePath} and if given directory is found in the source
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
     * directory structure, copy the entire directory, to the generated
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
     * documentation hierarchy.
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
     * @param configuration The configuration of the current doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * @param path The relative path to the directory to be copied.
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * @param dir The original directory name to copy from.
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     * @param overwrite Overwrite files if true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
     */
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   207
    public static void copyDocFiles(Configuration configuration, PackageDoc pd) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   208
        copyDocFiles(configuration, DocPath.forPackage(pd).resolve(DocPaths.DOC_FILES));
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   209
    }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   210
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   211
    public static void copyDocFiles(Configuration configuration, DocPath dir) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        try {
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   213
            boolean first = true;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   214
            for (DocFile f : DocFile.list(configuration, StandardLocation.SOURCE_PATH, dir)) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   215
                if (!f.isDirectory()) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   216
                    continue;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   217
                }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   218
                DocFile srcdir = f;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   219
                DocFile destdir = DocFile.createFileForOutput(configuration, dir);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   220
                if (srcdir.isSameFile(destdir)) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   221
                    continue;
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   222
                }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   223
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   224
                for (DocFile srcfile: srcdir.list()) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   225
                    DocFile destfile = destdir.resolve(srcfile.getName());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   226
                    if (srcfile.isFile()) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   227
                        if (destfile.exists() && !first) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   228
                            configuration.message.warning((SourcePosition) null,
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   229
                                    "doclet.Copy_Overwrite_warning",
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   230
                                    srcfile.getPath(), destdir.getPath());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   231
                        } else {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   232
                            configuration.message.notice(
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   233
                                    "doclet.Copying_File_0_To_Dir_1",
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   234
                                    srcfile.getPath(), destdir.getPath());
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   235
                            destfile.copyFile(srcfile);
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   236
                        }
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   237
                    } else if (srcfile.isDirectory()) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   238
                        if (configuration.copydocfilesubdirs
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   239
                                && !configuration.shouldExcludeDocFileDir(srcfile.getName())) {
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   240
                            copyDocFiles(configuration, dir.resolve(srcfile.getName()));
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   241
                        }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
                }
14368
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   244
6f4c62de6985 8001664: refactor javadoc to use abstraction to handle files
jjg
parents: 14366
diff changeset
   245
                first = false;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            }
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   247
        } catch (SecurityException | IOException exc) {
19667
fdfce85627a9 8001669: javadoc internal DocletAbortException should set cause when appropriate
jjg
parents: 19510
diff changeset
   248
            throw new DocletAbortException(exc);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
     * We want the list of types in alphabetical order.  However, types are not
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
     * comparable.  We need a comparator for now.
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   256
    private static class TypeComparator implements Comparator<Type> {
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   257
        public int compare(Type type1, Type type2) {
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
   258
            return type1.qualifiedTypeName().compareToIgnoreCase(
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
   259
                type2.qualifiedTypeName());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
     * For the class return all implemented interfaces including the
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
     * superinterfaces of the implementing interfaces, also iterate over for
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
     * all the superclasses. For interface return all the extended interfaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
     * as well as superinterfaces for those extended interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
     * @param  type       type whose implemented or
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
     *                    super interfaces are sought.
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
     * @param  configuration the current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
     * @param  sort if true, return list of interfaces sorted alphabetically.
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
     * @return List of all the required interfaces.
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
     */
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   275
    public static List<Type> getAllInterfaces(Type type,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
            Configuration configuration, boolean sort) {
22165
ec53c8946fc2 8030807: langtools should still build using jdk 7
vromero
parents: 22163
diff changeset
   277
        Map<ClassDoc,Type> results = sort ?
ec53c8946fc2 8030807: langtools should still build using jdk 7
vromero
parents: 22163
diff changeset
   278
                new TreeMap<ClassDoc,Type>() :
ec53c8946fc2 8030807: langtools should still build using jdk 7
vromero
parents: 22163
diff changeset
   279
                new LinkedHashMap<ClassDoc,Type>();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
        Type[] interfaceTypes = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
        Type superType = null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
        if (type instanceof ParameterizedType) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            interfaceTypes = ((ParameterizedType) type).interfaceTypes();
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            superType = ((ParameterizedType) type).superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
        } else if (type instanceof ClassDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            interfaceTypes = ((ClassDoc) type).interfaceTypes();
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            superType = ((ClassDoc) type).superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            interfaceTypes = type.asClassDoc().interfaceTypes();
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
            superType = type.asClassDoc().superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   293
        for (Type interfaceType : interfaceTypes) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
            ClassDoc interfaceClassDoc = interfaceType.asClassDoc();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   295
            if (!(interfaceClassDoc.isPublic() ||
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   296
                  (configuration == null ||
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   297
                   isLinkable(interfaceClassDoc, configuration)))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            results.put(interfaceClassDoc, interfaceType);
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   301
            for (Type t : getAllInterfaces(interfaceType, configuration, sort)) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
                results.put(t.asClassDoc(), t);
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
        if (superType == null)
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   306
            return new ArrayList<>(results.values());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
        //Try walking the tree.
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
        addAllInterfaceTypes(results,
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            superType,
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   310
            interfaceTypesOf(superType),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            false, configuration);
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   312
        List<Type> resultsList = new ArrayList<>(results.values());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
        if (sort) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
                Collections.sort(resultsList, new TypeComparator());
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
        return resultsList;
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   319
    private static Type[] interfaceTypesOf(Type type) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   320
        if (type instanceof AnnotatedType)
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   321
            type = ((AnnotatedType)type).underlyingType();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   322
        return type instanceof ClassDoc ?
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   323
                ((ClassDoc)type).interfaceTypes() :
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   324
                ((ParameterizedType)type).interfaceTypes();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   325
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   326
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   327
    public static List<Type> getAllInterfaces(Type type, Configuration configuration) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
        return getAllInterfaces(type, configuration, true);
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   331
    private static void findAllInterfaceTypes(Map<ClassDoc,Type> results, ClassDoc c, boolean raw,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
        Type superType = c.superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
        if (superType == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
        addAllInterfaceTypes(results, superType,
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   337
                interfaceTypesOf(superType),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
                raw, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   341
    private static void findAllInterfaceTypes(Map<ClassDoc,Type> results, ParameterizedType p,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
            Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
        Type superType = p.superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
        if (superType == null)
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
        addAllInterfaceTypes(results, superType,
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   347
                interfaceTypesOf(superType),
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
                false, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
   351
    private static void addAllInterfaceTypes(Map<ClassDoc,Type> results, Type type,
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
            Type[] interfaceTypes, boolean raw,
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
            Configuration configuration) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   354
        for (Type interfaceType : interfaceTypes) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            ClassDoc interfaceClassDoc = interfaceType.asClassDoc();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   356
            if (!(interfaceClassDoc.isPublic() ||
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   357
                  (configuration != null &&
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   358
                   isLinkable(interfaceClassDoc, configuration)))) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
                continue;
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
            if (raw)
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
                interfaceType = interfaceType.asClassDoc();
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
            results.put(interfaceClassDoc, interfaceType);
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1264
diff changeset
   364
            List<Type> superInterfaces = getAllInterfaces(interfaceType, configuration);
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   365
            for (Type superInterface : superInterfaces) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
                results.put(superInterface.asClassDoc(), superInterface);
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
        }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   369
        if (type instanceof AnnotatedType)
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   370
            type = ((AnnotatedType)type).underlyingType();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   371
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
        if (type instanceof ParameterizedType)
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            findAllInterfaceTypes(results, (ParameterizedType) type, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
        else if (((ClassDoc) type).typeParameters().length == 0)
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            findAllInterfaceTypes(results, (ClassDoc) type, raw, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
        else
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
            findAllInterfaceTypes(results, (ClassDoc) type, true, configuration);
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
     * Enclose in quotes, used for paths and filenames that contains spaces
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
    public static String quote(String filepath) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
        return ("\"" + filepath + "\"");
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
    /**
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14265
diff changeset
   388
     * Given a package, return its name.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
     * @param packageDoc the package to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
     * @return the name of the given package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
    public static String getPackageName(PackageDoc packageDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
        return packageDoc == null || packageDoc.name().length() == 0 ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            DocletConstants.DEFAULT_PACKAGE_NAME : packageDoc.name();
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
    /**
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14265
diff changeset
   398
     * Given a package, return its file name without the extension.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
     * @param packageDoc the package to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
     * @return the file name of the given package.
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
    public static String getPackageFileHeadName(PackageDoc packageDoc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
        return packageDoc == null || packageDoc.name().length() == 0 ?
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
            DocletConstants.DEFAULT_PACKAGE_FILE_NAME : packageDoc.name();
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
    /**
14357
faf9cde2817b 8000741: refactor javadoc to use abstraction to handle relative paths
jjg
parents: 14265
diff changeset
   408
     * Given a string, replace all occurrences of 'newStr' with 'oldStr'.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
     * @param originalStr the string to modify.
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
     * @param oldStr the string to replace.
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
     * @param newStr the string to insert in place of the old string.
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
    public static String replaceText(String originalStr, String oldStr,
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
            String newStr) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
        if (oldStr == null || newStr == null || oldStr.equals(newStr)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
            return originalStr;
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
        }
8631
664f84942e74 6866185: Util.getPackageSourcePath should use lastIndexOf not indexOf and related cleanup
jjg
parents: 7681
diff changeset
   418
        return originalStr.replace(oldStr, newStr);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
     * Given an annotation, return true if it should be documented and false
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
     * otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
     * @param annotationDoc the annotation to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
     * @return true return true if it should be documented and false otherwise.
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
    public static boolean isDocumentedAnnotation(AnnotationTypeDoc annotationDoc) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   430
        for (AnnotationDesc anno : annotationDoc.annotations()) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   431
            if (anno.annotationType().qualifiedName().equals(
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   432
                    Documented.class.getName())) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   439
    private static boolean isDeclarationTarget(AnnotationDesc targetAnno) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   440
        // The error recovery steps here are analogous to TypeAnnotations
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   441
        ElementValuePair[] elems = targetAnno.elementValues();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   442
        if (elems == null
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   443
            || elems.length != 1
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   444
            || !"value".equals(elems[0].element().name())
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   445
            || !(elems[0].value().value() instanceof AnnotationValue[]))
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   446
            return true;    // error recovery
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   447
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   448
        for (AnnotationValue aValue : (AnnotationValue[])elems[0].value().value()) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   449
            Object value = aValue.value();
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   450
            if (!(value instanceof FieldDoc))
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   451
                return true; // error recovery
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   452
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   453
            FieldDoc eValue = (FieldDoc) value;
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   454
            if (Util.isJava5DeclarationElementType(eValue)) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   455
                return true;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   456
            }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   457
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   458
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   459
        return false;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   460
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   461
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   462
    /**
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   463
     * Returns true if the {@code annotationDoc} is to be treated
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   464
     * as a declaration annotation, when targeting the
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   465
     * {@code elemType} element type.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   466
     *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   467
     * @param annotationDoc the annotationDoc to check
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   468
     * @param elemType  the targeted elemType
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   469
     * @return true if annotationDoc is a declaration annotation
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   470
     */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   471
    public static boolean isDeclarationAnnotation(AnnotationTypeDoc annotationDoc,
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   472
            boolean isJava5DeclarationLocation) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   473
        if (!isJava5DeclarationLocation)
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   474
            return false;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   475
        AnnotationDesc[] annotationDescList = annotationDoc.annotations();
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   476
        // Annotations with no target are treated as declaration as well
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   477
        if (annotationDescList.length==0)
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   478
            return true;
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   479
        for (AnnotationDesc anno : annotationDescList) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   480
            if (anno.annotationType().qualifiedName().equals(
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   481
                    Target.class.getName())) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   482
                if (isDeclarationTarget(anno))
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   483
                    return true;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   484
            }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   485
        }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   486
        return false;
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   487
    }
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   488
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
     * Return true if this class is linkable and false if we can't link to the
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
     * desired class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
     * <br>
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
     * <b>NOTE:</b>  You can only link to external classes if they are public or
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
     * protected.
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
     * @param classDoc the class to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
     * @param configuration the current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
     * @return true if this class is linkable and false if we can't link to the
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
     * desired class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
    public static boolean isLinkable(ClassDoc classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
            Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
        return
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
            ((classDoc.isIncluded() && configuration.isGeneratedDoc(classDoc))) ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
            (configuration.extern.isExternal(classDoc) &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
                (classDoc.isPublic() || classDoc.isProtected()));
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
     * Given a class, return the closest visible super class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
     * @param classDoc the class we are searching the parent for.
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
     * @param configuration the current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
     * @return the closest visible super class.  Return null if it cannot
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
     *         be found (i.e. classDoc is java.lang.Object).
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
    public static Type getFirstVisibleSuperClass(ClassDoc classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
            Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
        if (classDoc == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
        Type sup = classDoc.superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
        ClassDoc supClassDoc = classDoc.superclass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
        while (sup != null &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
                  (! (supClassDoc.isPublic() ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
                              isLinkable(supClassDoc, configuration))) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
            if (supClassDoc.superclass().qualifiedName().equals(supClassDoc.qualifiedName()))
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
                break;
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
            sup = supClassDoc.superclassType();
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            supClassDoc = supClassDoc.superclass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
        if (classDoc.equals(supClassDoc)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
        return sup;
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
     * Given a class, return the closest visible super class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
     * @param classDoc the class we are searching the parent for.
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
     * @param configuration the current configuration of the doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
     * @return the closest visible super class.  Return null if it cannot
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
     *         be found (i.e. classDoc is java.lang.Object).
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
    public static ClassDoc getFirstVisibleSuperClassCD(ClassDoc classDoc,
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
            Configuration configuration) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
        if (classDoc == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
        ClassDoc supClassDoc = classDoc.superclass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
        while (supClassDoc != null &&
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
                  (! (supClassDoc.isPublic() ||
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
                              isLinkable(supClassDoc, configuration))) ) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
            supClassDoc = supClassDoc.superclass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
        if (classDoc.equals(supClassDoc)) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
        return supClassDoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
     * Given a ClassDoc, return the name of its type (Class, Interface, etc.).
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
     * @param cd the ClassDoc to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
     * @param lowerCaseOnly true if you want the name returned in lower case.
14447
6f87132c2e54 8000612: Discrepancy between resources provided in javadoc resource files and resources required by code
jjg
parents: 14368
diff changeset
   569
     *                      If false, the first letter of the name is capitalized.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
     * @return
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
    public static String getTypeName(Configuration config,
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
        ClassDoc cd, boolean lowerCaseOnly) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
        String typeName = "";
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
        if (cd.isOrdinaryClass()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
            typeName = "doclet.Class";
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
        } else if (cd.isInterface()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
            typeName = "doclet.Interface";
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
        } else if (cd.isException()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
            typeName = "doclet.Exception";
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
        } else if (cd.isError()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
            typeName = "doclet.Error";
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
        } else if (cd.isAnnotationType()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            typeName = "doclet.AnnotationType";
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
        } else if (cd.isEnum()) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
            typeName = "doclet.Enum";
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
        return config.getText(
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
   589
            lowerCaseOnly ? StringUtils.toLowerCase(typeName) : typeName);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
    /**
17571
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   593
     * Replace all tabs in a string with the appropriate number of spaces.
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   594
     * The string may be a multi-line string.
14542
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14447
diff changeset
   595
     * @param configuration the doclet configuration defining the setting for the
7062120649c2 8000800: javadoc uses static non-final fields
jjg
parents: 14447
diff changeset
   596
     *                      tab length.
17571
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   597
     * @param text the text for which the tabs should be expanded
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   598
     * @return the text with all tabs expanded
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
     */
17571
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   600
    public static String replaceTabs(Configuration configuration, String text) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   601
        if (!text.contains("\t"))
17571
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   602
            return text;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   603
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   604
        final int tabLength = configuration.sourcetab;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   605
        final String whitespace = configuration.tabSpaces;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   606
        final int textLength = text.length();
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   607
        StringBuilder result = new StringBuilder(textLength);
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   608
        int pos = 0;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   609
        int lineLength = 0;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   610
        for (int i = 0; i < textLength; i++) {
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   611
            char ch = text.charAt(i);
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   612
            switch (ch) {
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   613
                case '\n': case '\r':
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   614
                    lineLength = 0;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   615
                    break;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   616
                case '\t':
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   617
                    result.append(text, pos, i);
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   618
                    int spaceCount = tabLength - lineLength % tabLength;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   619
                    result.append(whitespace, 0, spaceCount);
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   620
                    lineLength += spaceCount;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   621
                    pos = i + 1;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   622
                    break;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   623
                default:
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   624
                    lineLength++;
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   625
            }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
        }
17571
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   627
        result.append(text, pos, textLength);
50895ba58e0d 8012180: Speed up removeNonInlineHtmlTags
jjg
parents: 17569
diff changeset
   628
        return result.toString();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
19119
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   631
    public static String normalizeNewlines(String text) {
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   632
        StringBuilder sb = new StringBuilder();
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   633
        final int textLength = text.length();
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   634
        final String NL = DocletConstants.NL;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   635
        int pos = 0;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   636
        for (int i = 0; i < textLength; i++) {
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   637
            char ch = text.charAt(i);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   638
            switch (ch) {
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   639
                case '\n':
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   640
                    sb.append(text, pos, i);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   641
                    sb.append(NL);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   642
                    pos = i + 1;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   643
                    break;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   644
                case '\r':
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   645
                    sb.append(text, pos, i);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   646
                    sb.append(NL);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   647
                    if (i + 1 < textLength && text.charAt(i + 1) == '\n')
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   648
                        i++;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   649
                    pos = i + 1;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   650
                    break;
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   651
            }
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   652
        }
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   653
        sb.append(text, pos, textLength);
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   654
        return sb.toString();
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   655
    }
3c2e9a2bbed6 8014636: TestLiteralCodeInPre fails on windows
jjg
parents: 17571
diff changeset
   656
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
     * The documentation for values() and valueOf() in Enums are set by the
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
     * doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
    public static void setEnumDocumentation(Configuration configuration,
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
            ClassDoc classDoc) {
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   663
        for (MethodDoc currentMethod : classDoc.methods()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
            if (currentMethod.name().equals("values") &&
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   665
                currentMethod.parameters().length == 0) {
19510
d2afcb89b0e7 8020663: Restructure some properties to facilitate better translation
jjg
parents: 19119
diff changeset
   666
                StringBuilder sb = new StringBuilder();
d2afcb89b0e7 8020663: Restructure some properties to facilitate better translation
jjg
parents: 19119
diff changeset
   667
                sb.append(configuration.getText("doclet.enum_values_doc.main", classDoc.name()));
d2afcb89b0e7 8020663: Restructure some properties to facilitate better translation
jjg
parents: 19119
diff changeset
   668
                sb.append("\n@return ");
d2afcb89b0e7 8020663: Restructure some properties to facilitate better translation
jjg
parents: 19119
diff changeset
   669
                sb.append(configuration.getText("doclet.enum_values_doc.return"));
d2afcb89b0e7 8020663: Restructure some properties to facilitate better translation
jjg
parents: 19119
diff changeset
   670
                currentMethod.setRawCommentText(sb.toString());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
            } else if (currentMethod.name().equals("valueOf") &&
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   672
                     currentMethod.parameters().length == 1) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
                Type paramType = currentMethod.parameters()[0].type();
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
                if (paramType != null &&
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   675
                    paramType.qualifiedTypeName().equals(String.class.getName())) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   676
                    StringBuilder sb = new StringBuilder();
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   677
                    sb.append(configuration.getText("doclet.enum_valueof_doc.main", classDoc.name()));
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   678
                    sb.append("\n@param name ");
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   679
                    sb.append(configuration.getText("doclet.enum_valueof_doc.param_name"));
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   680
                    sb.append("\n@return ");
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   681
                    sb.append(configuration.getText("doclet.enum_valueof_doc.return"));
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   682
                    sb.append("\n@throws IllegalArgumentException ");
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   683
                    sb.append(configuration.getText("doclet.enum_valueof_doc.throws_ila"));
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   684
                    sb.append("\n@throws NullPointerException ");
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   685
                    sb.append(configuration.getText("doclet.enum_valueof_doc.throws_npe"));
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   686
                    currentMethod.setRawCommentText(sb.toString());
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
     *  Return true if the given Doc is deprecated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
     *
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
     * @param doc the Doc to check.
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
     * @return true if the given Doc is deprecated.
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
     */
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   698
    public static boolean isDeprecated(Doc doc) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
        if (doc.tags("deprecated").length > 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
            return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
        }
9606
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   702
        AnnotationDesc[] annotationDescList;
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   703
        if (doc instanceof PackageDoc)
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   704
            annotationDescList = ((PackageDoc)doc).annotations();
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   705
        else
e5a619cb5dd3 6492694: @deprecated tag doesn't work in package-info files.
bpatel
parents: 9303
diff changeset
   706
            annotationDescList = ((ProgramElementDoc)doc).annotations();
22159
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   707
        for (AnnotationDesc anno : annotationDescList) {
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   708
            if (anno.annotationType().qualifiedName().equals(
682da512ec17 8030253: Update langtools to use strings-in-switch
briangoetz
parents: 22153
diff changeset
   709
                    Deprecated.class.getName())) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
                return true;
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
        return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
    }
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   715
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   716
    /**
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   717
     * A convenience method to get property name from the name of the
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   718
     * getter or setter method.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   719
     * @param name name of the getter or setter method.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   720
     * @return the name of the property of the given setter of getter.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   721
     */
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
   722
    public static String propertyNameFromMethodName(Configuration configuration, String name) {
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   723
        String propertyName = null;
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   724
        if (name.startsWith("get") || name.startsWith("set")) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   725
            propertyName = name.substring(3);
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   726
        } else if (name.startsWith("is")) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   727
            propertyName = name.substring(2);
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   728
        }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   729
        if ((propertyName == null) || propertyName.isEmpty()){
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   730
            return "";
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   731
        }
22153
f9f06fcca59d 8029800: Flags.java uses String.toLowerCase without specifying Locale
jlahoda
parents: 19667
diff changeset
   732
        return propertyName.substring(0, 1).toLowerCase(configuration.getLocale())
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   733
                + propertyName.substring(1);
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   734
    }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   735
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   736
    /**
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   737
     * In case of JavaFX mode on, filters out classes that are private,
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   738
     * package private or having the @treatAsPrivate annotation. Those are not
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   739
     * documented in JavaFX mode.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   740
     *
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   741
     * @param classes array of classes to be filtered.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   742
     * @param javafx set to true if in JavaFX mode.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   743
     * @return list of filtered classes.
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   744
     */
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   745
    public static ClassDoc[] filterOutPrivateClasses(final ClassDoc[] classes,
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   746
                                                     boolean javafx) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   747
        if (!javafx) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   748
            return classes;
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   749
        }
22163
3651128c74eb 8030244: Update langtools to use Diamond
briangoetz
parents: 22159
diff changeset
   750
        final List<ClassDoc> filteredOutClasses = new ArrayList<>(classes.length);
16319
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   751
        for (ClassDoc classDoc : classes) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   752
            if (classDoc.isPrivate() || classDoc.isPackagePrivate()) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   753
                continue;
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   754
            }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   755
            Tag[] aspTags = classDoc.tags("treatAsPrivate");
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   756
            if (aspTags != null && aspTags.length > 0) {
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   757
                continue;
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   758
            }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   759
            filteredOutClasses.add(classDoc);
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   760
        }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   761
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   762
        return filteredOutClasses.toArray(new ClassDoc[0]);
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   763
    }
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   764
e586bfeb39c5 7112427: The doclet needs to be able to generate JavaFX documentation.
jjg
parents: 15385
diff changeset
   765
    /**
15385
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   766
     * Test whether the given FieldDoc is one of the declaration annotation ElementTypes
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   767
     * defined in Java 5.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   768
     * Instead of testing for one of the new enum constants added in Java 8, test for
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   769
     * the old constants. This prevents bootstrapping problems.
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   770
     *
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   771
     * @param elt The FieldDoc to test
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   772
     * @return true, iff the given ElementType is one of the constants defined in Java 5
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   773
     * @since 1.8
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   774
     */
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   775
    public static boolean isJava5DeclarationElementType(FieldDoc elt) {
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   776
        return elt.name().contentEquals(ElementType.ANNOTATION_TYPE.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   777
                elt.name().contentEquals(ElementType.CONSTRUCTOR.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   778
                elt.name().contentEquals(ElementType.FIELD.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   779
                elt.name().contentEquals(ElementType.LOCAL_VARIABLE.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   780
                elt.name().contentEquals(ElementType.METHOD.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   781
                elt.name().contentEquals(ElementType.PACKAGE.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   782
                elt.name().contentEquals(ElementType.PARAMETER.name()) ||
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   783
                elt.name().contentEquals(ElementType.TYPE.name());
ee1eebe7e210 8006775: JSR 308: Compiler changes in JDK8
jjg
parents: 14542
diff changeset
   784
    }
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   785
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   786
    /**
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   787
     * A general purpose case insensitive String comparator, which compares two Strings using a Collator
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   788
     * strength of "TERTIARY".
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   789
     *
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   790
     * @param s1 first String to compare.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   791
     * @param s2 second String to compare.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   792
     * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   793
     *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   794
     */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   795
    public static int compareStrings(String s1, String s2) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   796
        return compareStrings(true, s1, s2);
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   797
    }
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   798
    /**
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   799
     * A general purpose case sensitive String comparator, which compares two Strings using a Collator
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   800
     * strength of "SECONDARY".
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   801
     *
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   802
     * @param s1 first String to compare.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   803
     * @param s2 second String to compare.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   804
     * @return a negative integer, zero, or a positive integer as the first
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   805
     *         argument is less than, equal to, or greater than the second.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   806
     */
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   807
    public static int compareCaseCompare(String s1, String s2) {
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   808
        return compareStrings(false, s1, s2);
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   809
    }
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   810
    private static int compareStrings(boolean caseSensitive, String s1, String s2) {
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   811
        Collator collator = Collator.getInstance();
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   812
        collator.setStrength(caseSensitive ? Collator.TERTIARY : Collator.SECONDARY);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   813
        return collator.compare(s1, s2);
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   814
    }
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   815
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   816
    /**
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   817
     * A comparator for index file presentations,
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   818
     *  1. this sorts first on simple names
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   819
     *  2. if equal, then compare the DocKind ex: Package, Interface etc.
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   820
     *  3a. if equal and if the type is of ExecutableMemberDoc(Constructor, Fields),
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   821
     *      a case insensitive comparison of parameter types
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   822
     *  3b. if equal, a case sensitive comparison of parameter types
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   823
     *  4. finally, if equal, compare the FQNs of the entities
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   824
     * @return a comparator for index file use
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   825
     */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   826
    public static Comparator<Doc> makeComparatorForIndexUse() {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   827
        return new Util.DocComparator<Doc>() {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   828
            /**
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   829
             * Compare two given Doc entities, first sort on name, then on the kinds,
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   830
             * then on the parameters only if the type is an instance of ExecutableMemberDocs,
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   831
             * the parameters are compared ignoring the case first, then a case sensitive comparison,
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   832
             * and finally the fully qualified names.
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   833
             *
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   834
             * @param d1 - a Doc element.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   835
             * @param d2 - a Doc element.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   836
             * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   837
             *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   838
             */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   839
            public int compare(Doc d1, Doc d2) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   840
                int result = compareNames(d1, d2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   841
                if (result != 0) {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   842
                    return result;
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   843
                }
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   844
                result = compareDocKinds(d1, d2);
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   845
                if (result != 0) {
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   846
                    return result;
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   847
                }
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   848
                if (hasParameters(d1)) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   849
                    Parameter[] param1 = ((ExecutableMemberDoc) d1).parameters();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   850
                    Parameter[] param2 = ((ExecutableMemberDoc) d2).parameters();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   851
                    result = compareParameters(false, param1, param2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   852
                    if (result != 0) {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   853
                        return result;
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   854
                    }
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   855
                    result = compareParameters(true, param1, param2);
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   856
                    if (result != 0) {
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   857
                        return result;
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   858
                    }
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   859
                }
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   860
                return compareFullyQualifiedNames(d1, d2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   861
            }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   862
        };
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   863
    }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   864
    /**
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   865
     * Comparator for ClassUse presentations, and sorts as follows:
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   866
     * 1. member names
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   867
     * 2. then fully qualified member names
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   868
     * 3. then parameter types if applicable
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   869
     * 4. finally the Doc kinds ie. package, class, interface etc.
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   870
     * @return a comparator to sort classes and members for class use
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   871
     */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   872
    public static Comparator<Doc> makeComparatorForClassUse() {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   873
        return new Util.DocComparator<Doc>() {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   874
            /**
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   875
             * Compare two given Doc entities, first sort on name, and if
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   876
             * applicable on the fully qualified name, and if applicable
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   877
             * on the parameter types, and finally the DocKind.
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   878
             * @param d1 - a Doc element.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   879
             * @param d2 - a Doc element.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   880
             * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   881
             *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   882
             */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   883
            public int compare(Doc d1, Doc d2) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   884
                int result = compareNames(d1, d2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   885
                if (result != 0) {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   886
                    return result;
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   887
                }
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   888
                result = compareFullyQualifiedNames(d1, d2);
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   889
                if (result != 0) {
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   890
                    return result;
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   891
                }
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   892
                if (hasParameters(d1) && hasParameters(d2)) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   893
                    Parameter[] param1 = ((ExecutableMemberDoc) d1).parameters();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   894
                    Parameter[] param2 = ((ExecutableMemberDoc) d2).parameters();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   895
                    result = compareParameters(false, param1, param2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   896
                    if (result != 0) {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   897
                        return result;
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   898
                    }
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   899
                    return compareParameters(true, param1, param2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   900
                }
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   901
                return compareDocKinds(d1, d2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   902
            }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   903
        };
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   904
    }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   905
    /**
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   906
     * A general purpose comparator to sort Doc entities, basically provides the building blocks
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   907
     * for creating specific comparators for an use-case.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   908
     * @param <T> a Doc entity
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   909
     */
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   910
    static abstract class DocComparator<T extends Doc> implements Comparator<Doc> {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   911
        static enum DocKind {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   912
           PACKAGE,
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   913
           CLASS,
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   914
           ENUM,
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   915
           INTERFACE,
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   916
           ANNOTATION,
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   917
           FIELD,
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   918
           CONSTRUCTOR,
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   919
           METHOD
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   920
        };
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   921
        boolean hasParameters(Doc d) {
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   922
            return d instanceof ExecutableMemberDoc;
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   923
        }
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   924
        DocKind getDocKind(Doc d) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   925
            if (d.isAnnotationType() || d.isAnnotationTypeElement()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   926
                return DocKind.ANNOTATION;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   927
            } else if (d.isEnum() || d.isEnumConstant()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   928
                return DocKind.ENUM;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   929
            } else if (d.isField()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   930
                return DocKind.FIELD;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   931
            } else if (d.isInterface()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   932
                return DocKind.INTERFACE;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   933
            } else if (d.isClass()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   934
                return DocKind.CLASS;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   935
            } else if (d.isConstructor()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   936
                return DocKind.CONSTRUCTOR;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   937
            } else if (d.isMethod()) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   938
                return DocKind.METHOD;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   939
            } else {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   940
                return DocKind.PACKAGE;
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   941
            }
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   942
        }
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   943
        /**
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   944
         * Compares two Doc entities' kinds, and these are ordered as defined in
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   945
         * the DocKind enumeration.
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   946
         * @param d1 the first Doc object
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   947
         * @param d2 the second Doc object
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   948
         * @return a negative integer, zero, or a positive integer as the first
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   949
         *         argument is less than, equal to, or greater than the second.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   950
         */
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   951
        protected int compareDocKinds(Doc d1, Doc d2) {
25300
3b8a5067fe29 8047162: [javadoc] index files are non deterministic
ksrini
parents: 25004
diff changeset
   952
            return getDocKind(d1).compareTo(getDocKind(d2));
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   953
        }
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   954
        /**
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   955
         * Compares two parameter arrays by comparing each Type of the parameter in the array,
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   956
         * and as many as possible, otherwise compare their lengths.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   957
         * @param ignoreCase specifies case sensitive or insensitive comparison.
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   958
         * @param params1 the first parameter array.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   959
         * @param params2 the first parameter array.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   960
         * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   961
         *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   962
         */
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   963
        protected int compareParameters(boolean ignoreCase, Parameter[] params1, Parameter[] params2) {
24394
74279778c307 8042601: Javadoc sort fails
ksrini
parents: 24220
diff changeset
   964
            // try to compare as many as possible
74279778c307 8042601: Javadoc sort fails
ksrini
parents: 24220
diff changeset
   965
            for (int i = 0; i < params1.length && i < params2.length; i++) {
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   966
                int result = compareStrings(ignoreCase, params1[i].typeName(), params2[i].typeName());
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   967
                if (result != 0) {
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   968
                    return result;
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   969
                }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   970
            }
24394
74279778c307 8042601: Javadoc sort fails
ksrini
parents: 24220
diff changeset
   971
            return Integer.compare(params1.length, params2.length);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   972
        }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   973
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   974
        /**
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   975
         * Compares two Doc entities typically the simple name of a method,
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   976
         * field, constructor etc.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   977
         * @param d1 the first Doc.
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   978
         * @param d2 the second Doc.
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   979
         * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   980
         *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   981
         */
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   982
        protected int compareNames(Doc d1, Doc d2) {
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   983
            return compareStrings(d1.name(), d2.name());
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   984
        }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   985
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   986
        /**
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   987
         * Compares the fully qualified names of the entities
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   988
         * @param d1 the first entity
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   989
         * @param d2 the second entity
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   990
         * @return a negative integer, zero, or a positive integer as the first
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   991
         *         argument is less than, equal to, or greater than the second.
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
   992
         */
25004
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   993
        protected int compareFullyQualifiedNames(Doc d1, Doc d2) {
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   994
            String name1 = (d1 instanceof ProgramElementDoc)
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   995
                    ? ((ProgramElementDoc)d1).qualifiedName()
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   996
                    : d1.name();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   997
            String name2 = (d2 instanceof ProgramElementDoc)
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   998
                    ? ((ProgramElementDoc)d2).qualifiedName()
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
   999
                    : d2.name();
b33effe4f252 8042829: [javadoc] index-file output is not sorted correctly
ksrini
parents: 24394
diff changeset
  1000
            return compareStrings(name1, name2);
24220
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
  1001
        }
eb213562268d 8039410: [javadoc] fix class-use items to be deterministic and index ordering
ksrini
parents: 22165
diff changeset
  1002
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
}