org.glassfish.flashlight.provider.FlashlightProbe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2019] Payara Foundation and/or affiliates
package org.glassfish.flashlight.provider;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.*;
import org.glassfish.flashlight.client.ProbeClientInvoker;
import org.glassfish.flashlight.client.ProbeHandle;
import org.glassfish.flashlight.client.StatefulProbeClientInvoker;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.List;
import java.util.ArrayList;
import java.util.logging.Logger;
import java.util.logging.Level;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.glassfish.api.monitoring.ProbeInfo;
import com.sun.enterprise.util.LocalStringManagerImpl;
import org.glassfish.flashlight.FlashlightLoggerInfo;
public class FlashlightProbe
implements ProbeHandle, ProbeInfo{
public FlashlightProbe(int id, Class providerClazz, String moduleProviderName,
String moduleName, String probeProviderName, String probeName,
String[] probeParamNames, Class[] paramTypes, boolean self, boolean hidden,
boolean stateful, boolean statefulReturn, boolean statefulException,
String [] profileNames) {
this.id = id;
this.providerClazz = providerClazz;
this.moduleProviderName = moduleProviderName;
this.moduleName = moduleName;
this.probeProviderName = probeProviderName;
this.probeName = probeName;
this.probeDesc = moduleProviderName + ":" + moduleName + ":" +
probeProviderName + ":" + probeName;
this.hasSelf = self;
this.hidden = hidden;
this.stateful = stateful;
this.statefulReturn = statefulReturn;
this.statefulException = statefulException;
this.profileNames = profileNames;
if (self) {
if (isMethodStatic()) {
String errStr = localStrings.getLocalString("cannotDefineSelfOnStatic", "Cannot define \"self\" on a static method - ", probeDesc);
throw new RuntimeException(errStr);
}
// Fill in the first slot of ParamNames with @Self and paramTypes with the providerClass type
this.probeParamNames = new String[probeParamNames.length+1];
this.paramTypes = new Class[paramTypes.length+1];
this.probeParamNames[0] = SELF;
this.paramTypes[0] = providerClazz;
for (int index = 0; index < probeParamNames.length; index++) {
this.probeParamNames[index+1] = probeParamNames[index];
this.paramTypes[index+1] = paramTypes[index];
}
} else {
this.probeParamNames = probeParamNames;
this.paramTypes = paramTypes;
}
}
public Method getProbeMethod() {
return probeMethod;
}
public void setProbeMethod(Method probeMethod) {
this.probeMethod = probeMethod;
}
private boolean isMethodStatic() {
try {
int modifier = getProviderClazz().getDeclaredMethod(getProviderJavaMethodName(),
getParamTypes()).getModifiers();
return Modifier.isStatic(modifier);
} catch (Exception e) {
return false;
}
}
public synchronized boolean addInvoker(ProbeClientInvoker invoker) {
boolean isFirst = (invokers.isEmpty() && firstTransform);
if(invokers.putIfAbsent(invoker.getId(), invoker) != null) {
if (logger.isLoggable(Level.FINE))
logger.fine("Adding an invoker that already exists: " + invoker.getId() + " &&&&&&&&&&");
}
else {
if (logger.isLoggable(Level.FINE))
logger.fine("Adding an Invoker that does not exist: " + invoker.getId() + " $$$$$$$$$$$$$");
}
if (logger.isLoggable(Level.FINE)) {
logger.fine("Total invokers = " + invokers.size());
}
listenerEnabled.set(true);
firstTransform = false;
initInvokerList();
return isFirst;
}
public synchronized boolean removeInvoker(ProbeClientInvoker invoker) {
ProbeClientInvoker pci = invokers.remove(invoker.getId());
if(pci != null) {
if (logger.isLoggable(Level.FINE))
logger.fine("Removing an invoker that already exists: " + pci.getId() + " ##########");
}
else {
if (logger.isLoggable(Level.FINE))
logger.fine("Failed to remove an invoker that does not exist: " + invoker.getId() + " %%%%%%%%%");
}
if (logger.isLoggable(Level.FINE)) {
logger.fine("Total invokers = " + invokers.size());
}
listenerEnabled.set(!invokers.isEmpty());
initInvokerList();
return listenerEnabled.get();
}
public void fireProbe(Object[] params) {
if(!listenerEnabled.get()) {
return;
}
if (parent != null) {
parent.fireProbe(params);
}
int sz = invokerList.size();
for (int i=0; i fireProbeBefore(Object[] params) {
if(!listenerEnabled.get()) {
return null;
}
ArrayList probeInvokeStates = new ArrayList ();
if (parent != null) {
ArrayList parentStates = parent.fireProbeBefore(params);
probeInvokeStates.addAll(parentStates);
}
int sz = invokerList.size();
for (int i=0; i states) {
if(!listenerEnabled.get()) {
return;
}
if (parent != null) {
parent.fireProbeAfter(returnValue, states);
}
int sz = invokerList.size();
int stateIndex = -1;
for (int i=0; i= 0)
invoker.invokeAfter(states.get(stateIndex).getState(), returnValue);
}
}
}
public void fireProbeOnException(Object exceptionValue, ArrayList states) {
if(!listenerEnabled.get()) {
return;
}
if (parent != null) {
parent.fireProbeOnException(exceptionValue, states);
}
int sz = invokerList.size();
int stateIndex = -1;
for (int i=0; i= 0)
invoker.invokeOnException(states.get(stateIndex).getState(), exceptionValue);
}
}
}
public boolean isEnabled() {
return listenerEnabled.get();
}
public int getId() {
return id;
}
public String getModuleProviderName() {
return moduleProviderName;
}
public String getModuleName() {
return moduleName;
}
public String getProbeProviderName() {
return probeProviderName;
}
public String getProbeName() {
return probeName;
}
public String[] getProbeParamNames() {
return probeParamNames;
}
public Class[] getParamTypes() {
return paramTypes;
}
public String getProviderJavaMethodName() {
return providerJavaMethodName;
}
public void setProviderJavaMethodName(String providerJavaMethodName) {
this.providerJavaMethodName = providerJavaMethodName;
}
public String getProbeDesc() {
return probeDesc;
}
public static String getProbeDesc(String moduleProviderName,
String moduleName,
String probeProviderName,
String probeName){
return (moduleProviderName + ":" + moduleName + ":" +
probeProviderName + ":" + probeName);
}
public Class getProviderClazz() {
return providerClazz;
}
public String toString() {
StringBuilder sbldr = new StringBuilder(moduleProviderName + ":" + moduleName
+ ":" + probeProviderName + ":" + probeName);
String delim = " (";
for (int i = 0; i < paramTypes.length; i++) {
sbldr.append(delim).append((paramTypes[i] == null) ? " " : paramTypes[i].getName());
sbldr.append(" ").append((probeParamNames[i] == null) ? " " : probeParamNames[i]);
delim = ", ";
}
if (paramTypes.length == 0)
sbldr.append(" (");
sbldr.append(")");
return sbldr.toString();
}
public void setDTraceProviderImpl(Object impl) {
dtraceProviderImpl = impl;
}
public Object getDTraceProviderImpl() {
return dtraceProviderImpl;
}
public Method getDTraceMethod() {
return dtraceMethod;
}
public void setDTraceMethod(Method m) {
dtraceMethod = m;
}
public boolean hasSelf() {
return hasSelf;
}
public boolean isHidden() {
return hidden;
}
public void setParent(FlashlightProbe parent) {
// Only setting the parent here if both are stateful or both are stateless (no mixing)
if (stateful != parent.getStateful())
return;
this.parent = parent;
}
public boolean getStateful() { return stateful; }
public boolean getStatefulReturn() { return statefulReturn; }
public boolean getStatefulException() { return statefulException; }
public String [] getProfileNames() { return profileNames; }
private void initInvokerList() {
Set> entries = invokers.entrySet();
List invList = new ArrayList(2);
if (stateful) {
// If this is a stateful probe, we only want invokers in the list that actually can handle stateful
// invokes
for (Map.Entry entry : entries) {
ProbeClientInvoker invoker = entry.getValue();
if (invoker instanceof StatefulProbeClientInvoker)
invList.add(invoker);
}
} else {
for (Map.Entry entry : entries) {
ProbeClientInvoker invoker = entry.getValue();
invList.add(invoker);
}
}
invokerList = invList;
}
private int findStateIndex(int invokerId, ArrayList states) {
if (states == null)
return -1;
int size = states.size();
ProbeInvokeState state = null;
for (int stateIndex=0; stateIndex invokerList = new ArrayList(2);
private String providerJavaMethodName;
private AtomicBoolean listenerEnabled = new AtomicBoolean(false);
private String probeDesc;
private Object dtraceProviderImpl;
private Method dtraceMethod;
private boolean hasSelf;
private boolean hidden;
private boolean firstTransform = true;
private ConcurrentMap invokers = new ConcurrentHashMap();
private static final Logger logger = FlashlightLoggerInfo.getLogger();
public final static LocalStringManagerImpl localStrings =
new LocalStringManagerImpl(FlashlightProbe.class);
private FlashlightProbe parent = null;
private boolean stateful = false;
private boolean statefulReturn = false;
private boolean statefulException = false;
private String [] profileNames = null;
}