/******************************************************************************* * Copyright (c) 2010, 2016 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 API and implementation * Marc Khouzam (Ericsson) - Don't use translatable strings for the command summary * since it will be send directly to GDB *******************************************************************************/ package org.eclipse.cdt.dsf.gdb.internal.tracepointactions; import java.io.ByteArrayOutputStream; import java.io.StringReader; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.transform.OutputKeys; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult; import org.eclipse.cdt.dsf.gdb.internal.GdbPlugin; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.xml.sax.InputSource; import org.xml.sax.helpers.DefaultHandler; /** * @since 3.0 */ public class EvaluateAction extends AbstractTracepointAction { private static final String EVALUATE_ACTION_ID = "org.eclipse.cdt.dsf.gdb.tracepointactions.EvaluateAction"; //$NON-NLS-1$ private String fEvalString = ""; //$NON-NLS-1$ @Override public String getDefaultName() { return MessagesForTracepointActions.TracepointActions_Untitled_Evaluate; } public String getEvalString() { return fEvalString; } public void setEvalString(String str) { fEvalString = str; } @Override public String getIdentifier() { return EVALUATE_ACTION_ID; } @Override public String getMemento() { String collectData = ""; //$NON-NLS-1$ DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder = null; try { docBuilder = dfactory.newDocumentBuilder(); Document doc = docBuilder.newDocument(); Element rootElement = doc.createElement("evalData"); //$NON-NLS-1$ rootElement.setAttribute("evalString", fEvalString); //$NON-NLS-1$ doc.appendChild(rootElement); ByteArrayOutputStream s = new ByteArrayOutputStream(); TransformerFactory factory = TransformerFactory.newInstance(); Transformer transformer = factory.newTransformer(); transformer.setOutputProperty(OutputKeys.METHOD, "xml"); //$NON-NLS-1$ transformer.setOutputProperty(OutputKeys.INDENT, "yes"); //$NON-NLS-1$ DOMSource source = new DOMSource(doc); StreamResult outputTarget = new StreamResult(s); transformer.transform(source, outputTarget); collectData = s.toString("UTF8"); //$NON-NLS-1$ } catch (Exception e) { GdbPlugin.log(e); } return collectData; } @Override public String getSummary() { // Create command to be sent to GDB return String.format("teval %s", fEvalString); //$NON-NLS-1$ } @Override public String getTypeName() { return MessagesForTracepointActions.TracepointActions_Evaluate_Name; } @Override public void initializeFromMemento(String data) { Element root = null; DocumentBuilder parser; try { parser = DocumentBuilderFactory.newInstance().newDocumentBuilder(); parser.setErrorHandler(new DefaultHandler()); root = parser.parse(new InputSource(new StringReader(data))).getDocumentElement(); fEvalString = root.getAttribute("evalString"); //$NON-NLS-1$ if (fEvalString == null) throw new Exception(); } catch (Exception e) { GdbPlugin.log(e); } } @Override public String toString() { return getSummary(); } }