langtools/src/share/classes/com/sun/tools/javadoc/DocletInvoker.java
author darcy
Wed, 17 Feb 2010 14:30:17 -0800
changeset 4937 2fc03fb01efa
parent 2212 1d3dc0e0ba0c
child 5520 86e4b9a9da40
permissions -rw-r--r--
6927061: Refactor apt implemenation to use code from JSR 269 Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
2212
1d3dc0e0ba0c 6814575: Update copyright year
xdono
parents: 1990
diff changeset
     2
 * Copyright 1998-2009 Sun Microsystems, Inc.  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
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
 * have any questions.
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.javadoc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
import com.sun.javadoc.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
import static com.sun.javadoc.LanguageVersion.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
import com.sun.tools.javac.util.List;
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
import java.net.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
import java.lang.reflect.Method;
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
import java.lang.reflect.Modifier;
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
import java.lang.reflect.InvocationTargetException;
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
import java.io.File;
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import java.io.IOException;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import java.util.StringTokenizer;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
 * Class creates, controls and invokes doclets.
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
 * @author Neal Gafter (rewrite)
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
public class DocletInvoker {
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
868
d0f233085cbb 6657907: javadoc has unchecked warnings
jjg
parents: 10
diff changeset
    49
    private final Class<?> docletClass;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    private final String docletClassName;
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
    private final ClassLoader appClassLoader;
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    private final Messager messager;
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    private static class DocletInvokeException extends Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        private static final long serialVersionUID = 0;
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    private String appendPath(String path1, String path2) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        if (path1 == null || path1.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            return path2 == null ? "." : path2;
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        } else if (path2 == null || path2.length() == 0) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
            return path1;
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            return path1  + File.pathSeparator + path2;
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
    public DocletInvoker(Messager messager,
1365
ced0e3c4678f 6748546: javadoc API should be classloader-friendly
jjg
parents: 1264
diff changeset
    72
                         String docletClassName, String docletPath,
ced0e3c4678f 6748546: javadoc API should be classloader-friendly
jjg
parents: 1264
diff changeset
    73
                         ClassLoader docletParentClassLoader) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        this.messager = messager;
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        this.docletClassName = docletClassName;
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        // construct class loader
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
        String cpString = null;   // make sure env.class.path defaults to dot
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        // do prepends to get correct ordering
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        cpString = appendPath(System.getProperty("env.class.path"), cpString);
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        cpString = appendPath(System.getProperty("java.class.path"), cpString);
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        cpString = appendPath(docletPath, cpString);
4937
2fc03fb01efa 6927061: Refactor apt implemenation to use code from JSR 269
darcy
parents: 2212
diff changeset
    84
        URL[] urls = com.sun.tools.javac.file.Paths.pathToURLs(cpString);
1365
ced0e3c4678f 6748546: javadoc API should be classloader-friendly
jjg
parents: 1264
diff changeset
    85
        if (docletParentClassLoader == null)
1990
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
    86
            appClassLoader = new URLClassLoader(urls, getDelegationClassLoader(docletClassName));
1365
ced0e3c4678f 6748546: javadoc API should be classloader-friendly
jjg
parents: 1264
diff changeset
    87
        else
ced0e3c4678f 6748546: javadoc API should be classloader-friendly
jjg
parents: 1264
diff changeset
    88
            appClassLoader = new URLClassLoader(urls, docletParentClassLoader);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
        // attempt to find doclet
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
    91
        Class<?> dc = null;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            dc = appClassLoader.loadClass(docletClassName);
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        } catch (ClassNotFoundException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
            messager.error(null, "main.doclet_class_not_found", docletClassName);
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
            messager.exit();
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
        docletClass = dc;
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
1990
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   101
    /*
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   102
     * Returns the delegation class loader to use when creating
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   103
     * appClassLoader (used to load the doclet).  The context class
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   104
     * loader is the best choice, but legacy behavior was to use the
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   105
     * default delegation class loader (aka system class loader).
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   106
     *
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   107
     * Here we favor using the context class loader.  To ensure
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   108
     * compatibility with existing apps, we revert to legacy
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   109
     * behavior if either or both of the following conditions hold:
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   110
     *
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   111
     * 1) the doclet is loadable from the system class loader but not
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   112
     *    from the context class loader,
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   113
     *
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   114
     * 2) this.getClass() is loadable from the system class loader but not
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   115
     *    from the context class loader.
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   116
     */
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   117
    private ClassLoader getDelegationClassLoader(String docletClassName) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   118
        ClassLoader ctxCL = Thread.currentThread().getContextClassLoader();
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   119
        ClassLoader sysCL = ClassLoader.getSystemClassLoader();
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   120
        if (sysCL == null)
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   121
            return ctxCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   122
        if (ctxCL == null)
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   123
            return sysCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   124
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   125
        // Condition 1.
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   126
        try {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   127
            sysCL.loadClass(docletClassName);
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   128
            try {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   129
                ctxCL.loadClass(docletClassName);
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   130
            } catch (ClassNotFoundException e) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   131
                return sysCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   132
            }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   133
        } catch (ClassNotFoundException e) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   134
        }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   135
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   136
        // Condition 2.
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   137
        try {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   138
            if (getClass() == sysCL.loadClass(getClass().getName())) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   139
                try {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   140
                    if (getClass() != ctxCL.loadClass(getClass().getName()))
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   141
                        return sysCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   142
                } catch (ClassNotFoundException e) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   143
                    return sysCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   144
                }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   145
            }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   146
        } catch (ClassNotFoundException e) {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   147
        }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   148
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   149
        return ctxCL;
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   150
    }
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   151
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
     * Generate documentation here.  Return true on success.
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
    public boolean start(RootDoc root) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
        Object retVal;
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
        String methodName = "start";
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
   158
        Class<?>[] paramTypes = new Class<?>[1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
        Object[] params = new Object[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
        paramTypes[0] = RootDoc.class;
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
        params[0] = root;
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            retVal = invoke(methodName, null, paramTypes, params);
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
        } catch (DocletInvokeException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
        if (retVal instanceof Boolean) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            return ((Boolean)retVal).booleanValue();
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            messager.error(null, "main.must_return_boolean",
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
                           docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
     * Check for doclet added options here. Zero return means
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
     * option not known.  Positive value indicates number of
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
     * arguments to option.  Negative value means error occurred.
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
    public int optionLength(String option) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
        Object retVal;
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
        String methodName = "optionLength";
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
   184
        Class<?>[] paramTypes = new Class<?>[1];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
        Object[] params = new Object[1];
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
        paramTypes[0] = option.getClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
        params[0] = option;
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
            retVal = invoke(methodName, new Integer(0), paramTypes, params);
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
        } catch (DocletInvokeException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
        if (retVal instanceof Integer) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            return ((Integer)retVal).intValue();
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            messager.error(null, "main.must_return_int",
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
                           docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            return -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
     * Let doclet check that all options are OK. Returning true means
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
     * options are OK.  If method does not exist, assume true.
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
    public boolean validOptions(List<String[]> optlist) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
        Object retVal;
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
        String options[][] = optlist.toArray(new String[optlist.length()][]);
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
        String methodName = "validOptions";
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
        DocErrorReporter reporter = messager;
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
   211
        Class<?>[] paramTypes = new Class<?>[2];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
        Object[] params = new Object[2];
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
        paramTypes[0] = options.getClass();
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
        paramTypes[1] = DocErrorReporter.class;
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
        params[0] = options;
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
        params[1] = reporter;
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            retVal = invoke(methodName, Boolean.TRUE, paramTypes, params);
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
        } catch (DocletInvokeException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
        if (retVal instanceof Boolean) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            return ((Boolean)retVal).booleanValue();
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
        } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
            messager.error(null, "main.must_return_boolean",
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
                           docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
            return false;
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
     * Return the language version supported by this doclet.
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
     * If the method does not exist in the doclet, assume version 1.1.
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
    public LanguageVersion languageVersion() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
        try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            Object retVal;
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
            String methodName = "languageVersion";
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
   239
            Class<?>[] paramTypes = new Class<?>[0];
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
            Object[] params = new Object[0];
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
                retVal = invoke(methodName, JAVA_1_1, paramTypes, params);
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            } catch (DocletInvokeException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
                return JAVA_1_1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            if (retVal instanceof LanguageVersion) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
                return (LanguageVersion)retVal;
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
                messager.error(null, "main.must_return_languageversion",
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
                               docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
                return JAVA_1_1;
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
        } catch (NoClassDefFoundError ex) { // for boostrapping, no Enum class.
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
            return null;
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
     * Utility method for calling doclet functionality
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
    private Object invoke(String methodName, Object returnValueIfNonExistent,
1789
7ac8c0815000 6765045: Remove rawtypes warnings from langtools
mcimadamore
parents: 1365
diff changeset
   262
                          Class<?>[] paramTypes, Object[] params)
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
        throws DocletInvokeException {
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            Method meth;
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
                meth = docletClass.getMethod(methodName, paramTypes);
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            } catch (NoSuchMethodException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
                if (returnValueIfNonExistent == null) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
                    messager.error(null, "main.doclet_method_not_found",
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
                                   docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
                    throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
                    return returnValueIfNonExistent;
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
            } catch (SecurityException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
                messager.error(null, "main.doclet_method_not_accessible",
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
                               docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
                throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
            if (!Modifier.isStatic(meth.getModifiers())) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
                messager.error(null, "main.doclet_method_must_be_static",
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
                               docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
                throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            }
1990
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   285
            ClassLoader savedCCL =
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   286
                Thread.currentThread().getContextClassLoader();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            try {
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
                Thread.currentThread().setContextClassLoader(appClassLoader);
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
                return meth.invoke(null , params);
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
            } catch (IllegalArgumentException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
                messager.error(null, "main.internal_error_exception_thrown",
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
                               docletClassName, methodName, exc.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
                throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
            } catch (IllegalAccessException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
                messager.error(null, "main.doclet_method_not_accessible",
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
                               docletClassName, methodName);
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
                throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
            } catch (NullPointerException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
                messager.error(null, "main.internal_error_exception_thrown",
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
                               docletClassName, methodName, exc.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
                throw new DocletInvokeException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
            } catch (InvocationTargetException exc) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
                Throwable err = exc.getTargetException();
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
                if (err instanceof java.lang.OutOfMemoryError) {
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
                    messager.error(null, "main.out.of.memory");
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
                } else {
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
                messager.error(null, "main.exception_thrown",
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
                               docletClassName, methodName, exc.toString());
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
                    exc.getTargetException().printStackTrace();
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
                }
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
                throw new DocletInvokeException();
1990
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   312
            } finally {
5d90be5d60bb 6176978: current Javadoc's invocation and extension (Doclet) mechanisms are problematic
jjg
parents: 1789
diff changeset
   313
                Thread.currentThread().setContextClassLoader(savedCCL);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            }
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
}