blob: 9b39660e0b45f88a360b214e558b035cd89b8868 [file] [log] [blame]
/*
* 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.netbeans.modules.profiler.snaptracer;
import org.netbeans.modules.profiler.snaptracer.impl.IdeSnapshot;
/**
* PackageStateHandler interface allows an implementing TracerPackage to be
* notified about Tracer session state. See TracerPackage.getStateHandler().
*
* @author Jiri Sedlacek
*/
public interface PackageStateHandler {
/**
* Invoked when a probe is added into the Timeline view.
*
* @param probe added probe
* @param snapshot profiler snapshot
*/
public void probeAdded(TracerProbe probe, IdeSnapshot snapshot);
/**
* Invoked when a probe is removed from the Timeline view.
*
* @param probe removed probe
* @param snapshot profiler snapshot
*/
public void probeRemoved(TracerProbe probe, IdeSnapshot snapshot);
/**
* Invoked when setting up a new Tracer session. This method allows a
* Package to notify the user about initialization progress. The actual
* initialization (and updating the TracerProgressObject) should be
* performed in the sessionStarting() method. Useful for example for
* messaging a delay during instrumention of classes in target application.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
* @param refresh session refresh rate in miliseconds
* @return TracerProgressObject to track initialization progress
*/
public TracerProgressObject sessionInitializing(TracerProbe[] probes,
IdeSnapshot snapshot, int refresh);
/**
* Invoked when starting a new Tracer session. Any package/probes
* initialization should be performed in this method. If provided by the
* sessionInitializing method, a TracerProgressObject should be updated to
* reflect the initialization progress. This method may throw a
* SessionInitializationException in case of initialization failure. Any
* packages/probes initialized so far will be correctly finished, however the
* package throwing the SessionInitializationException is responsible for
* cleaning up any used resources and restoring its state without any
* following events.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
* @throws SessionInitializationException in case of initialization failure
*/
public void sessionStarting(TracerProbe[] probes, IdeSnapshot snapshot)
throws SessionInitializationException;
/**
* Invoked when all packages/probes have been started and the Tracer session
* is running and collecting data.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
*/
public void sessionRunning(TracerProbe[] probes, IdeSnapshot snapshot);
/**
* Invoked when stopping the Tracer session. Any package/probes cleanup
* should be performed in this method. Any long-running cleanup code should
* preferably be invoked in a separate worker thread to allow the Tracer
* session to finish as fast as possible. Be sure to check/wait for the
* cleanup thread when starting a new Tracer session in sessionStarting().
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
*/
public void sessionStopping(TracerProbe[] probes, IdeSnapshot snapshot);
/**
* Invoked when the Tracer session has finished.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
*/
public void sessionFinished(TracerProbe[] probes, IdeSnapshot snapshot);
/**
* Invoked when refresh rate of the Tracer session has been changed.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
* @param refresh session refresh rate in miliseconds
*/
public void refreshRateChanged(TracerProbe[] probes, IdeSnapshot snapshot, int refresh);
/**
* An abstract adapter class for receiving Tracer session state notifications.
*/
public abstract class Adapter implements PackageStateHandler {
public void probeAdded(TracerProbe probe, IdeSnapshot snapshot) {}
public void probeRemoved(TracerProbe probe, IdeSnapshot snapshot) {}
/**
* Invoked when setting up a new Tracer session. This method allows a
* Package to notify the user about initialization progress. The actual
* initialization (and updating the TracerProgressObject) should be
* performed in the sessionStarting() method. Useful for example for
* messaging a delay during instrumention of classes in target application.
*
* @param probes probes defined for the Tracer session
* @param snapshot profiler snapshot
* @param refresh session refresh rate in miliseconds
* @return TracerProgressObject null in default implementation
*/
public TracerProgressObject sessionInitializing(TracerProbe[] probes,
IdeSnapshot snapshot, int refresh) { return null; }
public void sessionStarting(TracerProbe[] probes, IdeSnapshot snapshot)
throws SessionInitializationException {}
public void sessionRunning(TracerProbe[] probes, IdeSnapshot snapshot) {}
public void sessionStopping(TracerProbe[] probes, IdeSnapshot snapshot) {}
public void sessionFinished(TracerProbe[] probes, IdeSnapshot snapshot) {}
public void refreshRateChanged(TracerProbe[] probes, IdeSnapshot snapshot,
int refresh) {}
}
}