/******************************************************************************* * 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.MILogStreamOutput; import org.eclipse.cdt.debug.mi.core.output.MIOOBRecord; 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.MIStreamRecord; import org.eclipse.cdt.debug.mi.core.output.MIValue; /** * (gdb) * &"warning: Cannot insert breakpoint 2:\n" * &"Cannot access memory at address 0x8020a3\n" * 30^error,msg=3D"Cannot access memory at address 0x8020a3"=20 */ public class MIErrorEvent extends MIStoppedEvent { String msg = ""; //$NON-NLS-1$ String log = ""; //$NON-NLS-1$ MIOOBRecord[] oobs; public MIErrorEvent(MISession source, MIResultRecord rr, MIOOBRecord[] o) { super(source, rr); oobs = o; parse(); } public String getMessage() { return msg; } public String getLogMessage() { return log; } void parse () { MIResultRecord rr = getMIResultRecord(); if (rr != null) { MIResult[] 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("msg")) { //$NON-NLS-1$ msg = str; } } } if (oobs != null) { StringBuffer sb = new StringBuffer(); for (int i = 0; i < oobs.length; i++) { if (oobs[i] instanceof MILogStreamOutput) { MIStreamRecord o = (MIStreamRecord)oobs[i]; sb.append(o.getString()); } } log = sb.toString(); } } } }