Merge
This commit is contained in:
commit
62610f975f
@ -70,6 +70,7 @@ public class JavacTaskImpl extends JavacTask {
|
||||
private JavaCompiler compiler;
|
||||
private Locale locale;
|
||||
private String[] args;
|
||||
private String[] classNames;
|
||||
private Context context;
|
||||
private List<JavaFileObject> fileObjects;
|
||||
private Map<JavaFileObject, JCCompilationUnit> notYetEntered;
|
||||
@ -82,11 +83,13 @@ public class JavacTaskImpl extends JavacTask {
|
||||
|
||||
JavacTaskImpl(Main compilerMain,
|
||||
String[] args,
|
||||
String[] classNames,
|
||||
Context context,
|
||||
List<JavaFileObject> fileObjects) {
|
||||
this.ccw = ClientCodeWrapper.instance(context);
|
||||
this.compilerMain = compilerMain;
|
||||
this.args = args;
|
||||
this.classNames = classNames;
|
||||
this.context = context;
|
||||
this.fileObjects = fileObjects;
|
||||
setLocale(Locale.getDefault());
|
||||
@ -101,17 +104,14 @@ public class JavacTaskImpl extends JavacTask {
|
||||
Context context,
|
||||
Iterable<String> classes,
|
||||
Iterable<? extends JavaFileObject> fileObjects) {
|
||||
this(compilerMain, toArray(flags, classes), context, toList(fileObjects));
|
||||
this(compilerMain, toArray(flags), toArray(classes), context, toList(fileObjects));
|
||||
}
|
||||
|
||||
static private String[] toArray(Iterable<String> flags, Iterable<String> classes) {
|
||||
static private String[] toArray(Iterable<String> iter) {
|
||||
ListBuffer<String> result = new ListBuffer<String>();
|
||||
if (flags != null)
|
||||
for (String flag : flags)
|
||||
result.append(flag);
|
||||
if (classes != null)
|
||||
for (String cls : classes)
|
||||
result.append(cls);
|
||||
if (iter != null)
|
||||
for (String s : iter)
|
||||
result.append(s);
|
||||
return result.toArray(new String[result.length()]);
|
||||
}
|
||||
|
||||
@ -129,7 +129,7 @@ public class JavacTaskImpl extends JavacTask {
|
||||
initContext();
|
||||
notYetEntered = new HashMap<JavaFileObject, JCCompilationUnit>();
|
||||
compilerMain.setAPIMode(true);
|
||||
result = compilerMain.compile(args, context, fileObjects, processors);
|
||||
result = compilerMain.compile(args, classNames, context, fileObjects, processors);
|
||||
cleanup();
|
||||
return result.isOK();
|
||||
} else {
|
||||
@ -159,7 +159,7 @@ public class JavacTaskImpl extends JavacTask {
|
||||
initContext();
|
||||
compilerMain.setOptions(Options.instance(context));
|
||||
compilerMain.filenames = new LinkedHashSet<File>();
|
||||
Collection<File> filenames = compilerMain.processArgs(CommandLine.parse(args));
|
||||
Collection<File> filenames = compilerMain.processArgs(CommandLine.parse(args), classNames);
|
||||
if (!filenames.isEmpty())
|
||||
throw new IllegalArgumentException("Malformed arguments " + toString(filenames, " "));
|
||||
compiler = JavaCompiler.instance(context);
|
||||
@ -174,6 +174,7 @@ public class JavacTaskImpl extends JavacTask {
|
||||
// endContext will be called when all classes have been generated
|
||||
// TODO: should handle the case after each phase if errors have occurred
|
||||
args = null;
|
||||
classNames = null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -204,6 +205,7 @@ public class JavacTaskImpl extends JavacTask {
|
||||
compiler = null;
|
||||
compilerMain = null;
|
||||
args = null;
|
||||
classNames = null;
|
||||
context = null;
|
||||
fileObjects = null;
|
||||
notYetEntered = null;
|
||||
|
@ -34,6 +34,7 @@ import com.sun.tools.javac.code.*;
|
||||
import com.sun.tools.javac.code.Type.*;
|
||||
import com.sun.tools.javac.code.Type.ForAll.ConstraintKind;
|
||||
import com.sun.tools.javac.code.Symbol.*;
|
||||
import com.sun.tools.javac.comp.Resolve.InapplicableMethodException;
|
||||
import com.sun.tools.javac.comp.Resolve.VerboseResolutionMode;
|
||||
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
|
||||
|
||||
@ -84,7 +85,7 @@ public class Infer {
|
||||
|
||||
}
|
||||
|
||||
public static class InferenceException extends Resolve.InapplicableMethodException {
|
||||
public static class InferenceException extends InapplicableMethodException {
|
||||
private static final long serialVersionUID = 0;
|
||||
|
||||
InferenceException(JCDiagnostic.Factory diags) {
|
||||
@ -287,6 +288,18 @@ public class Infer {
|
||||
}
|
||||
}
|
||||
|
||||
Type asUndetType(Type t, List<Type> undetvars) {
|
||||
return types.subst(t, inferenceVars(undetvars), undetvars);
|
||||
}
|
||||
|
||||
List<Type> inferenceVars(List<Type> undetvars) {
|
||||
ListBuffer<Type> tvars = ListBuffer.lb();
|
||||
for (Type uv : undetvars) {
|
||||
tvars.append(((UndetVar)uv).qtype);
|
||||
}
|
||||
return tvars.toList();
|
||||
}
|
||||
|
||||
/***************************************************************************
|
||||
* Exported Methods
|
||||
***************************************************************************/
|
||||
@ -372,62 +385,11 @@ public class Infer {
|
||||
final Warner warn) throws InferenceException {
|
||||
//-System.err.println("instantiateMethod(" + tvars + ", " + mt + ", " + argtypes + ")"); //DEBUG
|
||||
List<Type> undetvars = Type.map(tvars, fromTypeVarFun);
|
||||
List<Type> formals = mt.argtypes;
|
||||
//need to capture exactly once - otherwise subsequent
|
||||
//applicability checks might fail
|
||||
final List<Type> capturedArgs = types.capture(argtypes);
|
||||
List<Type> actuals = capturedArgs;
|
||||
List<Type> actualsNoCapture = argtypes;
|
||||
// instantiate all polymorphic argument types and
|
||||
// set up lower bounds constraints for undetvars
|
||||
Type varargsFormal = useVarargs ? formals.last() : null;
|
||||
if (varargsFormal == null &&
|
||||
actuals.size() != formals.size()) {
|
||||
throw unambiguousNoInstanceException
|
||||
.setMessage("infer.arg.length.mismatch");
|
||||
}
|
||||
while (actuals.nonEmpty() && formals.head != varargsFormal) {
|
||||
Type formal = formals.head;
|
||||
Type actual = actuals.head.baseType();
|
||||
Type actualNoCapture = actualsNoCapture.head.baseType();
|
||||
if (actual.tag == FORALL)
|
||||
actual = instantiateArg((ForAll)actual, formal, tvars, warn);
|
||||
Type undetFormal = types.subst(formal, tvars, undetvars);
|
||||
boolean works = allowBoxing
|
||||
? types.isConvertible(actual, undetFormal, warn)
|
||||
: types.isSubtypeUnchecked(actual, undetFormal, warn);
|
||||
if (!works) {
|
||||
throw unambiguousNoInstanceException
|
||||
.setMessage("infer.no.conforming.assignment.exists",
|
||||
tvars, actualNoCapture, formal);
|
||||
}
|
||||
formals = formals.tail;
|
||||
actuals = actuals.tail;
|
||||
actualsNoCapture = actualsNoCapture.tail;
|
||||
}
|
||||
//final List<Type> capturedArgs = types.capture(argtypes);
|
||||
|
||||
if (formals.head != varargsFormal) // not enough args
|
||||
throw unambiguousNoInstanceException.setMessage("infer.arg.length.mismatch");
|
||||
|
||||
// for varargs arguments as well
|
||||
if (useVarargs) {
|
||||
Type elemType = types.elemtype(varargsFormal);
|
||||
Type elemUndet = types.subst(elemType, tvars, undetvars);
|
||||
while (actuals.nonEmpty()) {
|
||||
Type actual = actuals.head.baseType();
|
||||
Type actualNoCapture = actualsNoCapture.head.baseType();
|
||||
if (actual.tag == FORALL)
|
||||
actual = instantiateArg((ForAll)actual, elemType, tvars, warn);
|
||||
boolean works = types.isConvertible(actual, elemUndet, warn);
|
||||
if (!works) {
|
||||
throw unambiguousNoInstanceException
|
||||
.setMessage("infer.no.conforming.assignment.exists",
|
||||
tvars, actualNoCapture, elemType);
|
||||
}
|
||||
actuals = actuals.tail;
|
||||
actualsNoCapture = actualsNoCapture.tail;
|
||||
}
|
||||
}
|
||||
final List<Type> capturedArgs =
|
||||
rs.checkRawArgumentsAcceptable(env, undetvars, argtypes, mt.getParameterTypes(),
|
||||
allowBoxing, useVarargs, warn, new InferenceCheckHandler(undetvars));
|
||||
|
||||
// minimize as yet undetermined type variables
|
||||
for (Type t : undetvars)
|
||||
@ -503,6 +465,31 @@ public class Infer {
|
||||
}
|
||||
//where
|
||||
|
||||
/** inference check handler **/
|
||||
class InferenceCheckHandler implements Resolve.MethodCheckHandler {
|
||||
|
||||
List<Type> undetvars;
|
||||
|
||||
public InferenceCheckHandler(List<Type> undetvars) {
|
||||
this.undetvars = undetvars;
|
||||
}
|
||||
|
||||
public InapplicableMethodException arityMismatch() {
|
||||
return unambiguousNoInstanceException.setMessage("infer.arg.length.mismatch");
|
||||
}
|
||||
public InapplicableMethodException argumentMismatch(boolean varargs, Type found, Type expected) {
|
||||
String key = varargs ?
|
||||
"infer.varargs.argument.mismatch" :
|
||||
"infer.no.conforming.assignment.exists";
|
||||
return unambiguousNoInstanceException.setMessage(key,
|
||||
inferenceVars(undetvars), found, expected);
|
||||
}
|
||||
public InapplicableMethodException inaccessibleVarargs(Symbol location, Type expected) {
|
||||
return unambiguousNoInstanceException.setMessage("inaccessible.varargs.type",
|
||||
expected, Kinds.kindName(location), location);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* A delegated type representing a partially uninferred method type.
|
||||
* The return type of a partially uninferred method type is a ForAll
|
||||
@ -572,7 +559,7 @@ public class Infer {
|
||||
rs.checkRawArgumentsAcceptable(env, actuals, formals,
|
||||
allowBoxing, useVarargs, warn);
|
||||
}
|
||||
catch (Resolve.InapplicableMethodException ex) {
|
||||
catch (InapplicableMethodException ex) {
|
||||
// inferred method is not applicable
|
||||
throw invalidInstanceException.setMessage(ex.getDiagnostic());
|
||||
}
|
||||
|
@ -44,6 +44,7 @@ import static com.sun.tools.javac.code.Flags.ANNOTATION;
|
||||
import static com.sun.tools.javac.code.Kinds.*;
|
||||
import static com.sun.tools.javac.code.TypeTags.*;
|
||||
import static com.sun.tools.javac.tree.JCTree.Tag.*;
|
||||
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticFlag;
|
||||
import com.sun.tools.javac.util.JCDiagnostic.DiagnosticPosition;
|
||||
|
||||
/** This is the second phase of Enter, in which classes are completed
|
||||
@ -142,7 +143,7 @@ public class MemberEnter extends JCTree.Visitor implements Completer {
|
||||
JCDiagnostic msg = diags.fragment("fatal.err.no.java.lang");
|
||||
throw new FatalError(msg);
|
||||
} else {
|
||||
log.error(pos, "doesnt.exist", tsym);
|
||||
log.error(DiagnosticFlag.RESOLVE_ERROR, pos, "doesnt.exist", tsym);
|
||||
}
|
||||
}
|
||||
env.toplevel.starImportScope.importAll(tsym.members());
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@ -474,52 +474,126 @@ public class Resolve {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* A check handler is used by the main method applicability routine in order
|
||||
* to handle specific method applicability failures. It is assumed that a class
|
||||
* implementing this interface should throw exceptions that are a subtype of
|
||||
* InapplicableMethodException (see below). Such exception will terminate the
|
||||
* method applicability check and propagate important info outwards (for the
|
||||
* purpose of generating better diagnostics).
|
||||
*/
|
||||
interface MethodCheckHandler {
|
||||
/* The number of actuals and formals differ */
|
||||
InapplicableMethodException arityMismatch();
|
||||
/* An actual argument type does not conform to the corresponding formal type */
|
||||
InapplicableMethodException argumentMismatch(boolean varargs, Type found, Type expected);
|
||||
/* The element type of a varargs is not accessible in the current context */
|
||||
InapplicableMethodException inaccessibleVarargs(Symbol location, Type expected);
|
||||
}
|
||||
|
||||
/**
|
||||
* Basic method check handler used within Resolve - all methods end up
|
||||
* throwing InapplicableMethodException; a diagnostic fragment that describes
|
||||
* the cause as to why the method is not applicable is set on the exception
|
||||
* before it is thrown.
|
||||
*/
|
||||
MethodCheckHandler resolveHandler = new MethodCheckHandler() {
|
||||
public InapplicableMethodException arityMismatch() {
|
||||
return inapplicableMethodException.setMessage("arg.length.mismatch");
|
||||
}
|
||||
public InapplicableMethodException argumentMismatch(boolean varargs, Type found, Type expected) {
|
||||
String key = varargs ?
|
||||
"varargs.argument.mismatch" :
|
||||
"no.conforming.assignment.exists";
|
||||
return inapplicableMethodException.setMessage(key,
|
||||
found, expected);
|
||||
}
|
||||
public InapplicableMethodException inaccessibleVarargs(Symbol location, Type expected) {
|
||||
return inapplicableMethodException.setMessage("inaccessible.varargs.type",
|
||||
expected, Kinds.kindName(location), location);
|
||||
}
|
||||
};
|
||||
|
||||
void checkRawArgumentsAcceptable(Env<AttrContext> env,
|
||||
List<Type> argtypes,
|
||||
List<Type> formals,
|
||||
boolean allowBoxing,
|
||||
boolean useVarargs,
|
||||
Warner warn) {
|
||||
checkRawArgumentsAcceptable(env, List.<Type>nil(), argtypes, formals,
|
||||
allowBoxing, useVarargs, warn, resolveHandler);
|
||||
}
|
||||
|
||||
/**
|
||||
* Main method applicability routine. Given a list of actual types A,
|
||||
* a list of formal types F, determines whether the types in A are
|
||||
* compatible (by method invocation conversion) with the types in F.
|
||||
*
|
||||
* Since this routine is shared between overload resolution and method
|
||||
* type-inference, it is crucial that actual types are converted to the
|
||||
* corresponding 'undet' form (i.e. where inference variables are replaced
|
||||
* with undetvars) so that constraints can be propagated and collected.
|
||||
*
|
||||
* Moreover, if one or more types in A is a poly type, this routine calls
|
||||
* Infer.instantiateArg in order to complete the poly type (this might involve
|
||||
* deferred attribution).
|
||||
*
|
||||
* A method check handler (see above) is used in order to report errors.
|
||||
*/
|
||||
List<Type> checkRawArgumentsAcceptable(Env<AttrContext> env,
|
||||
List<Type> undetvars,
|
||||
List<Type> argtypes,
|
||||
List<Type> formals,
|
||||
boolean allowBoxing,
|
||||
boolean useVarargs,
|
||||
Warner warn,
|
||||
MethodCheckHandler handler) {
|
||||
Type varargsFormal = useVarargs ? formals.last() : null;
|
||||
ListBuffer<Type> checkedArgs = ListBuffer.lb();
|
||||
|
||||
if (varargsFormal == null &&
|
||||
argtypes.size() != formals.size()) {
|
||||
throw inapplicableMethodException.setMessage("arg.length.mismatch"); // not enough args
|
||||
throw handler.arityMismatch(); // not enough args
|
||||
}
|
||||
|
||||
while (argtypes.nonEmpty() && formals.head != varargsFormal) {
|
||||
boolean works = allowBoxing
|
||||
? types.isConvertible(argtypes.head, formals.head, warn)
|
||||
: types.isSubtypeUnchecked(argtypes.head, formals.head, warn);
|
||||
if (!works)
|
||||
throw inapplicableMethodException.setMessage("no.conforming.assignment.exists",
|
||||
argtypes.head,
|
||||
formals.head);
|
||||
Type undetFormal = infer.asUndetType(formals.head, undetvars);
|
||||
Type capturedActual = types.capture(argtypes.head);
|
||||
boolean works = allowBoxing ?
|
||||
types.isConvertible(capturedActual, undetFormal, warn) :
|
||||
types.isSubtypeUnchecked(capturedActual, undetFormal, warn);
|
||||
if (!works) {
|
||||
throw handler.argumentMismatch(false, argtypes.head, formals.head);
|
||||
}
|
||||
checkedArgs.append(capturedActual);
|
||||
argtypes = argtypes.tail;
|
||||
formals = formals.tail;
|
||||
}
|
||||
|
||||
if (formals.head != varargsFormal)
|
||||
throw inapplicableMethodException.setMessage("arg.length.mismatch"); // not enough args
|
||||
if (formals.head != varargsFormal) {
|
||||
throw handler.arityMismatch(); // not enough args
|
||||
}
|
||||
|
||||
if (useVarargs) {
|
||||
//note: if applicability check is triggered by most specific test,
|
||||
//the last argument of a varargs is _not_ an array type (see JLS 15.12.2.5)
|
||||
Type elt = types.elemtype(varargsFormal);
|
||||
Type eltUndet = infer.asUndetType(elt, undetvars);
|
||||
while (argtypes.nonEmpty()) {
|
||||
if (!types.isConvertible(argtypes.head, elt, warn))
|
||||
throw inapplicableMethodException.setMessage("varargs.argument.mismatch",
|
||||
argtypes.head,
|
||||
elt);
|
||||
Type capturedActual = types.capture(argtypes.head);
|
||||
if (!types.isConvertible(capturedActual, eltUndet, warn)) {
|
||||
throw handler.argumentMismatch(true, argtypes.head, elt);
|
||||
}
|
||||
checkedArgs.append(capturedActual);
|
||||
argtypes = argtypes.tail;
|
||||
}
|
||||
//check varargs element type accessibility
|
||||
if (!isAccessible(env, elt)) {
|
||||
if (undetvars.isEmpty() && !isAccessible(env, elt)) {
|
||||
Symbol location = env.enclClass.sym;
|
||||
throw inapplicableMethodException.setMessage("inaccessible.varargs.type",
|
||||
elt,
|
||||
Kinds.kindName(location),
|
||||
location);
|
||||
throw handler.inaccessibleVarargs(location, elt);
|
||||
}
|
||||
}
|
||||
return;
|
||||
return checkedArgs.toList();
|
||||
}
|
||||
// where
|
||||
public static class InapplicableMethodException extends RuntimeException {
|
||||
|
@ -31,6 +31,7 @@ import java.io.PrintWriter;
|
||||
import java.net.URL;
|
||||
import java.security.DigestInputStream;
|
||||
import java.security.MessageDigest;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Set;
|
||||
@ -208,6 +209,10 @@ public class Main {
|
||||
* @param flags The array of command line arguments.
|
||||
*/
|
||||
public Collection<File> processArgs(String[] flags) { // XXX sb protected
|
||||
return processArgs(flags, null);
|
||||
}
|
||||
|
||||
public Collection<File> processArgs(String[] flags, String[] classNames) { // XXX sb protected
|
||||
int ac = 0;
|
||||
while (ac < flags.length) {
|
||||
String flag = flags[ac];
|
||||
@ -248,6 +253,10 @@ public class Main {
|
||||
}
|
||||
}
|
||||
|
||||
if (this.classnames != null && classNames != null) {
|
||||
this.classnames.addAll(Arrays.asList(classNames));
|
||||
}
|
||||
|
||||
if (!checkDirectory(D))
|
||||
return null;
|
||||
if (!checkDirectory(S))
|
||||
@ -345,6 +354,15 @@ public class Main {
|
||||
Context context,
|
||||
List<JavaFileObject> fileObjects,
|
||||
Iterable<? extends Processor> processors)
|
||||
{
|
||||
return compile(args, null, context, fileObjects, processors);
|
||||
}
|
||||
|
||||
public Result compile(String[] args,
|
||||
String[] classNames,
|
||||
Context context,
|
||||
List<JavaFileObject> fileObjects,
|
||||
Iterable<? extends Processor> processors)
|
||||
{
|
||||
context.put(Log.outKey, out);
|
||||
log = Log.instance(context);
|
||||
@ -361,14 +379,16 @@ public class Main {
|
||||
* into account.
|
||||
*/
|
||||
try {
|
||||
if (args.length == 0 && fileObjects.isEmpty()) {
|
||||
if (args.length == 0
|
||||
&& (classNames == null || classNames.length == 0)
|
||||
&& fileObjects.isEmpty()) {
|
||||
Option.HELP.process(optionHelper, "-help");
|
||||
return Result.CMDERR;
|
||||
}
|
||||
|
||||
Collection<File> files;
|
||||
try {
|
||||
files = processArgs(CommandLine.parse(args));
|
||||
files = processArgs(CommandLine.parse(args), classNames);
|
||||
if (files == null) {
|
||||
// null signals an error in options, abort
|
||||
return Result.CMDERR;
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -1620,6 +1620,10 @@ compiler.misc.infer.no.conforming.assignment.exists=\
|
||||
compiler.misc.infer.arg.length.mismatch=\
|
||||
cannot instantiate from arguments because actual and formal argument lists differ in length
|
||||
|
||||
# 0: list of type, 1: type, 2: type
|
||||
compiler.misc.infer.varargs.argument.mismatch=\
|
||||
no instance(s) of type variable(s) {0} exist so that argument type {1} conforms to vararg element type {2}
|
||||
|
||||
# 0: type, 1: list of type
|
||||
compiler.misc.inferred.do.not.conform.to.bounds=\
|
||||
inferred type does not conform to declared bound(s)\n\
|
||||
|
31
langtools/test/tools/javac/7129225/Anno.java
Normal file
31
langtools/test/tools/javac/7129225/Anno.java
Normal file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface Anno {
|
||||
}
|
45
langtools/test/tools/javac/7129225/AnnoProcessor.java
Normal file
45
langtools/test/tools/javac/7129225/AnnoProcessor.java
Normal file
@ -0,0 +1,45 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
import java.util.Set;
|
||||
import javax.annotation.processing.*;
|
||||
import javax.lang.model.SourceVersion;
|
||||
import javax.lang.model.element.TypeElement;
|
||||
import javax.tools.Diagnostic.Kind;
|
||||
|
||||
@SupportedAnnotationTypes("Anno")
|
||||
public class AnnoProcessor extends JavacTestingAbstractProcessor {
|
||||
@Override
|
||||
public SourceVersion getSupportedSourceVersion() {
|
||||
return SourceVersion.latest();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean process(Set<? extends TypeElement> set, RoundEnvironment re) {
|
||||
messager.printMessage(Kind.NOTE, "RUNNING - lastRound = " + re.processingOver());
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
2
langtools/test/tools/javac/7129225/NegTest.ref
Normal file
2
langtools/test/tools/javac/7129225/NegTest.ref
Normal file
@ -0,0 +1,2 @@
|
||||
TestImportStar.java:39:1: compiler.err.doesnt.exist: xxx
|
||||
1 error
|
43
langtools/test/tools/javac/7129225/TestImportStar.java
Normal file
43
langtools/test/tools/javac/7129225/TestImportStar.java
Normal file
@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/* @test
|
||||
* @bug 7129225
|
||||
* @summary import xxx.* isn't handled correctly by annotation processing
|
||||
* @library ../lib
|
||||
* @build JavacTestingAbstractProcessor
|
||||
* @compile/fail/ref=NegTest.ref -XDrawDiagnostics TestImportStar.java
|
||||
* @compile Anno.java AnnoProcessor.java
|
||||
* @compile/ref=TestImportStar.ref -XDrawDiagnostics -processor AnnoProcessor -proc:only TestImportStar.java
|
||||
*/
|
||||
|
||||
//The @compile/fail... verifies that the fix doesn't break the normal compilation of import xxx.*
|
||||
//The @comple/ref... verifies the fix fixes the bug
|
||||
|
||||
import xxx.*;
|
||||
|
||||
@Anno
|
||||
public class TestImportStar {
|
||||
}
|
3
langtools/test/tools/javac/7129225/TestImportStar.ref
Normal file
3
langtools/test/tools/javac/7129225/TestImportStar.ref
Normal file
@ -0,0 +1,3 @@
|
||||
- compiler.note.proc.messager: RUNNING - lastRound = false
|
||||
TestImportStar.java:39:1: compiler.err.doesnt.exist: xxx
|
||||
- compiler.note.proc.messager: RUNNING - lastRound = true
|
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
// key: compiler.err.cant.apply.symbol.1
|
||||
// key: compiler.misc.infer.varargs.argument.mismatch
|
||||
|
||||
class InferVarargsArgumentMismatch {
|
||||
<X> void m(X x1, String... xs) {}
|
||||
{ this.m("", 1); }
|
||||
}
|
107
langtools/test/tools/javah/T7126832/T7126832.java
Normal file
107
langtools/test/tools/javah/T7126832/T7126832.java
Normal file
@ -0,0 +1,107 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @bug 7126832
|
||||
* @compile java.java
|
||||
* @summary com.sun.tools.javac.api.ClientCodeWrapper$WrappedJavaFileManager cannot be cast
|
||||
* @run main T7126832
|
||||
*/
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
public class T7126832 {
|
||||
public static void main(String... args) throws Exception {
|
||||
new T7126832().run();
|
||||
}
|
||||
|
||||
void run() throws Exception {
|
||||
Locale prev = Locale.getDefault();
|
||||
Locale.setDefault(Locale.ENGLISH);
|
||||
try {
|
||||
// Verify that a .java file is correctly diagnosed
|
||||
File ff = writeFile(new File("JavahTest.java"), "class JavahTest {}");
|
||||
test(Arrays.asList(ff.getPath()), 1, "Could not find class file for 'JavahTest.java'.");
|
||||
|
||||
// Verify that a class named 'xx.java' is accepted.
|
||||
// Note that ./xx/java.class exists, so this should work ok
|
||||
test(Arrays.asList("xx.java"), 0, null);
|
||||
|
||||
if (errors > 0) {
|
||||
throw new Exception(errors + " errors occurred");
|
||||
}
|
||||
} finally {
|
||||
Locale.setDefault(prev);
|
||||
}
|
||||
}
|
||||
|
||||
void test(List<String> args, int expectRC, String expectOut) {
|
||||
System.err.println("Test: " + args
|
||||
+ " rc:" + expectRC
|
||||
+ ((expectOut != null) ? " out:" + expectOut : ""));
|
||||
|
||||
StringWriter sw = new StringWriter();
|
||||
PrintWriter pw = new PrintWriter(sw);
|
||||
int rc = 0;
|
||||
String out = null;
|
||||
try {
|
||||
rc = com.sun.tools.javah.Main.run(args.toArray(new String[args.size()]), pw);
|
||||
out = sw.toString();
|
||||
} catch(Exception ee) {
|
||||
rc = 1;
|
||||
out = ee.toString();;
|
||||
}
|
||||
pw.close();
|
||||
if (!out.isEmpty()) {
|
||||
System.err.println(out);
|
||||
}
|
||||
if (rc != expectRC) {
|
||||
error("Unexpected exit code: " + rc + "; expected: " + expectRC);
|
||||
}
|
||||
if (expectOut != null && !out.contains(expectOut)) {
|
||||
error("Expected string not found: " + expectOut);
|
||||
}
|
||||
|
||||
System.err.println();
|
||||
}
|
||||
|
||||
File writeFile(File ff, String ss) throws IOException {
|
||||
if (ff.getParentFile() != null)
|
||||
ff.getParentFile().mkdirs();
|
||||
|
||||
try (FileWriter out = new FileWriter(ff)) {
|
||||
out.write(ss);
|
||||
}
|
||||
return ff;
|
||||
}
|
||||
|
||||
void error(String msg) {
|
||||
System.err.println(msg);
|
||||
errors++;
|
||||
}
|
||||
|
||||
int errors;
|
||||
}
|
||||
|
27
langtools/test/tools/javah/T7126832/java.java
Normal file
27
langtools/test/tools/javah/T7126832/java.java
Normal file
@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
package xx;
|
||||
class java {
|
||||
int fred;
|
||||
}
|
Loading…
Reference in New Issue
Block a user