org.gradle.internal.featurelifecycle.FeatureUsage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 the original author or authors.
*
* 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 org.gradle.internal.featurelifecycle;
import com.google.common.annotations.VisibleForTesting;
import java.util.ArrayList;
import java.util.List;
/**
* An immutable description of the usage of a deprecated feature.
*/
public abstract class FeatureUsage {
private final String summary;
private final Class> calledFrom;
private final Exception traceException;
private List stack;
protected FeatureUsage(String summary, Class> calledFrom) {
this(summary, calledFrom, new Exception());
}
@VisibleForTesting
protected FeatureUsage(String summary, Class> calledFrom, Exception traceException) {
this.summary = summary;
this.calledFrom = calledFrom;
this.traceException = traceException;
}
/**
* A concise sentence summarising the usage.
*
* Example: Method Foo.bar() has been deprecated.
*/
public String getSummary() {
return summary;
}
protected Class> getCalledFrom() {
return calledFrom;
}
public List getStack() {
if (stack == null) {
stack = calculateStack(calledFrom, traceException);
}
return stack;
}
private static List calculateStack(Class> calledFrom, Exception traceRoot) {
StackTraceElement[] originalStack = traceRoot.getStackTrace();
final String calledFromName = calledFrom.getName();
boolean calledFromFound = false;
int caller;
for (caller = 0; caller < originalStack.length; caller++) {
StackTraceElement current = originalStack[caller];
if (!calledFromFound) {
if (current.getClassName().startsWith(calledFromName)) {
calledFromFound = true;
}
} else {
if (!current.getClassName().startsWith(calledFromName)) {
break;
}
}
}
caller = skipSystemStackElements(originalStack, caller);
List result = new ArrayList();
for (; caller < originalStack.length; caller++) {
result.add(originalStack[caller]);
}
return result;
}
private static int skipSystemStackElements(StackTraceElement[] stackTrace, int caller) {
for (; caller < stackTrace.length; caller++) {
String currentClassName = stackTrace[caller].getClassName();
if (!currentClassName.startsWith("org.codehaus.groovy.")
&& !currentClassName.startsWith("org.gradle.internal.metaobject.")
&& !currentClassName.startsWith("groovy.")
&& !currentClassName.startsWith("java.")
&& !currentClassName.startsWith("jdk.internal.")
) {
break;
}
}
return caller;
}
public String formattedMessage() {
return summary;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy