|
What this is
This file is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn
Java by Example" TM.
Other links
The source code
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.debugger.jpda.actions;
import com.sun.jdi.VirtualMachine;
import java.util.Collections;
import java.util.Set;
import org.netbeans.api.debugger.ActionsManager;
import org.netbeans.api.debugger.DebuggerManager;
import org.netbeans.api.debugger.jpda.AttachingDICookie;
import org.netbeans.spi.debugger.ContextProvider;
import org.netbeans.api.debugger.Session;
import org.netbeans.api.debugger.jpda.AbstractDICookie;
import org.netbeans.api.debugger.jpda.JPDADebugger;
import org.netbeans.modules.debugger.jpda.JPDADebuggerImpl;
import org.netbeans.modules.debugger.jpda.util.Operator;
import org.netbeans.spi.debugger.ActionsProvider;
import org.netbeans.spi.debugger.ActionsProviderListener;
/**
*
* @author Jan Jancura
*/
public class StartActionProvider extends ActionsProvider {
// private static transient String [] stopMethodNames =
// {"main", "start", "init", ""}; // NOI18N
private static final boolean startVerbose =
System.getProperty ("netbeans.debugger.start") != null;
private JPDADebuggerImpl debuggerImpl;
private ContextProvider lookupProvider;
public StartActionProvider (ContextProvider lookupProvider) {
debuggerImpl = (JPDADebuggerImpl) lookupProvider.lookupFirst
(null, JPDADebugger.class);
this.lookupProvider = lookupProvider;
}
public Set getActions () {
return Collections.singleton (ActionsManager.ACTION_START);
}
public void doAction (Object action) {
if (startVerbose)
System.out.println("\nS StartActionProvider.doAction ()");
JPDADebuggerImpl debugger = (JPDADebuggerImpl) lookupProvider.
lookupFirst (null, JPDADebugger.class);
if (debugger != null && debugger.getVirtualMachine() != null) return;
final AbstractDICookie cookie = (AbstractDICookie) lookupProvider.
lookupFirst (null, AbstractDICookie.class);
Thread startingThread = new Thread (
new Runnable () {
public void run () {
if (startVerbose)
System.out.println ("\nS StartActionProvider." +
"doAction ().thread"
);
try {
VirtualMachine virtualMachine = cookie.
getVirtualMachine ();
Operator o = createOperator (virtualMachine);
o.start ();
debuggerImpl.setRunning (
virtualMachine,
o
);
// PATCH #46295 JSP breakpoint isn't reached during
// second debugging
if (cookie instanceof AttachingDICookie) {
virtualMachine.resume ();
}
// PATCHEND Hanz
if (startVerbose)
System.out.println ("\nS StartActionProvider." +
"doAction ().thread end: success"
);
} catch (Exception ex) {
if (startVerbose)
System.out.println ("\nS StartActionProvider." +
"doAction ().thread end: exception " + ex
);
debuggerImpl.setException (ex);
((Session) lookupProvider.lookupFirst
(null, Session.class)).kill ();
}
}
},
"Debugger start"
);
if (startVerbose)
System.out.println ("\nS StartActionProvider." +
"doAction () setStarting"
);
debuggerImpl.setStarting (startingThread);
startingThread.start ();
if (startVerbose)
System.out.println ("\nS StartActionProvider." +
"doAction () end"
);
}
public boolean isEnabled (Object action) {
return true;
}
public void addActionsProviderListener (ActionsProviderListener l) {}
public void removeActionsProviderListener (ActionsProviderListener l) {}
private Operator createOperator (
VirtualMachine virtualMachine
) {
return new Operator (
virtualMachine,
null,
new Runnable () {
public void run () {
((Session) lookupProvider.lookupFirst
(null, Session.class)).kill ();
}
}
);
}
}
|