Improved GUI refresh and JUnit tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / stubs / org / eclipse / linuxtools / internal / lttng2 / stubs / service / TestRemoteSystemProxy.java
CommitLineData
d132bcc7
BH
1/**********************************************************************
2 * Copyright (c) 2012 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
115b4a01 12package org.eclipse.linuxtools.internal.lttng2.stubs.service;
eb1bab5b
BH
13
14import org.eclipse.core.commands.ExecutionException;
15import org.eclipse.core.runtime.Status;
115b4a01
BH
16import org.eclipse.linuxtools.internal.lttng2.stubs.shells.LTTngToolsFileShell;
17import org.eclipse.linuxtools.internal.lttng2.ui.views.control.remote.IRemoteSystemProxy;
18import org.eclipse.linuxtools.internal.lttng2.ui.views.control.service.ICommandShell;
eb1bab5b
BH
19import org.eclipse.rse.core.model.IRSECallback;
20import org.eclipse.rse.core.subsystems.ICommunicationsListener;
21import org.eclipse.rse.core.subsystems.ISubSystem;
22import org.eclipse.rse.services.shells.IShellService;
23import org.eclipse.rse.services.terminals.ITerminalService;
bbb3538a 24import org.eclipse.rse.subsystems.files.core.servicesubsystem.IFileServiceSubSystem;
eb1bab5b 25
115b4a01 26
eb1bab5b 27public class TestRemoteSystemProxy implements IRemoteSystemProxy {
d132bcc7
BH
28
29 private LTTngToolsFileShell fShell = null;
30 private String fTestFile = null;
31 private String fScenario = null;
eb1bab5b
BH
32
33 @Override
34 public IShellService getShellService() {
35 return null;
36 }
37
38 @Override
39 public ITerminalService getTerminalService() {
40 return null;
41 }
42
43 @Override
44 public ISubSystem getShellServiceSubSystem() {
45 return null;
46 }
47
48 @Override
49 public ISubSystem getTerminalServiceSubSystem() {
50 return null;
51 }
bbb3538a
BH
52 @Override
53 public IFileServiceSubSystem getFileServiceSubSystem() {
54 return null;
55 }
eb1bab5b
BH
56
57 @Override
58 public void connect(IRSECallback callback) throws ExecutionException {
b957fb8c 59// System.out.println("in done: proxy connect ");
eb1bab5b
BH
60 if (callback != null) {
61 callback.done(Status.OK_STATUS, null);
62 }
63 }
64
65 @Override
66 public void disconnect() throws ExecutionException {
d132bcc7 67 fShell = null;
eb1bab5b
BH
68 }
69
70 @Override
71 public ICommandShell createCommandShell() throws ExecutionException {
d132bcc7
BH
72 if (fShell == null) {
73 fShell = CommandShellFactory.getInstance().getFileShell();
74 if ((fTestFile != null) && (fScenario != null)) {
75 try {
76 fShell.loadScenarioFile(fTestFile);
77 } catch (Exception e) {
78 throw new ExecutionException(e.toString());
79 }
80 fShell.setScenario(fScenario);
81 }
82 }
83 return fShell;
eb1bab5b
BH
84 }
85
86 @Override
87 public void addCommunicationListener(ICommunicationsListener listener) {
88 }
89
90 @Override
91 public void removeCommunicationListener(ICommunicationsListener listener) {
92 }
d132bcc7
BH
93
94 public void setTestFile(String testFile) {
95 fTestFile = testFile;
96 }
97
98 public void setScenario(String scenario) {
99 fScenario = scenario;
100 if (fShell != null) {
101 fShell.setScenario(fScenario);
102 }
103 }
eb1bab5b 104}
This page took 0.033745 seconds and 5 git commands to generate.