
com.google.cloud.tools.opensource.classpath.LinkageErrorCause Maven / Gradle / Ivy
/*
* Copyright 2019 Google LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.tools.opensource.classpath;
import com.google.auto.value.AutoValue;
/** Key to group linkage errors by their causes. */
@AutoValue
abstract class LinkageErrorCause {
/** Returns the reason for the error */
abstract SymbolNotResolvable.Reason getReason();
/** Returns the symbol causing the error. It's either class name, field name, or method name. */
abstract String getSymbol();
static LinkageErrorCause from(
SymbolNotResolvable staticLinkageError) {
String symbolName = symbolNameFrom(staticLinkageError);
return new AutoValue_LinkageErrorCause(staticLinkageError.getReason(), symbolName);
}
private static String symbolNameFrom(
SymbolNotResolvable staticLinkageError) {
T reference = staticLinkageError.getReference();
switch (staticLinkageError.getReason()) {
case INACCESSIBLE_MEMBER:
case SYMBOL_NOT_FOUND:
String classNamePrefix = reference.getTargetClassName() + ".";
if (reference instanceof MethodSymbolReference) {
return classNamePrefix + ((MethodSymbolReference) reference).getMethodName();
} else {
// FieldSymbolReference
return classNamePrefix + ((FieldSymbolReference) reference).getFieldName();
}
case CLASS_NOT_FOUND:
case INACCESSIBLE_CLASS:
case INCOMPATIBLE_CLASS_CHANGE:
default:
return reference.getTargetClassName();
}
}
@Override
public final String toString() {
StringBuilder builder = new StringBuilder(getSymbol());
switch (getReason()) {
case CLASS_NOT_FOUND:
builder.append(" is not found");
break;
case INACCESSIBLE_CLASS:
builder.append(" is not accessible");
break;
case INCOMPATIBLE_CLASS_CHANGE:
builder.append(" has changed incompatibly");
break;
case SYMBOL_NOT_FOUND:
builder.append(" is not found");
break;
case INACCESSIBLE_MEMBER:
builder.append(" is not accessible");
break;
}
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy