
org.apache.sling.tracer.internal.CallerFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.sling.tracer Show documentation
Show all versions of org.apache.sling.tracer Show documentation
Tracer provides support for enabling the logs for specific category at specific level and
only for specific request. It provides a very fine level of control via config provided
as part of HTTP request around how the logging should be performed for given category.
Refer to http://sling.apache.org/documentation/bundles/log-tracers.html
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.sling.tracer.internal;
import javax.annotation.CheckForNull;
/**
* Utility to find out the real caller by excluding stack elements belonging to
* API classes. Say for a query it would exclude the call stack which is part of Oak
* or Sling Engine
*/
class CallerFinder {
private final String[] apiPkgs;
/**
* Array of package names which form the API
* @param apiPkgs package names in the order they can appear in caller stack. For e.g.
* Sling API package would always come before Oak api package for query evaluation
*/
public CallerFinder(String[] apiPkgs) {
this.apiPkgs = apiPkgs;
}
@CheckForNull
public StackTraceElement determineCaller(StackTraceElement[] stack) {
if (stack == null) {
return null;
}
for (int i = stack.length - 1; i >= 0; i--) {
StackTraceElement current = stack[i];
if (i > 0) {
StackTraceElement next = stack[i - 1];
//now scan each element and check if the *next* stack element belongs to any
//api package. If yes then current stack would be the caller
for (String pkg : apiPkgs) {
if (next.getClassName().startsWith(pkg)) {
return current;
}
}
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy