blob: d669aaabe12f5149eecb15f73d49927673fe1118 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Red Hat, Inc.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Elliott Baron <ebaron@redhat.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.linuxtools.internal.valgrind.tests;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.debug.core.ILaunch;
import org.eclipse.debug.core.model.IProcess;
import org.eclipse.debug.core.model.IStreamsProxy;
public class ValgrindStubProcess implements IProcess {
protected Map<String, String> attributes;
protected ILaunch launch;
protected String label;
protected IStreamsProxy streamsProxy;
public ValgrindStubProcess(ILaunch launch, String label) {
attributes = new HashMap<>();
streamsProxy = new ValgrindStubStreamsProxy();
this.launch = launch;
this.label = label;
launch.addProcess(this);
}
@Override
public String getAttribute(String key) {
return attributes.get(key);
}
@Override
public int getExitValue() {
return 0;
}
@Override
public String getLabel() {
return label;
}
@Override
public ILaunch getLaunch() {
return launch;
}
@Override
public IStreamsProxy getStreamsProxy() {
return streamsProxy;
}
@Override
public void setAttribute(String key, String value) {
attributes.put(key, value);
}
@Override
public <T> T getAdapter(Class<T> adapter) {
return null;
}
@Override
public boolean canTerminate() {
return true;
}
@Override
public boolean isTerminated() {
return true;
}
@Override
public void terminate() {
}
}