1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 559474: Format all TM.terminal code to CDT standard

This is applying the per-project code formatting rules that would
be applied on save in the JDT editor

See also Bug 540373

Change-Id: Id04c972c3b3cb0a6ed1ab8581185359b7cf43f91
This commit is contained in:
Jonah Graham 2020-01-31 11:02:25 -05:00
parent 213770265a
commit c58c28b9cc
243 changed files with 8230 additions and 7835 deletions

View file

@ -114,7 +114,8 @@ public class Activator extends AbstractUIPlugin {
if (exception instanceof CoreException) {
log(((CoreException) exception).getStatus());
} else {
log(new Status(IStatus.ERROR, plugin.getBundle().getSymbolicName(), exception.getLocalizedMessage(), exception));
log(new Status(IStatus.ERROR, plugin.getBundle().getSymbolicName(), exception.getLocalizedMessage(),
exception));
}
}

View file

@ -246,13 +246,10 @@ public class SerialSettingsPage extends AbstractSettingsPage {
settings.setStopBits(StopBits.fromStringIndex(stopBitsCombo.getSelectionIndex()));
dialogSettings.put(SerialSettings.PORT_NAME_ATTR, portCombo.getText());
dialogSettings.put(SerialSettings.BAUD_RATE_ATTR,
BaudRate.getStrings()[baudRateCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.BYTE_SIZE_ATTR,
ByteSize.getStrings()[byteSizeCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.BAUD_RATE_ATTR, BaudRate.getStrings()[baudRateCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.BYTE_SIZE_ATTR, ByteSize.getStrings()[byteSizeCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.PARITY_ATTR, Parity.getStrings()[parityCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.STOP_BITS_ATTR,
StopBits.getStrings()[stopBitsCombo.getSelectionIndex()]);
dialogSettings.put(SerialSettings.STOP_BITS_ATTR, StopBits.getStrings()[stopBitsCombo.getSelectionIndex()]);
}
@Override

View file

@ -66,7 +66,8 @@ public class LocalWizardConfigurationPanel extends AbstractExtendedConfiguration
setEncoding("UTF-8"); //$NON-NLS-1$
} else {
String encoding = WorkbenchEncoding.getWorkbenchDefaultEncoding();
if (encoding != null && !"".equals(encoding)) setEncoding(encoding); //$NON-NLS-1$
if (encoding != null && !"".equals(encoding)) //$NON-NLS-1$
setEncoding(encoding);
}
// Fill the rest of the panel with a label to be able to
@ -90,10 +91,12 @@ public class LocalWizardConfigurationPanel extends AbstractExtendedConfiguration
*/
@Override
public void setupData(Map<String, Object> data) {
if (data == null) return;
if (data == null)
return;
String value = (String) data.get(ITerminalsConnectorConstants.PROP_ENCODING);
if (value != null) setEncoding(value);
if (value != null)
setEncoding(value);
}
/* (non-Javadoc)
@ -102,7 +105,8 @@ public class LocalWizardConfigurationPanel extends AbstractExtendedConfiguration
@Override
public void extractData(Map<String, Object> data) {
// set the terminal connector id for local terminal
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID, "org.eclipse.tm.terminal.connector.local.LocalConnector"); //$NON-NLS-1$
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID,
"org.eclipse.tm.terminal.connector.local.LocalConnector"); //$NON-NLS-1$
// Store the encoding
data.put(ITerminalsConnectorConstants.PROP_ENCODING, getEncoding());
@ -188,7 +192,8 @@ public class LocalWizardConfigurationPanel extends AbstractExtendedConfiguration
return ((org.eclipse.core.resources.IResource) element);
}
if (element instanceof IAdaptable) {
return (org.eclipse.core.resources.IResource) ((IAdaptable) element).getAdapter(org.eclipse.core.resources.IResource.class);
return (org.eclipse.core.resources.IResource) ((IAdaptable) element)
.getAdapter(org.eclipse.core.resources.IResource.class);
}
}
return null;

View file

@ -104,7 +104,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
} else {
encoding = WorkbenchEncoding.getWorkbenchDefaultEncoding();
}
if (encoding != null && !"".equals(encoding)) properties.put(ITerminalsConnectorConstants.PROP_ENCODING, encoding); //$NON-NLS-1$
if (encoding != null && !"".equals(encoding)) //$NON-NLS-1$
properties.put(ITerminalsConnectorConstants.PROP_ENCODING, encoding);
}
// For local terminals, force a new terminal tab each time it is launched,
@ -115,9 +116,11 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
// Initialize the local terminal working directory.
// By default, start the local terminal in the users home directory
String initialCwd = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences().getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_INITIAL_CWD);
String initialCwd = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences()
.getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_INITIAL_CWD);
String cwd = null;
if (initialCwd == null || IPreferenceKeys.PREF_INITIAL_CWD_USER_HOME.equals(initialCwd) || "".equals(initialCwd.trim())) { //$NON-NLS-1$
if (initialCwd == null || IPreferenceKeys.PREF_INITIAL_CWD_USER_HOME.equals(initialCwd)
|| "".equals(initialCwd.trim())) { //$NON-NLS-1$
cwd = System.getProperty("user.home"); //$NON-NLS-1$
} else if (IPreferenceKeys.PREF_INITIAL_CWD_ECLIPSE_HOME.equals(initialCwd)) {
String eclipseHomeLocation = System.getProperty("eclipse.home.location"); //$NON-NLS-1$
@ -126,7 +129,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
URI uri = URIUtil.fromString(eclipseHomeLocation);
File f = URIUtil.toFile(uri);
cwd = f.getAbsolutePath();
} catch (URISyntaxException ex) { /* ignored on purpose */ }
} catch (URISyntaxException ex) {
/* ignored on purpose */ }
}
} else if (IPreferenceKeys.PREF_INITIAL_CWD_ECLIPSE_WS.equals(initialCwd)) {
Bundle bundle = Platform.getBundle("org.eclipse.core.resources"); //$NON-NLS-1$
@ -134,7 +138,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
if (org.eclipse.core.resources.ResourcesPlugin.getWorkspace() != null
&& org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot() != null
&& org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation() != null) {
cwd = org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation().toOSString();
cwd = org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation()
.toOSString();
}
}
} else {
@ -161,9 +166,11 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
// If the current selection resolved to an folder, default the working directory
// to that folder and update the terminal title
ISelectionService service = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getSelectionService();
if ((service != null && service.getSelection() != null) || properties.containsKey(ITerminalsConnectorConstants.PROP_SELECTION)) {
if ((service != null && service.getSelection() != null)
|| properties.containsKey(ITerminalsConnectorConstants.PROP_SELECTION)) {
ISelection selection = (ISelection) properties.get(ITerminalsConnectorConstants.PROP_SELECTION);
if (selection == null) selection = service.getSelection();
if (selection == null)
selection = service.getSelection();
if (selection instanceof IStructuredSelection && !selection.isEmpty()) {
String dir = null;
Iterator<?> iter = ((IStructuredSelection) selection).iterator();
@ -171,18 +178,27 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
Object element = iter.next();
Bundle bundle = Platform.getBundle("org.eclipse.core.resources"); //$NON-NLS-1$
if (bundle != null && bundle.getState() != Bundle.UNINSTALLED && bundle.getState() != Bundle.STOPPING) {
if (bundle != null && bundle.getState() != Bundle.UNINSTALLED
&& bundle.getState() != Bundle.STOPPING) {
// If the element is not an IResource, try to adapt to IResource
if (!(element instanceof org.eclipse.core.resources.IResource)) {
Object adapted = element instanceof IAdaptable ? ((IAdaptable)element).getAdapter(org.eclipse.core.resources.IResource.class) : null;
if (adapted == null) adapted = Platform.getAdapterManager().getAdapter(element, org.eclipse.core.resources.IResource.class);
if (adapted != null) element = adapted;
Object adapted = element instanceof IAdaptable
? ((IAdaptable) element).getAdapter(org.eclipse.core.resources.IResource.class)
: null;
if (adapted == null)
adapted = Platform.getAdapterManager().getAdapter(element,
org.eclipse.core.resources.IResource.class);
if (adapted != null)
element = adapted;
}
if (element instanceof org.eclipse.core.resources.IResource && ((org.eclipse.core.resources.IResource)element).exists()) {
if (element instanceof org.eclipse.core.resources.IResource
&& ((org.eclipse.core.resources.IResource) element).exists()) {
IPath location = ((org.eclipse.core.resources.IResource) element).getLocation();
if (location == null) continue;
if (location.toFile().isFile()) location = location.removeLastSegments(1);
if (location == null)
continue;
if (location.toFile().isFile())
location = location.removeLastSegments(1);
if (location.toFile().isDirectory() && location.toFile().canRead()) {
dir = location.toFile().getAbsolutePath();
break;
@ -225,14 +241,16 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
private String getTerminalTitle(Map<String, Object> properties) {
// Try to see if the user set a title explicitly via the properties map.
String title = getDefaultTerminalTitle(properties);
if (title != null) return title;
if (title != null)
return title;
try {
String hostname = InetAddress.getLocalHost().getHostName();
if (hostname != null && !"".equals(hostname.trim())) { //$NON-NLS-1$
return hostname;
}
} catch (UnknownHostException e) { /* ignored on purpose */ }
} catch (UnknownHostException e) {
/* ignored on purpose */ }
return "Local"; //$NON-NLS-1$
}
@ -264,7 +282,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
}
}
if (shell == null) {
shell = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences().getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_DEFAULT_SHELL_UNIX);
shell = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences()
.getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_DEFAULT_SHELL_UNIX);
if (shell == null || "".equals(shell)) { //$NON-NLS-1$
if (System.getenv("SHELL") != null && !"".equals(System.getenv("SHELL").trim())) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
shell = System.getenv("SHELL").trim(); //$NON-NLS-1$
@ -286,7 +305,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
// Check for the terminal connector id
String connectorId = (String) properties.get(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID);
if (connectorId == null) connectorId = "org.eclipse.tm.terminal.connector.local.LocalConnector"; //$NON-NLS-1$
if (connectorId == null)
connectorId = "org.eclipse.tm.terminal.connector.local.LocalConnector"; //$NON-NLS-1$
// Extract the process properties using defaults
String image;
@ -300,11 +320,13 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
String arguments = (String) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ARGS);
if (arguments == null && !Platform.OS_WIN32.equals(Platform.getOS())) {
arguments = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences().getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_DEFAULT_SHELL_UNIX_ARGS);
arguments = org.eclipse.tm.terminal.view.ui.activator.UIPlugin.getScopedPreferences()
.getString(IPreferenceKeys.PREF_LOCAL_TERMINAL_DEFAULT_SHELL_UNIX_ARGS);
}
// Determine if a PTY will be used
boolean isUsingPTY = (properties.get(ITerminalsConnectorConstants.PROP_PROCESS_OBJ) == null && PTY.isSupported(PTY.Mode.TERMINAL))
boolean isUsingPTY = (properties.get(ITerminalsConnectorConstants.PROP_PROCESS_OBJ) == null
&& PTY.isSupported(PTY.Mode.TERMINAL))
|| properties.get(ITerminalsConnectorConstants.PROP_PTY_OBJ) instanceof PTY;
boolean localEcho = false;
@ -323,7 +345,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
|| !(properties.get(ITerminalsConnectorConstants.PROP_LINE_SEPARATOR) instanceof String)) {
// No line separator will be set if a PTY is used
if (!isUsingPTY) {
lineSeparator = Platform.OS_WIN32.equals(Platform.getOS()) ? ILineSeparatorConstants.LINE_SEPARATOR_CRLF : ILineSeparatorConstants.LINE_SEPARATOR_LF;
lineSeparator = Platform.OS_WIN32.equals(Platform.getOS()) ? ILineSeparatorConstants.LINE_SEPARATOR_CRLF
: ILineSeparatorConstants.LINE_SEPARATOR_LF;
}
} else {
lineSeparator = (String) properties.get(ITerminalsConnectorConstants.PROP_LINE_SEPARATOR);
@ -331,20 +354,23 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
Process process = (Process) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_OBJ);
PTY pty = (PTY) properties.get(ITerminalsConnectorConstants.PROP_PTY_OBJ);
ITerminalServiceOutputStreamMonitorListener[] stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[])properties.get(ITerminalsConnectorConstants.PROP_STDOUT_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stderrListeners = (ITerminalServiceOutputStreamMonitorListener[])properties.get(ITerminalsConnectorConstants.PROP_STDERR_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[]) properties
.get(ITerminalsConnectorConstants.PROP_STDOUT_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stderrListeners = (ITerminalServiceOutputStreamMonitorListener[]) properties
.get(ITerminalsConnectorConstants.PROP_STDERR_LISTENERS);
String workingDir = (String) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_WORKING_DIR);
String[] envp = null;
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) &&
properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) != null &&
properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) instanceof String[]){
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT)
&& properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) != null
&& properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) instanceof String[]) {
envp = (String[]) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT);
}
// Set the ECLIPSE_HOME and ECLIPSE_WORKSPACE environment variables
List<String> envpList = new ArrayList<String>();
if (envp != null) envpList.addAll(Arrays.asList(envp));
if (envp != null)
envpList.addAll(Arrays.asList(envp));
// ECLIPSE_HOME
String eclipseHomeLocation = System.getProperty("eclipse.home.location"); //$NON-NLS-1$
@ -353,7 +379,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
URI uri = URIUtil.fromString(eclipseHomeLocation);
File f = URIUtil.toFile(uri);
envpList.add("ECLIPSE_HOME=" + f.getAbsolutePath()); //$NON-NLS-1$
} catch (URISyntaxException e) { /* ignored on purpose */ }
} catch (URISyntaxException e) {
/* ignored on purpose */ }
}
// ECLIPSE_WORKSPACE
@ -362,7 +389,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
if (org.eclipse.core.resources.ResourcesPlugin.getWorkspace() != null
&& org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot() != null
&& org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation() != null) {
envpList.add("ECLIPSE_WORKSPACE=" + org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation().toOSString()); //$NON-NLS-1$
envpList.add("ECLIPSE_WORKSPACE=" + org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot() //$NON-NLS-1$
.getLocation().toOSString());
}
}
@ -389,7 +417,8 @@ public class LocalLauncherDelegate extends AbstractLauncherDelegate {
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_MERGE_ENVIRONMENT)) {
Object value = properties.get(ITerminalsConnectorConstants.PROP_PROCESS_MERGE_ENVIRONMENT);
processSettings.setMergeWithNativeEnvironment(value instanceof Boolean ? ((Boolean)value).booleanValue() : false);
processSettings
.setMergeWithNativeEnvironment(value instanceof Boolean ? ((Boolean) value).booleanValue() : false);
}
// And save the settings to the store

View file

@ -48,8 +48,10 @@ public class LocalLauncherHandler extends AbstractHandler {
if (input instanceof IPathEditorInput) {
IPath path = ((IPathEditorInput) input).getPath();
if (path != null) {
if (path.toFile().isFile()) path = path.removeLastSegments(1);
if (path.toFile().isDirectory() && path.toFile().canRead()) selection = new StructuredSelection(path);
if (path.toFile().isFile())
path = path.removeLastSegments(1);
if (path.toFile().isDirectory() && path.toFile().canRead())
selection = new StructuredSelection(path);
}
}
}

View file

