/******************************************************************************* * Copyright (c) 2000, 2006 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.debug.mi.core; import org.eclipse.cdt.debug.mi.core.event.MIEvent; import org.eclipse.cdt.debug.mi.core.event.MIStoppedEvent; /** * Event Thread blocks on the event Queue, wakes up * when events are available and notify all the observers. */ public class EventThread extends Thread { MISession session; public EventThread(MISession s) { super("MI Event Thread"); //$NON-NLS-1$ session = s; } public void run() { // Signal by the session of time to die. while (session.getChannelOutputStream() != null) { MIEvent event = null; Queue eventQueue = session.getEventQueue(); // removeItem() will block until an item is available. try { event = (MIEvent) eventQueue.removeItem(); } catch (InterruptedException e) { //e.printStackTrace(); } if (event instanceof MIStoppedEvent) { processSuspendedEvent((MIStoppedEvent)event); } try { if (event != null) { session.notifyObservers(event); } } catch (Exception e) { e.printStackTrace(); } } } void processSuspendedEvent(MIStoppedEvent stopped) { // give a chance also to the underlying inferior. session.getMIInferior().update(); } }