d802cec7917a602a98ec77930e6b615dd3ad2407
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui.tests / stubs / org / eclipse / linuxtools / internal / lttng2 / stubs / service / TestRemoteSystemProxy.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2013 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 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.stubs.service;
13
14 import org.eclipse.core.commands.ExecutionException;
15 import org.eclipse.core.runtime.Status;
16 import org.eclipse.linuxtools.internal.lttng2.stubs.shells.LTTngToolsFileShell;
17 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.remote.ICommandShell;
18 import org.eclipse.linuxtools.internal.lttng2.ui.views.control.remote.IRemoteSystemProxy;
19 import org.eclipse.rse.core.model.IRSECallback;
20 import org.eclipse.rse.core.subsystems.ICommunicationsListener;
21 import org.eclipse.rse.core.subsystems.ISubSystem;
22 import org.eclipse.rse.services.shells.IShellService;
23 import org.eclipse.rse.services.terminals.ITerminalService;
24 import org.eclipse.rse.subsystems.files.core.servicesubsystem.IFileServiceSubSystem;
25
26 @SuppressWarnings("javadoc")
27 public class TestRemoteSystemProxy implements IRemoteSystemProxy {
28
29 private LTTngToolsFileShell fShell = null;
30 private String fTestFile = null;
31 private String fScenario = null;
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 }
52 @Override
53 public IFileServiceSubSystem getFileServiceSubSystem() {
54 return null;
55 }
56
57 @Override
58 public void connect(IRSECallback callback) throws ExecutionException {
59 // System.out.println("in done: proxy connect ");
60 if (callback != null) {
61 callback.done(Status.OK_STATUS, null);
62 }
63 }
64
65 @Override
66 public void disconnect() throws ExecutionException {
67 fShell = null;
68 }
69
70 @Override
71 public ICommandShell createCommandShell() throws ExecutionException {
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;
84 }
85
86 @Override
87 public void addCommunicationListener(ICommunicationsListener listener) {
88 }
89
90 @Override
91 public void removeCommunicationListener(ICommunicationsListener listener) {
92 }
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 }
104
105 @Override
106 public int getPort() {
107 return IRemoteSystemProxy.INVALID_PORT_NUMBER;
108 }
109
110 @Override
111 public void setPort(int port) {
112 }
113 }
This page took 0.045757 seconds and 4 git commands to generate.