@ -165,7 +165,8 @@ public class ProcessConnector extends AbstractStreamsConnector {
}
// Execute the process
process = ProcessFactory.getFactory().exec(argv.toArray(new String[argv.size()]), envp, workingDir, pty);
process = ProcessFactory.getFactory().exec(argv.toArray(new String[argv.size()]), envp, workingDir,
pty);
} else {
// No PTY -> just execute via the standard Java Runtime implementation.
process = Runtime.getRuntime().exec(command.toString(), envp, workingDir);
@ -177,11 +178,9 @@ public class ProcessConnector extends AbstractStreamsConnector {
lineSeparator = System.getProperty("line.separator"); //$NON-NLS-1$
if ("\r".equals(lineSeparator)) { //$NON-NLS-1$
lineSeparator = ILineSeparatorConstants.LINE_SEPARATOR_CR;
}
else if ("\n".equals(lineSeparator)) { //$NON-NLS-1$
} else if ("\n".equals(lineSeparator)) { //$NON-NLS-1$
lineSeparator = ILineSeparatorConstants.LINE_SEPARATOR_LF;
}
else {
} else {
lineSeparator = ILineSeparatorConstants.LINE_SEPARATOR_CRLF;
}
}
@ -196,7 +195,8 @@ public class ProcessConnector extends AbstractStreamsConnector {
control.setVT100LineWrapping(true);
// connect the streams
connectStreams(control, process.getOutputStream(), process.getInputStream(), (pty == null ? process.getErrorStream() : null), settings.isLocalEcho(), lineSeparator);
connectStreams(control, process.getOutputStream(), process.getInputStream(),
(pty == null ? process.getErrorStream() : null), settings.isLocalEcho(), lineSeparator);
// Set the terminal control state to CONNECTED
control.setState(TerminalState.CONNECTED);
@ -209,7 +209,8 @@ public class ProcessConnector extends AbstractStreamsConnector {
disconnect();
// Lookup the tab item
CTabItem item = ConsoleManager.getInstance().findConsole(control);
if (item != null) item.dispose();
if (item != null)
item.dispose();
// Get the error message from the exception
String msg = e.getLocalizedMessage() != null ? e.getLocalizedMessage() : ""; //$NON-NLS-1$
Assert.isNotNull(msg);
@ -252,7 +253,10 @@ public class ProcessConnector extends AbstractStreamsConnector {
if (!isWindows) {
// Destroy the process first, except on windows (Bug 465674)
if (process != null) { process.destroy(); process = null; }
if (process != null) {
process.destroy();
process = null;
}
}
// Dispose the streams
@ -260,7 +264,10 @@ public class ProcessConnector extends AbstractStreamsConnector {
if (isWindows) {
// On Windows destroy the process after closing streams
if (process != null) { process.destroy(); process = null; }
if (process != null) {
process.destroy();
process = null;
}
}
// Set the terminal control state to CLOSED.

View file

@ -73,7 +73,8 @@ public class ProcessLauncherDelegate extends AbstractLauncherDelegate {
// Check for the terminal connector id
String connectorId = (String) properties.get(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID);
if (connectorId == null) connectorId = "org.eclipse.tm.terminal.connector.process.ProcessConnector"; //$NON-NLS-1$
if (connectorId == null)
connectorId = "org.eclipse.tm.terminal.connector.process.ProcessConnector"; //$NON-NLS-1$
// Extract the process properties
String image = (String) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_PATH);
@ -83,14 +84,16 @@ public class ProcessLauncherDelegate extends AbstractLauncherDelegate {
Object value = properties.get(ITerminalsConnectorConstants.PROP_LOCAL_ECHO);
boolean localEcho = value instanceof Boolean ? ((Boolean) value).booleanValue() : false;
String lineSeparator = (String) properties.get(ITerminalsConnectorConstants.PROP_LINE_SEPARATOR);
ITerminalServiceOutputStreamMonitorListener[] stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[])properties.get(ITerminalsConnectorConstants.PROP_STDOUT_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stderrListeners = (ITerminalServiceOutputStreamMonitorListener[])properties.get(ITerminalsConnectorConstants.PROP_STDERR_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[]) properties
.get(ITerminalsConnectorConstants.PROP_STDOUT_LISTENERS);
ITerminalServiceOutputStreamMonitorListener[] stderrListeners = (ITerminalServiceOutputStreamMonitorListener[]) properties
.get(ITerminalsConnectorConstants.PROP_STDERR_LISTENERS);
String workingDir = (String) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_WORKING_DIR);
String[] envp = null;
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) &&
properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) != null &&
properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) instanceof String[]){
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT)
&& properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) != null
&& properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT) instanceof String[]) {
envp = (String[]) properties.get(ITerminalsConnectorConstants.PROP_PROCESS_ENVIRONMENT);
}
@ -114,7 +117,8 @@ public class ProcessLauncherDelegate extends AbstractLauncherDelegate {
if (properties.containsKey(ITerminalsConnectorConstants.PROP_PROCESS_MERGE_ENVIRONMENT)) {
value = properties.get(ITerminalsConnectorConstants.PROP_PROCESS_MERGE_ENVIRONMENT);
processSettings.setMergeWithNativeEnvironment(value instanceof Boolean ? ((Boolean)value).booleanValue() : false);
processSettings
.setMergeWithNativeEnvironment(value instanceof Boolean ? ((Boolean) value).booleanValue() : false);
}
// And save the settings to the store

View file

@ -13,7 +13,6 @@ package org.eclipse.tm.terminal.connector.process;
import org.eclipse.core.runtime.Assert;
/**
* Process monitor implementation.
*/
@ -27,7 +26,6 @@ public class ProcessMonitor {
// Flag to mark the monitor disposed
private boolean disposed;
/**
* Constructor.
*
@ -50,7 +48,8 @@ public class ProcessMonitor {
// Set the disposed status
disposed = true;
// Not initialized -> return immediately
if (thread == null) return;
if (thread == null)
return;
// Copy the reference
final Thread oldThread = thread;
@ -65,7 +64,8 @@ public class ProcessMonitor {
*/
public void startMonitoring() {
// If already initialized -> return immediately
if (thread != null) return;
if (thread != null)
return;
// Create a new runnable which is constantly reading from the stream
Runnable runnable = new Runnable() {
@ -91,7 +91,8 @@ public class ProcessMonitor {
*/
public void monitorProcess() {
// If already disposed -> return immediately
if (disposed) return;
if (disposed)
return;
try {
// Wait for the monitored process to terminate

View file

@ -113,7 +113,8 @@ public class ProcessSettings {
public void setPTY(PTY pty) {
this.pty = pty;
// If the PTY is set to "null", the local echo will be set to "true"
if (pty == null) setLocalEcho(true);
if (pty == null)
setLocalEcho(true);
}
/**
@ -265,14 +266,17 @@ public class ProcessSettings {
image = store.get("Path", null);//$NON-NLS-1$
arguments = store.get("Arguments", null); //$NON-NLS-1$
localEcho = Boolean.parseBoolean(store.get("LocalEcho", Boolean.FALSE.toString())); //$NON-NLS-1$
mergeWithNativeEnvironment = Boolean.parseBoolean(store.get("MergeWithNativeEnvironment", Boolean.FALSE.toString())); //$NON-NLS-1$
mergeWithNativeEnvironment = Boolean
.parseBoolean(store.get("MergeWithNativeEnvironment", Boolean.FALSE.toString())); //$NON-NLS-1$
lineSeparator = store.get("LineSeparator", null); //$NON-NLS-1$
workingDir = store.get("WorkingDir", null); //$NON-NLS-1$
if (store instanceof SettingsStore) {
process = (Process) ((SettingsStore) store).getSettings().get("Process"); //$NON-NLS-1$
pty = (PTY) ((SettingsStore) store).getSettings().get("PTY"); //$NON-NLS-1$
stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[])((SettingsStore)store).getSettings().get("StdOutListeners"); //$NON-NLS-1$
stderrListeners = (ITerminalServiceOutputStreamMonitorListener[])((SettingsStore)store).getSettings().get("StdErrListeners"); //$NON-NLS-1$
stdoutListeners = (ITerminalServiceOutputStreamMonitorListener[]) ((SettingsStore) store).getSettings()
.get("StdOutListeners"); //$NON-NLS-1$
stderrListeners = (ITerminalServiceOutputStreamMonitorListener[]) ((SettingsStore) store).getSettings()
.get("StdErrListeners"); //$NON-NLS-1$
environment = (String[]) ((SettingsStore) store).getSettings().get("Environment"); //$NON-NLS-1$
}
}

View file

@ -69,7 +69,8 @@ public class ProcessSettingsPage extends AbstractSettingsPage {
// The entry fields shall be properly aligned
Composite panel = new Composite(composite, SWT.NONE);
GridLayout layout = new GridLayout(2, false);
layout.marginWidth = 0; layout.marginHeight = 0;
layout.marginWidth = 0;
layout.marginHeight = 0;
panel.setLayout(layout);
panel.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
@ -80,7 +81,8 @@ public class ProcessSettingsPage extends AbstractSettingsPage {
// Text field and browse button are aligned it their own panel
Composite innerPanel = new Composite(panel, SWT.NONE);
layout = new GridLayout(2, false);
layout.marginWidth = 0; layout.marginHeight = 0;
layout.marginWidth = 0;
layout.marginHeight = 0;
innerPanel.setLayout(layout);
innerPanel.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
@ -127,7 +129,8 @@ public class ProcessSettingsPage extends AbstractSettingsPage {
*/
protected void onBrowseButtonSelected(SelectionEvent e) {
// Determine the shell
Shell shell = e != null ? e.widget.getDisplay().getActiveShell() : PlatformUI.getWorkbench().getDisplay().getActiveShell();
Shell shell = e != null ? e.widget.getDisplay().getActiveShell()
: PlatformUI.getWorkbench().getDisplay().getActiveShell();
// create a standard file dialog
FileDialog dialog = new FileDialog(shell, SWT.OPEN);
@ -141,7 +144,8 @@ public class ProcessSettingsPage extends AbstractSettingsPage {
IPath filePath = new Path(selectedFile);
// If the selected file points to an directory, use the directory as is
IPath filterPath = filePath.toFile().isDirectory() ? filePath : filePath.removeLastSegments(1);
String filterFileName = filePath.toFile().isDirectory() || !filePath.toFile().exists() ? null : filePath.lastSegment();
String filterFileName = filePath.toFile().isDirectory() || !filePath.toFile().exists() ? null
: filePath.lastSegment();
if (!filterPath.isEmpty()) {
dialog.setFilterPath(filterPath.toString());
@ -152,7 +156,8 @@ public class ProcessSettingsPage extends AbstractSettingsPage {
} else {
Bundle bundle = Platform.getBundle("org.eclipse.core.resources"); //$NON-NLS-1$
if (bundle != null && bundle.getState() != Bundle.UNINSTALLED && bundle.getState() != Bundle.STOPPING) {
dialog.setFilterPath(org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation().toOSString());
dialog.setFilterPath(
org.eclipse.core.resources.ResourcesPlugin.getWorkspace().getRoot().getLocation().toOSString());
}
}

View file

@ -13,7 +13,6 @@ package org.eclipse.tm.terminal.connector.process.help;
import org.eclipse.tm.terminal.connector.process.activator.UIPlugin;
/**
* Context help id definitions.
*/

View file

@ -103,7 +103,8 @@ public class ArgumentParser {
* string. Allows escaping.
*/
iterator.next(); // Skip quote
quoted_reader: while ((iterator.current() != CharacterIterator.DONE) && (iterator.current() != '"')) {
quoted_reader: while ((iterator.current() != CharacterIterator.DONE)
&& (iterator.current() != '"')) {
char innerChar = iterator.current();
switch (innerChar) {
case '\\':

View file

@ -79,15 +79,15 @@ public class RemoteConnectionManager extends Job {
remoteConnection = connType.getConnection(connector.getRemoteSettings().getConnectionName());
}
if (remoteConnection == null) {
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(),
NLS.bind(Messages.RemoteConnectionManager_0, connector.getRemoteSettings().getConnectionName()));
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(), NLS
.bind(Messages.RemoteConnectionManager_0, connector.getRemoteSettings().getConnectionName()));
}
if (!remoteConnection.isOpen()) {
remoteConnection.open(monitor);
if (!remoteConnection.isOpen()) {
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(),
NLS.bind(Messages.RemoteConnectionManager_1, connector.getRemoteSettings().getConnectionName()));
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(), NLS.bind(
Messages.RemoteConnectionManager_1, connector.getRemoteSettings().getConnectionName()));
}
}
@ -104,7 +104,8 @@ public class RemoteConnectionManager extends Job {
String terminalShellCommand = prefs.get(IRemoteTerminalConstants.PREF_TERMINAL_SHELL_COMMAND, ""); //$NON-NLS-1$
if ("".equals(terminalShellCommand) //$NON-NLS-1$
&& remoteConnection.hasService(IRemoteCommandShellService.class)) {
IRemoteCommandShellService cmdShellSvc = remoteConnection.getService(IRemoteCommandShellService.class);
IRemoteCommandShellService cmdShellSvc = remoteConnection
.getService(IRemoteCommandShellService.class);
synchronized (this) {
remoteProcess = cmdShellSvc.getCommandShell(IRemoteProcessBuilder.ALLOCATE_PTY);
}
@ -117,7 +118,8 @@ public class RemoteConnectionManager extends Job {
.getProcessBuilder(new ArgumentParser(terminalShellCommand).getTokenList());
remoteProcess = processBuilder.start(IRemoteProcessBuilder.ALLOCATE_PTY);
} else {
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(), Messages.RemoteConnectionManager_2);
return new Status(IStatus.ERROR, Activator.getUniqueIdentifier(),
Messages.RemoteConnectionManager_2);
}
}

View file

@ -40,7 +40,8 @@ public class RemoteSettingsPage extends AbstractSettingsPage {
if (fTerminalSettings != null && fRemoteConnectionWidget != null && !fRemoteConnectionWidget.isDisposed()) {
if (fRemoteConnectionWidget.getConnection() != null) {
if (fRemoteConnectionWidget.getConnection().getConnectionType() != null) {
fTerminalSettings.setConnectionTypeId(fRemoteConnectionWidget.getConnection().getConnectionType().getId());
fTerminalSettings
.setConnectionTypeId(fRemoteConnectionWidget.getConnection().getConnectionType().getId());
}
fTerminalSettings.setConnectionName(fRemoteConnectionWidget.getConnection().getName());
}
@ -50,7 +51,8 @@ public class RemoteSettingsPage extends AbstractSettingsPage {
@Override
public void loadSettings() {
if (fTerminalSettings != null && fRemoteConnectionWidget != null && !fRemoteConnectionWidget.isDisposed()) {
fRemoteConnectionWidget.setConnection(fTerminalSettings.getConnectionTypeId(), fTerminalSettings.getConnectionName());
fRemoteConnectionWidget.setConnection(fTerminalSettings.getConnectionTypeId(),
fTerminalSettings.getConnectionName());
}
}

View file

@ -98,7 +98,8 @@ public class RemoteLauncherDelegate extends AbstractLauncherDelegate {
private String getTerminalTitle(Map<String, Object> properties) {
// Try to see if the user set a title explicitly via the properties map.
String title = getDefaultTerminalTitle(properties);
if (title != null) return title;
if (title != null)
return title;
String connection = (String) properties.get(IRemoteSettings.CONNECTION_NAME);

View file

@ -37,7 +37,8 @@ public class RemoteMementoHandler implements IMementoHandler {
// Do not write the terminal title to the memento -> needs to
// be recreated at the time of restoration.
memento.putString(IRemoteSettings.CONNECTION_NAME, (String) properties.get(IRemoteSettings.CONNECTION_NAME));
memento.putString(IRemoteSettings.CONNECTION_TYPE_ID, (String) properties.get(IRemoteSettings.CONNECTION_TYPE_ID));
memento.putString(IRemoteSettings.CONNECTION_TYPE_ID,
(String) properties.get(IRemoteSettings.CONNECTION_TYPE_ID));
memento.putString(ITerminalsConnectorConstants.PROP_ENCODING,
(String) properties.get(ITerminalsConnectorConstants.PROP_ENCODING));
}
@ -55,6 +56,7 @@ public class RemoteMementoHandler implements IMementoHandler {
// Restore the terminal properties from the memento
properties.put(IRemoteSettings.CONNECTION_NAME, memento.getString(IRemoteSettings.CONNECTION_NAME));
properties.put(IRemoteSettings.CONNECTION_TYPE_ID, memento.getString(IRemoteSettings.CONNECTION_TYPE_ID));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING, memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING,
memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
}
}

View file

@ -14,7 +14,6 @@
*******************************************************************************/
package org.eclipse.tm.terminal.connector.ssh.connector;
/**
* Defines the constants used by the terminal.ssh Plugin
*/

View file

@ -57,13 +57,8 @@ public class KeyboardInteractiveDialog extends TrayDialog {
* @param prompt the titles for textfields
* @param echo '*' should be used or not
*/
public KeyboardInteractiveDialog(Shell parentShell,
String connectionId,
String destination,
String name,
String instruction,
String[] prompt,
boolean[] echo){
public KeyboardInteractiveDialog(Shell parentShell, String connectionId, String destination, String name,
String instruction, String[] prompt, boolean[] echo) {
super(parentShell);
this.domain = connectionId;
this.destination = destination;
@ -71,8 +66,10 @@ public class KeyboardInteractiveDialog extends TrayDialog {
this.instruction = instruction;
this.prompt = prompt;
this.echo = echo;
this.message=NLS.bind(SshMessages.KeyboardInteractiveDialog_message, new String[] { destination+(name!=null && name.length()>0 ? ": "+name : "") }); //NON-NLS-1$ //$NON-NLS-1$ //$NON-NLS-2$
this.message = NLS.bind(SshMessages.KeyboardInteractiveDialog_message,
new String[] { destination + (name != null && name.length() > 0 ? ": " + name : "") }); //NON-NLS-1$ //$NON-NLS-1$ //$NON-NLS-2$
}
/**
* @see Window#configureShell
*/
@ -81,6 +78,7 @@ protected void configureShell(Shell newShell) {
super.configureShell(newShell);
newShell.setText(message);
}
/**
* @see Window#create
*/
@ -91,6 +89,7 @@ public void create() {
texts[0].setFocus();
}
}
/**
* @see Dialog#createDialogArea
*/
@ -129,6 +128,7 @@ protected Control createDialogArea(Composite parent) {
createPasswordFields(main);
return main;
}
/**
* Creates the widgets that represent the entry area.
*
@ -152,6 +152,7 @@ protected void createPasswordFields(Composite parent) {
}
}
/**
* Returns the entered values, or null
* if the user cancelled.
@ -161,6 +162,7 @@ protected void createPasswordFields(Composite parent) {
public String[] getResult() {
return result;
}
/**
* Notifies that the ok button of this dialog has been pressed.
* <p>
@ -177,6 +179,7 @@ protected void okPressed() {
}
super.okPressed();
}
/**
* Notifies that the cancel button of this dialog has been pressed.
* <p>

View file

@ -54,6 +54,7 @@ public class SshConnection extends Thread {
private final SshConnector fConn;
private Session fSession;
private boolean fDisconnectHasBeenCalled;
protected SshConnection(SshConnector conn, ITerminalControl control) {
super("SshConnection-" + fgNo++); //$NON-NLS-1$
fControl = control;
@ -72,7 +73,8 @@ public class SshConnection extends Thread {
* the Jsch config (for instance, in order to switch off strict
* host key checking or in order to add specific ciphers).
*/
protected Session createSession(String username, String password, String hostname, int port, UserInfo wrapperUI, IProgressMonitor monitor) throws JSchException {
protected Session createSession(String username, String password, String hostname, int port, UserInfo wrapperUI,
IProgressMonitor monitor) throws JSchException {
IJSchService service = UIPlugin.getDefault().getJSchService();
if (service == null)
return null;
@ -109,8 +111,7 @@ public class SshConnection extends Thread {
UserInfo ui = new MyUserInfo(null, user, password);
Session session = createSession(user, password, host, port,
ui, new NullProgressMonitor());
Session session = createSession(user, password, host, port, ui, new NullProgressMonitor());
synchronized (this) {
fSession = session;
}
@ -207,6 +208,7 @@ public class SshConnection extends Thread {
}
}
}
/**
* Read the data from the ssh connection and display it in the terminal.
* @param in
@ -242,10 +244,12 @@ public class SshConnection extends Thread {
fUser = user;
fPassword = password;
}
@Override
public String getPassword() {
return fPassword;
}
@Override
public boolean promptYesNo(final String str) {
//need to switch to UI thread for prompting
@ -267,6 +271,7 @@ public class SshConnection extends Thread {
});
return retval[0];
}
private String promptSecret(final String message) {
final String[] retval = new String[1];
getStandardDisplay().syncExec(new Runnable() {
@ -287,15 +292,18 @@ public class SshConnection extends Thread {
});
return retval[0];
}
@Override
public String getPassphrase() {
return fPassphrase;
}
@Override
public boolean promptPassphrase(String message) {
fPassphrase = promptSecret(message);
return (fPassphrase != null);
}
@Override
public boolean promptPassword(final String message) {
String _password = promptSecret(message);
@ -305,6 +313,7 @@ public class SshConnection extends Thread {
}
return false;
}
@Override
public void showMessage(final String message) {
Display.getDefault().syncExec(new Runnable() {
@ -321,17 +330,17 @@ public class SshConnection extends Thread {
}
});
}
@Override
public String[] promptKeyboardInteractive(final String destination,
final String name, final String instruction,
final String[] prompt, final boolean[] echo)
{
public String[] promptKeyboardInteractive(final String destination, final String name, final String instruction,
final String[] prompt, final boolean[] echo) {
if (prompt.length == 0) {
// No need to prompt, just return an empty String array
return new String[0];
}
try {
if (fAttemptCount == 0 && fPassword != null && prompt.length == 1 && prompt[0].trim().equalsIgnoreCase("password:")) { //$NON-NLS-1$
if (fAttemptCount == 0 && fPassword != null && prompt.length == 1
&& prompt[0].trim().equalsIgnoreCase("password:")) { //$NON-NLS-1$
// Return the provided password the first time but always prompt on subsequent tries
fAttemptCount++;
return new String[] { fPassword };
@ -341,7 +350,8 @@ public class SshConnection extends Thread {
@Override
public void run() {
if (isSessionConnected()) {
KeyboardInteractiveDialog dialog = new KeyboardInteractiveDialog(null, fConnectionId, destination, name, instruction, prompt, echo);
KeyboardInteractiveDialog dialog = new KeyboardInteractiveDialog(null, fConnectionId,
destination, name, instruction, prompt, echo);
dialog.open();
finResult[0] = dialog.getResult();
} else {
@ -357,8 +367,7 @@ public class SshConnection extends Thread {
}
fAttemptCount++;
return result;
}
catch(OperationCanceledException e){
} catch (OperationCanceledException e) {
return null;
}
}

View file

@ -36,22 +36,27 @@ public class SshConnector extends TerminalConnectorImpl {
private final SshSettings fSettings;
private int fWidth;
private int fHeight;
public SshConnector() {
this(new SshSettings());
}
public SshConnector(SshSettings settings) {
fSettings = settings;
}
@Override
public void initialize() throws Exception {
fJsch = new JSch();
}
@Override
public void connect(ITerminalControl control) {
super.connect(control);
fConnection = new SshConnection(this, control);
fConnection.start();
}
@Override
synchronized public void doDisconnect() {
fConnection.disconnect();
@ -71,6 +76,7 @@ public class SshConnector extends TerminalConnectorImpl {
}
}
}
@Override
public void setTerminalSize(int newWidth, int newHeight) {
if (fChannel != null && (newWidth != fWidth || newHeight != fHeight)) {
@ -80,19 +86,24 @@ public class SshConnector extends TerminalConnectorImpl {
fHeight = newHeight;
}
}
public InputStream getInputStream() {
return fInputStream;
}
@Override
public OutputStream getTerminalToRemoteStream() {
return fOutputStream;
}
void setInputStream(InputStream inputStream) {
fInputStream = inputStream;
}
void setOutputStream(OutputStream outputStream) {
fOutputStream = outputStream;
}
/**
* Return the SSH Settings.
*
@ -102,28 +113,35 @@ public class SshConnector extends TerminalConnectorImpl {
public ISshSettings getSshSettings() {
return fSettings;
}
@Override
public void setDefaultSettings() {
fSettings.load(new NullSettingsStore());
}
@Override
public String getSettingsSummary() {
return fSettings.getSummary();
}
@Override
public void load(ISettingsStore store) {
fSettings.load(store);
}
@Override
public void save(ISettingsStore store) {
fSettings.save(store);
}
protected JSch getJsch() {
return fJsch;
}
ChannelShell getChannel() {
return fChannel;
}
void setChannel(ChannelShell channel) {
fChannel = channel;
fWidth = -1;

View file

@ -25,6 +25,7 @@ public class SshSettings implements ISshSettings {
protected String fPort;
protected String fTimeout;
protected String fKeepalive;
@Override
public String getHost() {
return fHost;
@ -68,7 +69,6 @@ public class SshSettings implements ISshSettings {
store.put("Keepalive", fKeepalive);//$NON-NLS-1$
}
@Override
public int getTimeout() {
try {
@ -77,6 +77,7 @@ public class SshSettings implements ISshSettings {
return 10;
}
}
public String getTimeoutString() {
return fTimeout;
}
@ -93,6 +94,7 @@ public class SshSettings implements ISshSettings {
return 300;
}
}
public String getKeepaliveString() {
return fKeepalive;
}
@ -109,6 +111,7 @@ public class SshSettings implements ISshSettings {
public void setUser(String user) {
fUser = user;
}
@Override
public int getPort() {
try {

View file

@ -39,6 +39,7 @@ public class SshSettingsPage extends AbstractSettingsPage {
public SshSettingsPage(SshSettings settings) {
fTerminalSettings = settings;
}
@Override
public void saveSettings() {
fTerminalSettings.setHost(fHostText.getText());
@ -60,11 +61,13 @@ public class SshSettingsPage extends AbstractSettingsPage {
fPassword.setText(get(fTerminalSettings.getPassword(), ""));//$NON-NLS-1$
}
}
String get(String value, String def) {
if (value == null || value.length() == 0)
return def;
return value;
}
@Override
public boolean validateSettings() {
String message = null;
@ -75,7 +78,10 @@ public class SshSettingsPage extends AbstractSettingsPage {
String m = "Please enter a host IP or name."; //$NON-NLS-1$
int mt = IMessageProvider.INFORMATION;
updateControlDecoration(fHostText, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -85,7 +91,10 @@ public class SshSettingsPage extends AbstractSettingsPage {
String m = "Please enter a username."; //$NON-NLS-1$
int mt = IMessageProvider.INFORMATION;
updateControlDecoration(fUser, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -97,7 +106,10 @@ public class SshSettingsPage extends AbstractSettingsPage {
String m = "Invalid network port. Must be between 0 and 65535."; //$NON-NLS-1$
int mt = IMessageProvider.ERROR;
updateControlDecoration(fPort, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -108,7 +120,10 @@ public class SshSettingsPage extends AbstractSettingsPage {
String m = "Invalid timeout. Must be greater than 0."; //$NON-NLS-1$
int mt = IMessageProvider.ERROR;
updateControlDecoration(fTimeout, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -119,7 +134,10 @@ public class SshSettingsPage extends AbstractSettingsPage {
String m = "Invalid keep alive. Must be greater than 0."; //$NON-NLS-1$
int mt = IMessageProvider.ERROR;
updateControlDecoration(fKeepalive, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -132,6 +150,7 @@ public class SshSettingsPage extends AbstractSettingsPage {
setMessage(message, messageType);
return valid;
}
@Override
public void createControl(Composite parent) {
Composite composite = new Composite(parent, SWT.NONE);
@ -151,6 +170,7 @@ public class SshSettingsPage extends AbstractSettingsPage {
fPort = createTextField(composite, SshMessages.PORT);
loadSettings();
}
private Text createTextField(Composite composite, String labelTxt, int textOptions) {
GridData gridData;
// Add label
@ -170,6 +190,7 @@ public class SshSettingsPage extends AbstractSettingsPage {
createControlDecoration(text);
return text;
}
private Text createTextField(Composite composite, String labelTxt) {
return createTextField(composite, labelTxt, 0);
}

View file

@ -67,6 +67,7 @@ public class UserValidationDialog extends TrayDialog {
this.domain = location;
this.message = message;
}
/**
* @see Window#configureShell
*/
@ -77,6 +78,7 @@ public class UserValidationDialog extends TrayDialog {
// set F1 help
PlatformUI.getWorkbench().getHelpSystem().setHelp(newShell, ISshConstants.HELP_USER_VALIDATION_DIALOG);
}
/**
* @see Window#create
*/
@ -142,7 +144,8 @@ public class UserValidationDialog extends TrayDialog {
if (isUsernameMutable) {
label.setText(NLS.bind(SshMessages.UserValidationDialog_labelUser, new String[] { domain }));
} else {
label.setText(NLS.bind(SshMessages.UserValidationDialog_labelPassword, (new Object[]{defaultUsername, domain})));
label.setText(NLS.bind(SshMessages.UserValidationDialog_labelPassword,
(new Object[] { defaultUsername, domain })));
}
data = new GridData(GridData.FILL_HORIZONTAL | GridData.GRAB_HORIZONTAL);
data.horizontalSpan = 2;
@ -175,7 +178,8 @@ public class UserValidationDialog extends TrayDialog {
warningComposite.setLayoutData(data);
Label warningLabel = new Label(warningComposite, SWT.NONE);
warningLabel.setImage(getImage(DLG_IMG_MESSAGE_WARNING));
warningLabel.setLayoutData(new GridData(GridData.VERTICAL_ALIGN_BEGINNING | GridData.HORIZONTAL_ALIGN_BEGINNING));
warningLabel.setLayoutData(
new GridData(GridData.VERTICAL_ALIGN_BEGINNING | GridData.HORIZONTAL_ALIGN_BEGINNING));
Label warningText = new Label(warningComposite, SWT.WRAP);
warningText.setText(SshMessages.UserValidationDialog_7);
data = new GridData(GridData.FILL_HORIZONTAL);
@ -202,6 +206,7 @@ public class UserValidationDialog extends TrayDialog {
data.widthHint = convertHorizontalDLUsToPixels(IDialogConstants.ENTRY_FIELD_WIDTH);
passwordField.setLayoutData(data);
}
/**
* Creates the three widgets that represent the user name entry area.
*
@ -261,6 +266,7 @@ public class UserValidationDialog extends TrayDialog {
super.okPressed();
}
/**
* Sets whether or not the username field should be mutable.
* This method must be called before create(), otherwise it

View file

@ -75,7 +75,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
panel.setLayoutData(data);
// Create the host selection combo
if (isWithoutSelection()) createHostsUI(panel, true);
if (isWithoutSelection())
createHostsUI(panel, true);
SshConnector conn = new SshConnector();
sshSettings = (SshSettings) conn.getSshSettings();
@ -92,7 +93,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
sshSettingsPage.addListener(new ISettingsPage.Listener() {
@Override
public void onSettingsPageChanged(Control control) {
if (getContainer() != null) getContainer().validate();
if (getContainer() != null)
getContainer().validate();
}
});
@ -110,31 +112,39 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
*/
@Override
public void setupData(Map<String, Object> data) {
if (data == null || sshSettings == null || sshSettingsPage == null) return;
if (data == null || sshSettings == null || sshSettingsPage == null)
return;
String value = (String) data.get(ITerminalsConnectorConstants.PROP_IP_HOST);
if (value != null) sshSettings.setHost(value);
if (value != null)
sshSettings.setHost(value);
Object v = data.get(ITerminalsConnectorConstants.PROP_IP_PORT);
value = v != null ? v.toString() : null;
if (value != null) sshSettings.setPort(value);
if (value != null)
sshSettings.setPort(value);
v = data.get(ITerminalsConnectorConstants.PROP_TIMEOUT);
value = v != null ? v.toString() : null;
if (value != null) sshSettings.setTimeout(value);
if (value != null)
sshSettings.setTimeout(value);
v = data.get(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE);
value = v != null ? v.toString() : null;
if (value != null) sshSettings.setKeepalive(value);
if (value != null)
sshSettings.setKeepalive(value);
value = (String) data.get(ITerminalsConnectorConstants.PROP_SSH_PASSWORD);
if (value != null) sshSettings.setPassword(value);
if (value != null)
sshSettings.setPassword(value);
value = (String) data.get(ITerminalsConnectorConstants.PROP_SSH_USER);
if (value != null) sshSettings.setUser(value);
if (value != null)
sshSettings.setUser(value);
value = (String) data.get(ITerminalsConnectorConstants.PROP_ENCODING);
if (value != null) setEncoding(value);
if (value != null)
setEncoding(value);
sshSettingsPage.loadSettings();
}
@ -151,7 +161,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
ITerminalContextPropertiesProvider provider = TerminalContextPropertiesProviderFactory.getProvider(element);
if (provider != null) {
Object user = provider.getProperty(element, IContextPropertiesConstants.PROP_DEFAULT_USER);
if (user instanceof String) return ((String) user).trim();
if (user instanceof String)
return ((String) user).trim();
}
}
@ -163,10 +174,12 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
*/
@Override
public void extractData(Map<String, Object> data) {
if (data == null) return;
if (data == null)
return;
// set the terminal connector id for ssh
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID, "org.eclipse.tm.terminal.connector.ssh.SshConnector"); //$NON-NLS-1$
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID,
"org.eclipse.tm.terminal.connector.ssh.SshConnector"); //$NON-NLS-1$
sshSettingsPage.saveSettings();
data.put(ITerminalsConnectorConstants.PROP_IP_HOST, sshSettings.getHost());
@ -218,7 +231,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
String encoding = hostSettings.get(ITerminalsConnectorConstants.PROP_ENCODING);
if (encoding == null || "null".equals(encoding)) { //$NON-NLS-1$
String defaultEncoding = getSelectionEncoding();
encoding = defaultEncoding != null && !"".equals(defaultEncoding.trim()) ? defaultEncoding.trim() : "ISO-8859-1"; //$NON-NLS-1$ //$NON-NLS-2$
encoding = defaultEncoding != null && !"".equals(defaultEncoding.trim()) ? defaultEncoding.trim() //$NON-NLS-1$
: "ISO-8859-1"; //$NON-NLS-1$
}
setEncoding(encoding);
} else {
@ -257,15 +271,15 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_HOST, sshSettings.getHost());
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_PORT, Integer.toString(sshSettings.getPort()));
hostSettings.put(ITerminalsConnectorConstants.PROP_TIMEOUT, Integer.toString(sshSettings.getTimeout()));
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE, Integer.toString(sshSettings.getKeepalive()));
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE,
Integer.toString(sshSettings.getKeepalive()));
if (saveUser) {
if (sshSettings.getUser() != null) {
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_USER, sshSettings.getUser());
} else {
hostSettings.remove(ITerminalsConnectorConstants.PROP_SSH_USER);
}
}
else {
} else {
hostSettings.remove(ITerminalsConnectorConstants.PROP_SSH_USER);
}
@ -285,13 +299,15 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
}
// maybe unchecked the password button - so try to remove a saved password - if any
if (!savePassword) removeSecurePassword(host);
if (!savePassword)
removeSecurePassword(host);
} else if (add) {
Map<String, String> hostSettings = new HashMap<String, String>();
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_HOST, sshSettings.getHost());
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_PORT, Integer.toString(sshSettings.getPort()));
hostSettings.put(ITerminalsConnectorConstants.PROP_TIMEOUT, Integer.toString(sshSettings.getTimeout()));
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE, Integer.toString(sshSettings.getKeepalive()));
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE,
Integer.toString(sshSettings.getKeepalive()));
if (saveUser) {
if (sshSettings.getUser() != null) {
hostSettings.put(ITerminalsConnectorConstants.PROP_SSH_USER, sshSettings.getUser());
@ -328,8 +344,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
if (node != null) {
try {
node.put("password", password, true); //$NON-NLS-1$
}
catch (StorageException ex) { /* ignored on purpose */ }
} catch (StorageException ex) {
/* ignored on purpose */ }
}
}
}
@ -353,8 +369,8 @@ public class SshWizardConfigurationPanel extends AbstractExtendedConfigurationPa
String password = null;
try {
password = node.get("password", null); //$NON-NLS-1$
}
catch (StorageException ex) { /* ignored on purpose */ }
} catch (StorageException ex) {
/* ignored on purpose */ }
return password;
}

View file

@ -95,7 +95,8 @@ public class SshLauncherDelegate extends AbstractLauncherDelegate {
private String getTerminalTitle(Map<String, Object> properties) {
// Try to see if the user set a title explicitly via the properties map.
String title = getDefaultTerminalTitle(properties);
if (title != null) return title;
if (title != null)
return title;
//No title,try to calculate the title
String host = (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST);
@ -107,7 +108,8 @@ public class SshLauncherDelegate extends AbstractLauncherDelegate {
DateFormat format = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
String date = format.format(new Date(System.currentTimeMillis()));
if (port != null && Integer.valueOf(port).intValue() != ISshSettings.DEFAULT_SSH_PORT) {
return NLS.bind(Messages.SshLauncherDelegate_terminalTitle_port, new String[]{user, host, port, date});
return NLS.bind(Messages.SshLauncherDelegate_terminalTitle_port,
new String[] { user, host, port, date });
}
return NLS.bind(Messages.SshLauncherDelegate_terminalTitle, new String[] { user, host, date });
}
@ -135,7 +137,8 @@ public class SshLauncherDelegate extends AbstractLauncherDelegate {
// Check for the terminal connector id
String connectorId = (String) properties.get(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID);
if (connectorId == null) connectorId = "org.eclipse.tm.terminal.connector.ssh.SshConnector"; //$NON-NLS-1$
if (connectorId == null)
connectorId = "org.eclipse.tm.terminal.connector.ssh.SshConnector"; //$NON-NLS-1$
// Extract the ssh properties
String host = (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST);
@ -151,7 +154,8 @@ public class SshLauncherDelegate extends AbstractLauncherDelegate {
int portOffset = 0;
if (properties.get(ITerminalsConnectorConstants.PROP_IP_PORT_OFFSET) instanceof Integer) {
portOffset = ((Integer) properties.get(ITerminalsConnectorConstants.PROP_IP_PORT_OFFSET)).intValue();
if (portOffset < 0) portOffset = 0;
if (portOffset < 0)
portOffset = 0;
}
// The real port to connect to is port + portOffset

View file

@ -26,7 +26,6 @@ import org.eclipse.ui.IMemento;
*/
public class SshMementoHandler implements IMementoHandler {
/* (non-Javadoc)
* @see org.eclipse.tm.terminal.view.ui.interfaces.IMementoHandler#saveState(org.eclipse.ui.IMemento, java.util.Map)
*/
@ -37,15 +36,21 @@ public class SshMementoHandler implements IMementoHandler {
// Do not write the terminal title to the memento -> needs to
// be recreated at the time of restoration.
memento.putString(ITerminalsConnectorConstants.PROP_IP_HOST, (String)properties.get(ITerminalsConnectorConstants.PROP_IP_HOST));
memento.putString(ITerminalsConnectorConstants.PROP_IP_HOST,
(String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST));
Object value = properties.get(ITerminalsConnectorConstants.PROP_IP_PORT);
memento.putInteger(ITerminalsConnectorConstants.PROP_IP_PORT, value instanceof Integer ? ((Integer)value).intValue() : -1);
memento.putInteger(ITerminalsConnectorConstants.PROP_IP_PORT,
value instanceof Integer ? ((Integer) value).intValue() : -1);
value = properties.get(ITerminalsConnectorConstants.PROP_TIMEOUT);
memento.putInteger(ITerminalsConnectorConstants.PROP_TIMEOUT, value instanceof Integer ? ((Integer)value).intValue() : -1);
memento.putInteger(ITerminalsConnectorConstants.PROP_TIMEOUT,
value instanceof Integer ? ((Integer) value).intValue() : -1);
value = properties.get(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE);
memento.putInteger(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE, value instanceof Integer ? ((Integer)value).intValue() : -1);
memento.putString(ITerminalsConnectorConstants.PROP_SSH_USER, (String)properties.get(ITerminalsConnectorConstants.PROP_SSH_USER));
memento.putString(ITerminalsConnectorConstants.PROP_ENCODING, (String)properties.get(ITerminalsConnectorConstants.PROP_ENCODING));
memento.putInteger(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE,
value instanceof Integer ? ((Integer) value).intValue() : -1);
memento.putString(ITerminalsConnectorConstants.PROP_SSH_USER,
(String) properties.get(ITerminalsConnectorConstants.PROP_SSH_USER));
memento.putString(ITerminalsConnectorConstants.PROP_ENCODING,
(String) properties.get(ITerminalsConnectorConstants.PROP_ENCODING));
// The password is stored within the Eclipse secure preferences -> no need to store it to the memento
//
@ -84,12 +89,18 @@ public class SshMementoHandler implements IMementoHandler {
Assert.isNotNull(properties);
// Restore the terminal properties from the memento
properties.put(ITerminalsConnectorConstants.PROP_IP_HOST, memento.getString(ITerminalsConnectorConstants.PROP_IP_HOST));
properties.put(ITerminalsConnectorConstants.PROP_IP_PORT, memento.getInteger(ITerminalsConnectorConstants.PROP_IP_PORT));
properties.put(ITerminalsConnectorConstants.PROP_TIMEOUT, memento.getInteger(ITerminalsConnectorConstants.PROP_TIMEOUT));
properties.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE, memento.getInteger(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE));
properties.put(ITerminalsConnectorConstants.PROP_SSH_USER, memento.getString(ITerminalsConnectorConstants.PROP_SSH_USER));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING, memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
properties.put(ITerminalsConnectorConstants.PROP_IP_HOST,
memento.getString(ITerminalsConnectorConstants.PROP_IP_HOST));
properties.put(ITerminalsConnectorConstants.PROP_IP_PORT,
memento.getInteger(ITerminalsConnectorConstants.PROP_IP_PORT));
properties.put(ITerminalsConnectorConstants.PROP_TIMEOUT,
memento.getInteger(ITerminalsConnectorConstants.PROP_TIMEOUT));
properties.put(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE,
memento.getInteger(ITerminalsConnectorConstants.PROP_SSH_KEEP_ALIVE));
properties.put(ITerminalsConnectorConstants.PROP_SSH_USER,
memento.getString(ITerminalsConnectorConstants.PROP_SSH_USER));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING,
memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
// The password is stored within the Eclipse secure preferences -> restore it from there
// To access the secure storage, we need the preference instance
@ -97,13 +108,14 @@ public class SshMementoHandler implements IMementoHandler {
ISecurePreferences preferences = SecurePreferencesFactory.getDefault();
if (preferences != null && (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST) != null) {
// Construct the secure preferences node key
String nodeKey = "/Target Explorer SSH Password/" + (String)properties.get(ITerminalsConnectorConstants.PROP_IP_HOST); //$NON-NLS-1$
String nodeKey = "/Target Explorer SSH Password/" //$NON-NLS-1$
+ (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST);
ISecurePreferences node = preferences.node(nodeKey);
if (node != null) {
try {
password = node.get("password", null); //$NON-NLS-1$
}
catch (StorageException ex) { /* ignored on purpose */ }
} catch (StorageException ex) {
/* ignored on purpose */ }
}
}

View file

@ -30,13 +30,19 @@ public interface ITelnetSettings {
static final String EOL_CRLF = "CR+LF"; //$NON-NLS-1$
String getHost();
int getNetworkPort();
int getTimeout();
/**
* @since 4.2
*/
String getEndOfLine();
String getSummary();
void load(ISettingsStore store);
void save(ISettingsStore store);
}

View file

@ -30,9 +30,7 @@ public class NetworkPortMap {
String[][] fPortMap = new String[][] {
// portName, port
{PROP_NAMETGTCONS, PROP_VALUETGTCONS},
{PROP_NAMETELNET, PROP_VALUETELNET}
};
{ PROP_NAMETGTCONS, PROP_VALUETGTCONS }, { PROP_NAMETELNET, PROP_VALUETELNET } };
public String getDefaultNetworkPort() {
return PROP_VALUETELNET;

View file

@ -22,8 +22,7 @@ package org.eclipse.tm.terminal.connector.telnet.connector;
* interface. The meanings of these constants are defined in the various TELNET RFCs
* (RFC 854 to RFC 861, and others).
*/
interface TelnetCodes
{
interface TelnetCodes {
/** Command code: Subnegotiation End. */
static final byte TELNET_SE = (byte) 240;
@ -78,7 +77,6 @@ interface TelnetCodes
/** Command code: SEND. */
static final byte TELNET_SEND = 1;
/** Option code: Transmit Binary option. */
static final byte TELNET_OPTION_TRANSMIT_BINARY = 0;

View file

@ -32,11 +32,13 @@ import org.eclipse.tm.internal.terminal.provisional.api.TerminalState;
class TelnetConnectWorker extends Thread {
private final ITerminalControl fControl;
private final TelnetConnector fConn;
protected TelnetConnectWorker(TelnetConnector conn, ITerminalControl control) {
fControl = control;
fConn = conn;
fControl.setState(TerminalState.CONNECTING);
}
@Override
public void run() {
// Retry the connect with after a little pause in case the
@ -48,7 +50,11 @@ class TelnetConnectWorker extends Thread {
while (remaining >= 0) {
// Pause before we re-try if the remaining tries are less than the initial value
if (remaining < 10) try { Thread.sleep(500); } catch (InterruptedException e) { /* ignored on purpose */ }
if (remaining < 10)
try {
Thread.sleep(500);
} catch (InterruptedException e) {
/* ignored on purpose */ }
try {
int nTimeout = fConn.getTelnetSettings().getTimeout() * 1000;
@ -93,7 +99,8 @@ class TelnetConnectWorker extends Thread {
// counter is not desired.
remaining = 0;
// Construct error message and signal failed
connectFailed(socketTimeoutException.getMessage(), "Connection Error!\n" + socketTimeoutException.getMessage()); //$NON-NLS-1$
connectFailed(socketTimeoutException.getMessage(),
"Connection Error!\n" + socketTimeoutException.getMessage()); //$NON-NLS-1$
} catch (ConnectException connectException) {
// In case of a ConnectException, do a re-try. The server could have been
// simply not ready yet and the worker would give up to early. If the terminal

View file

@ -335,7 +335,8 @@ public class TelnetConnection extends Thread implements TelnetCodes {
// A "socket closed" exception is normal here. It's caused by the
// user clicking the disconnect button on the Terminal view toolbar.
if (message != null && !message.equalsIgnoreCase("Socket closed") && !message.equalsIgnoreCase("Connection reset")) //$NON-NLS-1$ //$NON-NLS-2$
if (message != null && !message.equalsIgnoreCase("Socket closed") //$NON-NLS-1$
&& !message.equalsIgnoreCase("Connection reset")) //$NON-NLS-1$
{
Logger.logException(ex);
}
@ -345,8 +346,14 @@ public class TelnetConnection extends Thread implements TelnetCodes {
} finally {
// Tell the ITerminalControl object that the connection is closed.
terminalControl.setState(TerminalState.CLOSED);
try { inputStream.close(); } catch(IOException ioe) { /*ignore*/ }
try { outputStream.close(); } catch(IOException ioe) { /*ignore*/ }
try {
inputStream.close();
} catch (IOException ioe) {
/*ignore*/ }
try {
outputStream.close();
} catch (IOException ioe) {
/*ignore*/ }
}
}

View file

@ -73,9 +73,11 @@ public class TelnetConnector extends TerminalConnectorImpl {
public TelnetConnector() {
this(new TelnetSettings());
}
public TelnetConnector(TelnetSettings settings) {
fSettings = settings;
}
@Override
public void connect(ITerminalControl control) {
super.connect(control);
@ -86,6 +88,7 @@ public class TelnetConnector extends TerminalConnectorImpl {
TelnetConnectWorker worker = new TelnetConnectWorker(this, control);
worker.start();
}
@Override
public void doDisconnect() {
if (getSocket() != null) {
@ -113,12 +116,14 @@ public class TelnetConnector extends TerminalConnectorImpl {
}
cleanSocket();
}
@Override
public boolean isLocalEcho() {
if (fTelnetConnection == null)
return false;
return fTelnetConnection.localEcho();
}
@Override
public void setTerminalSize(int newWidth, int newHeight) {
if (fTelnetConnection != null && (newWidth != fWidth || newHeight != fHeight)) {
@ -128,16 +133,20 @@ public class TelnetConnector extends TerminalConnectorImpl {
fHeight = newHeight;
}
}
public InputStream getInputStream() {
return fInputStream;
}
@Override
public OutputStream getTerminalToRemoteStream() {
return fOutputStream;
}
private void setInputStream(InputStream inputStream) {
fInputStream = inputStream;
}
private void setOutputStream(OutputStream outputStream) {
if (outputStream == null) {
fOutputStream = null;
@ -146,6 +155,7 @@ public class TelnetConnector extends TerminalConnectorImpl {
// translate CR to telnet end-of-line sequence - RFC 854
fOutputStream = new TelnetOutputStream(outputStream, fSettings.getEndOfLine());
}
Socket getSocket() {
return fSocket;
}
@ -169,33 +179,42 @@ public class TelnetConnector extends TerminalConnectorImpl {
}
}
public void setTelnetConnection(TelnetConnection connection) {
fTelnetConnection = connection;
}
public void displayTextInTerminal(String text) {
fControl.displayTextInTerminal(text);
}
public OutputStream getRemoteToTerminalOutputStream() {
return fControl.getRemoteToTerminalOutputStream();
}
public void setState(TerminalState state) {
fControl.setState(state);
}
public ITelnetSettings getTelnetSettings() {
return fSettings;
}
@Override
public void setDefaultSettings() {
fSettings.load(new NullSettingsStore());
}
@Override
public String getSettingsSummary() {
return fSettings.getSummary();
}
@Override
public void load(ISettingsStore store) {
fSettings.load(store);
}
@Override
public void save(ISettingsStore store) {
fSettings.save(store);

View file

@ -43,16 +43,13 @@ import org.eclipse.tm.internal.terminal.provisional.api.Logger;
*
* @author Fran Litterio (francis.litterio@windriver.com)
*/
class TelnetOption implements TelnetCodes
{
class TelnetOption implements TelnetCodes {
/**
* This array of Strings maps an integer TELNET option code value to the symbolic
* name of the option. Array elements of the form "?" represent unassigned option
* values.
*/
protected static final String[] optionNames =
{
"BINARY", // 0 //$NON-NLS-1$
protected static final String[] optionNames = { "BINARY", // 0 //$NON-NLS-1$
"ECHO", // 1 //$NON-NLS-1$
"RECONNECTION", // 2 //$NON-NLS-1$
"SUPPRESS GO AHEAD", // 3 //$NON-NLS-1$
@ -251,8 +248,7 @@ class TelnetOption implements TelnetCodes
* @param local Whether this option is for the local or remote endpoint.
* @param outputStream A stream used to negotiate with the remote endpoint.
*/
TelnetOption(byte option, boolean desired, boolean local,
OutputStream outputStream) {
TelnetOption(byte option, boolean desired, boolean local, OutputStream outputStream) {
this.option = option;
this.desired = desired;
this.local = local;
@ -333,12 +329,10 @@ class TelnetOption implements TelnetCodes
public void negotiate() {
if (negotiationState == NEGOTIATION_NOT_STARTED && desired) {
if (local) {
Logger
.log("Starting negotiation for local option " + optionName()); //$NON-NLS-1$
Logger.log("Starting negotiation for local option " + optionName()); //$NON-NLS-1$
sendWill();
} else {
Logger
.log("Starting negotiation for remote option " + optionName()); //$NON-NLS-1$
Logger.log("Starting negotiation for remote option " + optionName()); //$NON-NLS-1$
sendDo();
}
@ -352,8 +346,7 @@ class TelnetOption implements TelnetCodes
*/
public void handleWill() {
if (negotiationState == NEGOTIATION_DONE && ignoreNegotiation()) {
Logger
.log("Ignoring superfluous WILL command from remote endpoint."); //$NON-NLS-1$
Logger.log("Ignoring superfluous WILL command from remote endpoint."); //$NON-NLS-1$
return;
}
@ -403,8 +396,7 @@ class TelnetOption implements TelnetCodes
*/
public void handleWont() {
if (negotiationState == NEGOTIATION_DONE && ignoreNegotiation()) {
Logger
.log("Ignoring superfluous WONT command from remote endpoint."); //$NON-NLS-1$
Logger.log("Ignoring superfluous WONT command from remote endpoint."); //$NON-NLS-1$
return;
}
@ -481,8 +473,7 @@ class TelnetOption implements TelnetCodes
*/
public void handleDont() {
if (negotiationState == NEGOTIATION_DONE && ignoreNegotiation()) {
Logger
.log("Ignoring superfluous DONT command from remote endpoint."); //$NON-NLS-1$
Logger.log("Ignoring superfluous DONT command from remote endpoint."); //$NON-NLS-1$
return;
}
@ -520,8 +511,7 @@ class TelnetOption implements TelnetCodes
case TELNET_OPTION_TERMINAL_TYPE:
if (subnegotiationData[1] != TELNET_SEND) {
// This should never happen!
Logger
.log("Invalid TERMINAL-TYPE subnegotiation command from remote endpoint: " + //$NON-NLS-1$
Logger.log("Invalid TERMINAL-TYPE subnegotiation command from remote endpoint: " + //$NON-NLS-1$
(subnegotiationData[1] & 0xff));
break;
}
@ -531,8 +521,7 @@ class TelnetOption implements TelnetCodes
//
// IAC SB TERMINAL-TYPE IS x t e r m IAC SE
byte[] terminalTypeData = { TELNET_IAC, TELNET_SB,
TELNET_OPTION_TERMINAL_TYPE, TELNET_IS, (byte) 'x',
byte[] terminalTypeData = { TELNET_IAC, TELNET_SB, TELNET_OPTION_TERMINAL_TYPE, TELNET_IS, (byte) 'x',
(byte) 't', (byte) 'e', (byte) 'r', (byte) 'm', TELNET_IAC, TELNET_SE };
try {
@ -545,8 +534,7 @@ class TelnetOption implements TelnetCodes
default:
// This should never happen!
Logger
.log("SHOULD NOT BE REACHED: Called for option " + optionName()); //$NON-NLS-1$
Logger.log("SHOULD NOT BE REACHED: Called for option " + optionName()); //$NON-NLS-1$
break;
}
}
@ -567,8 +555,7 @@ class TelnetOption implements TelnetCodes
// IAC SB NAWS <width-highbyte> <width-lowbyte> <height-highbyte>
// <height-lowbyte> IAC SE
final byte[] NAWSData = { TELNET_IAC, TELNET_SB, TELNET_OPTION_NAWS, 0,
0, 0, 0, TELNET_IAC, TELNET_SE };
final byte[] NAWSData = { TELNET_IAC, TELNET_SB, TELNET_OPTION_NAWS, 0, 0, 0, 0, TELNET_IAC, TELNET_SE };
int width = ((Integer) subnegotiationData[0]).intValue();
int height = ((Integer) subnegotiationData[1]).intValue();
@ -577,8 +564,7 @@ class TelnetOption implements TelnetCodes
NAWSData[5] = (byte) ((height >>> 8) & 0xff); // High order byte of height.
NAWSData[6] = (byte) (height & 0xff); // Low order byte of height.
Logger
.log("sending terminal size to remote endpoint: width = " + width + //$NON-NLS-1$
Logger.log("sending terminal size to remote endpoint: width = " + width + //$NON-NLS-1$
", height = " + height + "."); //$NON-NLS-1$ //$NON-NLS-2$
// Send the NAWS data in a new thread. The current thread is the display
@ -602,8 +588,7 @@ class TelnetOption implements TelnetCodes
default:
// This should never happen!
Logger
.log("SHOULD NOT BE REACHED: Called for option " + optionName()); //$NON-NLS-1$
Logger.log("SHOULD NOT BE REACHED: Called for option " + optionName()); //$NON-NLS-1$
break;
}
}

View file

@ -29,6 +29,7 @@ public class TelnetSettings implements ITelnetSettings {
protected String fTimeout;
protected String fEndOfLine = EOL_CRNUL;
private final TelnetProperties fProperties = new TelnetProperties();
@Override
public String getHost() {
return fHost;
@ -79,6 +80,7 @@ public class TelnetSettings implements ITelnetSettings {
public TelnetProperties getProperties() {
return fProperties;
}
@Override
public int getTimeout() {
try {
@ -87,6 +89,7 @@ public class TelnetSettings implements ITelnetSettings {
return 10;
}
}
public String getTimeoutString() {
return fTimeout;
}

View file

@ -50,6 +50,7 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
public TelnetSettingsPage(TelnetSettings settings) {
fTerminalSettings = settings;
}
@Override
public void saveSettings() {
fTerminalSettings.setHost(fHostText.getText());
@ -67,18 +68,21 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
setEndOfLine(fTerminalSettings.getEndOfLine());
}
}
private void setHost(String strHost) {
if (strHost == null)
strHost = ""; //$NON-NLS-1$
fHostText.setText(strHost);
}
private void setTimeout(String timeout) {
if (timeout == null || timeout.length() == 0)
timeout = "5"; //$NON-NLS-1$
fTimeout.setText(timeout);
}
private void setNetworkPort(String strNetworkPort) {
if (strNetworkPort != null) {
String strPortName = getNetworkPortMap().findPortName(strNetworkPort);
@ -94,21 +98,26 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
}
}
}
private String getNetworkPort() {
String portText = fNetworkPortCombo.getText().trim();
String mappedPort = getNetworkPortMap().findPort(portText);
return mappedPort != null ? mappedPort : portText;
}
private NetworkPortMap getNetworkPortMap() {
return fTerminalSettings.getProperties().getNetworkPortMap();
}
private void setEndOfLine(String eol) {
int idx = fEndOfLineCombo.indexOf(eol);
fEndOfLineCombo.select(idx >= 0 ? idx : 0);
}
private String getEndOfLine() {
return fEndOfLineCombo.getText();
}
@Override
public boolean validateSettings() {
String message = null;
@ -119,7 +128,10 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
String m = "Please enter a host IP or name."; //$NON-NLS-1$
int mt = IMessageProvider.INFORMATION;
updateControlDecoration(fHostText, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -132,7 +144,10 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
String m = "Invalid network port. Must be between 0 and 65535."; //$NON-NLS-1$
int mt = IMessageProvider.ERROR;
updateControlDecoration(fNetworkPortCombo, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -144,7 +159,10 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
String m = "Invalid timeout. Must be greater than 0."; //$NON-NLS-1$
int mt = IMessageProvider.ERROR;
updateControlDecoration(fTimeout, m, mt);
if (mt > messageType) { message = m; messageType = mt; }
if (mt > messageType) {
message = m;
messageType = mt;
}
valid = false;
} else {
@ -236,6 +254,7 @@ public class TelnetSettingsPage extends AbstractSettingsPage {
loadSettings();
}
private void loadCombo(Combo ctlCombo, List<String> table) {
for (Iterator<String> iter = table.iterator(); iter.hasNext();) {
String label = iter.next();

View file

@ -59,7 +59,8 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
panel.setLayoutData(data);
// Create the host selection combo
if (isWithoutSelection()) createHostsUI(panel, true);
if (isWithoutSelection())
createHostsUI(panel, true);
TelnetConnector conn = new TelnetConnector();
telnetSettings = (TelnetSettings) conn.getTelnetSettings();
@ -78,7 +79,8 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
@Override
public void onSettingsPageChanged(Control control) {
if (getContainer() != null) getContainer().validate();
if (getContainer() != null)
getContainer().validate();
}
});
@ -93,25 +95,31 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
*/
@Override
public void setupData(Map<String, Object> data) {
if (data == null || telnetSettings == null || telnetSettingsPage == null) return;
if (data == null || telnetSettings == null || telnetSettingsPage == null)
return;
String value = (String) data.get(ITerminalsConnectorConstants.PROP_IP_HOST);
if (value != null) telnetSettings.setHost(value);
if (value != null)
telnetSettings.setHost(value);
Object v = data.get(ITerminalsConnectorConstants.PROP_IP_PORT);
value = v != null ? v.toString() : null;
if (value != null) telnetSettings.setNetworkPort(value);
if (value != null)
telnetSettings.setNetworkPort(value);
v = data.get(ITerminalsConnectorConstants.PROP_TIMEOUT);
value = v != null ? v.toString() : null;
if (value != null) telnetSettings.setTimeout(value);
if (value != null)
telnetSettings.setTimeout(value);
v = data.get(ITerminalsConnectorConstants.PROP_TELNET_EOL);
value = v != null ? v.toString() : null;
if (value != null) telnetSettings.setEndOfLine(value);
if (value != null)
telnetSettings.setEndOfLine(value);
value = (String) data.get(ITerminalsConnectorConstants.PROP_ENCODING);
if (value != null) setEncoding(value);
if (value != null)
setEncoding(value);
telnetSettingsPage.loadSettings();
}
@ -121,10 +129,12 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
*/
@Override
public void extractData(Map<String, Object> data) {
if (data == null) return;
if (data == null)
return;
// set the terminal connector id for ssh
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID, "org.eclipse.tm.terminal.connector.telnet.TelnetConnector"); //$NON-NLS-1$
data.put(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID,
"org.eclipse.tm.terminal.connector.telnet.TelnetConnector"); //$NON-NLS-1$
telnetSettingsPage.saveSettings();
data.put(ITerminalsConnectorConstants.PROP_IP_HOST, telnetSettings.getHost());
@ -181,8 +191,10 @@ public class TelnetWizardConfigurationPanel extends AbstractExtendedConfiguratio
}
if (hostSettings != null) {
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_HOST, telnetSettings.getHost());
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_PORT, Integer.toString(telnetSettings.getNetworkPort()));
hostSettings.put(ITerminalsConnectorConstants.PROP_TIMEOUT, Integer.toString(telnetSettings.getTimeout()));
hostSettings.put(ITerminalsConnectorConstants.PROP_IP_PORT,
Integer.toString(telnetSettings.getNetworkPort()));
hostSettings.put(ITerminalsConnectorConstants.PROP_TIMEOUT,
Integer.toString(telnetSettings.getTimeout()));
hostSettings.put(ITerminalsConnectorConstants.PROP_TELNET_EOL, telnetSettings.getEndOfLine());
if (getEncoding() != null) {
hostSettings.put(ITerminalsConnectorConstants.PROP_ENCODING, getEncoding());

View file

@ -94,7 +94,8 @@ public class TelnetLauncherDelegate extends AbstractLauncherDelegate {
private String getTerminalTitle(Map<String, Object> properties) {
// Try to see if the user set a title explicitly via the properties map.
String title = getDefaultTerminalTitle(properties);
if (title != null) return title;
if (title != null)
return title;
//No title,try to calculate the title
String host = (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST);
@ -128,7 +129,8 @@ public class TelnetLauncherDelegate extends AbstractLauncherDelegate {
// Check for the terminal connector id
String connectorId = (String) properties.get(ITerminalsConnectorConstants.PROP_TERMINAL_CONNECTOR_ID);
if (connectorId == null) connectorId = "org.eclipse.tm.terminal.connector.telnet.TelnetConnector"; //$NON-NLS-1$
if (connectorId == null)
connectorId = "org.eclipse.tm.terminal.connector.telnet.TelnetConnector"; //$NON-NLS-1$
// Extract the telnet properties
String host = (String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST);
@ -141,7 +143,8 @@ public class TelnetLauncherDelegate extends AbstractLauncherDelegate {
int portOffset = 0;
if (properties.get(ITerminalsConnectorConstants.PROP_IP_PORT_OFFSET) instanceof Integer) {
portOffset = ((Integer) properties.get(ITerminalsConnectorConstants.PROP_IP_PORT_OFFSET)).intValue();
if (portOffset < 0) portOffset = 0;
if (portOffset < 0)
portOffset = 0;
}
// The real port to connect to is port + portOffset

View file

@ -33,12 +33,16 @@ public class TelnetMementoHandler implements IMementoHandler {
// Do not write the terminal title to the memento -> needs to
// be recreated at the time of restoration.
memento.putString(ITerminalsConnectorConstants.PROP_IP_HOST, (String)properties.get(ITerminalsConnectorConstants.PROP_IP_HOST));
memento.putString(ITerminalsConnectorConstants.PROP_IP_HOST,
(String) properties.get(ITerminalsConnectorConstants.PROP_IP_HOST));
Object value = properties.get(ITerminalsConnectorConstants.PROP_IP_PORT);
memento.putInteger(ITerminalsConnectorConstants.PROP_IP_PORT, value instanceof Integer ? ((Integer)value).intValue() : -1);
memento.putInteger(ITerminalsConnectorConstants.PROP_IP_PORT,
value instanceof Integer ? ((Integer) value).intValue() : -1);
value = properties.get(ITerminalsConnectorConstants.PROP_TIMEOUT);
memento.putInteger(ITerminalsConnectorConstants.PROP_TIMEOUT, value instanceof Integer ? ((Integer)value).intValue() : -1);
memento.putString(ITerminalsConnectorConstants.PROP_ENCODING, (String)properties.get(ITerminalsConnectorConstants.PROP_ENCODING));
memento.putInteger(ITerminalsConnectorConstants.PROP_TIMEOUT,
value instanceof Integer ? ((Integer) value).intValue() : -1);
memento.putString(ITerminalsConnectorConstants.PROP_ENCODING,
(String) properties.get(ITerminalsConnectorConstants.PROP_ENCODING));
}
/* (non-Javadoc)
@ -50,9 +54,13 @@ public class TelnetMementoHandler implements IMementoHandler {
Assert.isNotNull(properties);
// Restore the terminal properties from the memento
properties.put(ITerminalsConnectorConstants.PROP_IP_HOST, memento.getString(ITerminalsConnectorConstants.PROP_IP_HOST));
properties.put(ITerminalsConnectorConstants.PROP_IP_PORT, memento.getInteger(ITerminalsConnectorConstants.PROP_IP_PORT));
properties.put(ITerminalsConnectorConstants.PROP_TIMEOUT, memento.getInteger(ITerminalsConnectorConstants.PROP_TIMEOUT));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING, memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
properties.put(ITerminalsConnectorConstants.PROP_IP_HOST,
memento.getString(ITerminalsConnectorConstants.PROP_IP_HOST));
properties.put(ITerminalsConnectorConstants.PROP_IP_PORT,
memento.getInteger(ITerminalsConnectorConstants.PROP_IP_PORT));
properties.put(ITerminalsConnectorConstants.PROP_TIMEOUT,
memento.getInteger(ITerminalsConnectorConstants.PROP_TIMEOUT));
properties.put(ITerminalsConnectorConstants.PROP_ENCODING,
memento.getString(ITerminalsConnectorConstants.PROP_ENCODING));
}
}

View file

@ -65,6 +65,7 @@ public class TerminalConnector implements ITerminalConnector {
*/
TerminalConnectorImpl makeConnector() throws Exception;
}
/**
* The factory for creating impl instances.
*/
@ -95,6 +96,7 @@ public class TerminalConnector implements ITerminalConnector {
* This keeps the value until the connector is created.
*/
private ISettingsStore fStore;
/**
* Constructor for the terminal connector.
*
@ -104,27 +106,33 @@ public class TerminalConnector implements ITerminalConnector {
* this ID.
* @param name translatable name to display the connector in the UI.
*/
public TerminalConnector(TerminalConnector.Factory terminalConnectorFactory, String id, String name, boolean hidden) {
public TerminalConnector(TerminalConnector.Factory terminalConnectorFactory, String id, String name,
boolean hidden) {
fTerminalConnectorFactory = terminalConnectorFactory;
fId = id;
fName = name;
fHidden = hidden;
}
public String getInitializationErrorMessage() {
getConnectorImpl();
if (fException != null)
return fException.getLocalizedMessage();
return null;
}
public String getId() {
return fId;
}
public String getName() {
return fName;
}
public boolean isHidden() {
return fHidden;
}
private TerminalConnectorImpl getConnectorImpl() {
if (!isInitialized()) {
try {
@ -138,12 +146,15 @@ public class TerminalConnector implements ITerminalConnector {
control.setState(TerminalState.CLOSED);
control.setMsg(getInitializationErrorMessage());
}
public OutputStream getTerminalToRemoteStream() {
return null;
}
public String getSettingsSummary() {
return null;
}};
}
};
// that's the place where we log the exception
Logger.logException(e);
}
@ -156,24 +167,30 @@ public class TerminalConnector implements ITerminalConnector {
public boolean isInitialized() {
return fConnector != null || fException != null;
}
public void connect(ITerminalControl control) {
getConnectorImpl().connect(control);
}
public void disconnect() {
getConnectorImpl().disconnect();
}
public OutputStream getTerminalToRemoteStream() {
return getConnectorImpl().getTerminalToRemoteStream();
}
public String getSettingsSummary() {
if (fConnector != null)
return getConnectorImpl().getSettingsSummary();
else
return TerminalMessages.NotInitialized;
}
public boolean isLocalEcho() {
return getConnectorImpl().isLocalEcho();
}
public void load(ISettingsStore store) {
if (fConnector == null) {
fStore = store;
@ -181,16 +198,19 @@ public class TerminalConnector implements ITerminalConnector {
getConnectorImpl().load(store);
}
}
@Override
public void setDefaultSettings() {
getConnectorImpl().setDefaultSettings();
}
public void save(ISettingsStore store) {
// no need to save the settings: it cannot have changed
// because we are not initialized....
if (fConnector != null)
getConnectorImpl().save(store);
}
public void setTerminalSize(int newWidth, int newHeight) {
// we assume that setTerminalSize is called also after
// the terminal has been initialized. Else we would have to cache
@ -199,6 +219,7 @@ public class TerminalConnector implements ITerminalConnector {
fConnector.setTerminalSize(newWidth, newHeight);
}
}
public Object getAdapter(Class adapter) {
TerminalConnectorImpl connector = null;
if (isInitialized())

View file

@ -29,6 +29,7 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
*/
static abstract public class Interceptor {
protected OutputStream fOriginal;
/**
* @param original the injection into the original stream begins
* @throws IOException
@ -36,12 +37,14 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
public void begin(OutputStream original) throws IOException {
fOriginal = original;
}
/**
* @param b a byte was written to the {@link TerminalToRemoteInjectionOutputStream}.
* @throws IOException
*/
public void write(int b) throws IOException {
}
/**
* @param b bytes written to the {@link TerminalToRemoteInjectionOutputStream}.
* @param off the start offset in the data.
@ -50,29 +53,37 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
*/
public void write(byte[] b, int off, int len) throws IOException {
}
/**
* The injection into the normal stream ends.
* @throws IOException
*/
public void close() throws IOException {
}
public void flush() {
}
}
static public class BufferInterceptor extends Interceptor {
private final ByteArrayOutputStream fBuffer = new ByteArrayOutputStream();
public void close() throws IOException {
fOriginal.write(fBuffer.toByteArray());
}
public void write(byte[] b, int off, int len) throws IOException {
fBuffer.write(b, off, len);
}
public void write(int b) throws IOException {
fBuffer.write(b);
}
}
private class TerminalFilterOutputStream extends OutputStream {
final private Object fLock = TerminalToRemoteInjectionOutputStream.this;
public void close() throws IOException {
synchronized (fLock) {
if (fInjection == this) {
@ -81,40 +92,48 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
}
}
}
public void write(byte[] b, int off, int len) throws IOException {
synchronized (fLock) {
checkStream();
out.write(b, off, len);
}
}
public void write(byte[] b) throws IOException {
synchronized (fLock) {
checkStream();
out.write(b);
}
}
public void flush() throws IOException {
synchronized (fLock) {
checkStream();
out.flush();
}
}
public void write(int b) throws IOException {
synchronized (fLock) {
checkStream();
out.write(b);
}
}
private void checkStream() throws IOException {
if (fInjection != this)
throw new IOException("Stream is closed"); //$NON-NLS-1$
}
}
private Interceptor fInterceptor;
private TerminalFilterOutputStream fInjection;
public TerminalToRemoteInjectionOutputStream(OutputStream out) {
super(out);
}
synchronized protected void ungrabOutput() throws IOException {
if (fInterceptor != null) {
fInterceptor.close();
@ -122,6 +141,7 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
fInjection = null;
}
}
/**
* There can only be one injection stream active at a time. You must call close on the
* returned output stream to end the injection.
@ -138,6 +158,7 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
fInjection = new TerminalFilterOutputStream();
return fInjection;
}
/** See {@link #grabOutput(TerminalToRemoteInjectionOutputStream.Interceptor)}.
* @return injection output stream
* @throws IOException
@ -145,23 +166,27 @@ public class TerminalToRemoteInjectionOutputStream extends FilterOutputStream {
public synchronized OutputStream grabOutput() throws IOException {
return grabOutput(new BufferInterceptor());
}
synchronized public void close() throws IOException {
if (fInjection != null) {
fInjection.close();
}
super.close();
}
synchronized public void flush() throws IOException {
if (fInterceptor != null)
fInterceptor.flush();
out.flush();
}
synchronized public void write(byte[] b, int off, int len) throws IOException {
if (fInterceptor != null)
fInterceptor.write(b, off, len);
else
out.write(b, off, len);
}
synchronized public void write(int b) throws IOException {
if (fInterceptor != null)
fInterceptor.write(b);

View file

@ -41,8 +41,6 @@ import org.eclipse.swt.widgets.Sash;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.fieldassist.ContentAssistCommandAdapter;
/**
* Manages the Command History for the command line input
* of the terminal control.
@ -78,14 +76,17 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
}
}
private static class Proposal implements IContentProposal {
private final String fContent;
private final String fLabel;
Proposal(String content, String label) {
fContent = content;
fLabel = label;
}
public String getContent() {
return fContent;
}
@ -122,9 +123,11 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
private Text fInputField;
private Sash fSash;
private Composite fPanel;
public CommandInputFieldWithHistory(int maxHistorySize) {
fMaxSize = maxHistorySize;
}
/**
* Add a line to the history.
* @param line The line to be added to the history.
@ -142,6 +145,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
if (fHistory.size() >= fMaxSize)
fHistory.remove(fHistory.size() - 1);
}
/**
* Sets the history
* @param history or null
@ -159,6 +163,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
fHistory.add((String) tok.nextElement());
//</J2ME CDC-1.1 Foundation-1.1 variant>
}
/**
* @return the current content of the history buffer and new line separated list
*/
@ -177,6 +182,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
}
return buff.toString();
}
/**
* @param currLine Line of text to be moved in history
* @param count (+1 or -1) for forward and backward movement. -1 goes back
@ -198,6 +204,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
fEditHistoryPos += count;
return (String) fEditedHistory.get(fEditHistoryPos);
}
private boolean inHistoryMode() {
return fEditedHistory != null;
}
@ -213,6 +220,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
endHistoryMode();
return line;
}
/**
* End history editing
*/
@ -220,6 +228,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
fEditedHistory = null;
fEditHistoryPos = 0;
}
public void createControl(final Composite parent, final ITerminalViewControl terminal) {
// fSash = new Sash(parent,SWT.HORIZONTAL|SWT.SMOOTH);
fSash = new Sash(parent, SWT.HORIZONTAL);
@ -250,7 +259,10 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
});
fPanel = new Composite(parent, SWT.NONE);
GridLayout layout = new GridLayout();
layout.marginWidth = 0; layout.marginHeight = 0; layout.marginTop = 0; layout.marginBottom = 2;
layout.marginWidth = 0;
layout.marginHeight = 0;
layout.marginTop = 0;
layout.marginBottom = 2;
fPanel.setLayout(layout);
fPanel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
fInputField = new Text(fPanel, SWT.MULTI | SWT.BORDER | SWT.WRAP | SWT.V_SCROLL);
@ -268,12 +280,7 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
// Else the ENTER key is sent *first* to the input field
// and then to the field assist popup.
// (https://bugs.eclipse.org/bugs/show_bug.cgi?id=211659)
new ContentAssistCommandAdapter(
fInputField,
new TextContentAdapter(),
new FieldAssist(),
null,
null,
new ContentAssistCommandAdapter(fInputField, new TextContentAdapter(), new FieldAssist(), null, null,
installDecoration);
fInputField.addKeyListener(new KeyListener() {
public void keyPressed(KeyEvent e) {
@ -299,20 +306,24 @@ public class CommandInputFieldWithHistory implements ICommandInputField {
setCommand(escape());
}
}
private void setCommand(String line) {
if (line == null)
return;
fInputField.setText(line);
fInputField.setSelection(fInputField.getCharCount());
}
public void keyReleased(KeyEvent e) {
}
});
}
public void setFont(Font font) {
fInputField.setFont(font);
fInputField.getParent().layout(true);
}
public void dispose() {
fSash.dispose();
fSash = null;

View file

@ -25,6 +25,7 @@ public interface ICommandInputField {
void createControl(Composite parent, ITerminalViewControl terminal);
void dispose();
/**
* Sets the font of a control created with {@link #createControl(Composite, ITerminalViewControl)}
* @param control

View file

@ -26,6 +26,7 @@ public interface ITerminalMouseListener {
* @param button see {@link org.eclipse.swt.events.MouseEvent#button} for the meaning of the button values
*/
void mouseDoubleClick(ITerminalTextDataReadOnly terminalText, int line, int column, int button);
/**
* Invoked when a mouse button is pushed down inside the terminal control.<br>
* <br>
@ -34,6 +35,7 @@ public interface ITerminalMouseListener {
* @param button see {@link org.eclipse.swt.events.MouseEvent#button} for the meaning of the button values
*/
void mouseDown(ITerminalTextDataReadOnly terminalText, int line, int column, int button);
/**
* Invoked when a mouse button is released inside the terminal control.<br>
* <br>

View file

@ -51,12 +51,14 @@ public interface ITerminalViewControl {
String getEncoding();
boolean isEmpty();
/**
* Sets the Terminal font
* @deprecated use {@link #setFont(String)} in order to support bold and italic variants of the given font
* @param font
*/
void setFont(Font font);
/**
* Sets the font for the Terminal, using a JFace symbolic font name, such
* that bold and italic variants can be leveraged.
@ -64,36 +66,58 @@ public interface ITerminalViewControl {
* @param fontName
*/
void setFont(String fontName);
void setInvertedColors(boolean invert);
Font getFont();
/**
* @return the text control
*/
Control getControl();
/**
* @return the root of all controls
*/
Control getRootControl();
boolean isDisposed();
void selectAll();
void clearTerminal();
void copy();
void paste();
String getSelection();
TerminalState getState();
Clipboard getClipboard();
void disconnectTerminal();
void disposeTerminal();
String getSettingsSummary();
ITerminalConnector[] getConnectors();
void setFocus();
ITerminalConnector getTerminalConnector();
void setConnector(ITerminalConnector connector);
void connectTerminal();
/**
* @param write a single character to terminal
*/
void sendKey(char arg0);
/**
* @param string write string to terminal
*/
@ -105,6 +129,7 @@ public interface ITerminalViewControl {
* @param inputField null means no input field is shown
*/
void setCommandInputField(ICommandInputField inputField);
/**
* @return null or the current input field
*/
@ -121,13 +146,16 @@ public interface ITerminalViewControl {
* in the terminal view. -1 means unlimited.
*/
public void setBufferLineLimit(int bufferLineLimit);
boolean isScrollLock();
void setScrollLock(boolean on);
/**
* @since 4.1
*/
void addMouseListener(ITerminalMouseListener listener);
/**
* @since 4.1
*/

View file

@ -23,7 +23,8 @@ public class TerminalViewControlFactory {
* @param wndParent The Window parent to embed the Terminal in.
* @param connectors Provided connectors.
*/
public static ITerminalViewControl makeControl(ITerminalListener target, Composite wndParent, ITerminalConnector[] connectors) {
public static ITerminalViewControl makeControl(ITerminalListener target, Composite wndParent,
ITerminalConnector[] connectors) {
return makeControl(target, wndParent, connectors, false);
}
@ -37,7 +38,8 @@ public class TerminalViewControlFactory {
* Otherwise, clients need to maintain settings themselves.
* @since 3.2
*/
public static ITerminalViewControl makeControl(ITerminalListener target, Composite wndParent, ITerminalConnector[] connectors, boolean useCommonPrefs) {
public static ITerminalViewControl makeControl(ITerminalListener target, Composite wndParent,
ITerminalConnector[] connectors, boolean useCommonPrefs) {
return new VT100TerminalControl(target, wndParent, connectors, useCommonPrefs);
}

View file

@ -32,13 +32,11 @@ public abstract class AbstractTerminalAction extends Action {
this(null, strId, 0);
}
public AbstractTerminalAction(ITerminalViewControl target,
String strId) {
public AbstractTerminalAction(ITerminalViewControl target, String strId) {
this(target, strId, 0);
}
public AbstractTerminalAction(ITerminalViewControl target,
String strId, int style) {
public AbstractTerminalAction(ITerminalViewControl target, String strId, int style) {
super("", style); //$NON-NLS-1$
fTarget = target;
@ -48,27 +46,20 @@ public abstract class AbstractTerminalAction extends Action {
abstract public void run();
protected void setupAction(String strText, String strToolTip,
String strImage, String strEnabledImage, String strDisabledImage,
boolean bEnabled) {
setupAction(strText, strToolTip, strImage, strEnabledImage,
strDisabledImage, bEnabled, TerminalPlugin.getDefault()
.getImageRegistry());
protected void setupAction(String strText, String strToolTip, String strImage, String strEnabledImage,
String strDisabledImage, boolean bEnabled) {
setupAction(strText, strToolTip, strImage, strEnabledImage, strDisabledImage, bEnabled,
TerminalPlugin.getDefault().getImageRegistry());
}
protected void setupAction(String strText, String strToolTip,
String strHoverImage, String strEnabledImage,
String strDisabledImage, boolean bEnabled,
ImageRegistry imageRegistry) {
setupAction(strText, strToolTip, imageRegistry
.getDescriptor(strHoverImage), imageRegistry
.getDescriptor(strEnabledImage), imageRegistry
.getDescriptor(strDisabledImage), bEnabled);
protected void setupAction(String strText, String strToolTip, String strHoverImage, String strEnabledImage,
String strDisabledImage, boolean bEnabled, ImageRegistry imageRegistry) {
setupAction(strText, strToolTip, imageRegistry.getDescriptor(strHoverImage),
imageRegistry.getDescriptor(strEnabledImage), imageRegistry.getDescriptor(strDisabledImage), bEnabled);
}
protected void setupAction(String strText, String strToolTip,
ImageDescriptor hoverImage, ImageDescriptor enabledImage,
ImageDescriptor disabledImage, boolean bEnabled) {
protected void setupAction(String strText, String strToolTip, ImageDescriptor hoverImage,
ImageDescriptor enabledImage, ImageDescriptor disabledImage, boolean bEnabled) {
setText(strText);
setToolTipText(strToolTip);
setEnabled(bEnabled);

View file

@ -23,8 +23,7 @@ import org.eclipse.osgi.util.NLS;
public class ActionMessages extends NLS {
static {
NLS.initializeMessages(ActionMessages.class.getName(),
ActionMessages.class);
NLS.initializeMessages(ActionMessages.class.getName(), ActionMessages.class);
}
public static String COPY;

View file

@ -26,19 +26,15 @@ public class TerminalActionClearAll extends AbstractTerminalAction {
public TerminalActionClearAll() {
super(TerminalActionClearAll.class.getName());
setupAction(ActionMessages.CLEARALL, ActionMessages.CLEARALL,
ImageConsts.IMAGE_CLCL_CLEAR_ALL,
ImageConsts.IMAGE_ELCL_CLEAR_ALL,
ImageConsts.IMAGE_DLCL_CLEAR_ALL, false);
setupAction(ActionMessages.CLEARALL, ActionMessages.CLEARALL, ImageConsts.IMAGE_CLCL_CLEAR_ALL,
ImageConsts.IMAGE_ELCL_CLEAR_ALL, ImageConsts.IMAGE_DLCL_CLEAR_ALL, false);
}
public TerminalActionClearAll(ITerminalViewControl target) {
super(target, TerminalActionClearAll.class.getName());
setupAction(ActionMessages.CLEARALL, ActionMessages.CLEARALL,
ImageConsts.IMAGE_CLCL_CLEAR_ALL,
ImageConsts.IMAGE_ELCL_CLEAR_ALL,
ImageConsts.IMAGE_DLCL_CLEAR_ALL, false);
setupAction(ActionMessages.CLEARALL, ActionMessages.CLEARALL, ImageConsts.IMAGE_CLCL_CLEAR_ALL,
ImageConsts.IMAGE_ELCL_CLEAR_ALL, ImageConsts.IMAGE_DLCL_CLEAR_ALL, false);
}
public void run() {

View file

@ -29,20 +29,18 @@ public class TerminalActionCopy extends AbstractTerminalAction {
super(TerminalActionCopy.class.getName());
setActionDefinitionId("org.eclipse.tm.terminal.copy"); //$NON-NLS-1$
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.COPY, ActionMessages.COPY, si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY), si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY), si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED), true);
setupAction(ActionMessages.COPY, ActionMessages.COPY, si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY),
si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY),
si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED), true);
}
public TerminalActionCopy(ITerminalViewControl target) {
super(target, TerminalActionCopy.class.getName());
setActionDefinitionId("org.eclipse.tm.terminal.copy"); //$NON-NLS-1$
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.COPY, ActionMessages.COPY, si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY), si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY), si
.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED), true);
setupAction(ActionMessages.COPY, ActionMessages.COPY, si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY),
si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY),
si.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED), true);
}
public void run() {

View file

@ -27,19 +27,17 @@ public class TerminalActionCut extends AbstractTerminalAction {
public TerminalActionCut() {
super(TerminalActionCut.class.getName());
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.CUT, ActionMessages.CUT, si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT), si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT), si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED), true);
setupAction(ActionMessages.CUT, ActionMessages.CUT, si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT),
si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT),
si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED), true);
}
public TerminalActionCut(ITerminalViewControl target) {
super(target, TerminalActionCut.class.getName());
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.CUT, ActionMessages.CUT, si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT), si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT), si
.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED), true);
setupAction(ActionMessages.CUT, ActionMessages.CUT, si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT),
si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT),
si.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED), true);
}
public void run() {

View file

@ -33,22 +33,18 @@ public class TerminalActionPaste extends AbstractTerminalAction {
super(TerminalActionPaste.class.getName());
setActionDefinitionId("org.eclipse.tm.terminal.paste"); //$NON-NLS-1$
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.PASTE, ActionMessages.PASTE,
setupAction(ActionMessages.PASTE, ActionMessages.PASTE, si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED),
false);
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED), false);
}
public TerminalActionPaste(ITerminalViewControl target) {
super(target, TerminalActionPaste.class.getName());
setActionDefinitionId("org.eclipse.tm.terminal.paste"); //$NON-NLS-1$
ISharedImages si = PlatformUI.getWorkbench().getSharedImages();
setupAction(ActionMessages.PASTE, ActionMessages.PASTE,
setupAction(ActionMessages.PASTE, ActionMessages.PASTE, si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE),
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED),
false);
si.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED), false);
}
public void run() {
@ -62,8 +58,7 @@ public class TerminalActionPaste extends AbstractTerminalAction {
ITerminalViewControl target = getTarget();
boolean bEnabled = target != null && target.getClipboard() != null && !target.getClipboard().isDisposed();
if (bEnabled) {
String strText = (String) target.getClipboard().getContents(
TextTransfer.getInstance());
String strText = (String) target.getClipboard().getContents(TextTransfer.getInstance());
bEnabled = ((strText != null) && (!strText.equals("")) && (target.getState() == TerminalState.CONNECTED));//$NON-NLS-1$
}
setEnabled(bEnabled);

View file

@ -27,15 +27,13 @@ public class TerminalActionSelectAll extends AbstractTerminalAction {
public TerminalActionSelectAll() {
super(TerminalActionSelectAll.class.getName());
setupAction(ActionMessages.SELECTALL, ActionMessages.SELECTALL,
(ImageDescriptor) null, null, null, false);
setupAction(ActionMessages.SELECTALL, ActionMessages.SELECTALL, (ImageDescriptor) null, null, null, false);
}
public TerminalActionSelectAll(ITerminalViewControl target) {
super(target, TerminalActionSelectAll.class.getName());
setupAction(ActionMessages.SELECTALL, ActionMessages.SELECTALL,
(ImageDescriptor) null, null, null, false);
setupAction(ActionMessages.SELECTALL, ActionMessages.SELECTALL, (ImageDescriptor) null, null, null, false);
}
public void run() {

View file

@ -25,7 +25,9 @@ import org.eclipse.tm.internal.terminal.provisional.api.TerminalState;
public interface ITerminalControlForText {
TerminalState getState();
void setState(TerminalState state);
void setTerminalTitle(String title);
ITerminalConnector getTerminalConnector();

View file

@ -39,6 +39,7 @@ public class TerminalPlugin extends AbstractUIPlugin {
*/
public TerminalPlugin() {
}
/**
* Returns the shared instance.
*/
@ -76,17 +77,21 @@ public class TerminalPlugin extends AbstractUIPlugin {
protected void initializeImageRegistry(ImageRegistry imageRegistry) {
try {
// Local toolbars
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_CLCL_CLEAR_ALL, ImageConsts.IMAGE_DIR_LOCALTOOL + "clear_co.gif"); //$NON-NLS-1$
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_CLCL_CLEAR_ALL,
ImageConsts.IMAGE_DIR_LOCALTOOL + "clear_co.gif"); //$NON-NLS-1$
// Enabled local toolbars
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_ELCL_CLEAR_ALL, ImageConsts.IMAGE_DIR_ELCL + "clear_co.gif"); //$NON-NLS-1$
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_ELCL_CLEAR_ALL,
ImageConsts.IMAGE_DIR_ELCL + "clear_co.gif"); //$NON-NLS-1$
// Disabled local toolbars
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_DLCL_CLEAR_ALL, ImageConsts.IMAGE_DIR_DLCL + "clear_co.gif"); //$NON-NLS-1$
putImageInRegistry(imageRegistry, ImageConsts.IMAGE_DLCL_CLEAR_ALL,
ImageConsts.IMAGE_DIR_DLCL + "clear_co.gif"); //$NON-NLS-1$
} catch (MalformedURLException malformedURLException) {
malformedURLException.printStackTrace();
}
}
protected void putImageInRegistry(ImageRegistry imageRegistry, String strKey, String relativePath) throws MalformedURLException {
protected void putImageInRegistry(ImageRegistry imageRegistry, String strKey, String relativePath)
throws MalformedURLException {
URL url = TerminalPlugin.getDefault().getBundle().getEntry(relativePath);
ImageDescriptor imageDescriptor = ImageDescriptor.createFromURL(url);
imageRegistry.put(strKey, imageDescriptor);

View file

@ -20,6 +20,7 @@ import org.eclipse.tm.terminal.model.Style;
public class VT100BackendTraceDecorator implements IVT100EmulatorBackend {
final IVT100EmulatorBackend fBackend;
final PrintStream fWriter;
public VT100BackendTraceDecorator(IVT100EmulatorBackend backend, PrintStream out) {
fBackend = backend;
fWriter = out;

View file

@ -85,7 +85,6 @@ public class VT100Emulator implements ControlListener {
*/
private static final int ANSISTATE_EXPECTING_CHARSET_DESIGNATION = 5;
/**
* This field holds the current state of the Finite TerminalState Automaton (FSA)
* that recognizes ANSI escape sequences.
@ -140,6 +139,7 @@ public class VT100Emulator implements ControlListener {
Reader fReader;
boolean fCrAfterNewLine;
/**
* The constructor.
*/
@ -236,6 +236,7 @@ public class VT100Emulator implements ControlListener {
if (text != null)
adjustTerminalDimensions();
}
// /**
// * This method executes in the Display thread to process data received from
// * the remote host by class {@link org.eclipse.tm.internal.terminal.telnet.TelnetConnection} and
@ -275,6 +276,7 @@ public class VT100Emulator implements ControlListener {
Logger.logException(ex);
}
}
/**
* This method scans the newly received text, processing ANSI control
* characters and escape sequences and displaying normal text.
@ -283,7 +285,6 @@ public class VT100Emulator implements ControlListener {
private void processNewText() throws IOException {
Logger.log("entered"); //$NON-NLS-1$
// Scan the newly received text.
while (hasNextChar()) {
@ -382,8 +383,7 @@ public class VT100Emulator implements ControlListener {
break;
default:
Logger
.log("Unsupported escape sequence: escape '" + character + "'"); //$NON-NLS-1$ //$NON-NLS-2$
Logger.log("Unsupported escape sequence: escape '" + character + "'"); //$NON-NLS-1$ //$NON-NLS-2$
ansiState = ANSISTATE_INITIAL;
break;
}
@ -448,6 +448,7 @@ public class VT100Emulator implements ControlListener {
}
}
}
private void resetTerminal() {
text.eraseAll();
text.setCursor(0, 0);
@ -456,6 +457,7 @@ public class VT100Emulator implements ControlListener {
text.setInsertMode(false);
terminal.enableApplicationCursorKeys(false);
}
/**
* This method is called when we have parsed an OS Command escape sequence.
* The only one we support is "\e]0;...\u0007", which sets the terminal
@ -463,8 +465,7 @@ public class VT100Emulator implements ControlListener {
*/
private void processAnsiOsCommand() {
if (ansiOsCommand.charAt(0) != '0' || ansiOsCommand.charAt(1) != ';') {
Logger
.log("Ignoring unsupported ANSI OSC sequence: '" + ansiOsCommand + "'"); //$NON-NLS-1$ //$NON-NLS-2$
Logger.log("Ignoring unsupported ANSI OSC sequence: '" + ansiOsCommand + "'"); //$NON-NLS-1$ //$NON-NLS-2$
return;
}
terminal.setTerminalTitle(ansiOsCommand.substring(2));
@ -845,8 +846,7 @@ public class VT100Emulator implements ControlListener {
int totalParameters = ansiParameters.length;
int parameterIndex = 0;
while (parameterIndex < totalParameters
&& ansiParameters[parameterIndex].length() > 0) {
while (parameterIndex < totalParameters && ansiParameters[parameterIndex].length() > 0) {
int ansiParameter = getAnsiParameter(parameterIndex);
switch (ansiParameter) {
@ -964,8 +964,7 @@ public class VT100Emulator implements ControlListener {
break;
default:
Logger
.log("Unsupported graphics rendition parameter: " + ansiParameter); //$NON-NLS-1$
Logger.log("Unsupported graphics rendition parameter: " + ansiParameter); //$NON-NLS-1$
break;
}
@ -1128,6 +1127,7 @@ public class VT100Emulator implements ControlListener {
ansiParameters[nextAnsiParameter].append(ch);
}
}
/**
* This method processes a contiguous sequence of non-control characters.
* This is a performance optimization, so that we don't have to insert or
@ -1143,9 +1143,8 @@ public class VT100Emulator implements ControlListener {
// firstNonControlCharacterIndex in newText.
while (hasNextChar()) {
character = getNextChar();
if(character == '\u0000' || character == '\b' || character == '\t'
|| character == '\u0007' || character == '\n'
|| character == '\r' || character == '\u001b') {
if (character == '\u0000' || character == '\b' || character == '\t' || character == '\u0007'
|| character == '\n' || character == '\r' || character == '\u001b') {
pushBackChar(character);
break;
}
@ -1173,7 +1172,6 @@ public class VT100Emulator implements ControlListener {
text.appendString(buffer);
}
/**
* Process a BEL (Control-G) character.
*/
@ -1330,6 +1328,7 @@ public class VT100Emulator implements ControlListener {
private void moveCursorBackward(int columnsToMove) {
moveCursor(relativeCursorLine(), getCursorColumn() - columnsToMove);
}
/**
* Resets the state of the terminal text (foreground color, background color,
* font style and other internal state). It essentially makes it ready for new input.
@ -1380,18 +1379,23 @@ public class VT100Emulator implements ControlListener {
//assert fNextChar!=-1: "Already a character waiting:"+fNextChar; //$NON-NLS-1$
fNextChar = c;
}
private int getCursorColumn() {
return text.getCursorColumn();
}
public boolean isCrAfterNewLine() {
return fCrAfterNewLine;
}
public void setCrAfterNewLine(boolean crAfterNewLine) {
fCrAfterNewLine = crAfterNewLine;
}
void setVT100LineWrapping(boolean enable) {
text.setVT100LineWrapping(enable);
}
boolean isVT100LineWrapping() {
return text.isVT100LineWrapping();
}

View file

@ -29,19 +29,24 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
static final ScrollRegion FULL_WINDOW = new ScrollRegion(0, Integer.MAX_VALUE - 1);
private final int fTop;
private final int fBottom;
ScrollRegion(int top, int bottom) {
fTop = top;
fBottom = bottom;
}
boolean contains(int line) {
return line >= fTop && line <= fBottom;
}
int getTopLine() {
return fTop;
}
int getBottomLine() {
return fBottom;
}
int getHeight() {
return fBottom - fTop + 1;
}
@ -109,6 +114,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
setCursor(0, 0);
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#setDimensions(int, int)
*/
@ -151,6 +157,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
return fTerminal.getHeight() - fLines + line;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#insertCharacters(int)
*/
@ -182,6 +189,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#eraseToCursor()
*/
@ -193,6 +201,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
eraseLineToCursor();
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#eraseAll()
*/
@ -203,6 +212,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
}
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#eraseLine()
*/
@ -211,6 +221,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
fTerminal.cleanLine(toAbsoluteLine(fCursorLine));
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#eraseLineToEnd()
*/
@ -222,6 +233,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
}
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#eraseLineToCursor()
*/
@ -247,6 +259,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
fTerminal.scroll(line, nLines, n);
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#deleteCharacters(int)
*/
@ -264,6 +277,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
}
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#deleteLines(int)
*/
@ -277,6 +291,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
fTerminal.scroll(line, nLines, -n);
}
}
private boolean isCusorInScrollingRegion() {
return fScrollRegion.contains(fCursorLine);
}
@ -309,6 +324,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
return fStyle;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#setStyle(org.eclipse.tm.terminal.model.Style)
*/
@ -317,6 +333,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
fStyle = style;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#appendString(java.lang.String)
*/
@ -376,6 +393,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
setCursorLine(fCursorLine + 1);
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#processNewline()
*/
@ -384,6 +402,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
doNewline();
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#getCursorLine()
*/
@ -392,6 +411,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
return fCursorLine;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#getCursorColumn()
*/
@ -400,6 +420,7 @@ public class VT100EmulatorBackend implements IVT100EmulatorBackend {
return fCursorColumn;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.emulator.IVT100EmulatorBackend#setCursor(int, int)
*/

View file

@ -125,8 +125,7 @@ import org.eclipse.ui.keys.IBindingService;
*
* @author Chris Thew <chris.thew@windriver.com>
*/
public class VT100TerminalControl implements ITerminalControlForText, ITerminalControl, ITerminalViewControl
{
public class VT100TerminalControl implements ITerminalControlForText, ITerminalControl, ITerminalViewControl {
protected final static String[] LINE_DELIMITERS = { "\n" }; //$NON-NLS-1$
/**
@ -205,7 +204,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
* Otherwise, clients need to maintain settings themselves.
* @since 3.2
*/
public VT100TerminalControl(ITerminalListener target, Composite wndParent, ITerminalConnector[] connectors, boolean useCommonPrefs) {
public VT100TerminalControl(ITerminalListener target, Composite wndParent, ITerminalConnector[] connectors,
boolean useCommonPrefs) {
fConnectors = connectors;
fUseCommonPrefs = useCommonPrefs;
fTerminalListener = target;
@ -429,9 +429,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
fTerminalText.resetState();
fApplicationCursorKeys = false;
if (fConnector.getInitializationErrorMessage() != null) {
showErrorMessage(NLS.bind(
TerminalMessages.CannotConnectTo,
fConnector.getName(),
showErrorMessage(NLS.bind(TerminalMessages.CannotConnectTo, fConnector.getName(),
fConnector.getInitializationErrorMessage()));
// we cannot connect because the connector was not initialized
return;
@ -446,6 +444,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
public ITerminalConnector getTerminalConnector() {
return fConnector;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.provisional.api.ITerminalControl#disconnectTerminal()
*/
@ -471,10 +470,12 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
// Join job to avoid leaving job running after workbench shutdown (333613).
// Interrupt to be fast enough; cannot close fInputStream since it is re-used (bug 348700).
Thread t = job.getThread();
if(t!=null) t.interrupt();
if (t != null)
t.interrupt();
try {
job.join();
} catch (InterruptedException e) {}
} catch (InterruptedException e) {
}
}
fPollingTextCanvasModel.stopPolling();
}
@ -530,7 +531,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
fTerminalText.processText();
} catch (Exception e) {
disconnectTerminal();
status=new Status(IStatus.ERROR,TerminalPlugin.PLUGIN_ID,e.getLocalizedMessage(),e);
status = new Status(IStatus.ERROR, TerminalPlugin.PLUGIN_ID, e.getLocalizedMessage(),
e);
break;
}
}
@ -576,8 +578,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
} catch (SocketException socketException) {
displayTextInTerminal(socketException.getMessage());
String strMsg = TerminalMessages.SocketError
+ "!\n" + socketException.getMessage(); //$NON-NLS-1$
String strMsg = TerminalMessages.SocketError + "!\n" + socketException.getMessage(); //$NON-NLS-1$
showErrorMessage(strMsg);
Logger.logException(socketException);
@ -619,7 +620,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
byte[] bytesToSend = String.valueOf(chKey).getBytes(fEncoding);
StringBuilder b = new StringBuilder("sending ESC"); //$NON-NLS-1$
for (int i = 0; i < bytesToSend.length; i++) {
if (i != 0) b.append(" +"); //$NON-NLS-1$
if (i != 0)
b.append(" +"); //$NON-NLS-1$
b.append(" '" + bytesToSend[i] + "'"); //$NON-NLS-1$ //$NON-NLS-2$
}
Logger.log(b.toString());
@ -629,7 +631,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
byte[] bytesToSend = String.valueOf(chKey).getBytes(fEncoding);
StringBuilder b = new StringBuilder("sending"); //$NON-NLS-1$
for (int i = 0; i < bytesToSend.length; i++) {
if (i != 0) b.append(" +"); //$NON-NLS-1$
if (i != 0)
b.append(" +"); //$NON-NLS-1$
b.append(" '" + bytesToSend[i] + "'"); //$NON-NLS-1$ //$NON-NLS-2$
}
Logger.log(b.toString());
@ -642,8 +645,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
displayTextInTerminal(socketException.getMessage());
String strMsg = TerminalMessages.SocketError
+ "!\n" + socketException.getMessage(); //$NON-NLS-1$
String strMsg = TerminalMessages.SocketError + "!\n" + socketException.getMessage(); //$NON-NLS-1$
showErrorMessage(strMsg);
Logger.logException(socketException);
@ -703,8 +705,10 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
* @see org.eclipse.tm.internal.terminal.control.ITerminalViewControl#updatePreferences()
*/
private void updatePreferences() {
int bufferLineLimit = Platform.getPreferencesService().getInt(TerminalPlugin.PLUGIN_ID, ITerminalConstants.PREF_BUFFERLINES, 0, null);
boolean invert = Platform.getPreferencesService().getBoolean(TerminalPlugin.PLUGIN_ID, ITerminalConstants.PREF_INVERT_COLORS, false, null);
int bufferLineLimit = Platform.getPreferencesService().getInt(TerminalPlugin.PLUGIN_ID,
ITerminalConstants.PREF_BUFFERLINES, 0, null);
boolean invert = Platform.getPreferencesService().getBoolean(TerminalPlugin.PLUGIN_ID,
ITerminalConstants.PREF_INVERT_COLORS, false, null);
setBufferLineLimit(bufferLineLimit);
setInvertedColors(invert);
}
@ -745,29 +749,36 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
fCtlText.onFontChange();
getTerminalText().fontChanged();
}
@Override
public Font getFont() {
return getCtlText().getFont();
}
@Override
public Control getControl() {
return fCtlText;
}
@Override
public Control getRootControl() {
return fWndParent;
}
protected void setupControls(Composite parent) {
fWndParent = new Composite(parent, SWT.NONE);
GridLayout layout = new GridLayout();
layout.marginWidth=0; layout.marginHeight=0; layout.verticalSpacing=0;
layout.marginWidth = 0;
layout.marginHeight = 0;
layout.verticalSpacing = 0;
fWndParent.setLayout(layout);
ITerminalTextDataSnapshot snapshot = fTerminalModel.makeSnapshot();
// TODO how to get the initial size correctly!
snapshot.updateSnapshot(false);
fPollingTextCanvasModel = new PollingTextCanvasModel(snapshot);
fCtlText=new TextCanvas(fWndParent,fPollingTextCanvasModel,SWT.NONE,new TextLineRenderer(fCtlText,fPollingTextCanvasModel));
fCtlText = new TextCanvas(fWndParent, fPollingTextCanvasModel, SWT.NONE,
new TextLineRenderer(fCtlText, fPollingTextCanvasModel));
fCtlText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
fCtlText.addResizeHandler(new TextCanvas.ResizeListener() {
@ -821,6 +832,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
public void displayTextInTerminal(String text) {
writeToTerminal("\r\n" + text + "\r\n"); //$NON-NLS-1$ //$NON-NLS-2$
}
private void writeToTerminal(String text) {
try {
getRemoteToTerminalOutputStream().write(text.getBytes(fEncoding));
@ -841,6 +853,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
return fInputStream.getOutputStream();
}
}
protected boolean isLogCharEnabled() {
return TerminalPlugin.isOptionEnabled(Logger.TRACE_DEBUG_LOG_CHAR);
}
@ -877,6 +890,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
public VT100Emulator getTerminalText() {
return fTerminalText;
}
protected class TerminalMouseTrackListener implements MouseTrackListener {
private IContextActivation terminalContextActivation = null;
private IContextActivation editContextActivation = null;
@ -898,7 +912,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
if (getState() == TerminalState.CONNECTED)
captureKeyEvents(true);
IContextService contextService = (IContextService) PlatformUI.getWorkbench().getAdapter(IContextService.class);
IContextService contextService = (IContextService) PlatformUI.getWorkbench()
.getAdapter(IContextService.class);
editContextActivation = contextService.activateContext("org.eclipse.tm.terminal.EditContext"); //$NON-NLS-1$
}
@ -910,14 +925,17 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
// Restore the command context to its previous value.
IContextService contextService = (IContextService) PlatformUI.getWorkbench().getAdapter(IContextService.class);
IContextService contextService = (IContextService) PlatformUI.getWorkbench()
.getAdapter(IContextService.class);
contextService.deactivateContext(editContextActivation);
}
@SuppressWarnings("cast")
protected void captureKeyEvents(boolean capture) {
IBindingService bindingService = (IBindingService) PlatformUI.getWorkbench().getAdapter(IBindingService.class);
IContextService contextService = (IContextService) PlatformUI.getWorkbench().getAdapter(IContextService.class);
IBindingService bindingService = (IBindingService) PlatformUI.getWorkbench()
.getAdapter(IBindingService.class);
IContextService contextService = (IContextService) PlatformUI.getWorkbench()
.getAdapter(IContextService.class);
boolean enableKeyFilter = !capture;
if (bindingService.isKeyFilterEnabled() != enableKeyFilter)
@ -1203,12 +1221,9 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
//
// o The character is the DELETE character.
if (getTerminalConnector() == null
|| getTerminalConnector().isLocalEcho() == false || altKeyPressed
|| (character >= '\u0001' && character < '\t')
|| (character > '\t' && character < '\r')
|| (character > '\r' && character <= '\u001f')
|| character == '\u007f') {
if (getTerminalConnector() == null || getTerminalConnector().isLocalEcho() == false || altKeyPressed
|| (character >= '\u0001' && character < '\t') || (character > '\t' && character < '\r')
|| (character > '\r' && character <= '\u001f') || character == '\u007f') {
// No local echoing.
return;
}
@ -1232,13 +1247,15 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
*/
@SuppressWarnings("cast")
private void processKeyBinding(KeyEvent event, int accelerator) {
IBindingService bindingService = (IBindingService) PlatformUI.getWorkbench().getAdapter(IBindingService.class);
IBindingService bindingService = (IBindingService) PlatformUI.getWorkbench()
.getAdapter(IBindingService.class);
KeyStroke keyStroke = SWTKeySupport.convertAcceleratorToKeyStroke(accelerator);
Binding binding = bindingService.getPerfectMatch(KeySequence.getInstance(keyStroke));
if (binding != null) {
ParameterizedCommand cmd = binding.getParameterizedCommand();
if (cmd != null) {
IHandlerService handlerService = (IHandlerService) PlatformUI.getWorkbench().getAdapter(IHandlerService.class);
IHandlerService handlerService = (IHandlerService) PlatformUI.getWorkbench()
.getAdapter(IHandlerService.class);
Event cmdEvent = new Event();
cmdEvent.type = SWT.KeyDown;
cmdEvent.display = event.display;
@ -1262,8 +1279,8 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
try {
handlerService.executeCommand(cmd, cmdEvent);
} catch (ExecutionException e) {
TerminalPlugin.getDefault().getLog().log(
new Status(IStatus.ERROR,TerminalPlugin.PLUGIN_ID,e.getLocalizedMessage(),e));
TerminalPlugin.getDefault().getLog()
.log(new Status(IStatus.ERROR, TerminalPlugin.PLUGIN_ID, e.getLocalizedMessage(), e));
} catch (Exception e) {
// ignore other exceptions from cmd execution
}
@ -1278,13 +1295,11 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
fTerminalListener.setTerminalTitle(title);
}
@Override
public TerminalState getState() {
return fState;
}
@Override
public void setState(TerminalState state) {
fState = state;
@ -1305,13 +1320,15 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
}
});
}
/**
* @param runnable run in display thread
*/
private void runAsyncInDisplayThread(Runnable runnable) {
if (Display.findDisplay(Thread.currentThread()) != null)
runnable.run();
else if(PlatformUI.isWorkbenchRunning() && PlatformUI.getWorkbench().getDisplay() != null && !PlatformUI.getWorkbench().getDisplay().isDisposed())
else if (PlatformUI.isWorkbenchRunning() && PlatformUI.getWorkbench().getDisplay() != null
&& !PlatformUI.getWorkbench().getDisplay().isDisposed())
PlatformUI.getWorkbench().getDisplay().asyncExec(runnable);
// else should not happen and we ignore it...
}
@ -1328,6 +1345,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
fConnector = connector;
}
@Override
public ICommandInputField getCommandInputField() {
return fCommandInputField;

View file

@ -66,19 +66,21 @@ public interface ISnapshotChanges {
boolean hasLineChanged(int line);
void markDimensionsChanged();
boolean hasDimensionsChanged();
void markCursorChanged();
/**
* @return true if the terminal data has changed
*/
boolean hasTerminalChanged();
/**
* mark the terminal as changed
*/
void setTerminalChanged();
void copyChangedLines(ITerminalTextData dest, ITerminalTextData source);
/**
@ -86,7 +88,9 @@ public interface ISnapshotChanges {
* @param size number of lines to follow
*/
void setInterestWindow(int startLine, int size);
int getInterestWindowStartLine();
int getInterestWindowSize();
}

View file

@ -14,7 +14,6 @@ package org.eclipse.tm.internal.terminal.model;
import org.eclipse.tm.terminal.model.ITerminalTextData;
/**
* Collects the changes of the {@link ITerminalTextData}
*
@ -57,6 +56,7 @@ public class SnapshotChanges implements ISnapshotChanges {
fFirstChangedLine = Integer.MAX_VALUE;
fLastChangedLine = -1;
}
public SnapshotChanges(int windowStart, int windowSize) {
setChangedLinesLength(windowStart + windowSize);
fFirstChangedLine = Integer.MAX_VALUE;
@ -65,6 +65,7 @@ public class SnapshotChanges implements ISnapshotChanges {
fInterestWindowSize = windowSize;
}
/**
* This is used in asserts to throw an {@link RuntimeException}.
* This is useful for tests.
@ -73,6 +74,7 @@ public class SnapshotChanges implements ISnapshotChanges {
private boolean throwRuntimeException() {
throw new RuntimeException();
}
/**
* @param line
* @param size
@ -88,6 +90,7 @@ public class SnapshotChanges implements ISnapshotChanges {
return false;
return true;
}
/**
* @param line
* @return true if the line is within the interest window
@ -102,6 +105,7 @@ public class SnapshotChanges implements ISnapshotChanges {
return false;
return true;
}
/**
* @param line
* @return the line within the window
@ -116,6 +120,7 @@ public class SnapshotChanges implements ISnapshotChanges {
return fInterestWindowStartLine;
return line;
}
/**
* The result is only defined if {@link #isInInterestWindow(int, int)} returns true!
* @param line the line <b>before</b> {@link #fitLineToWindow(int)} has been called!
@ -139,6 +144,7 @@ public class SnapshotChanges implements ISnapshotChanges {
size = fInterestWindowStartLine + fInterestWindowSize - line;
return size;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#markLineChanged(int)
*/
@ -157,6 +163,7 @@ public class SnapshotChanges implements ISnapshotChanges {
setChangedLine(line, true);
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#markLinesChanged(int, int)
*/
@ -178,9 +185,11 @@ public class SnapshotChanges implements ISnapshotChanges {
// this sets fLastChangedLine as well
markLineChanged(line + n - 1);
}
public void markCursorChanged() {
fCursorHasChanged = true;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#convertScrollingIntoChanges()
*/
@ -190,26 +199,33 @@ public class SnapshotChanges implements ISnapshotChanges {
fScrollWindowSize = 0;
fScrollWindowShift = 0;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#hasChanged()
*/
public boolean hasChanged() {
if(fFirstChangedLine!=Integer.MAX_VALUE || fLastChangedLine>0 || fScrollWindowShift!=0 ||fDimensionsChanged || fCursorHasChanged)
if (fFirstChangedLine != Integer.MAX_VALUE || fLastChangedLine > 0 || fScrollWindowShift != 0
|| fDimensionsChanged || fCursorHasChanged)
return true;
return false;
}
public void markDimensionsChanged() {
fDimensionsChanged = true;
}
public boolean hasDimensionsChanged() {
return fDimensionsChanged;
}
public boolean hasTerminalChanged() {
return fTerminalHasChanged;
}
public void setTerminalChanged() {
fTerminalHasChanged = true;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#scroll(int, int, int)
*/
@ -250,6 +266,7 @@ public class SnapshotChanges implements ISnapshotChanges {
}
}
}
/**
* Some incompatible scrolling occurred. We cannot do the
* scroll optimization anymore...
@ -265,6 +282,7 @@ public class SnapshotChanges implements ISnapshotChanges {
// don't be clever on scrolling anymore
fScrollDontTrack = true;
}
/**
* Scrolls the changed lines data
*
@ -292,6 +310,7 @@ public class SnapshotChanges implements ISnapshotChanges {
markLineChanged(i);
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#setAllChanged(int)
*/
@ -304,36 +323,42 @@ public class SnapshotChanges implements ISnapshotChanges {
// no need to keep an array of changes anymore
setChangedLinesLength(0);
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#getFirstChangedLine()
*/
public int getFirstChangedLine() {
return fFirstChangedLine;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#getLastChangedLine()
*/
public int getLastChangedLine() {
return fLastChangedLine;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#getScrollWindowStartLine()
*/
public int getScrollWindowStartLine() {
return fScrollWindowStartLine;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#getScrollWindowSize()
*/
public int getScrollWindowSize() {
return fScrollWindowSize;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#getScrollWindowShift()
*/
public int getScrollWindowShift() {
return fScrollWindowShift;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#copyChangedLines(org.eclipse.tm.terminal.model.ITerminalTextData, org.eclipse.tm.terminal.model.ITerminalTextData)
*/
@ -386,6 +411,7 @@ public class SnapshotChanges implements ISnapshotChanges {
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ISnapshotChanges#hasLineChanged(int)
*/
@ -398,12 +424,15 @@ public class SnapshotChanges implements ISnapshotChanges {
// the the range of the previous height has changed
return isInInterestWindow(line);
}
int getChangedLineLength() {
return fChangedLines.length;
}
void setChangedLine(int line, boolean changed) {
fChangedLines[line] = changed;
}
void setChangedLinesLength(int length) {
fChangedLines = new boolean[length];
}

View file

@ -23,84 +23,111 @@ import org.eclipse.tm.terminal.model.Style;
*/
public class SynchronizedTerminalTextData implements ITerminalTextData {
final ITerminalTextData fData;
public SynchronizedTerminalTextData(ITerminalTextData data) {
fData = data;
}
synchronized public void addLine() {
fData.addLine();
}
synchronized public void cleanLine(int line) {
fData.cleanLine(line);
}
synchronized public void copy(ITerminalTextData source) {
fData.copy(source);
}
synchronized public void copyLine(ITerminalTextData source, int sourceLine, int destLine) {
fData.copyLine(source, sourceLine, destLine);
}
synchronized public void copyRange(ITerminalTextData source, int sourceStartLine, int destStartLine, int length) {
fData.copyRange(source, sourceStartLine, destStartLine, length);
}
synchronized public char getChar(int line, int column) {
return fData.getChar(line, column);
}
synchronized public char[] getChars(int line) {
return fData.getChars(line);
}
synchronized public int getCursorColumn() {
return fData.getCursorColumn();
}
synchronized public int getCursorLine() {
return fData.getCursorLine();
}
synchronized public int getHeight() {
return fData.getHeight();
}
synchronized public LineSegment[] getLineSegments(int line, int startCol, int numberOfCols) {
return fData.getLineSegments(line, startCol, numberOfCols);
}
synchronized public int getMaxHeight() {
return fData.getMaxHeight();
}
synchronized public Style getStyle(int line, int column) {
return fData.getStyle(line, column);
}
synchronized public Style[] getStyles(int line) {
return fData.getStyles(line);
}
synchronized public int getWidth() {
return fData.getWidth();
}
synchronized public ITerminalTextDataSnapshot makeSnapshot() {
return fData.makeSnapshot();
}
synchronized public void scroll(int startLine, int size, int shift) {
fData.scroll(startLine, size, shift);
}
synchronized public void setChar(int line, int column, char c, Style style) {
fData.setChar(line, column, c, style);
}
synchronized public void setChars(int line, int column, char[] chars, int start, int len, Style style) {
fData.setChars(line, column, chars, start, len, style);
}
synchronized public void setChars(int line, int column, char[] chars, Style style) {
fData.setChars(line, column, chars, style);
}
synchronized public void setCursorColumn(int column) {
fData.setCursorColumn(column);
}
synchronized public void setCursorLine(int line) {
fData.setCursorLine(line);
}
synchronized public void setDimensions(int height, int width) {
fData.setDimensions(height, width);
}
synchronized public void setMaxHeight(int height) {
fData.setMaxHeight(height);
}
synchronized public boolean isWrappedLine(int line) {
return fData.isWrappedLine(line);
}
synchronized public void setWrappedLine(int line) {
fData.setWrappedLine(line);
}

View file

@ -36,6 +36,7 @@ public class TerminalTextData implements ITerminalTextData {
public TerminalTextDataSnapshot[] fSnapshots = new TerminalTextDataSnapshot[0];
private int fCursorColumn;
private int fCursorLine;
/**
* Debug helper method -- use as "New Detail Formatter.." in the
* debugger variables view:
@ -85,16 +86,20 @@ public class TerminalTextData implements ITerminalTextData {
// this(new TerminalTextDataStore());
}
public TerminalTextData(ITerminalTextData data) {
fData = data;
}
public int getWidth() {
return fData.getWidth();
}
public int getHeight() {
// no need for an extra variable
return fData.getHeight();
}
public void setDimensions(int height, int width) {
int h = getHeight();
int w = getWidth();
@ -103,6 +108,7 @@ public class TerminalTextData implements ITerminalTextData {
fData.setDimensions(height, width);
sendDimensionsChanged(h, w, height, width);
}
private void sendDimensionsChanged(int oldHeight, int oldWidth, int newHeight, int newWidth) {
// determine what has changed
if (oldWidth == newWidth) {
@ -115,39 +121,49 @@ public class TerminalTextData implements ITerminalTextData {
}
sendDimensionsChanged();
}
public LineSegment[] getLineSegments(int line, int column, int len) {
return fData.getLineSegments(line, column, len);
}
public char getChar(int line, int column) {
return fData.getChar(line, column);
}
public Style getStyle(int line, int column) {
return fData.getStyle(line, column);
}
public void setChar(int line, int column, char c, Style style) {
fData.setChar(line, column, c, style);
sendLineChangedToSnapshots(line);
}
public void setChars(int line, int column, char[] chars, Style style) {
fData.setChars(line, column, chars, style);
sendLineChangedToSnapshots(line);
}
public void setChars(int line, int column, char[] chars, int start, int len, Style style) {
fData.setChars(line, column, chars, start, len, style);
sendLineChangedToSnapshots(line);
}
public void scroll(int startLine, int size, int shift) {
fData.scroll(startLine, size, shift);
sendScrolledToSnapshots(startLine, size, shift);
}
public String toString() {
return fData.toString();
}
private void sendDimensionsChanged() {
for (int i = 0; i < fSnapshots.length; i++) {
fSnapshots[i].markDimensionsChanged();
}
}
/**
* @param line notifies snapshots that line line has changed
*/
@ -156,6 +172,7 @@ public class TerminalTextData implements ITerminalTextData {
fSnapshots[i].markLineChanged(line);
}
}
/**
* Notify snapshots that multiple lines have changed
* @param line changed line
@ -178,11 +195,13 @@ public class TerminalTextData implements ITerminalTextData {
fSnapshots[i].scroll(startLine, size, shift);
}
}
protected void sendCursorChanged() {
for (int i = 0; i < fSnapshots.length; i++) {
fSnapshots[i].markCursorChanged();
}
}
/**
* Removes the snapshot from the @observer@ list
* @param snapshot A snapshot of a terminal model
@ -205,6 +224,7 @@ public class TerminalTextData implements ITerminalTextData {
fSnapshots = list.toArray(new TerminalTextDataSnapshot[list.size()]);
return snapshot;
}
public void addLine() {
int oldHeight = getHeight();
fData.addLine();
@ -232,35 +252,45 @@ public class TerminalTextData implements ITerminalTextData {
public void copyLine(ITerminalTextData source, int sourceLine, int destLine) {
fData.copyLine(source, sourceLine, destLine);
}
public void copyRange(ITerminalTextData source, int sourceStartLine, int destStartLine, int length) {
fData.copyRange(source, sourceStartLine, destStartLine, length);
}
public char[] getChars(int line) {
return fData.getChars(line);
}
public Style[] getStyles(int line) {
return fData.getStyles(line);
}
public int getMaxHeight() {
return fData.getMaxHeight();
}
public void setMaxHeight(int height) {
fData.setMaxHeight(height);
}
public void cleanLine(int line) {
fData.cleanLine(line);
sendLineChangedToSnapshots(line);
}
public int getCursorColumn() {
return fCursorColumn;
}
public int getCursorLine() {
return fCursorLine;
}
public void setCursorColumn(int column) {
fCursorColumn = column;
sendCursorChanged();
}
public void setCursorLine(int line) {
fCursorLine = line;
sendCursorChanged();

View file

@ -31,6 +31,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
* The offset into the array.
*/
int fOffset;
public TerminalTextDataFastScroll(ITerminalTextData data, int maxHeight) {
fMaxHeight = maxHeight;
fData = data;
@ -38,12 +39,15 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
if (maxHeight > 2)
assert shiftOffset(-2) || throwRuntimeException();
}
public TerminalTextDataFastScroll(int maxHeight) {
this(new TerminalTextDataStore(), maxHeight);
}
public TerminalTextDataFastScroll() {
this(new TerminalTextDataStore(), 1);
}
/**
* This is used in asserts to throw an {@link RuntimeException}.
* This is useful for tests.
@ -52,6 +56,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
private boolean throwRuntimeException() {
throw new RuntimeException();
}
/**
*
* @param line
@ -60,6 +65,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
int getPositionOfLine(int line) {
return (line + fOffset) % fMaxHeight;
}
/**
* Moves offset by delta. This does <b>not</b> move the data!
* @param delta
@ -69,6 +75,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
fOffset = (fMaxHeight + fOffset + delta) % fMaxHeight;
}
/**
* Test method to shift the offset for testing (if assert ==true)
* @param shift TODO
@ -78,6 +85,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
moveOffset(shift);
return true;
}
public void addLine() {
if (getHeight() < fMaxHeight) {
setDimensions(getHeight() + 1, getWidth());
@ -85,6 +93,7 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
scroll(0, getHeight(), -1);
}
}
public void cleanLine(int line) {
fData.cleanLine(getPositionOfLine(line));
}
@ -148,11 +157,13 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
public ITerminalTextDataSnapshot makeSnapshot() {
return fData.makeSnapshot();
}
private void cleanLines(int line, int len) {
for (int i = line; i < line + len; i++) {
fData.cleanLine(getPositionOfLine(i));
}
}
public void scroll(int startLine, int size, int shift) {
assert (startLine >= 0 && startLine + size <= fHeight) || throwRuntimeException();
if (shift >= fMaxHeight || -shift >= fMaxHeight) {
@ -235,22 +246,28 @@ public class TerminalTextDataFastScroll implements ITerminalTextData {
}
fMaxHeight = maxHeight;
}
public int getCursorColumn() {
throw new UnsupportedOperationException();
}
public int getCursorLine() {
throw new UnsupportedOperationException();
}
public void setCursorColumn(int column) {
throw new UnsupportedOperationException();
}
public void setCursorLine(int line) {
throw new UnsupportedOperationException();
}
public boolean isWrappedLine(int line) {
assert (line >= 0 && line < fHeight) || throwRuntimeException();
return fData.isWrappedLine(getPositionOfLine(line));
}
public void setWrappedLine(int line) {
assert (line >= 0 && line < fHeight) || throwRuntimeException();
fData.setWrappedLine(getPositionOfLine(line));

View file

@ -63,6 +63,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
fListenersNeedNotify = true;
fInterestWindowSize = -1;
}
/**
* This is used in asserts to throw an {@link RuntimeException}.
* This is useful for tests.
@ -82,6 +83,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
return fFutureChanges.hasChanged();
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ITerminalTextDataSnapshot#snapshot()
*/
@ -138,12 +140,14 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
public int getWidth() {
return fSnapshot.getWidth();
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ITerminalTextDataSnapshot#getFirstChangedLine()
*/
public int getFirstChangedLine() {
return fCurrentChanges.getFirstChangedLine();
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ITerminalTextDataSnapshot#getLastChangedLine()
*/
@ -154,9 +158,11 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
public boolean hasLineChanged(int line) {
return fCurrentChanges.hasLineChanged(line);
}
public boolean hasDimensionsChanged() {
return fCurrentChanges.hasDimensionsChanged();
}
public boolean hasTerminalChanged() {
return fCurrentChanges.hasTerminalChanged();
}
@ -167,12 +173,14 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
public int getScrollWindowStartLine() {
return fCurrentChanges.getScrollWindowStartLine();
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ITerminalTextDataSnapshot#getScrollChangeN()
*/
public int getScrollWindowSize() {
return fCurrentChanges.getScrollWindowSize();
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.model.ITerminalTextDataSnapshot#getScrollChangeShift()
*/
@ -190,6 +198,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
fFutureChanges.setTerminalChanged();
notifyListers();
}
/**
* Announces a change of n lines beginning with line line
* @param line
@ -206,6 +215,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
fFutureChanges.setTerminalChanged();
notifyListers();
}
void markCursorChanged() {
fFutureChanges.markCursorChanged();
fFutureChanges.setTerminalChanged();
@ -222,6 +232,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
fFutureChanges.setTerminalChanged();
notifyListers();
}
/**
* Notifies listeners about the change
*/
@ -236,6 +247,7 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
}
}
}
public ITerminalTextDataSnapshot makeSnapshot() {
return fSnapshot.makeSnapshot();
}
@ -253,16 +265,15 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
list.remove(listener);
fListener = list.toArray(new SnapshotOutOfDateListener[list.size()]);
}
public String toString() {
return fSnapshot.toString();
}
public int getInterestWindowSize() {
return fInterestWindowSize;
}
public int getInterestWindowStartLine() {
return fInterestWindowStartLine;
}
@ -277,27 +288,27 @@ class TerminalTextDataSnapshot implements ITerminalTextDataSnapshot {
notifyListers();
}
public char[] getChars(int line) {
return fSnapshot.getChars(line);
}
public Style[] getStyles(int line) {
return fSnapshot.getStyles(line);
}
public int getCursorColumn() {
return fSnapshot.getCursorColumn();
}
public int getCursorLine() {
return fSnapshot.getCursorLine();
}
public ITerminalTextData getTerminalTextData() {
return fTerminal;
}
public boolean isWrappedLine(int line) {
return fSnapshot.isWrappedLine(line);
}
}

View file

@ -40,6 +40,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
fStyle = new Style[0][];
fWidth = 0;
}
/**
* This is used in asserts to throw an {@link RuntimeException}.
* This is useful for tests.
@ -49,19 +50,20 @@ public class TerminalTextDataStore implements ITerminalTextData {
throw new RuntimeException();
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#getWidth()
*/
public int getWidth() {
return fWidth;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#getHeight()
*/
public int getHeight() {
return fHeight;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#setDimensions(int, int)
*/
@ -86,6 +88,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
fWidth = width;
fHeight = height;
}
/**
* Reallocates an array with a new size, and copies the contents of the old
* array to the new array.
@ -106,7 +109,6 @@ public class TerminalTextDataStore implements ITerminalTextData {
return newArray;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#getLineSegments(int, int, int)
*/
@ -143,6 +145,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
}
return segments.toArray(new LineSegment[segments.size()]);
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#getChar(int, int)
*/
@ -152,6 +155,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
return 0;
return fChars[line][column];
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#getStyle(int, int)
*/
@ -185,12 +189,14 @@ public class TerminalTextDataStore implements ITerminalTextData {
fChars[line][column] = c;
fStyle[line][column] = style;
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#setChars(int, int, char[], org.eclipse.tm.internal.terminal.text.Style)
*/
public void setChars(int line, int column, char[] chars, Style style) {
setChars(line, column, chars, 0, chars.length, style);
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#setChars(int, int, char[], int, int, org.eclipse.tm.internal.terminal.text.Style)
*/
@ -201,6 +207,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
fStyle[line][column + i] = style;
}
}
/* (non-Javadoc)
* @see org.eclipse.tm.internal.terminal.text.ITerminalTextData#scroll(int, int, int)
*/
@ -226,6 +233,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
cleanLines(startLine, Math.min(shift, getHeight() - startLine));
}
}
/**
* Replaces the lines with new empty data
* @param line
@ -253,7 +261,6 @@ public class TerminalTextDataStore implements ITerminalTextData {
return buff.toString();
}
public ITerminalTextDataSnapshot makeSnapshot() {
throw new UnsupportedOperationException();
}
@ -280,6 +287,7 @@ public class TerminalTextDataStore implements ITerminalTextData {
fCursorLine = source.getCursorLine();
fCursorColumn = source.getCursorColumn();
}
public void copyRange(ITerminalTextData source, int sourceStartLine, int destStartLine, int length) {
for (int i = 0; i < length; i++) {
copyLine(source, i + sourceStartLine, i + destStartLine);
@ -323,21 +331,27 @@ public class TerminalTextDataStore implements ITerminalTextData {
fStyle[line] = null;
fWrappedLines.clear(line);
}
public int getCursorColumn() {
return fCursorColumn;
}
public int getCursorLine() {
return fCursorLine;
}
public void setCursorColumn(int column) {
fCursorColumn = column;
}
public void setCursorLine(int line) {
fCursorLine = line;
}
public boolean isWrappedLine(int line) {
return fWrappedLines.get(line);
}
public void setWrappedLine(int line) {
fWrappedLines.set(line);
}

View file

@ -28,12 +28,15 @@ public class TerminalTextDataWindow implements ITerminalTextData {
int fWindowSize;
int fHeight;
int fMaxHeight;
public TerminalTextDataWindow(ITerminalTextData data) {
fData = data;
}
public TerminalTextDataWindow() {
this(new TerminalTextDataStore());
}
/**
* This is used in asserts to throw an {@link RuntimeException}.
* This is useful for tests.
@ -42,6 +45,7 @@ public class TerminalTextDataWindow implements ITerminalTextData {
private boolean throwRuntimeException() {
throw new RuntimeException();
}
/**
* @param line
* @return true if the line is within the window
@ -49,6 +53,7 @@ public class TerminalTextDataWindow implements ITerminalTextData {
boolean isInWindow(int line) {
return line >= fWindowStartLine && line < fWindowStartLine + fWindowSize;
}
public char getChar(int line, int column) {
if (!isInWindow(line))
return 0;
@ -94,6 +99,7 @@ public class TerminalTextDataWindow implements ITerminalTextData {
public ITerminalTextDataSnapshot makeSnapshot() {
throw new UnsupportedOperationException();
}
public void addLine() {
if (fMaxHeight > 0 && getHeight() < fMaxHeight) {
setDimensions(getHeight() + 1, getWidth());
@ -101,6 +107,7 @@ public class TerminalTextDataWindow implements ITerminalTextData {
scroll(0, getHeight(), -1);
}
}
public void copy(ITerminalTextData source) {
// we inherit the dimensions of the source
setDimensions(source.getHeight(), source.getWidth());
@ -108,6 +115,7 @@ public class TerminalTextDataWindow implements ITerminalTextData {
if (n > 0)
fData.copyRange(source, fWindowStartLine, 0, n);
}
public void copyRange(ITerminalTextData source, int sourceStartLine, int destStartLine, int length) {
int n = length;
int dStart = destStartLine - fWindowStartLine;
@ -124,10 +132,12 @@ public class TerminalTextDataWindow implements ITerminalTextData {
fData.copyRange(source, sStart, dStart, n);
}
public void copyLine(ITerminalTextData source, int sourceLine, int destLine) {
if (isInWindow(destLine))
fData.copyLine(source, sourceLine, destLine - fWindowStartLine);
}
public void scroll(int startLine, int size, int shift) {
assert (startLine >= 0 && startLine + size <= fHeight) || throwRuntimeException();
int n = size;
@ -142,64 +152,80 @@ public class TerminalTextDataWindow implements ITerminalTextData {
if (n > 0)
fData.scroll(start, n, shift);
}
public void setChar(int line, int column, char c, Style style) {
if (!isInWindow(line))
return;
fData.setChar(line - fWindowStartLine, column, c, style);
}
public void setChars(int line, int column, char[] chars, int start, int len, Style style) {
if (!isInWindow(line))
return;
fData.setChars(line - fWindowStartLine, column, chars, start, len, style);
}
public void setChars(int line, int column, char[] chars, Style style) {
if (!isInWindow(line))
return;
fData.setChars(line - fWindowStartLine, column, chars, style);
}
public void setDimensions(int height, int width) {
assert height >= 0 || throwRuntimeException();
fData.setDimensions(fWindowSize, width);
fHeight = height;
}
public void setMaxHeight(int height) {
fMaxHeight = height;
}
public void setWindow(int startLine, int size) {
fWindowStartLine = startLine;
fWindowSize = size;
fData.setDimensions(fWindowSize, getWidth());
}
public int getWindowStartLine() {
return fWindowStartLine;
}
public int getWindowSize() {
return fWindowSize;
}
public void setHeight(int height) {
fHeight = height;
}
public void cleanLine(int line) {
if (isInWindow(line))
fData.cleanLine(line - fWindowStartLine);
}
public int getCursorColumn() {
return fData.getCursorColumn();
}
public int getCursorLine() {
return fData.getCursorLine();
}
public void setCursorColumn(int column) {
fData.setCursorColumn(column);
}
public void setCursorLine(int line) {
fData.setCursorLine(line);
}
public boolean isWrappedLine(int line) {
if (isInWindow(line))
return fData.isWrappedLine(line - fWindowStartLine);
return false;
}
public void setWrappedLine(int line) {
if (isInWindow(line))
fData.setWrappedLine(line - fWindowStartLine);

View file

@ -35,8 +35,7 @@ import org.eclipse.ui.IWorkbenchPreferencePage;
* @noinstantiate This class is not intended to be instantiated by clients.
* @noreference This class is not intended to be referenced by clients.
*/
public class TerminalPreferencePage extends FieldEditorPreferencePage implements
IWorkbenchPreferencePage {
public class TerminalPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage {
protected BooleanFieldEditor fInvertColors;
protected IntegerFieldEditor fEditorBufferSize;
@ -44,16 +43,20 @@ public class TerminalPreferencePage extends FieldEditorPreferencePage implements
public TerminalPreferencePage() {
super(GRID);
}
protected void createFieldEditors() {
setupPage();
}
public void init(IWorkbench workbench) {
// do nothing
}
protected void setupPage() {
setupData();
setupEditors();
}
protected void setupData() {
TerminalPlugin plugin;
IPreferenceStore preferenceStore;
@ -62,12 +65,12 @@ public class TerminalPreferencePage extends FieldEditorPreferencePage implements
preferenceStore = plugin.getPreferenceStore();
setPreferenceStore(preferenceStore);
}
protected void setupEditors() {
fInvertColors = new BooleanFieldEditor(
ITerminalConstants.PREF_INVERT_COLORS, TerminalMessages.INVERT_COLORS,
fInvertColors = new BooleanFieldEditor(ITerminalConstants.PREF_INVERT_COLORS, TerminalMessages.INVERT_COLORS,
getFieldEditorParent());
fEditorBufferSize = new IntegerFieldEditor(ITerminalConstants.PREF_BUFFERLINES, TerminalMessages.BUFFERLINES,
getFieldEditorParent());
fEditorBufferSize = new IntegerFieldEditor(ITerminalConstants.PREF_BUFFERLINES,
TerminalMessages.BUFFERLINES, getFieldEditorParent());
fEditorBufferSize.setValidRange(0, Integer.MAX_VALUE);

View file

@ -61,7 +61,8 @@ public abstract class AbstractSettingsPage implements ISettingsPage, IMessagePro
Object[] list = listeners.getListeners();
for (int i = 0; i < list.length; i++) {
Object l = list[i];
if (!(l instanceof Listener)) continue;
if (!(l instanceof Listener))
continue;
((Listener) l).onSettingsPageChanged(control);
}
}
@ -120,7 +121,8 @@ public abstract class AbstractSettingsPage implements ISettingsPage, IMessagePro
*/
protected final ControlDecoration createControlDecoration(Control control) {
Assert.isNotNull(control);
if (!hasDecoration) return null;
if (!hasDecoration)
return null;
ControlDecoration controlDecoration = new ControlDecoration(control, getControlDecorationPosition());
controlDecoration.setShowOnlyOnFocus(false);
control.setData("controlDecoration", controlDecoration); //$NON-NLS-1$
@ -173,8 +175,7 @@ public abstract class AbstractSettingsPage implements ISettingsPage, IMessagePro
if (message == null || messageType == IMessageProvider.NONE) {
controlDecoration.hide();
}
else {
} else {
controlDecoration.show();
}
}

View file

@ -86,36 +86,52 @@ public final class Logger {
switch (c) {
case '\\':
case '\'':
buf.append('\\'); buf.append(c); encoded=true;
buf.append('\\');
buf.append(c);
encoded = true;
break;
case '\r':
buf.append('\\'); buf.append('r'); encoded=true;
buf.append('\\');
buf.append('r');
encoded = true;
break;
case '\n':
buf.append('\\'); buf.append('n'); encoded=true;
buf.append('\\');
buf.append('n');
encoded = true;
break;
case '\t':
buf.append('\\'); buf.append('t'); encoded=true;
buf.append('\\');
buf.append('t');
encoded = true;
break;
case '\f':
buf.append('\\'); buf.append('f'); encoded=true;
buf.append('\\');
buf.append('f');
encoded = true;
break;
case '\b':
buf.append('\\'); buf.append('b'); encoded=true;
buf.append('\\');
buf.append('b');
encoded = true;
break;
default:
if (c <= '\u000f') {
buf.append('\\'); buf.append('x'); buf.append('0');
buf.append('\\');
buf.append('x');
buf.append('0');
buf.append(Integer.toHexString(c));
encoded = true;
} else if (c >= ' ' && c < '\u007f') {
buf.append(c);
} else if (c <= '\u00ff') {
buf.append('\\'); buf.append('x');
buf.append('\\');
buf.append('x');
buf.append(Integer.toHexString(c));
encoded = true;
} else {
buf.append('\\'); buf.append('u');
buf.append('\\');
buf.append('u');
if (c <= '\u0fff') {
buf.append('0');
}
@ -168,7 +184,8 @@ public final class Logger {
public static final void logException(Exception ex) {
// log in eclipse error log
if (TerminalPlugin.getDefault() != null) {
TerminalPlugin.getDefault().getLog().log(new Status(IStatus.ERROR, TerminalPlugin.PLUGIN_ID, IStatus.OK, ex.getMessage(), ex));
TerminalPlugin.getDefault().getLog()
.log(new Status(IStatus.ERROR, TerminalPlugin.PLUGIN_ID, IStatus.OK, ex.getMessage(), ex));
} else {
ex.printStackTrace();
}
@ -188,8 +205,7 @@ public final class Logger {
tmpStream = logStream;
}
tmpStream.println(className
+ "." + methodName + ":" + lineNumber + ": " + //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
tmpStream.println(className + "." + methodName + ":" + lineNumber + ": " + //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
"Caught exception: " + ex); //$NON-NLS-1$
ex.printStackTrace(tmpStream);
}

View file

@ -52,7 +52,8 @@ public class TerminalConnectorExtension {
TerminalConnector.Factory factory = new TerminalConnector.Factory() {
public TerminalConnectorImpl makeConnector() throws Exception {
return (TerminalConnectorImpl) config.createExecutableExtension("class"); //$NON-NLS-1$
}};
}
};
return new TerminalConnector(factory, id, name, isHidden);
}
@ -68,7 +69,8 @@ public class TerminalConnectorExtension {
* @since org.eclipse.tm.terminal 2.0
*/
public static ITerminalConnector makeTerminalConnector(String id) {
IConfigurationElement[] config = RegistryFactory.getRegistry().getConfigurationElementsFor("org.eclipse.tm.terminal.control.connectors"); //$NON-NLS-1$
IConfigurationElement[] config = RegistryFactory.getRegistry()
.getConfigurationElementsFor("org.eclipse.tm.terminal.control.connectors"); //$NON-NLS-1$
for (int i = 0; i < config.length; i++) {
if (id.equals(config[i].getAttribute("id"))) { //$NON-NLS-1$
return makeConnector(config[i]);
@ -76,6 +78,7 @@ public class TerminalConnectorExtension {
}
return null;
}
/**
* Return a list of available terminal connectors (connection types).
*
@ -89,7 +92,8 @@ public class TerminalConnectorExtension {
* @since org.eclipse.tm.terminal 2.0 return value is ITerminalConnector[]
*/
public static ITerminalConnector[] makeTerminalConnectors() {
IConfigurationElement[] config = RegistryFactory.getRegistry().getConfigurationElementsFor("org.eclipse.tm.terminal.control.connectors"); //$NON-NLS-1$
IConfigurationElement[] config = RegistryFactory.getRegistry()
.getConfigurationElementsFor("org.eclipse.tm.terminal.control.connectors"); //$NON-NLS-1$
List<ITerminalConnector> result = new ArrayList<ITerminalConnector>();
for (int i = 0; i < config.length; i++) {
result.add(makeConnector(config[i]));

View file

@ -49,6 +49,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
fSnapshot = snapshot;
fLines = fSnapshot.getHeight();
}
public void addCellCanvasModelListener(ITextCanvasModelListener listener) {
fListeners.add(listener);
}
@ -63,6 +64,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
listener.rangeChanged(x, y, width, height);
}
}
protected void fireDimensionsChanged(int width, int height) {
for (Iterator<ITextCanvasModelListener> iter = fListeners.iterator(); iter.hasNext();) {
ITextCanvasModelListener listener = iter.next();
@ -70,6 +72,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
}
}
protected void fireTerminalDataChanged() {
for (Iterator<ITextCanvasModelListener> iter = fListeners.iterator(); iter.hasNext();) {
ITextCanvasModelListener listener = iter.next();
@ -81,9 +84,11 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
public ITerminalTextDataReadOnly getTerminalText() {
return fSnapshot;
}
protected ITerminalTextDataSnapshot getSnapshot() {
return fSnapshot;
}
protected void updateSnapshot() {
if (!fInUpdate && fSnapshot.isOutOfDate()) {
fInUpdate = true;
@ -111,6 +116,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
}
}
}
/**
* must be called from the UI thread
*/
@ -121,7 +127,6 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
updateCursor();
}
public int getCursorColumn() {
return fCursorColumn;
}
@ -133,6 +138,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
public boolean isCursorOn() {
return fShowCursor && fCursorIsEnabled;
}
/**
* should be called regularly to draw an update of the
* blinking cursor
@ -187,19 +193,23 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
}
}
}
public void setVisibleRectangle(int startLine, int startCol, int height, int width) {
fSnapshot.setInterestWindow(Math.max(0, startLine), Math.max(1, height));
update();
}
protected void showCursor(boolean show) {
fShowCursor = true;
}
public void setCursorEnabled(boolean visible) {
fCursorTime = System.currentTimeMillis();
fShowCursor = visible;
fCursorIsEnabled = visible;
fireCellRangeChanged(fCursorColumn, fCursorLine, 1, 1);
}
public boolean isCursorEnabled() {
return fCursorIsEnabled;
}
@ -217,11 +227,13 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
else
return new Point(fSelectionStartCoumn, fSelectionStartLine);
}
public Point getSelectionAnchor() {
if (fSelectionStartLine < 0)
return null;
return new Point(fSelectionAnchor.x, fSelectionAnchor.y);
}
public void setSelectionAnchor(Point anchor) {
fSelectionAnchor.x = anchor.x;
fSelectionAnchor.y = anchor.y;
@ -232,6 +244,7 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
doSetSelection(startLine, endLine, startColumn, endColumn);
fCurrentSelection = extractSelectedText();
}
private void doSetSelection(int startLine, int endLine, int startColumn, int endColumn) {
assert (startLine < 0 || startLine <= endLine);
if (startLine >= 0) {
@ -322,11 +335,13 @@ abstract public class AbstractTextCanvasModel implements ITextCanvasModel {
}
return buffer.toString();
}
private void updateSelection() {
if (fSelectionSnapshot != null && fSelectionSnapshot.isOutOfDate()) {
fSelectionSnapshot.updateSnapshot(true);
// has the selection moved?
if (fSelectionSnapshot != null && fSelectionStartLine >= 0 && fSelectionSnapshot.getScrollWindowSize() > 0) {
if (fSelectionSnapshot != null && fSelectionStartLine >= 0
&& fSelectionSnapshot.getScrollWindowSize() > 0) {
int start = fSelectionStartLine + fSelectionSnapshot.getScrollWindowShift();
int end = fSeletionEndLine + fSelectionSnapshot.getScrollWindowShift();
if (start < 0)

View file

@ -11,7 +11,6 @@
*******************************************************************************/
package org.eclipse.tm.internal.terminal.textcanvas;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Point;
@ -81,6 +80,7 @@ abstract public class GridCanvas extends VirtualCanvas {
}
paintUnoccupiedSpace(gc, clipping);
}
/**
* @param gc
* @param row the line to draw
@ -92,6 +92,7 @@ abstract public class GridCanvas extends VirtualCanvas {
abstract void drawLine(GC gc, int row, int x, int y, int colFirst, int colLast);
abstract protected int getRows();
abstract protected int getCols();
protected void setCellWidth(int cellWidth) {
@ -159,6 +160,7 @@ abstract public class GridCanvas extends VirtualCanvas {
y = fCellHeight * y;
return new Rectangle(x, y, fCellWidth, fCellHeight);
}
protected void viewRectangleChanged(int x, int y, int width, int height) {
int cellX = virtualXToCell(x);
int cellY = virtualYToCell(y);

View file

@ -22,18 +22,24 @@ import org.eclipse.swt.graphics.GC;
*/
public interface ILinelRenderer {
int getCellWidth();
int getCellHeight();
void drawLine(ITextCanvasModel model, GC gc, int line, int x, int y, int colFirst, int colLast);
/**
* Update for a font change from the global JFace Registry.
*/
void onFontChange();
/**
* Set a new font
* @param fontName Jface name of the new font
* @since 3.2
*/
void updateFont(String fontName);
void setInvertedColors(boolean invert);
Color getDefaultBackgroundColor();
}

View file

@ -17,9 +17,11 @@ import org.eclipse.tm.terminal.model.ITerminalTextDataReadOnly;
public interface ITextCanvasModel {
void addCellCanvasModelListener(ITextCanvasModelListener listener);
void removeCellCanvasModelListener(ITextCanvasModelListener listener);
ITerminalTextDataReadOnly getTerminalText();
/**
* This is is
* @param startLine
@ -33,6 +35,7 @@ public interface ITextCanvasModel {
* @return true when the cursor is shown (used for blinking cursors)
*/
boolean isCursorOn();
/**
* Show/Hide the cursor.
* @param visible
@ -48,6 +51,7 @@ public interface ITextCanvasModel {
* @return the line of the cursor
*/
int getCursorLine();
/**
* @return the column of the cursor
*/
@ -58,6 +62,7 @@ public interface ITextCanvasModel {
* {@link Point#x} is the column and {@link Point#y} is the line.
*/
Point getSelectionStart();
/**
* @return the end of the selection or null if nothing is selected
* {@link Point#x} is the column and {@link Point#y} is the line.
@ -67,6 +72,7 @@ public interface ITextCanvasModel {
Point getSelectionAnchor();
void setSelectionAnchor(Point anchor);
/**
* Sets the selection. A negative startLine clears the selection.
* @param startLine

View file

@ -16,7 +16,9 @@ package org.eclipse.tm.internal.terminal.textcanvas;
*/
public interface ITextCanvasModelListener {
void rangeChanged(int col, int line, int width, int height);
void dimensionsChanged(int cols, int rows);
/**
* Called when any text change happened. Used to scroll to the
* end of text in auto scroll mode. This does not get fired

View file

@ -62,12 +62,14 @@ public class PipedInputStream extends InputStream {
protected int fTakePos = 0;
protected int fUsedSlots = 0; // the count
private boolean fClosed;
public BoundedByteBuffer(int capacity) throws IllegalArgumentException {
// make sure we don't deadlock on too small capacity
if (capacity <= 0)
throw new IllegalArgumentException();
fBuffer = new byte[capacity];
}
/**
* @return the bytes available for {@link #read()}
* Must be called with a lock on this!
@ -75,6 +77,7 @@ public class PipedInputStream extends InputStream {
public int available() {
return fUsedSlots;
}
/**
* Writes a single byte to the buffer. Blocks if the buffer is full.
* @param b byte to write to the buffer
@ -93,9 +96,11 @@ public class PipedInputStream extends InputStream {
if (fUsedSlots++ == 0) // signal if was empty
notifyAll();
}
public int getFreeSlots() {
return fBuffer.length - fUsedSlots;
}
public void write(byte[] b, int off, int len) throws InterruptedException {
assert len <= getFreeSlots();
while (fUsedSlots == fBuffer.length)
@ -111,6 +116,7 @@ public class PipedInputStream extends InputStream {
if (wasEmpty) // signal if was empty
notifyAll();
}
/**
* Read a single byte. Blocks until a byte is available.
* @return a byte from the buffer
@ -132,6 +138,7 @@ public class PipedInputStream extends InputStream {
notifyAll();
return b;
}
public int read(byte[] cbuf, int off, int len) throws InterruptedException {
assert len <= available();
while (fUsedSlots == 0) {
@ -152,10 +159,12 @@ public class PipedInputStream extends InputStream {
return len;
}
public void close() {
fClosed = true;
notifyAll();
}
public boolean isClosed() {
return fClosed;
}
@ -205,12 +214,14 @@ public class PipedInputStream extends InputStream {
Thread.currentThread().interrupt();
}
}
public void close() throws IOException {
synchronized (fQueue) {
fQueue.close();
}
}
}
/**
* @param bufferSize the size of the buffer of the output stream
*/
@ -218,12 +229,14 @@ public class PipedInputStream extends InputStream {
fOutputStream = new PipedOutputStream();
fQueue = new BoundedByteBuffer(bufferSize);
}
/**
* @return the output stream used by the backend to write to the terminal.
*/
public OutputStream getOutputStream() {
return fOutputStream;
}
/**
* Waits until data is available for reading.
* @param millis see {@link Object#wait(long)}
@ -236,6 +249,7 @@ public class PipedInputStream extends InputStream {
fQueue.wait(millis);
}
}
/**
* Must be called in the Display Thread!
* @return number of characters available for reading.
@ -245,6 +259,7 @@ public class PipedInputStream extends InputStream {
return fQueue.available();
}
}
/**
* @return the next available byte. Check with {@link #available}
* if characters are available.
@ -259,6 +274,7 @@ public class PipedInputStream extends InputStream {
return -1;
}
}
/**
* Closing a <tt>PipedInputStream</tt> is the same as closing the output stream.
* The stream will allow reading data that's still in the pipe after which it will

View file

@ -10,6 +10,7 @@
* Anton Leherbauer (Wind River) - [420928] Terminal widget leaks memory
*******************************************************************************/
package org.eclipse.tm.internal.terminal.textcanvas;
import org.eclipse.swt.widgets.Display;
import org.eclipse.tm.terminal.model.ITerminalTextDataSnapshot;
@ -28,13 +29,16 @@ public class PollingTextCanvasModel extends AbstractTextCanvasModel {
super(snapshot);
startPolling();
}
public void setUpdateInterval(int t) {
fPollInterval = t;
}
public void stopPolling() {
// timerExec only dispatches if the delay is >=0
fPollInterval = -1;
}
public void startPolling() {
if (fPollInterval < 0) {
fPollInterval = DEFAULT_POLL_INTERVAL;

View file

@ -56,16 +56,19 @@ public class StyleMap {
private boolean fInvertColors;
private boolean fProportional;
private final int[] fOffsets = new int[256];
StyleMap() {
initColors();
fDefaultStyle = Style.getStyle(StyleColor.getStyleColor(BLACK), StyleColor.getStyleColor(WHITE));
updateFont();
}
private void initColors() {
initForegroundColors();
initBackgroundColors();
initIntenseColors();
}
private void initForegroundColors() {
if (fInvertColors) {
setColor(fColorMapForeground, WHITE, 0, 0, 0);
@ -143,6 +146,7 @@ public class StyleMap {
else
return getColor(map, style.getForground());
}
public Color getBackgroundColor(Style style) {
style = defaultIfNull(style);
if (style.isReverse())
@ -150,6 +154,7 @@ public class StyleMap {
else
return getColor(fColorMapBackground, style.getBackground());
}
Color getColor(Map<StyleColor, Color> map, StyleColor color) {
Color c = map.get(color);
if (c == null) {
@ -157,11 +162,13 @@ public class StyleMap {
}
return c;
}
private Style defaultIfNull(Style style) {
if (style == null)
style = fDefaultStyle;
return style;
}
public void setInvertedColors(boolean invert) {
if (invert == fInvertColors)
return;
@ -189,15 +196,19 @@ public class StyleMap {
return JFaceResources.getFontRegistry().get(fFontName);
}
public int getFontWidth() {
return fCharSize.x;
}
public int getFontHeight() {
return fCharSize.y;
}
public void updateFont() {
updateFont(ITerminalConstants.FONT_DEFINITION);
}
/**
* Update the StyleMap for a new font name.
* The font name must be a valid name in the Jface font registry.
@ -263,6 +274,7 @@ public class StyleMap {
}
gc.dispose();
}
/**
* @param gc
* @param c
@ -282,9 +294,11 @@ public class StyleMap {
fOffsets[c] = ext.x;
return proportional;
}
public boolean isFontProportional() {
return fProportional;
}
/**
* Return the offset in pixels required to center a given character
* @param c the character to measure

View file

@ -23,7 +23,6 @@
*******************************************************************************/
package org.eclipse.tm.internal.terminal.textcanvas;
import java.util.ArrayList;
import java.util.List;
@ -99,15 +98,20 @@ public class TextCanvas extends GridCanvas {
fCellCanvasModel = model;
fCellCanvasModel.addCellCanvasModelListener(new ITextCanvasModelListener() {
public void rangeChanged(int col, int line, int width, int height) {
if(isDisposed()) return;
if (isDisposed())
return;
repaintRange(col, line, width, height);
}
public void dimensionsChanged(int cols, int rows) {
if(isDisposed()) return;
if (isDisposed())
return;
calculateGrid();
}
public void terminalDataChanged() {
if(isDisposed()) return;
if (isDisposed())
return;
// scroll to end (unless scroll lock is active)
if (!fResizing) {
@ -121,9 +125,11 @@ public class TextCanvas extends GridCanvas {
public void focusGained(FocusEvent e) {
fCellCanvasModel.setCursorEnabled(fCursorEnabled);
}
public void focusLost(FocusEvent e) {
fCellCanvasModel.setCursorEnabled(false);
}});
}
});
fMouseListeners = new ArrayList<ITerminalMouseListener>();
addMouseListener(new MouseListener() {
public void mouseDoubleClick(MouseEvent e) {
@ -136,6 +142,7 @@ public class TextCanvas extends GridCanvas {
}
}
}
public void mouseDown(MouseEvent e) {
if (e.button == 1) { // left button
fDraggingStart = screenPointToCell(e.x, e.y);
@ -158,6 +165,7 @@ public class TextCanvas extends GridCanvas {
}
}
}
public void mouseUp(MouseEvent e) {
if (e.button == 1) { // left button
updateHasSelection(e);
@ -234,6 +242,7 @@ public class TextCanvas extends GridCanvas {
return -1;
}
}
public ILinelRenderer getCellRenderer() {
return fCellRenderer;
}
@ -311,6 +320,7 @@ public class TextCanvas extends GridCanvas {
setRedraw(true);
}
}
void scrollToEnd() {
if (!fScrollLock) {
int y = -(getRows() * getCellHeight() - getClientArea().height);
@ -326,6 +336,7 @@ public class TextCanvas extends GridCanvas {
scrollX(getHorizontalBar());
}
}
/**
*
* @return true if the cursor should be shown on output....
@ -333,37 +344,46 @@ public class TextCanvas extends GridCanvas {
public boolean isScrollLock() {
return fScrollLock;
}
/**
* If set then if the size changes
*/
public void setScrollLock(boolean scrollLock) {
fScrollLock = scrollLock;
}
protected void repaintRange(int col, int line, int width, int height) {
Point origin = cellToOriginOnScreen(col, line);
Rectangle r = new Rectangle(origin.x, origin.y, width * getCellWidth(), height * getCellHeight());
repaint(r);
}
protected void drawLine(GC gc, int line, int x, int y, int colFirst, int colLast) {
fCellRenderer.drawLine(fCellCanvasModel, gc, line, x, y, colFirst, colLast);
}
protected Color getTerminalBackgroundColor() {
return fCellRenderer.getDefaultBackgroundColor();
}
protected void visibleCellRectangleChanged(int x, int y, int width, int height) {
fCellCanvasModel.setVisibleRectangle(y, x, height, width);
update();
}
protected int getCols() {
return fCellCanvasModel.getTerminalText().getWidth();
}
protected int getRows() {
return fCellCanvasModel.getTerminalText().getHeight();
}
public String getSelectionText() {
// TODO -- create a hasSelectionMethod!
return fCellCanvasModel.getSelectedText();
}
public void copy() {
String selectionText = getSelectionText();
if (selectionText != null && selectionText.length() > 0) {
@ -372,8 +392,10 @@ public class TextCanvas extends GridCanvas {
clipboard.dispose();
}
}
public void selectAll() {
fCellCanvasModel.setSelection(0, fCellCanvasModel.getTerminalText().getHeight(), 0, fCellCanvasModel.getTerminalText().getWidth());
fCellCanvasModel.setSelection(0, fCellCanvasModel.getTerminalText().getHeight(), 0,
fCellCanvasModel.getTerminalText().getWidth());
fCellCanvasModel.setSelectionAnchor(new Point(0, 0));
}
@ -403,6 +425,7 @@ public class TextCanvas extends GridCanvas {
public boolean isEmpty() {
return false;
}
/**
* Gets notified when the visible size of the terminal changes.
* This should update the model!
@ -411,6 +434,7 @@ public class TextCanvas extends GridCanvas {
public interface ResizeListener {
void sizeChanged(int lines, int columns);
}
/**
* @param listener this listener gets notified, when the size of
* the widget changed. It should change the dimensions of the underlying
@ -485,4 +509,3 @@ public class TextCanvas extends GridCanvas {
fMouseListeners.remove(listener);
}
}

View file

@ -32,23 +32,28 @@ import org.eclipse.tm.terminal.model.Style;
public class TextLineRenderer implements ILinelRenderer {
private final ITextCanvasModel fModel;
StyleMap fStyleMap = new StyleMap();
public TextLineRenderer(TextCanvas c, ITextCanvasModel model) {
fModel = model;
}
/* (non-Javadoc)
* @see com.imagicus.thumbs.view.ICellRenderer#getCellWidth()
*/
public int getCellWidth() {
return fStyleMap.getFontWidth();
}
/* (non-Javadoc)
* @see com.imagicus.thumbs.view.ICellRenderer#getCellHeight()
*/
public int getCellHeight() {
return fStyleMap.getFontHeight();
}
public void drawLine(ITextCanvasModel model, GC gc, int line, int x, int y, int colFirst, int colLast) {
if(line<0 || line>=getTerminalText().getHeight() || colFirst>=getTerminalText().getWidth() || colFirst-colLast==0) {
if (line < 0 || line >= getTerminalText().getHeight() || colFirst >= getTerminalText().getWidth()
|| colFirst - colLast == 0) {
fillBackground(gc, x, y, getCellWidth() * (colLast - colFirst), getCellHeight());
} else {
colLast = Math.min(colLast, getTerminalText().getWidth());
@ -120,6 +125,7 @@ public class TextLineRenderer implements ILinelRenderer {
}
}
}
private void drawText(GC gc, int x, int y, int colFirst, int col, String text) {
int offset = (col - colFirst) * getCellWidth();
if (fStyleMap.isFontProportional()) {
@ -140,6 +146,7 @@ public class TextLineRenderer implements ILinelRenderer {
gc.drawString(text, x + offset, y, false);
}
}
private void setupGC(GC gc, Style style) {
Color c = fStyleMap.getForegrondColor(style);
if (c != gc.getForeground()) {
@ -154,15 +161,19 @@ public class TextLineRenderer implements ILinelRenderer {
gc.setFont(f);
}
}
ITerminalTextDataReadOnly getTerminalText() {
return fModel.getTerminalText();
}
public void onFontChange() {
fStyleMap.updateFont();
}
public void updateFont(String fontName) {
fStyleMap.updateFont(fontName);
}
public void setInvertedColors(boolean invert) {
fStyleMap.setInvertedColors(invert);

View file

@ -11,7 +11,6 @@
*******************************************************************************/
package org.eclipse.tm.internal.terminal.textcanvas;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.swt.SWT;
@ -68,9 +67,11 @@ public abstract class VirtualCanvas extends Canvas {
}
});
}
protected void onResize() {
updateViewRectangle();
}
protected void scrollX(ScrollBar hBar) {
int hSelection = hBar.getSelection();
int destX = -hSelection - fVirtualBounds.x;
@ -78,6 +79,7 @@ public abstract class VirtualCanvas extends Canvas {
scrollSmart(destX, 0);
updateViewRectangle();
}
protected void scrollXDelta(int delta) {
getHorizontalBar().setSelection(-fVirtualBounds.x + delta);
scrollX(getHorizontalBar());
@ -93,12 +95,12 @@ public abstract class VirtualCanvas extends Canvas {
}
}
protected void scrollYDelta(int delta) {
getVerticalBar().setSelection(-fVirtualBounds.y + delta);
scrollY(getVerticalBar());
}
protected void scrollSmart(int deltaX, int deltaY) {
if (deltaX != 0 || deltaY != 0) {
Rectangle rect = getBounds();
@ -152,10 +154,12 @@ public abstract class VirtualCanvas extends Canvas {
* @param gc graphics context to paint in
*/
abstract protected void paint(GC gc);
protected Color getTerminalBackgroundColor() {
// return getDisplay().getSystemColor(SWT.COLOR_LIST_BACKGROUND);
return getDisplay().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND);
}
protected void paintUnoccupiedSpace(GC gc, Rectangle clipping) {
int width = fVirtualBounds.width + fVirtualBounds.x;
int height = fVirtualBounds.height + fVirtualBounds.y;
@ -173,6 +177,7 @@ public abstract class VirtualCanvas extends Canvas {
gc.setBackground(bg);
}
}
/**
* @private
*/
@ -190,14 +195,17 @@ public abstract class VirtualCanvas extends Canvas {
return true;
}
/**
* @return the screen rect in virtual space (starting with (0,0))
* of the visible screen. (x,y>=0)
*/
protected Rectangle getScreenRectInVirtualSpace() {
Rectangle r= new Rectangle(fClientArea.x-fVirtualBounds.x,fClientArea.y-fVirtualBounds.y,fClientArea.width,fClientArea.height);
Rectangle r = new Rectangle(fClientArea.x - fVirtualBounds.x, fClientArea.y - fVirtualBounds.y,
fClientArea.width, fClientArea.height);
return r;
}
/**
* @return the rect in virtual space (starting with (0,0))
* of the visible screen. (x,y>=0)
@ -217,6 +225,7 @@ public abstract class VirtualCanvas extends Canvas {
updateScrollbars();
updateViewRectangle();
}
/**
* sets the scrolling origin. Also sets the scrollbars.
* Does NOT redraw!
@ -234,9 +243,11 @@ public abstract class VirtualCanvas extends Canvas {
updateViewRectangle();
}
}
protected Rectangle getVirtualBounds() {
return cloneRectangle(fVirtualBounds);
}
/**
* @param x
* @return the virtual coordinate in screen space
@ -244,24 +255,25 @@ public abstract class VirtualCanvas extends Canvas {
protected int virtualXtoScreen(int x) {
return x + fVirtualBounds.x;
}
protected int virtualYtoScreen(int y) {
return y + fVirtualBounds.y;
}
protected int screenXtoVirtual(int x) {
return x - fVirtualBounds.x;
}
protected int screenYtoVirtual(int y) {
return y - fVirtualBounds.y;
}
/** called when the viewed part is changing */
private final Rectangle fViewRectangle = new Rectangle(0, 0, 0, 0);
protected void updateViewRectangle() {
if(
fViewRectangle.x==-fVirtualBounds.x
&& fViewRectangle.y==-fVirtualBounds.y
&& fViewRectangle.width==fClientArea.width
&& fViewRectangle.height==fClientArea.height
)
if (fViewRectangle.x == -fVirtualBounds.x && fViewRectangle.y == -fVirtualBounds.y
&& fViewRectangle.width == fClientArea.width && fViewRectangle.height == fClientArea.height)
return;
fViewRectangle.x = -fVirtualBounds.x;
fViewRectangle.y = -fVirtualBounds.y;
@ -269,12 +281,15 @@ public abstract class VirtualCanvas extends Canvas {
fViewRectangle.height = fClientArea.height;
viewRectangleChanged(fViewRectangle.x, fViewRectangle.y, fViewRectangle.width, fViewRectangle.height);
}
protected Rectangle getViewRectangle() {
return cloneRectangle(fViewRectangle);
}
private Rectangle cloneRectangle(Rectangle r) {
return new Rectangle(r.x, r.y, r.width, r.height);
}
/**
* Called when the viewed part has changed.
* Override when you need this information....
@ -286,6 +301,7 @@ public abstract class VirtualCanvas extends Canvas {
*/
protected void viewRectangleChanged(int x, int y, int width, int height) {
}
/**
* @private
*/
@ -301,12 +317,14 @@ public abstract class VirtualCanvas extends Canvas {
} else {
if (!fInUpdateScrollbarsLogged) {
fInUpdateScrollbarsLogged = true;
TerminalPlugin.getDefault().getLog().log(new Status(IStatus.WARNING,
TerminalPlugin.PLUGIN_ID, IStatus.OK, "Unexpected Recursion in terminal", //$NON-NLS-1$
TerminalPlugin.getDefault().getLog()
.log(new Status(IStatus.WARNING, TerminalPlugin.PLUGIN_ID, IStatus.OK,
"Unexpected Recursion in terminal", //$NON-NLS-1$
new RuntimeException()));
}
}
}
private void doUpdateScrollbar() {
Rectangle clientArea = getClientArea();
ScrollBar horizontal = getHorizontalBar();
@ -328,21 +346,24 @@ public abstract class VirtualCanvas extends Canvas {
vertical.setThumb(clientArea.height);
}
}
protected boolean isVertialBarVisible() {
return getVerticalBar().isVisible();
}
protected void serVerticalBarVisible(boolean showVScrollBar) {
ScrollBar vertical = getVerticalBar();
vertical.setVisible(showVScrollBar);
vertical.setSelection(0);
}
protected boolean isHorizontalBarVisble() {
return getHorizontalBar().isVisible();
}
protected void setHorizontalBarVisible(boolean showHScrollBar) {
ScrollBar horizontal = getHorizontalBar();
horizontal.setVisible(showHScrollBar);
horizontal.setSelection(0);
}
}

View file

@ -37,6 +37,7 @@ public interface ITerminalTextData extends ITerminalTextDataReadOnly {
void setDimensions(int height, int width);
void setMaxHeight(int height);
int getMaxHeight();
/**
@ -68,7 +69,6 @@ public interface ITerminalTextData extends ITerminalTextDataReadOnly {
*/
void setChars(int line, int column, char[] chars, int start, int len, Style style);
/**
* Cleans the entire line.
* @param line
@ -116,11 +116,13 @@ public interface ITerminalTextData extends ITerminalTextDataReadOnly {
* will be scrolled. Else a line will be added.
*/
void addLine();
/**
* Copies the entire source into this and changes the size accordingly
* @param source
*/
void copy(ITerminalTextData source);
/**
* Copy a sourceLine from source to this at destLine.
* @param source
@ -128,6 +130,7 @@ public interface ITerminalTextData extends ITerminalTextDataReadOnly {
* @param destLine
*/
void copyLine(ITerminalTextData source, int sourceLine, int destLine);
/**
* Copy <code>length</code> lines from source starting at sourceLine into this starting at
* destLine.
@ -139,6 +142,7 @@ public interface ITerminalTextData extends ITerminalTextDataReadOnly {
void copyRange(ITerminalTextData source, int sourceStartLine, int destStartLine, int length);
void setCursorLine(int line);
void setCursorColumn(int column);
/**

View file

@ -66,12 +66,14 @@ public interface ITerminalTextDataReadOnly {
public ITerminalTextDataSnapshot makeSnapshot();
char[] getChars(int line);
Style[] getStyles(int line);
/**
* @return the line in which the cursor is at the moment
*/
int getCursorLine();
/**
* @return the column at which the cursor is at the moment
*/

View file

@ -108,7 +108,9 @@ public interface ITerminalTextDataSnapshot extends ITerminalTextDataReadOnly {
*/
void snapshotOutOfDate(ITerminalTextDataSnapshot snapshot);
}
void addListener(SnapshotOutOfDateListener listener);
void removeListener(SnapshotOutOfDateListener listener);
/**
@ -116,6 +118,7 @@ public interface ITerminalTextDataSnapshot extends ITerminalTextDataReadOnly {
* has been called no new snapshot data is collected.
*/
void detach();
/**
* @return true if the data has changed since the previous snapshot.
*/
@ -129,7 +132,9 @@ public interface ITerminalTextDataSnapshot extends ITerminalTextDataReadOnly {
* @param size number of lines to track. A size of -1 means track all.
*/
void setInterestWindow(int startLine, int size);
int getInterestWindowStartLine();
int getInterestWindowSize();
/**
@ -195,6 +200,7 @@ public interface ITerminalTextDataSnapshot extends ITerminalTextDataReadOnly {
* window of interest)
*/
boolean hasTerminalChanged();
/**
* If {@link #updateSnapshot(boolean)} was called with <code>true</code>, then this method
* returns the top of the scroll region.

View file

@ -10,25 +10,29 @@
*******************************************************************************/
package org.eclipse.tm.terminal.model;
public class LineSegment {
private final String fText;
private final int fCol;
private final Style fStyle;
public LineSegment(int col, String text, Style style) {
fCol = col;
fText = text;
fStyle = style;
}
public Style getStyle() {
return fStyle;
}
public String getText() {
return fText;
}
public int getColumn() {
return fCol;
}
public String toString() {
return "LineSegment(" + fCol + ", \"" + fText + "\"," + fStyle + ")"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
}

View file

@ -29,7 +29,9 @@ public class Style {
private final boolean fUnderline;
private final boolean fReverse;
private final static Map<Style, Style> fgStyles = new HashMap<Style, Style>();
private Style(StyleColor forground, StyleColor background, boolean bold, boolean blink, boolean underline, boolean reverse) {
private Style(StyleColor forground, StyleColor background, boolean bold, boolean blink, boolean underline,
boolean reverse) {
fForground = forground;
fBackground = background;
fBold = bold;
@ -37,7 +39,9 @@ public class Style {
fUnderline = underline;
fReverse = reverse;
}
public static Style getStyle(StyleColor forground, StyleColor background, boolean bold, boolean blink, boolean underline, boolean reverse) {
public static Style getStyle(StyleColor forground, StyleColor background, boolean bold, boolean blink,
boolean underline, boolean reverse) {
Style style = new Style(forground, background, bold, blink, underline, reverse);
Style cached;
synchronized (fgStyles) {
@ -49,54 +53,72 @@ public class Style {
}
return cached;
}
public static Style getStyle(String forground, String background) {
return getStyle(StyleColor.getStyleColor(forground), StyleColor.getStyleColor(background),false,false,false,false);
return getStyle(StyleColor.getStyleColor(forground), StyleColor.getStyleColor(background), false, false, false,
false);
}
public static Style getStyle(StyleColor forground, StyleColor background) {
return getStyle(forground, background, false, false, false, false);
}
public Style setForground(StyleColor forground) {
return getStyle(forground, fBackground, fBold, fBlink, fUnderline, fReverse);
}
public Style setBackground(StyleColor background) {
return getStyle(fForground, background, fBold, fBlink, fUnderline, fReverse);
}
public Style setForground(String colorName) {
return getStyle(StyleColor.getStyleColor(colorName), fBackground, fBold, fBlink, fUnderline, fReverse);
}
public Style setBackground(String colorName) {
return getStyle(fForground, StyleColor.getStyleColor(colorName), fBold, fBlink, fUnderline, fReverse);
}
public Style setBold(boolean bold) {
return getStyle(fForground, fBackground, bold, fBlink, fUnderline, fReverse);
}
public Style setBlink(boolean blink) {
return getStyle(fForground, fBackground, fBold, blink, fUnderline, fReverse);
}
public Style setUnderline(boolean underline) {
return getStyle(fForground, fBackground, fBold, fBlink, underline, fReverse);
}
public Style setReverse(boolean reverse) {
return getStyle(fForground, fBackground, fBold, fBlink, fUnderline, reverse);
}
public StyleColor getBackground() {
return fBackground;
}
public boolean isBlink() {
return fBlink;
}
public boolean isBold() {
return fBold;
}
public StyleColor getForground() {
return fForground;
}
public boolean isReverse() {
return fReverse;
}
public boolean isUnderline() {
return fUnderline;
}
public int hashCode() {
final int prime = 31;
int result = 1;
@ -108,6 +130,7 @@ public class Style {
result = prime * result + (fUnderline ? 1231 : 1237);
return result;
}
public boolean equals(Object obj) {
if (this == obj)
return true;
@ -131,6 +154,7 @@ public class Style {
return false;
return true;
}
public String toString() {
StringBuffer result = new StringBuffer();
result.append("Style(foreground="); //$NON-NLS-1$

View file

@ -38,6 +38,7 @@ public class StyleColor {
}
return result;
}
// nobody except the factory method is allowed to instantiate this class!
private StyleColor(String name) {
fName = name;

View file

@ -43,6 +43,7 @@ public class TerminalConnectorFactoryTest extends TestCase {
}
}
public static class TerminalControlMock implements ITerminalControl {
public void setEncoding(String encoding) {
@ -93,6 +94,7 @@ public class TerminalConnectorFactoryTest extends TestCase {
return false;
}
}
static class ConnectorMock extends TerminalConnectorImpl {
public boolean fEcho;
@ -106,14 +108,17 @@ public class TerminalConnectorFactoryTest extends TestCase {
public boolean isLocalEcho() {
return fEcho;
}
public void setTerminalSize(int newWidth, int newHeight) {
fWidth = newWidth;
fHeight = newHeight;
}
public void connect(ITerminalControl control) {
super.connect(control);
fTerminalControl = control;
}
public void doDisconnect() {
fDisconnect = true;
}
@ -134,6 +139,7 @@ public class TerminalConnectorFactoryTest extends TestCase {
fSaveStore = store;
}
}
protected TerminalConnector makeTerminalConnector() {
return makeTerminalConnector(new ConnectorMock());
}
@ -155,7 +161,8 @@ public class TerminalConnectorFactoryTest extends TestCase {
c = makeTerminalConnector(new ConnectorMock() {
public void initialize() throws Exception {
throw new Exception("FAILED");
}});
}
});
c.connect(new TerminalControlMock());
assertEquals("FAILED", c.getInitializationErrorMessage());
@ -182,7 +189,8 @@ public class TerminalConnectorFactoryTest extends TestCase {
assertFalse(c.isInitialized());
c.save(null);
assertFalse(c.isInitialized());
if (!Platform.isRunning()) return;
if (!Platform.isRunning())
return;
c.getAdapter(ConnectorMock.class);
assertFalse(c.isInitialized());
}
@ -211,6 +219,7 @@ public class TerminalConnectorFactoryTest extends TestCase {
c.connect(control);
assertSame(mock.fTerminalControl, control);
}
public void testGetSettingsSummary() {
TerminalConnector c = makeTerminalConnector();
assertEquals("Not Initialized", c.getSettingsSummary());
@ -262,7 +271,8 @@ public class TerminalConnectorFactoryTest extends TestCase {
}
public void testGetAdapter() {
if (!Platform.isRunning()) return;
if (!Platform.isRunning())
return;
ConnectorMock mock = new ConnectorMock();
TerminalConnector c = makeTerminalConnector(mock);
assertNull(c.getAdapter(ConnectorMock.class));

View file

@ -43,6 +43,7 @@ public class TerminalConnectorTest extends TestCase {
}
}
public static class TerminalControlMock implements ITerminalControl {
public void setEncoding(String encoding) {
@ -93,6 +94,7 @@ public class TerminalConnectorTest extends TestCase {
return false;
}
}
static class ConnectorMock extends TerminalConnectorImpl {
public boolean fEcho;
@ -106,14 +108,17 @@ public class TerminalConnectorTest extends TestCase {
public boolean isLocalEcho() {
return fEcho;
}
public void setTerminalSize(int newWidth, int newHeight) {
fWidth = newWidth;
fHeight = newHeight;
}
public void connect(ITerminalControl control) {
super.connect(control);
fTerminalControl = control;
}
public void doDisconnect() {
fDisconnect = true;
}
@ -134,16 +139,20 @@ public class TerminalConnectorTest extends TestCase {
fSaveStore = store;
}
}
static class SimpleFactory implements Factory {
final TerminalConnectorImpl fConnector;
public SimpleFactory(TerminalConnectorImpl connector) {
fConnector = connector;
}
public TerminalConnectorImpl makeConnector() throws Exception {
// TODO Auto-generated method stub
return fConnector;
}
}
public void testGetInitializationErrorMessage() {
TerminalConnector c = new TerminalConnector(new SimpleFactory(new ConnectorMock()), "xID", "xName", false);
c.connect(new TerminalControlMock());
@ -152,7 +161,8 @@ public class TerminalConnectorTest extends TestCase {
c = new TerminalConnector(new SimpleFactory(new ConnectorMock() {
public void initialize() throws Exception {
throw new Exception("FAILED");
}}),"xID","xName", false);
}
}), "xID", "xName", false);
c.connect(new TerminalControlMock());
assertEquals("FAILED", c.getInitializationErrorMessage());

View file

@ -21,6 +21,7 @@ import junit.framework.TestCase;
public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
final static String ENCODING = "UTF-8";
/**
* This class escapes strings coming on the original
* terminal..
@ -30,11 +31,13 @@ public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
public void close() throws IOException {
}
public void write(int b) throws IOException {
fOriginal.write('[');
fOriginal.write(b);
fOriginal.write(']');
}
public void write(byte[] b, int off, int len) throws IOException {
fOriginal.write('[');
fOriginal.write(b, off, len);
@ -42,8 +45,10 @@ public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
}
}
class NullInterceptor extends TerminalToRemoteInjectionOutputStream.Interceptor {
}
public void testClose() throws UnsupportedEncodingException, IOException {
ByteArrayOutputStream bs = new ByteArrayOutputStream();
TerminalToRemoteInjectionOutputStream s = new TerminalToRemoteInjectionOutputStream(bs);
@ -101,6 +106,7 @@ public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
public void testWriteByteArrayIntInt() {
}
public void testGrabOutput() throws UnsupportedEncodingException, IOException {
ByteArrayOutputStream bs = new ByteArrayOutputStream();
TerminalToRemoteInjectionOutputStream s = new TerminalToRemoteInjectionOutputStream(bs);
@ -128,6 +134,7 @@ public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
assertEquals("begin:Test the west!", new String(bs.toByteArray(), ENCODING));
}
public void testGrabOutputWithCleverInterceptor() throws UnsupportedEncodingException, IOException {
ByteArrayOutputStream bs = new ByteArrayOutputStream();
TerminalToRemoteInjectionOutputStream s = new TerminalToRemoteInjectionOutputStream(bs);
@ -150,6 +157,7 @@ public class TerminalToRemoteInjectionOutputStreamTest extends TestCase {
assertEquals("begin:Test[ west] the[x]!", new String(bs.toByteArray(), ENCODING));
}
public void testGrabOutputWithNullInterceptor() throws UnsupportedEncodingException, IOException {
ByteArrayOutputStream bs = new ByteArrayOutputStream();
TerminalToRemoteInjectionOutputStream s = new TerminalToRemoteInjectionOutputStream(bs);

View file

@ -10,6 +10,7 @@
* Anton Leherbauer (Wind River) - [453393] Add support for copying wrapped lines without line break
*******************************************************************************/
package org.eclipse.tm.internal.terminal.model;
import junit.framework.TestCase;
import org.eclipse.tm.terminal.model.ITerminalTextData;
@ -30,9 +31,11 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
}
super.setUp();
}
protected String toSimple(ITerminalTextData term) {
return TerminalTextTestHelper.toSimple(term);
}
protected String toMultiLineText(ITerminalTextDataReadOnly term) {
return TerminalTextTestHelper.toMultiLineText(term);
}
@ -49,7 +52,6 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
TerminalTextTestHelper.fillSimple(term, s);
}
/**
* Used for multi line text
* @param expected
@ -58,6 +60,7 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
protected void assertEqualsTerm(String expected, String actual) {
assertEquals(expected, actual);
}
/**
* Used for simple text
* @param expected
@ -67,6 +70,7 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(-1, actual.indexOf('\n'));
assertEquals(expected, actual);
}
public void testGetWidth() {
ITerminalTextData term = makeITerminalTextData();
assertEquals(0, term.getWidth());
@ -77,57 +81,28 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
}
public void testAddLine() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
fill(term, s);
term.setMaxHeight(5);
term.addLine();
assertEqualsTerm(
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000", toMultiLineText(term));
}
public void testCleanLine() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
fill(term, s);
term.cleanLine(0);
assertEqualsTerm(
"\000\000\000\n" +
"222\n" +
"333\n" +
"444\n" +
"555", toMultiLineText(term));
assertEqualsTerm("\000\000\000\n" + "222\n" + "333\n" + "444\n" + "555", toMultiLineText(term));
fill(term, s);
term.cleanLine(4);
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("111\n" + "222\n" + "333\n" + "444\n" + "\000\000\000", toMultiLineText(term));
}
public void testMaxSize() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
term.setMaxHeight(8);
fill(term, s);
@ -135,57 +110,26 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(8, term.getMaxHeight());
term.addLine();
assertEquals(6, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000", toMultiLineText(term));
term.addLine();
assertEquals(7, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000",
toMultiLineText(term));
term.addLine();
assertEquals(8, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
"111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000\n" + "\000\000\000",
toMultiLineText(term));
term.addLine();
assertEquals(8, term.getHeight());
assertEqualsTerm(
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000\n" + "\000\000\000\n"
+ "\000\000\000", toMultiLineText(term));
term.addLine();
assertEquals(8, term.getHeight());
assertEqualsTerm(
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000\n" + "\000\000\000\n"
+ "\000\000\000\n" + "\000\000\000", toMultiLineText(term));
}
public void testGetHeight() {
ITerminalTextData term = makeITerminalTextData();
assertEquals(0, term.getHeight());
@ -214,49 +158,32 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(0, term.getWidth());
assertEquals(0, term.getHeight());
}
public void testResize() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(3, 5);
String s="12345\n" +
"abcde\n" +
"ABCDE";
String s = "12345\n" + "abcde\n" + "ABCDE";
fill(term, 0, 0, s);
assertEqualsTerm(s, toMultiLineText(term));
term.setDimensions(3, 4);
assertEqualsTerm(
"1234\n" +
"abcd\n" +
"ABCD", toMultiLineText(term));
assertEqualsTerm("1234\n" + "abcd\n" + "ABCD", toMultiLineText(term));
// the columns should be restored
term.setDimensions(3, 5);
assertEqualsTerm(
"12345\n" +
"abcde\n" +
"ABCDE", toMultiLineText(term));
assertEqualsTerm("12345\n" + "abcde\n" + "ABCDE", toMultiLineText(term));
term.setDimensions(3, 6);
assertEqualsTerm(
"12345\000\n" +
"abcde\000\n" +
"ABCDE\000", toMultiLineText(term));
assertEqualsTerm("12345\000\n" + "abcde\000\n" + "ABCDE\000", toMultiLineText(term));
term.setChar(0, 5, 'x', null);
term.setChar(1, 5, 'y', null);
term.setChar(2, 5, 'z', null);
assertEqualsTerm(
"12345x\n" +
"abcdey\n" +
"ABCDEz", toMultiLineText(term));
assertEqualsTerm("12345x\n" + "abcdey\n" + "ABCDEz", toMultiLineText(term));
term.setDimensions(2, 4);
assertEqualsTerm(
"1234\n" +
"abcd", toMultiLineText(term));
assertEqualsTerm("1234\n" + "abcd", toMultiLineText(term));
}
public void testResizeFailure() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(3, 5);
String s="12345\n" +
"abcde\n" +
"ABCDE";
String s = "12345\n" + "abcde\n" + "ABCDE";
fill(term, 0, 0, s);
assertEqualsTerm(s, toMultiLineText(term));
try {
@ -285,7 +212,6 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertSegment(0, "0123", s1, segments[0]);
assertSegment(4, "abcd", null, segments[1]);
segments = term.getLineSegments(0, 4, term.getWidth() - 4);
assertEquals(1, segments.length);
assertSegment(4, "abcd", null, segments[0]);
@ -329,12 +255,14 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertSegment(0, "\000\000\000\000\000\000\000\000", null, segments[0]);
}
public void testGetLineSegmentsNull() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(8, 8);
LineSegment[] segments = term.getLineSegments(0, 0, term.getWidth());
assertEquals(1, segments.length);
}
public void testGetLineSegmentsOutOfBounds() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(1, 8);
@ -342,18 +270,17 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
LineSegment[] segments = term.getLineSegments(0, 5, 2);
assertEquals(1, segments.length);
}
void assertSegment(int col, String text, Style style, LineSegment segment) {
assertEquals(col, segment.getColumn());
assertEqualsTerm(text, segment.getText());
assertEquals(style, segment.getStyle());
}
public void testGetChar() {
String s="12345\n" +
"abcde\n" +
"ABCDE";
String s = "12345\n" + "abcde\n" + "ABCDE";
ITerminalTextData term = makeITerminalTextData();
fill(term, s);
assertEquals('1', term.getChar(0, 0));
@ -423,7 +350,8 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
}
protected Style getDefaultStyle() {
return Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
return Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false,
false);
}
public void testSetChar() {
@ -440,14 +368,9 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(c, term.getChar(line, column));
}
}
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "def\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "def\n" + "efg\n" + "fgh", toMultiLineText(term));
}
public void testSetChars() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(6, 3);
@ -464,98 +387,77 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(c, term.getChar(line, column));
}
}
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "def\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "def\n" + "efg\n" + "fgh", toMultiLineText(term));
term.setChars(3, 1, new char[] { '1', '2' }, null);
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "d12\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "d12\n" + "efg\n" + "fgh", toMultiLineText(term));
try {
// check if we cannot exceed the range
term.setChars(4, 1, new char[] { '1', '2', '3', '4', '5' }, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
}
public void testSetCharsLen() {
ITerminalTextData term = makeITerminalTextData();
String s= "ZYXWVU\n"
+ "abcdef\n"
+ "ABCDEF";
String s = "ZYXWVU\n" + "abcdef\n" + "ABCDEF";
fill(term, s);
char[] chars = new char[] { '1', '2', '3', '4', '5', '6', '7', '8' };
term.setChars(1, 0, chars, 0, 6, null);
assertEqualsTerm(
"ZYXWVU\n"
+ "123456\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "123456\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 0, chars, 0, 5, null);
assertEqualsTerm("ZYXWVU\n"
+ "12345f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "12345f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 0, chars, 1, 5, null);
assertEqualsTerm("ZYXWVU\n"
+ "23456f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "23456f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 1, chars, 1, 4, null);
assertEqualsTerm("ZYXWVU\n"
+ "a2345f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "a2345f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 2, chars, 3, 4, null);
assertEqualsTerm("ZYXWVU\n"
+ "ab4567\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "ab4567\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
try {
term.setChars(1, 0, chars, 7, 10, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
fill(term, s);
try {
term.setChars(1, -1, chars, 0, 2, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
term.setChars(-1, 1, chars, 0, 2, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
term.setChars(1, 10, chars, 0, 2, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
term.setChars(10, 1, chars, 0, 2, null);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
// assertEquals(s, toSimpleText(term));
}
public void testSetCopyInto() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(3, 5);
String s="12345\n" +
"abcde\n" +
"ABCDE";
String s = "12345\n" + "abcde\n" + "ABCDE";
fill(term, 0, 0, s);
ITerminalTextData termCopy = makeITerminalTextData();
termCopy.copy(term);
@ -568,13 +470,12 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEquals(5, termCopy.getWidth());
assertEquals(3, termCopy.getHeight());
assertEqualsTerm("12345\n" +
"aXcde\n" +
"ABCDE", toMultiLineText(termCopy));
assertEqualsTerm("12345\n" + "aXcde\n" + "ABCDE", toMultiLineText(termCopy));
assertEquals(4, term.getWidth());
assertEquals(2, term.getHeight());
}
public void testSetCopyLines() {
ITerminalTextData term = makeITerminalTextData();
String s = "012345";
@ -620,48 +521,38 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
fillSimple(termCopy, sCopy);
termCopy.copyRange(term, 1, 1, 5);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
fillSimple(termCopy, sCopy);
termCopy.copyRange(term, 0, 0, 6);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
fillSimple(termCopy, sCopy);
termCopy.copyRange(term, 7, 0, 1);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
try {
fillSimple(termCopy, sCopy);
termCopy.copyRange(term, 0, 7, 1);
fail();
} catch (RuntimeException e) {}
} catch (RuntimeException e) {
}
}
public void testCopyLine() {
ITerminalTextData term = makeITerminalTextData();
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
fill(term, s);
ITerminalTextData dest = makeITerminalTextData();
String sCopy=
"aaa\n" +
"bbb\n" +
"ccc\n" +
"ddd\n" +
"eee";
String sCopy = "aaa\n" + "bbb\n" + "ccc\n" + "ddd\n" + "eee";
fill(dest, sCopy);
copySelective(dest, term, 0, 0, new boolean[] { true, true, false, false, true });
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(
"111\n" +
"222\n" +
"ccc\n" +
"ddd\n" +
"555", toMultiLineText(dest));
assertEqualsTerm("111\n" + "222\n" + "ccc\n" + "ddd\n" + "555", toMultiLineText(dest));
fill(dest, sCopy);
copySelective(dest, term, 0, 0, new boolean[] { true, true, true, true, true });
@ -673,7 +564,9 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(sCopy, toMultiLineText(dest));
}
protected void copySelective(ITerminalTextData dest, ITerminalTextData source, int sourceStartLine, int destStartLine, boolean[] linesToCopy) {
protected void copySelective(ITerminalTextData dest, ITerminalTextData source, int sourceStartLine,
int destStartLine, boolean[] linesToCopy) {
for (int i = 0; i < linesToCopy.length; i++) {
if (linesToCopy[i]) {
dest.copyLine(source, i + sourceStartLine, i + destStartLine);
@ -683,39 +576,19 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
public void testCopyLineWithOffset() {
ITerminalTextData term = makeITerminalTextData();
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
fill(term, s);
ITerminalTextData dest = makeITerminalTextData();
String sCopy=
"aaa\n" +
"bbb\n" +
"ccc\n" +
"ddd\n" +
"eee";
String sCopy = "aaa\n" + "bbb\n" + "ccc\n" + "ddd\n" + "eee";
fill(dest, sCopy);
copySelective(dest, term, 1, 0, new boolean[] { true, false, false, true });
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(
"222\n" +
"bbb\n" +
"ccc\n" +
"555\n" +
"eee", toMultiLineText(dest));
assertEqualsTerm("222\n" + "bbb\n" + "ccc\n" + "555\n" + "eee", toMultiLineText(dest));
fill(dest, sCopy);
copySelective(dest, term, 2, 0, new boolean[] { true, true });
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(
"333\n" +
"444\n" +
"ccc\n" +
"ddd\n" +
"eee", toMultiLineText(dest));
assertEqualsTerm("333\n" + "444\n" + "ccc\n" + "ddd\n" + "eee", toMultiLineText(dest));
fill(dest, sCopy);
copySelective(dest, term, 0, 0, new boolean[] { true, true, true, true, true });
@ -727,17 +600,20 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(sCopy, toMultiLineText(dest));
}
public void testScrollNoop() {
scrollTest(0, 0, 0, "012345", "012345");
scrollTest(0, 1, 0, "012345", "012345");
scrollTest(0, 6, 0, "012345", "012345");
}
public void testScrollAll() {
scrollTest(0, 6, 1, "012345", " 01234");
scrollTest(0, 6, -1, "012345", "12345 ");
scrollTest(0, 6, 2, "012345", " 0123");
scrollTest(0, 6, -2, "012345", "2345 ");
}
public void testScrollNegative() {
scrollTest(0, 2, -1, "012345", "1 2345");
scrollTest(0, 1, -1, "012345", " 12345");
@ -752,6 +628,7 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
scrollTest(5, 1, -1, "012345", "01234 ");
scrollTest(5, 1, -1, "012345", "01234 ");
}
public void testScrollNegative2() {
scrollTest(0, 2, -1, " 23 ", " 23 ");
scrollTest(0, 1, -1, " 23 ", " 23 ");
@ -765,12 +642,15 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
scrollTest(5, 1, -1, " 23 ", " 23 ");
scrollTest(5, 1, -1, " 23 ", " 23 ");
}
public void testScrollNegative3() {
scrollTest(1, 5, -7, "012345", "0 ");
}
public void testScrollPositive2() {
scrollTest(2, 8, 20, "0123456789", "01 ");
}
public void testScrollPositive() {
scrollTest(0, 2, 1, "012345", " 02345");
scrollTest(0, 2, 2, "012345", " 2345");
@ -788,6 +668,7 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
scrollTest(0, 10, 9, "0123456789", " 0");
scrollTest(0, 6, 6, "012345", " ");
}
public void testScrollFail() {
try {
scrollTest(5, 2, -1, "012345", "012345");
@ -800,6 +681,7 @@ abstract public class AbstractITerminalTextDataTest extends TestCase {
} catch (RuntimeException e) {
}
}
/**
* Makes a simple shift test
* @param line scroll start

View file

@ -37,6 +37,7 @@ public class SnapshotChangesTest extends TestCase {
assertEquals(0, changes.getInterestWindowStartLine());
assertEquals(0, changes.getInterestWindowSize());
}
public void testSnapshotChangesWithWindow() {
SnapshotChanges changes = new SnapshotChanges(2, 5);
assertEquals(2, changes.getInterestWindowStartLine());
@ -60,6 +61,7 @@ public class SnapshotChangesTest extends TestCase {
assertFalse(changes.isInInterestWindow(7, 1));
assertFalse(changes.isInInterestWindow(8, 10));
}
public void testIsInInterestWindowIntIntNoWindow() {
SnapshotChanges changes = new SnapshotChanges(3);
for (int i = 0; i < 5; i++) {
@ -122,6 +124,7 @@ public class SnapshotChangesTest extends TestCase {
assertEquals(6, changes.fitLineToWindow(6));
assertEquals(7, changes.fitLineToWindow(7));
}
public void testFitSizeToWindow() {
SnapshotChanges changes = new SnapshotChanges(2, 3);
assertFalse(changes.isInInterestWindow(0, 1));
@ -149,6 +152,7 @@ public class SnapshotChangesTest extends TestCase {
assertFalse(changes.isInInterestWindow(5, 1));
}
public void testFitSizeToWindowNoWindow() {
SnapshotChanges changes = new SnapshotChanges(3);
assertEquals(1, changes.fitSizeToWindow(0, 1));
@ -188,6 +192,7 @@ public class SnapshotChangesTest extends TestCase {
assertLineChange(true, 2, 4, 5);
}
void assertLineChange(boolean expected, int windowStart, int windowSize, int changedLine) {
SnapshotChanges changes = new SnapshotChanges(windowStart, windowSize);
assertFalse(changes.hasChanged());
@ -207,6 +212,7 @@ public class SnapshotChangesTest extends TestCase {
}
}
public void testMarkLinesChanged() {
SnapshotChanges changes = new SnapshotChanges(2, 3);
assertFalse(changes.hasChanged());
@ -256,7 +262,6 @@ public class SnapshotChangesTest extends TestCase {
assertTrue(changes.hasChanged());
assertChangedLines(changes, "00111000000");
changes = new SnapshotChanges(2, 3);
changes.markLinesChanged(3, 4);
assertEquals(3, changes.getFirstChangedLine());
@ -285,6 +290,7 @@ public class SnapshotChangesTest extends TestCase {
assertFalse(changes.hasChanged());
assertChangedLines(changes, "00000000000");
}
public void testMarkLinesChangedNoWindow() {
SnapshotChanges changes = new SnapshotChanges(10);
assertFalse(changes.hasChanged());
@ -311,7 +317,6 @@ public class SnapshotChangesTest extends TestCase {
assertEquals(6, changes.getLastChangedLine());
assertChangedLines(changes, "011");
changes = new SnapshotChanges(10);
changes.markLinesChanged(5, 6);
assertTrue(changes.hasChanged());
@ -367,6 +372,7 @@ public class SnapshotChangesTest extends TestCase {
assertTrue(changes.hasChanged());
assertChangedLines(changes, "00111000000");
}
public void testSetAllChangedNoWindow() {
SnapshotChanges changes;
changes = new SnapshotChanges(5);
@ -414,6 +420,7 @@ public class SnapshotChangesTest extends TestCase {
assertEquals(0, changes.getScrollWindowShift());
assertChangedLines(changes, "111100");
}
public void testScrollNoWindow() {
SnapshotChanges changes;
changes = new SnapshotChanges(7);
@ -461,6 +468,7 @@ public class SnapshotChangesTest extends TestCase {
assertChangedLines(changes, "1111111");
}
public void testScroll() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -483,6 +491,7 @@ public class SnapshotChangesTest extends TestCase {
assertTrue(changes.hasChanged());
assertChangedLines(changes, "0001100000");
}
public void testScrollNergative() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -497,6 +506,7 @@ public class SnapshotChangesTest extends TestCase {
assertChangedLines(changes, "0001100000");
}
public void testScrollPositive() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -588,6 +598,7 @@ public class SnapshotChangesTest extends TestCase {
changes.copyChangedLines(dest, source);
assertEquals("abcd4fghijk", TerminalTextTestHelper.toSimple(dest));
}
public void testCopyChangedLinesWithSmallSource() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -598,6 +609,7 @@ public class SnapshotChangesTest extends TestCase {
dest.setWindow(2, 2);
changes.copyChangedLines(dest, source);
}
public void testCopyChangedLinesWithSmallSource1() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -634,7 +646,6 @@ public class SnapshotChangesTest extends TestCase {
changes.convertScrollingIntoChanges();
assertChangedLines(changes, "0001111");
changes = new SnapshotChanges(2, 3);
// move the window
changes.setInterestWindow(6, 3);
@ -654,6 +665,7 @@ public class SnapshotChangesTest extends TestCase {
assertChangedLines(changes, "0000011000");
}
public void testSetInterestWindowSize2() {
SnapshotChanges changes;
changes = new SnapshotChanges(2, 3);
@ -666,7 +678,6 @@ public class SnapshotChangesTest extends TestCase {
changes.setInterestWindow(1, 4);
assertChangedLines(changes, "01111000");
changes = new SnapshotChanges(2, 3);
// expand the window
changes.setInterestWindow(6, 3);

View file

@ -19,19 +19,23 @@ import org.eclipse.tm.terminal.model.StyleColor;
public class TerminalTextDataPerformanceTest extends TestCase {
long TIME = 100;
private void initPerformance(ITerminalTextData term) {
term.setDimensions(300, 200);
}
public void testPerformance0() {
ITerminalTextData term = new TerminalTextData();
method0(term, "0 ");
}
public void testPerformance0a() {
ITerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
method0(term, "0a");
snapshot.updateSnapshot(true);
}
public void testPerformance0b() {
ITerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -39,12 +43,15 @@ public class TerminalTextDataPerformanceTest extends TestCase {
snapshot.addListener(new ITerminalTextDataSnapshot.SnapshotOutOfDateListener() {
public void snapshotOutOfDate(ITerminalTextDataSnapshot snapshot) {
N++;
}});
}
});
method0(term, "0b");
snapshot.updateSnapshot(true);
}
private void method0(ITerminalTextData term, String label) {
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
String s = "This is a test string";
long n = 0;
@ -58,21 +65,25 @@ public class TerminalTextDataPerformanceTest extends TestCase {
}
}
if (System.currentTimeMillis() - t0 > TIME) {
System.out.println(label+" "+(n*1000)/(System.currentTimeMillis()-t0)+" setChar()/sec "+ N);
System.out
.println(label + " " + (n * 1000) / (System.currentTimeMillis() - t0) + " setChar()/sec " + N);
break;
}
}
}
public void testPerformance1() {
ITerminalTextData term = new TerminalTextData();
method1(term, "1 ");
}
public void testPerformance1a() {
ITerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
method1(term, "1a");
snapshot.updateSnapshot(true);
}
public void testPerformance1b() {
ITerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -80,12 +91,15 @@ public class TerminalTextDataPerformanceTest extends TestCase {
snapshot.addListener(new ITerminalTextDataSnapshot.SnapshotOutOfDateListener() {
public void snapshotOutOfDate(ITerminalTextDataSnapshot snapshot) {
N++;
}});
}
});
method1(term, "1b");
snapshot.updateSnapshot(true);
}
private void method1(ITerminalTextData term, String label) {
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
String s = "This is a test string";
long n = 0;
@ -100,14 +114,17 @@ public class TerminalTextDataPerformanceTest extends TestCase {
n += chars.length;
}
if (System.currentTimeMillis() - t0 > TIME) {
System.out.println(label+" "+(n*1000)/(System.currentTimeMillis()-t0)+" setChars()/sec "+ N);
System.out
.println(label + " " + (n * 1000) / (System.currentTimeMillis() - t0) + " setChars()/sec " + N);
break;
}
}
}
public void testPerformance2() {
TerminalTextData term = new TerminalTextData();
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
TerminalTextData copy = new TerminalTextData();
copy.copy(term);
@ -131,10 +148,12 @@ public class TerminalTextDataPerformanceTest extends TestCase {
}
}
}
public void testPerformance2a() {
TerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
TerminalTextData copy = new TerminalTextData();
copy.copy(term);
@ -159,7 +178,9 @@ public class TerminalTextDataPerformanceTest extends TestCase {
}
snapshot.updateSnapshot(true);
}
int N = 0;
public void testPerformance2b() {
TerminalTextData term = new TerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -167,8 +188,10 @@ public class TerminalTextDataPerformanceTest extends TestCase {
snapshot.addListener(new ITerminalTextDataSnapshot.SnapshotOutOfDateListener() {
public void snapshotOutOfDate(ITerminalTextDataSnapshot snapshot) {
N++;
}});
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
}
});
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
TerminalTextData copy = new TerminalTextData();
copy.copy(term);
@ -193,9 +216,11 @@ public class TerminalTextDataPerformanceTest extends TestCase {
}
snapshot.updateSnapshot(true);
}
public void testPerformance3() {
TerminalTextData term = new TerminalTextData();
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
initPerformance(term);
TerminalTextData copy = new TerminalTextData();
copy.copy(term);

View file

@ -27,14 +27,9 @@ public class TerminalTextDataSnapshotTest extends TestCase {
return new TerminalTextData();
}
public void testTerminalTextDataSnapshot() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -54,11 +49,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testDetach() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -72,13 +63,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
term.setDimensions(2, 2);
assertEquals(s, toMultiLineText(snapshot));
}
public void testIsOutOfDate() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -144,6 +132,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertFalse(snapshot.isOutOfDate());
}
ITerminalTextDataSnapshot snapshot(String text, ITerminalTextData term) {
TerminalTextTestHelper.fill(term, text);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -152,13 +141,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
return snapshot;
}
public void testUpdateSnapshot() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
String termString = toMultiLineText(term);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -236,12 +222,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
}
public void testMaxSize() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
term.setMaxHeight(8);
TerminalTextTestHelper.fill(term, s);
@ -275,14 +256,9 @@ public class TerminalTextDataSnapshotTest extends TestCase {
}
public void testGetChar() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextData termUnchanged = makeITerminalTextData();
TerminalTextTestHelper.fill(termUnchanged, s);
@ -315,11 +291,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testGetHeight() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -337,6 +309,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
term.setDimensions(term.getHeight() - 1, term.getWidth());
assertEquals(expectedHeight, snapshot.getHeight());
}
//
// public void testGetLineSegments() {
// fail("Not yet implemented");
@ -344,7 +317,8 @@ public class TerminalTextDataSnapshotTest extends TestCase {
//
public void testGetStyle() {
ITerminalTextData term = makeITerminalTextData();
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
term.setDimensions(6, 3);
for (int line = 0; line < term.getHeight(); line++) {
for (int column = 0; column < term.getWidth(); column++) {
@ -355,7 +329,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
snapshot.updateSnapshot(false);
for (int line = 0; line < term.getHeight(); line++) {
for (int column = 0; column < term.getWidth(); column++) {
char c = (char) ('a' + column + line);
@ -367,11 +340,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testGetWidth() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -392,14 +361,9 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testGetFirstChangedLine() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
ITerminalTextDataSnapshot snapshot = snapshot(s, term);
assertEquals(0, snapshot.getFirstChangedLine());
// if nothing has changed the first changed line i height
@ -441,16 +405,12 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(1, snapshot.getFirstChangedLine());
}
public void testGetLastChangedLine() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
ITerminalTextDataSnapshot snapshot = snapshot(s, term);
assertEquals(4, snapshot.getLastChangedLine());
// if nothing has changed the first changed line i height
@ -497,6 +457,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(3, snapshot.getLastChangedLine());
}
/**
* @param snapshot
* @param expected a string of 0 and 1 (1 means changed)
@ -512,18 +473,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
}
assertEquals(expected, buffer.toString());
}
public void testHasLineChangedScroll() {
ITerminalTextData term = makeITerminalTextData();
String s="00\n" +
"11\n" +
"22\n" +
"33\n" +
"44\n" +
"55\n" +
"66\n" +
"77\n" +
"88\n" +
"99";
String s = "00\n" + "11\n" + "22\n" + "33\n" + "44\n" + "55\n" + "66\n" + "77\n" + "88\n" + "99";
ITerminalTextDataSnapshot snapshot = snapshot(s, term);
term.scroll(2, 3, -1);
@ -556,7 +509,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
snapshot.updateSnapshot(true);
assertChangedLines(snapshot, "0011110000");
snapshot = snapshot(s, term);
term.scroll(2, 3, -1);
snapshot.updateSnapshot(false);
@ -573,18 +525,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
snapshot.updateSnapshot(false);
assertChangedLines(snapshot, "0011110000");
}
public void testMultiScrollWithDifferentSizes() {
ITerminalTextData term = makeITerminalTextData();
String s="00\n" +
"11\n" +
"22\n" +
"33\n" +
"44\n" +
"55\n" +
"66\n" +
"77\n" +
"88\n" +
"99";
String s = "00\n" + "11\n" + "22\n" + "33\n" + "44\n" + "55\n" + "66\n" + "77\n" + "88\n" + "99";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -611,18 +555,11 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, snapshot.getScrollWindowSize());
assertEquals(0, snapshot.getScrollWindowStartLine());
}
public void testHasLineChanged() {
ITerminalTextData term = makeITerminalTextData();
String s="000000\n" +
"111111\n" +
"222222\n" +
"333333\n" +
"444444\n" +
"555555\n" +
"666666\n" +
"777777\n" +
"888888\n" +
"999999";
String s = "000000\n" + "111111\n" + "222222\n" + "333333\n" + "444444\n" + "555555\n" + "666666\n" + "777777\n"
+ "888888\n" + "999999";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -652,7 +589,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
snapshot.updateSnapshot(true);
assertChangedLines(snapshot, "0001001110");
snapshot = snapshot(s, term);
term.scroll(2, 7, -1);
term.setChar(5, 2, '.', null);
@ -664,16 +600,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testScroll() {
ITerminalTextData term = makeITerminalTextData();
String s="00\n" +
"11\n" +
"22\n" +
"33\n" +
"44\n" +
"55\n" +
"66\n" +
"77\n" +
"88\n" +
"99";
String s = "00\n" + "11\n" + "22\n" + "33\n" + "44\n" + "55\n" + "66\n" + "77\n" + "88\n" + "99";
ITerminalTextDataSnapshot snapshot = snapshot(s, term);
term.scroll(2, 3, -1);
@ -701,7 +628,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(4, snapshot.getFirstChangedLine());
assertEquals(5, snapshot.getLastChangedLine());
snapshot = snapshot(s, term);
term.scroll(2, 3, -1);
snapshot.updateSnapshot(false);
@ -712,18 +638,11 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(4, snapshot.getLastChangedLine());
}
public void testDisjointScroll() {
ITerminalTextData term = makeITerminalTextData();
String s="000000\n" +
"111111\n" +
"222222\n" +
"333333\n" +
"444444\n" +
"555555\n" +
"666666\n" +
"777777\n" +
"888888\n" +
"999999";
String s = "000000\n" + "111111\n" + "222222\n" + "333333\n" + "444444\n" + "555555\n" + "666666\n" + "777777\n"
+ "888888\n" + "999999";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -773,12 +692,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, snapshot.getScrollWindowSize());
assertEquals(0, snapshot.getScrollWindowShift());
}
public void testResize() {
ITerminalTextData term = makeITerminalTextData();
String s="000000\n" +
"111111\n" +
"222222\n" +
"333333";
String s = "000000\n" + "111111\n" + "222222\n" + "333333";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -822,18 +739,11 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, snapshot.getScrollWindowShift());
}
public void testResizeAfterScroll() {
ITerminalTextData term = makeITerminalTextData();
String s="000000\n" +
"111111\n" +
"222222\n" +
"333333\n" +
"444444\n" +
"555555\n" +
"666666\n" +
"777777\n" +
"888888\n" +
"999999";
String s = "000000\n" + "111111\n" + "222222\n" + "333333\n" + "444444\n" + "555555\n" + "666666\n" + "777777\n"
+ "888888\n" + "999999";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -864,18 +774,11 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, snapshot.getScrollWindowSize());
assertEquals(0, snapshot.getScrollWindowShift());
}
public void testScrollAfterResize() {
ITerminalTextData term = makeITerminalTextData();
String s="000000\n" +
"111111\n" +
"222222\n" +
"333333\n" +
"444444\n" +
"555555\n" +
"666666\n" +
"777777\n" +
"888888\n" +
"999999";
String s = "000000\n" + "111111\n" + "222222\n" + "333333\n" + "444444\n" + "555555\n" + "666666\n" + "777777\n"
+ "888888\n" + "999999";
ITerminalTextDataSnapshot snapshot;
snapshot = snapshot(s, term);
@ -887,11 +790,14 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, snapshot.getScrollWindowSize());
assertEquals(0, snapshot.getScrollWindowShift());
}
private final class SnapshotListener implements ITerminalTextDataSnapshot.SnapshotOutOfDateListener {
int N;
public void snapshotOutOfDate(ITerminalTextDataSnapshot snapshot) {
N++;
}
public void reset() {
N = 0;
}
@ -899,11 +805,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testAddListener() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -989,11 +891,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
public void testRemoveListener() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -1035,7 +933,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(1, listener2.N);
assertEquals(1, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
@ -1058,7 +955,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(0, listener2.N);
assertEquals(1, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(0, listener2.N);
@ -1069,7 +965,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
listener2.reset();
listener3.reset();
snapshot.removeListener(listener3);
// scroll
term.scroll(1, 2, 1);
@ -1082,7 +977,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(1, listener2.N);
assertEquals(0, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
@ -1107,7 +1001,6 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(1, listener2.N);
assertEquals(2, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
@ -1119,14 +1012,12 @@ public class TerminalTextDataSnapshotTest extends TestCase {
// remove the duplicate listener
snapshot.removeListener(listener3);
// scroll
term.scroll(1, 2, 1);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
assertEquals(1, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
@ -1136,14 +1027,12 @@ public class TerminalTextDataSnapshotTest extends TestCase {
listener2.reset();
listener3.reset();
// setDimensions
term.setDimensions(2, 2);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
assertEquals(1, listener3.N);
snapshot.updateSnapshot(false);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
@ -1153,17 +1042,16 @@ public class TerminalTextDataSnapshotTest extends TestCase {
listener2.reset();
listener3.reset();
// setDimensions
term.setDimensions(20, 20);
assertEquals(1, listener1.N);
assertEquals(1, listener2.N);
assertEquals(1, listener3.N);
snapshot.updateSnapshot(false);
assertFalse(snapshot.isOutOfDate());
}
public void testWindowOfInterest() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1173,6 +1061,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
snapshot.setInterestWindow(9, 4);
snapshot.updateSnapshot(false);
}
public void testWindowOfInterest2() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1182,6 +1071,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
snapshot.setInterestWindow(9, 4);
snapshot.updateSnapshot(false);
}
public void testAddLine() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1210,6 +1100,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(13, term.getHeight());
assertEquals(20, term.getMaxHeight());
}
public void testHasDimensionsChanged() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1241,6 +1132,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(13, term.getHeight());
assertEquals(20, term.getMaxHeight());
}
public void testCursor() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1259,6 +1151,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertEquals(3, snapshot.getCursorLine());
assertEquals(2, snapshot.getCursorColumn());
}
public void testCursor2() {
ITerminalTextData term = makeITerminalTextData();
TerminalTextTestHelper.fillSimple(term, "0123456789");
@ -1272,13 +1165,10 @@ public class TerminalTextDataSnapshotTest extends TestCase {
term.setCursorColumn(1);
assertTrue(snapshot.isOutOfDate());
}
public void testHasTerminalChanged() {
ITerminalTextData term = makeITerminalTextData();
String s="12345\n" +
"abcde\n" +
"ABCDE\n" +
"vwxzy\n" +
"VWXYZ";
String s = "12345\n" + "abcde\n" + "ABCDE\n" + "vwxzy\n" + "VWXYZ";
TerminalTextTestHelper.fill(term, s);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
@ -1336,6 +1226,7 @@ public class TerminalTextDataSnapshotTest extends TestCase {
assertFalse(snapshot.hasTerminalChanged());
}
public void testGetTerminalTextData() {
ITerminalTextData term = makeITerminalTextData();
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();

View file

@ -20,6 +20,7 @@ public class TerminalTextDataSnapshotWindowTest extends TestCase {
String toMultiLineText(ITerminalTextDataReadOnly term) {
return TerminalTextTestHelper.toMultiLineText(term);
}
String toSimpleText(ITerminalTextDataReadOnly term) {
return TerminalTextTestHelper.toSimple(term);
}
@ -27,12 +28,14 @@ public class TerminalTextDataSnapshotWindowTest extends TestCase {
protected ITerminalTextData makeITerminalTextData() {
return new TerminalTextData();
}
ITerminalTextDataSnapshot snapshotSimple(String text, ITerminalTextData term) {
TerminalTextTestHelper.fillSimple(term, text);
ITerminalTextDataSnapshot snapshot = term.makeSnapshot();
return snapshot;
}
/**
* @param snapshot
* @param expected a string of 0 and 1 (1 means changed)
@ -60,6 +63,7 @@ public class TerminalTextDataSnapshotWindowTest extends TestCase {
snapshot.updateSnapshot(false);
assertChangedLines(snapshot, "0011100000");
}
public void testSetChar() {
ITerminalTextData term = makeITerminalTextData();
ITerminalTextDataSnapshot snapshot = snapshotSimple("0123456789", term);
@ -146,6 +150,7 @@ public class TerminalTextDataSnapshotWindowTest extends TestCase {
snapshot.updateSnapshot(false);
assertChangedLines(snapshot, "0011100000");
}
public void testSetChars2() {
ITerminalTextData term = makeITerminalTextData();
ITerminalTextDataSnapshot snapshot = snapshotSimple("0123456789", term);

View file

@ -23,15 +23,18 @@ import org.eclipse.tm.terminal.model.StyleColor;
public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
int fOffset;
int fSize;
public TerminalTextDataWindowTest() {
fOffset = 2;
fSize = 2;
}
protected ITerminalTextData makeITerminalTextData() {
TerminalTextDataWindow term = new TerminalTextDataWindow();
term.setWindow(fOffset, fSize);
return term;
}
/**
* Used for multi line text
* @param expected
@ -40,6 +43,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
protected void assertEqualsTerm(String expected, String actual) {
assertEquals(stripMultiLine(expected), stripMultiLine(actual));
}
private String stripMultiLine(String s) {
StringBuffer b = new StringBuffer();
// String[] lines=s.split("\n");
@ -72,6 +76,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
}
return b.toString();
}
/**
* Used for simple text
* @param expected
@ -80,6 +85,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
protected void assertEqualsSimple(String expected, String actual) {
assertEquals(stripSimple(expected), stripSimple(actual));
}
String stripSimple(String s) {
StringBuffer b = new StringBuffer();
for (int i = 0; i < s.length(); i++) {
@ -90,31 +96,17 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
}
return b.toString();
}
public void testAddLine() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
fill(term, s);
term.addLine();
assertEqualsTerm(
"222\n" +
"333\n" +
"444\n" +
"\0\0\0\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("222\n" + "333\n" + "444\n" + "\0\0\0\n" + "\000\000\000", toMultiLineText(term));
}
public void testMaxSize() {
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
ITerminalTextData term = makeITerminalTextData();
term.setMaxHeight(8);
fill(term, s);
@ -122,45 +114,20 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEquals(8, term.getMaxHeight());
term.addLine();
assertEquals(6, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000", toMultiLineText(term));
term.addLine();
assertEquals(7, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000",
toMultiLineText(term));
term.addLine();
assertEquals(8, term.getHeight());
assertEqualsTerm(
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
"111\n" + "222\n" + "333\n" + "444\n" + "555\n" + "\000\000\000\n" + "\000\000\000\n" + "\000\000\000",
toMultiLineText(term));
term.addLine();
assertEquals(8, term.getHeight());
assertEqualsTerm(
"222\n" +
"333\n" +
"444\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000\n" +
"\000\000\000", toMultiLineText(term));
assertEqualsTerm("222\n" + "333\n" + "444\n" + "\000\000\000\n" + "\000\000\000\n" + "\000\000\000\n"
+ "\000\000\000\n" + "\000\000\000", toMultiLineText(term));
}
public void testGetLineSegments() {
@ -178,7 +145,6 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertSegment(0, "0123", s1, segments[0]);
assertSegment(4, "abcd", null, segments[1]);
segments = term.getLineSegments(2, 4, term.getWidth() - 4);
assertEquals(1, segments.length);
assertSegment(4, "abcd", null, segments[0]);
@ -211,10 +177,9 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertSegment(0, "\000\000\000\000\000\000\000\000", null, segments[0]);
}
public void testGetChar() {
String s="12345\n" +
"abcde\n" +
"ABCDE";
String s = "12345\n" + "abcde\n" + "ABCDE";
ITerminalTextData term = makeITerminalTextData();
fill(term, s);
assertEquals('\000', term.getChar(0, 0));
@ -233,6 +198,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEquals('D', term.getChar(2, 3));
assertEquals('E', term.getChar(2, 4));
}
public void testGetStyle() {
ITerminalTextData term = makeITerminalTextData();
Style style = getDefaultStyle();
@ -254,6 +220,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
}
}
public void testSetChar() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(6, 3);
@ -270,13 +237,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEquals(c, term.getChar(line, column));
}
}
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "def\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "def\n" + "efg\n" + "fgh", toMultiLineText(term));
}
public void testSetChars() {
@ -297,74 +258,43 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEquals(c, term.getChar(line, column));
}
}
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "def\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "def\n" + "efg\n" + "fgh", toMultiLineText(term));
term.setChars(3, 1, new char[] { '1', '2' }, null);
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "d12\n"
+ "efg\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "d12\n" + "efg\n" + "fgh", toMultiLineText(term));
// check if chars are correctly chopped
term.setChars(4, 1, new char[] { '1', '2', '3', '4', '5' }, null);
assertEqualsTerm(
"abc\n"
+ "bcd\n"
+ "cde\n"
+ "d12\n"
+ "e12\n"
+ "fgh", toMultiLineText(term));
assertEqualsTerm("abc\n" + "bcd\n" + "cde\n" + "d12\n" + "e12\n" + "fgh", toMultiLineText(term));
}
public void testSetCharsLen() {
ITerminalTextData term = makeITerminalTextData();
String s= "ZYXWVU\n"
+ "abcdef\n"
+ "ABCDEF";
String s = "ZYXWVU\n" + "abcdef\n" + "ABCDEF";
fill(term, s);
char[] chars = new char[] { '1', '2', '3', '4', '5', '6', '7', '8' };
term.setChars(1, 0, chars, 0, 6, null);
assertEqualsTerm(
"ZYXWVU\n"
+ "123456\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "123456\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 0, chars, 0, 5, null);
assertEqualsTerm("ZYXWVU\n"
+ "12345f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "12345f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 0, chars, 1, 5, null);
assertEqualsTerm("ZYXWVU\n"
+ "23456f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "23456f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 1, chars, 1, 4, null);
assertEqualsTerm("ZYXWVU\n"
+ "a2345f\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "a2345f\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
term.setChars(1, 2, chars, 3, 4, null);
assertEqualsTerm("ZYXWVU\n"
+ "ab4567\n"
+ "ABCDEF", toMultiLineText(term));
assertEqualsTerm("ZYXWVU\n" + "ab4567\n" + "ABCDEF", toMultiLineText(term));
fill(term, s);
}
public void testSetCopyLines() {
ITerminalTextData term = new TerminalTextDataStore();
String s = "012345";
@ -406,6 +336,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEqualsSimple(s, toSimple(term));
assertEqualsSimple("a2345", toSimple(termCopy));
}
public void testScrollNegative() {
scrollTest(0, 2, -1, " 23 ", " 23 ");
scrollTest(0, 1, -1, " 23 ", " 23 ");
@ -419,47 +350,29 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
scrollTest(5, 1, -1, " 23 ", " 23 ");
scrollTest(5, 1, -1, " 23 ", " 23 ");
}
public void testScrollAll() {
scrollTest(0, 6, 1, " 2345", " 2 ");
scrollTest(0, 6, -1, " 2345", " 3 ");
scrollTest(0, 6, 2, " 2345", " ");
scrollTest(0, 6, -2, " 2345", " ");
}
public void testCopyLineWithOffset() {
ITerminalTextData term = makeITerminalTextData();
String s=
"111\n" +
"222\n" +
"333\n" +
"444\n" +
"555";
String s = "111\n" + "222\n" + "333\n" + "444\n" + "555";
fill(term, s);
ITerminalTextData dest = makeITerminalTextData();
String sCopy=
"aaa\n" +
"bbb\n" +
"ccc\n" +
"ddd\n" +
"eee";
String sCopy = "aaa\n" + "bbb\n" + "ccc\n" + "ddd\n" + "eee";
fill(dest, sCopy);
copySelective(dest, term, 1, 0, new boolean[] { true, false, false, true });
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(
"222\n" +
"bbb\n" +
"ccc\n" +
"\00\00\00\n" +
"eee", toMultiLineText(dest));
assertEqualsTerm("222\n" + "bbb\n" + "ccc\n" + "\00\00\00\n" + "eee", toMultiLineText(dest));
fill(dest, sCopy);
copySelective(dest, term, 2, 0, new boolean[] { true, true });
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(
"333\n" +
"444\n" +
"ccc\n" +
"ddd\n" +
"eee", toMultiLineText(dest));
assertEqualsTerm("333\n" + "444\n" + "ccc\n" + "ddd\n" + "eee", toMultiLineText(dest));
fill(dest, sCopy);
copySelective(dest, term, 0, 0, new boolean[] { true, true, true, true, true });
@ -471,6 +384,7 @@ public class TerminalTextDataWindowTest extends AbstractITerminalTextDataTest {
assertEqualsTerm(s, toMultiLineText(term));
assertEqualsTerm(sCopy, toMultiLineText(dest));
}
public void testCopy() {
ITerminalTextData term = makeITerminalTextData();
term.setDimensions(3, 1);

View file

@ -22,6 +22,7 @@ public class TerminalTextTestHelper {
static public String toSimple(ITerminalTextDataReadOnly term) {
return toSimple(toMultiLineText(term));
}
static public String toMultiLineText(ITerminalTextDataReadOnly term) {
StringBuffer buff = new StringBuffer();
int width = term.getWidth();
@ -34,6 +35,7 @@ public class TerminalTextTestHelper {
}
return buff.toString();
}
static public String toSimple(String str) {
//return str.replaceAll("\000", " ").replaceAll("\n", "");
// <J2ME CDC-1.1 Foundation-1.1 variant>
@ -54,18 +56,21 @@ public class TerminalTextTestHelper {
return buf.toString();
// </J2ME CDC-1.1 Foundation-1.1 variant>
}
/**
* @param term
* @param s each character is one line
*/
static public void fillSimple(ITerminalTextData term, String s) {
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
term.setDimensions(s.length(), 1);
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
term.setChar(i, 0, c, style.setForground(StyleColor.getStyleColor("" + c)));
}
}
/**
* @param term
* @param s lines separated by \n. The terminal will automatically
@ -94,7 +99,8 @@ public class TerminalTextTestHelper {
static public void fill(ITerminalTextData term, int column, int line, String s) {
int xx = column;
int yy = line;
Style style=Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false, false, false);
Style style = Style.getStyle(StyleColor.getStyleColor("fg"), StyleColor.getStyleColor("bg"), false, false,
false, false);
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (c == '\n') {

View file

@ -26,12 +26,14 @@ public class SpeedTestConnection extends Thread {
private final ITerminalControl fControl;
private final InputStream fInputStream;
private final SpeedTestSettings fSettings;
protected SpeedTestConnection(InputStream inputStream, SpeedTestSettings settings, ITerminalControl control) {
super("SpeedTestConnection-" + fgNo++);
fControl = control;
fInputStream = inputStream;
fSettings = settings;
}
public void run() {
fControl.setState(TerminalState.CONNECTED);
@ -43,12 +45,14 @@ public class SpeedTestConnection extends Thread {
// when reading is done, we set the state to closed
fControl.setState(TerminalState.CLOSED);
}
private void connectFailed(String terminalText, String msg) {
Logger.log(terminalText);
fControl.displayTextInTerminal(terminalText);
fControl.setState(TerminalState.CLOSED);
fControl.setMsg(msg);
}
/**
* Read the data from the input file and display it in the terminal.
* @param in
@ -99,6 +103,7 @@ public class SpeedTestConnection extends Thread {
}
} while (line != null);
}
private void sleep(int ms) {
try {
Thread.sleep(ms);
@ -106,11 +111,13 @@ public class SpeedTestConnection extends Thread {
Thread.currentThread().interrupt();
}
}
private void setTitle(final String title) {
Display.getDefault().asyncExec(new Runnable() {
public void run() {
fControl.setTerminalTitle(title);
}});
}
});
}
}

View file

@ -31,8 +31,10 @@ public class SpeedTestConnector extends TerminalConnectorImpl {
InputStream fInputStream;
OutputStream fOutputStream;
SpeedTestConnection fConnection;
public SpeedTestConnector() {
}
synchronized public void connect(ITerminalControl control) {
super.connect(control);
fControl.setState(TerminalState.CONNECTING);
@ -72,6 +74,7 @@ public class SpeedTestConnector extends TerminalConnectorImpl {
}
fOutputStream = null;
}
synchronized public InputStream getInputStream() {
return fInputStream;
}

Some files were not shown because too many files have changed in this diff Show more