blob: 56d1cf69295c351f16ea9e80d39877c6ce6d07a1 [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.javascript.v8debug.sessions;
import org.netbeans.api.debugger.DebuggerManager;
import org.netbeans.api.debugger.LazyActionsManagerListener;
import org.netbeans.api.debugger.Session;
import org.netbeans.modules.javascript.v8debug.V8Debugger;
import org.netbeans.modules.javascript.v8debug.V8DebuggerEngineProvider;
import org.netbeans.modules.javascript.v8debug.frames.CallFrame;
import org.netbeans.spi.debugger.ContextProvider;
/**
* Sets the current session when the debugger is paused.
*
* @author Martin Entlicher
*/
@LazyActionsManagerListener.Registration(path=V8DebuggerEngineProvider.ENGINE_NAME)
public class SessionSwitcher extends LazyActionsManagerListener implements V8Debugger.Listener {
private V8Debugger d;
private Session s;
public SessionSwitcher(ContextProvider lookupProvider) {
d = lookupProvider.lookupFirst(null, V8Debugger.class);
s = lookupProvider.lookupFirst(null, Session.class);
d.addListener(this);
}
@Override
public void notifySuspended(boolean suspended) {
if (suspended) {
DebuggerManager.getDebuggerManager().setCurrentSession(s);
}
}
@Override
public void notifyCurrentFrame(CallFrame cf) {
}
@Override
public void notifyFinished() {
d.removeListener(this);
}
@Override
protected void destroy() {
d.removeListener(this);
d = null;
s = null;
}
@Override
public String[] getProperties() {
return new String[] {};
}
}