/******************************************************************************* * Copyright (c) 2007, 2009 Ericsson 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: * Ericsson - Initial Implementation *******************************************************************************/ package org.eclipse.cdt.dsf.mi.service.command.output; /** * -stack-info-depth [max-depth] * ^done,depth="12" * */ public class MIStackInfoDepthInfo extends MIInfo { int depth = 0; public MIStackInfoDepthInfo(MIOutput record) { super(record); if (isDone()) { MIOutput out = getMIOutput(); MIResultRecord rr = out.getMIResultRecord(); if (rr != null) { MIResult[] results = rr.getMIResults(); for (int i = 0; i < results.length; i++) { String var = results[i].getVariable(); if (var.equals("depth")) { //$NON-NLS-1$ MIValue value = results[i].getMIValue(); if (value instanceof MIConst) { String str = ((MIConst)value).getString(); try { depth = Integer.parseInt(str.trim()); } catch (NumberFormatException e) { } } } } } } } public int getDepth() { return depth; } }