/******************************************************************************* * 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.event; import org.eclipse.cdt.debug.mi.core.MISession; import org.eclipse.cdt.debug.mi.core.output.MIConst; import org.eclipse.cdt.debug.mi.core.output.MIExecAsyncOutput; import org.eclipse.cdt.debug.mi.core.output.MIResult; import org.eclipse.cdt.debug.mi.core.output.MIResultRecord; import org.eclipse.cdt.debug.mi.core.output.MIValue; /** * *stopped,reason="exited-normally" * *stopped,reason="exited",exit-code="04" * ^done,reason="exited",exit-code="04" * */ public class MIInferiorExitEvent extends MIDestroyedEvent { int code = 0; MIExecAsyncOutput exec = null; MIResultRecord rr = null; public MIInferiorExitEvent(MISession source, int token) { super(source, token); } public MIInferiorExitEvent(MISession source, MIExecAsyncOutput async) { super(source, async.getToken()); exec = async; parse(); } public MIInferiorExitEvent(MISession source, MIResultRecord record) { super(source, record.getToken()); rr = record; parse(); } public int getExitCode() { return code; } void parse () { MIResult[] results = null; if (exec != null) { results = exec.getMIResults(); } else if (rr != null) { results = rr.getMIResults(); } if (results != null) { for (int i = 0; i < results.length; i++) { String var = results[i].getVariable(); MIValue value = results[i].getMIValue(); String str = ""; //$NON-NLS-1$ if (value instanceof MIConst) { str = ((MIConst)value).getString(); } if (var.equals("exit-code")) { //$NON-NLS-1$ try { code = Integer.decode(str.trim()).intValue(); } catch (NumberFormatException e) { } } } } } }