From 1bbe4be78410597d6c5806fac0e5b8ea5b2c5ef5 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Tue, 7 Apr 2015 10:30:57 -0400 Subject: [PATCH] Bug 463844 - Support serial port connection type. This adds a remote connection type that uses the CDT Native serial port driver. Really all this is supported is the command shell for the Remote Terminal. But it's a great example of something very different from SSH and Local that supports the same common infra structure such as the Terminal. Change-Id: I813e26370d3d137d5158fa63deba4b0820cdd596 Signed-off-by: Doug Schaefer --- bundles/.gitignore | 1 + .../internal/core/RemoteServicesManager.java | 4 +- .../jsch/ui/wizards/JSchConnectionPage.java | 2 +- .../org.eclipse.remote.serial.core/.classpath | 7 + .../org.eclipse.remote.serial.core/.gitignore | 1 + .../org.eclipse.remote.serial.core/.project | 28 ++ .../.settings/org.eclipse.jdt.core.prefs | 7 + .../META-INF/MANIFEST.MF | 14 + .../org.eclipse.remote.serial.core/about.html | 22 ++ .../org.eclipse.remote.serial.core/about.ini | 27 ++ .../about.mappings | 6 + .../about.properties | 22 ++ .../build.properties | 10 + .../plugin.properties | 2 + .../org.eclipse.remote.serial.core/plugin.xml | 23 ++ .../org.eclipse.remote.serial.core/pom.xml | 16 + .../ptp_logo_icon32.png | Bin 0 -> 53143 bytes .../serial/core/ISerialPortService.java | 27 ++ .../serial/core/SerialPortCommandShell.java | 113 ++++++ .../serial/core/SerialPortConnection.java | 82 +++++ .../serial/internal/core/Activator.java | 43 +++ .../remote/serial/internal/core/Messages.java | 26 ++ .../serial/internal/core/messages.properties | 11 + .../org.eclipse.remote.serial.ui/.classpath | 7 + .../org.eclipse.remote.serial.ui/.gitignore | 1 + bundles/org.eclipse.remote.serial.ui/.project | 28 ++ .../.settings/org.eclipse.jdt.core.prefs | 7 + .../META-INF/MANIFEST.MF | 16 + .../org.eclipse.remote.serial.ui/about.html | 22 ++ .../org.eclipse.remote.serial.ui/about.ini | 27 ++ .../about.mappings | 6 + .../about.properties | 22 ++ .../build.properties | 10 + .../plugin.properties | 2 + .../org.eclipse.remote.serial.ui/plugin.xml | 13 + bundles/org.eclipse.remote.serial.ui/pom.xml | 16 + .../ptp_logo_icon32.png | Bin 0 -> 53143 bytes .../remote/serial/internal/ui/Activator.java | 69 ++++ .../remote/serial/internal/ui/Messages.java | 33 ++ .../ui/NewSerialPortConnectionWizard.java | 96 +++++ .../ui/NewSerialPortConnectionWizardPage.java | 183 ++++++++++ .../internal/ui/SerialPortConnectionsUI.java | 73 ++++ .../serial/internal/ui/messages.properties | 18 + .../connector/RemoteConnectionManager.java | 7 +- .../terminal/settings/RemoteSettingsPage.java | 14 +- .../ui/widgets/RemoteConnectionWidget.java | 74 +++- .../.project | 17 + .../build.properties | 4 + .../eclipse_update_120.jpg | Bin 0 -> 21695 bytes .../epl-v10.html | 328 ++++++++++++++++++ .../feature.properties | 24 ++ .../feature.xml | 36 ++ .../org.eclipse.remote.serial-feature/pom.xml | 49 +++ releng/org.eclipse.remote.build/mars.target | 5 + releng/org.eclipse.remote.build/pom.xml | 16 +- 55 files changed, 1696 insertions(+), 21 deletions(-) create mode 100644 bundles/.gitignore create mode 100644 bundles/org.eclipse.remote.serial.core/.classpath create mode 100644 bundles/org.eclipse.remote.serial.core/.gitignore create mode 100644 bundles/org.eclipse.remote.serial.core/.project create mode 100644 bundles/org.eclipse.remote.serial.core/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/org.eclipse.remote.serial.core/META-INF/MANIFEST.MF create mode 100644 bundles/org.eclipse.remote.serial.core/about.html create mode 100644 bundles/org.eclipse.remote.serial.core/about.ini create mode 100644 bundles/org.eclipse.remote.serial.core/about.mappings create mode 100644 bundles/org.eclipse.remote.serial.core/about.properties create mode 100644 bundles/org.eclipse.remote.serial.core/build.properties create mode 100644 bundles/org.eclipse.remote.serial.core/plugin.properties create mode 100644 bundles/org.eclipse.remote.serial.core/plugin.xml create mode 100644 bundles/org.eclipse.remote.serial.core/pom.xml create mode 100644 bundles/org.eclipse.remote.serial.core/ptp_logo_icon32.png create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/ISerialPortService.java create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortCommandShell.java create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortConnection.java create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Activator.java create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Messages.java create mode 100644 bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/messages.properties create mode 100644 bundles/org.eclipse.remote.serial.ui/.classpath create mode 100644 bundles/org.eclipse.remote.serial.ui/.gitignore create mode 100644 bundles/org.eclipse.remote.serial.ui/.project create mode 100644 bundles/org.eclipse.remote.serial.ui/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/org.eclipse.remote.serial.ui/META-INF/MANIFEST.MF create mode 100644 bundles/org.eclipse.remote.serial.ui/about.html create mode 100644 bundles/org.eclipse.remote.serial.ui/about.ini create mode 100644 bundles/org.eclipse.remote.serial.ui/about.mappings create mode 100644 bundles/org.eclipse.remote.serial.ui/about.properties create mode 100644 bundles/org.eclipse.remote.serial.ui/build.properties create mode 100644 bundles/org.eclipse.remote.serial.ui/plugin.properties create mode 100644 bundles/org.eclipse.remote.serial.ui/plugin.xml create mode 100644 bundles/org.eclipse.remote.serial.ui/pom.xml create mode 100644 bundles/org.eclipse.remote.serial.ui/ptp_logo_icon32.png create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Activator.java create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Messages.java create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizard.java create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizardPage.java create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/SerialPortConnectionsUI.java create mode 100644 bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/messages.properties create mode 100644 features/org.eclipse.remote.serial-feature/.project create mode 100644 features/org.eclipse.remote.serial-feature/build.properties create mode 100644 features/org.eclipse.remote.serial-feature/eclipse_update_120.jpg create mode 100644 features/org.eclipse.remote.serial-feature/epl-v10.html create mode 100644 features/org.eclipse.remote.serial-feature/feature.properties create mode 100644 features/org.eclipse.remote.serial-feature/feature.xml create mode 100644 features/org.eclipse.remote.serial-feature/pom.xml diff --git a/bundles/.gitignore b/bundles/.gitignore new file mode 100644 index 00000000000..ae3c1726048 --- /dev/null +++ b/bundles/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteServicesManager.java b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteServicesManager.java index 5b1008593c2..c72b4aea2ea 100644 --- a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteServicesManager.java +++ b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteServicesManager.java @@ -162,7 +162,7 @@ public class RemoteServicesManager implements IRemoteServicesManager { @SafeVarargs public final List getConnectionTypesSupporting(Class... services) { List connTypes = new ArrayList(); - for (IRemoteConnectionType connType : getRemoteConnectionTypes()) { + for (IRemoteConnectionType connType : getAllConnectionTypes()) { for (Class service : services) { if (!connType.hasConnectionService(service)) { connTypes.add(connType); @@ -182,7 +182,7 @@ public class RemoteServicesManager implements IRemoteServicesManager { @SafeVarargs public final List getConnectionTypesByService(Class... services) { List connTypes = new ArrayList(); - for (IRemoteConnectionType connType : getRemoteConnectionTypes()) { + for (IRemoteConnectionType connType : getAllConnectionTypes()) { for (Class service : services) { if (!connType.hasService(service)) { connTypes.add(connType); diff --git a/bundles/org.eclipse.remote.jsch.ui/src/org/eclipse/remote/internal/jsch/ui/wizards/JSchConnectionPage.java b/bundles/org.eclipse.remote.jsch.ui/src/org/eclipse/remote/internal/jsch/ui/wizards/JSchConnectionPage.java index c7490a5ebc5..c44c5afaf68 100755 --- a/bundles/org.eclipse.remote.jsch.ui/src/org/eclipse/remote/internal/jsch/ui/wizards/JSchConnectionPage.java +++ b/bundles/org.eclipse.remote.jsch.ui/src/org/eclipse/remote/internal/jsch/ui/wizards/JSchConnectionPage.java @@ -290,7 +290,7 @@ public class JSchConnectionPage extends WizardPage { lblConnection.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); lblConnection.setText(Messages.JSchConnectionPage_SelectConnection); - fProxyConnectionWidget = new RemoteConnectionWidget(proxyComp, SWT.NONE, null, 0, null); + fProxyConnectionWidget = new RemoteConnectionWidget(proxyComp, SWT.NONE, null, 0); fProxyConnectionWidget.filterConnections(IRemoteConnectionHostService.class, IRemotePortForwardingService.class); Label lblCommand = new Label(proxyComp, SWT.WRAP); diff --git a/bundles/org.eclipse.remote.serial.core/.classpath b/bundles/org.eclipse.remote.serial.core/.classpath new file mode 100644 index 00000000000..098194ca4b7 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/org.eclipse.remote.serial.core/.gitignore b/bundles/org.eclipse.remote.serial.core/.gitignore new file mode 100644 index 00000000000..ae3c1726048 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/bundles/org.eclipse.remote.serial.core/.project b/bundles/org.eclipse.remote.serial.core/.project new file mode 100644 index 00000000000..1dbd2d4d535 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/.project @@ -0,0 +1,28 @@ + + + org.eclipse.remote.serial.core + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/bundles/org.eclipse.remote.serial.core/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.remote.serial.core/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000000..f42de363afa --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,7 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 +org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.7 diff --git a/bundles/org.eclipse.remote.serial.core/META-INF/MANIFEST.MF b/bundles/org.eclipse.remote.serial.core/META-INF/MANIFEST.MF new file mode 100644 index 00000000000..b1ffaa0b9ba --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/META-INF/MANIFEST.MF @@ -0,0 +1,14 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %bundleName +Bundle-SymbolicName: org.eclipse.remote.serial.core;singleton:=true +Bundle-Version: 1.0.0.qualifier +Bundle-Activator: org.eclipse.remote.serial.internal.core.Activator +Bundle-Vendor: %providerName +Require-Bundle: org.eclipse.core.runtime, + org.eclipse.remote.core;bundle-version="2.0.0", + org.eclipse.cdt.native.serial +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 +Bundle-ActivationPolicy: lazy +Export-Package: org.eclipse.remote.serial.core +Bundle-Localization: plugin diff --git a/bundles/org.eclipse.remote.serial.core/about.html b/bundles/org.eclipse.remote.serial.core/about.html new file mode 100644 index 00000000000..3f810933b39 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/about.html @@ -0,0 +1,22 @@ + + + +About + + + +

About This Content

+ +

May 2, 2006

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/bundles/org.eclipse.remote.serial.core/about.ini b/bundles/org.eclipse.remote.serial.core/about.ini new file mode 100644 index 00000000000..5bd1defab8b --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/about.ini @@ -0,0 +1,27 @@ +# about.ini +# contains information about a feature +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# "%key" are externalized strings defined in about.properties +# This file does not need to be translated. + +# Property "aboutText" contains blurb for "About" dialog (translated) +aboutText=%blurb + +# Property "windowImage" contains path to window icon (16x16) +# needed for primary features only + +# Property "featureImage" contains path to feature image (32x32) +featureImage=ptp_logo_icon32.png + +# Property "aboutImage" contains path to product image (500x330 or 115x164) +# needed for primary features only + +# Property "appName" contains name of the application (not translated) +# needed for primary features only + +# Property "welcomePage" contains path to welcome page (special XML-based format) +# optional + +# Property "welcomePerspective" contains the id of the perspective in which the +# welcome page is to be opened. +# optional diff --git a/bundles/org.eclipse.remote.serial.core/about.mappings b/bundles/org.eclipse.remote.serial.core/about.mappings new file mode 100644 index 00000000000..bddaab43109 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/about.mappings @@ -0,0 +1,6 @@ +# about.mappings +# contains fill-ins for about.properties +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file does not need to be translated. + +0=@build@ \ No newline at end of file diff --git a/bundles/org.eclipse.remote.serial.core/about.properties b/bundles/org.eclipse.remote.serial.core/about.properties new file mode 100644 index 00000000000..823873c3396 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/about.properties @@ -0,0 +1,22 @@ +############################################################################### +# Copyright (c) 2015 QNX Software Systems and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# QNX Software Systems - initial API and implementation +############################################################################### + +# NLS_MESSAGEFORMAT_NONE +# NLS_ENCODING=UTF-8 + +blurb=Serial Port Remote Services\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +Copyright (c) 2015 QNX Software Systems, and others. All rights reserved.\n\ +Visit http://www.eclipse.org/ptp\n + diff --git a/bundles/org.eclipse.remote.serial.core/build.properties b/bundles/org.eclipse.remote.serial.core/build.properties new file mode 100644 index 00000000000..13880ee66f5 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/build.properties @@ -0,0 +1,10 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.xml,\ + about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + ptp_logo_icon32.png diff --git a/bundles/org.eclipse.remote.serial.core/plugin.properties b/bundles/org.eclipse.remote.serial.core/plugin.properties new file mode 100644 index 00000000000..a8a8ec291cb --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/plugin.properties @@ -0,0 +1,2 @@ +bundleName = Remote Serial Port Services +providerName = Eclipse PTP diff --git a/bundles/org.eclipse.remote.serial.core/plugin.xml b/bundles/org.eclipse.remote.serial.core/plugin.xml new file mode 100644 index 00000000000..c36d8be75ac --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/plugin.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/bundles/org.eclipse.remote.serial.core/pom.xml b/bundles/org.eclipse.remote.serial.core/pom.xml new file mode 100644 index 00000000000..2dd520e9461 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/pom.xml @@ -0,0 +1,16 @@ + + + 4.0.0 + + + org.eclipse.remote + remote-parent + 1.1.1-SNAPSHOT + ../../releng/org.eclipse.remote.build/pom.xml + + + org.eclipse.remote.serial.core + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/org.eclipse.remote.serial.core/ptp_logo_icon32.png b/bundles/org.eclipse.remote.serial.core/ptp_logo_icon32.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ec57270f33470106ed4317f17926cec5b7b8f5 GIT binary patch literal 53143 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 literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/ISerialPortService.java b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/ISerialPortService.java new file mode 100644 index 00000000000..7a2df50e638 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/ISerialPortService.java @@ -0,0 +1,27 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.core; + +import org.eclipse.cdt.serial.SerialPort; +import org.eclipse.remote.core.IRemoteConnection; + +public interface ISerialPortService extends IRemoteConnection.Service { + + static final String TYPE_ID = "org.eclipse.remote.serial.core.connectionType"; //$NON-NLS-1$ + static final String PORT_NAME_ATTR = "serial.portName"; //$NON-NLS-1$ + static final String BAUD_RATE_ATTR = "serial.baudRate"; //$NON-NLS-1$ + static final String BYTE_SIZE_ATTR = "serial.byteSize"; //$NON-NLS-1$ + static final String PARITY_ATTR = "serial.parity"; //$NON-NLS-1$ + static final String STOP_BITS_ATTR = "serial.stopBits"; //$NON-NLS-1$ + + SerialPort getSerialPort(); + +} diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortCommandShell.java b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortCommandShell.java new file mode 100644 index 00000000000..887507ad770 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortCommandShell.java @@ -0,0 +1,113 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.core; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; + +import org.eclipse.cdt.serial.SerialPort; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.IRemoteProcess; +import org.eclipse.remote.core.IRemoteProcessBuilder; +import org.eclipse.remote.serial.internal.core.Activator; + +public class SerialPortCommandShell implements IRemoteProcess { + + private final IRemoteConnection remoteConnection; + private final SerialPort serialPort; + + public SerialPortCommandShell(IRemoteConnection remoteConnection, SerialPort serialPort) throws IOException { + this.remoteConnection = remoteConnection; + this.serialPort = serialPort; + serialPort.open(); + } + + + @Override + public synchronized void destroy() { + if (serialPort.isOpen()) { + try { + serialPort.close(); + } catch (IOException e) { + Activator.log(e); + } + notifyAll(); + } + } + + @Override + public int exitValue() { + return 0; + } + + @Override + public InputStream getErrorStream() { + return new InputStream() { + @Override + public int read() throws IOException { + synchronized (SerialPortCommandShell.this) { + if (serialPort.isOpen()) { + try { + wait(); + } catch (InterruptedException e) { + } + } + } + return 0; + } + }; + } + + @Override + public InputStream getInputStream() { + return serialPort.getInputStream(); + } + + @Override + public OutputStream getOutputStream() { + return serialPort.getOutputStream(); + } + + @Override + public synchronized int waitFor() throws InterruptedException { + if (serialPort.isOpen()) { + wait(); + } + return 0; + } + + @Override + public boolean isCompleted() { + return false; + } + + @Override + public IRemoteConnection getRemoteConnection() { + return remoteConnection; + } + + @Override + public T getService(Class service) { + return null; + } + + @Override + public boolean hasService(Class service) { + return false; + } + + @Override + public IRemoteProcessBuilder getProcessBuilder() { + return null; + } + +} diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortConnection.java b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortConnection.java new file mode 100644 index 00000000000..475bee706d8 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/core/SerialPortConnection.java @@ -0,0 +1,82 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.core; + +import java.io.IOException; + +import org.eclipse.cdt.serial.BaudRate; +import org.eclipse.cdt.serial.ByteSize; +import org.eclipse.cdt.serial.Parity; +import org.eclipse.cdt.serial.SerialPort; +import org.eclipse.cdt.serial.StopBits; +import org.eclipse.remote.core.IRemoteCommandShellService; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.IRemoteConnection.Service; +import org.eclipse.remote.core.IRemoteProcess; +import org.eclipse.remote.serial.internal.core.Activator; +import org.eclipse.remote.serial.internal.core.Messages; + +public class SerialPortConnection implements ISerialPortService, IRemoteCommandShellService { + + private final IRemoteConnection remoteConnection; + private SerialPort serialPort; + + private SerialPortConnection(IRemoteConnection remoteConnection) { + this.remoteConnection = remoteConnection; + } + + public static class Factory implements IRemoteConnection.Service.Factory { + @SuppressWarnings("unchecked") + @Override + public T getService(IRemoteConnection remoteConnection, Class service) { + if (ISerialPortService.class.equals(service)) { + return (T) new SerialPortConnection(remoteConnection); + } else if (IRemoteCommandShellService.class.equals(service)) { + return (T) getService(remoteConnection, ISerialPortService.class); + } + return null; + } + } + + @Override + public IRemoteConnection getRemoteConnection() { + return remoteConnection; + } + + @Override + public SerialPort getSerialPort() { + if (serialPort == null) { + String portName = remoteConnection.getAttribute(PORT_NAME_ATTR); + if (portName != null) { + serialPort = new SerialPort(portName); + try { + serialPort.setBaudRate(BaudRate.fromStringIndex(Integer.parseInt(remoteConnection.getAttribute(BAUD_RATE_ATTR)))); + serialPort.setByteSize(ByteSize.fromStringIndex(Integer.parseInt(remoteConnection.getAttribute(BYTE_SIZE_ATTR)))); + serialPort.setParity(Parity.fromStringIndex(Integer.parseInt(remoteConnection.getAttribute(PARITY_ATTR)))); + serialPort.setStopBits(StopBits.fromStringIndex(Integer.parseInt(remoteConnection.getAttribute(STOP_BITS_ATTR)))); + } catch (IOException e) { + Activator.log(e); + } + } + } + return serialPort; + } + + @Override + public IRemoteProcess getCommandShell(int flags) throws IOException { + SerialPort serialPort = getSerialPort(); + if (serialPort == null) { + throw new IOException(Messages.SerialPortConnection_SerialPortNotAvailable); + } + return new SerialPortCommandShell(remoteConnection, getSerialPort()); + } + +} diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Activator.java b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Activator.java new file mode 100644 index 00000000000..2a0dff7fa22 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Activator.java @@ -0,0 +1,43 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.core; + +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Plugin; +import org.eclipse.core.runtime.Status; +import org.osgi.framework.BundleContext; + +public class Activator extends Plugin { + + private static Plugin plugin; + + public void start(BundleContext bundleContext) throws Exception { + plugin = this; + } + + public void stop(BundleContext bundleContext) throws Exception { + plugin = null; + } + + public static void log(IStatus status) { + plugin.getLog().log(status); + } + + public static void log(Exception exception) { + if (exception instanceof CoreException) { + log(((CoreException) exception).getStatus()); + } else { + log(new Status(IStatus.ERROR, plugin.getBundle().getSymbolicName(), exception.getLocalizedMessage(), exception)); + } + } + +} diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Messages.java b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Messages.java new file mode 100644 index 00000000000..7d5dc8c1fc3 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/Messages.java @@ -0,0 +1,26 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.core; + +import org.eclipse.osgi.util.NLS; + +public class Messages extends NLS { + private static final String BUNDLE_NAME = "org.eclipse.remote.serial.internal.core.messages"; //$NON-NLS-1$ + public static String SerialPortConnection_SerialPortNotAvailable; + + static { + // initialize resource bundle + NLS.initializeMessages(BUNDLE_NAME, Messages.class); + } + + private Messages() { + } +} diff --git a/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/messages.properties b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/messages.properties new file mode 100644 index 00000000000..752c6bde8ba --- /dev/null +++ b/bundles/org.eclipse.remote.serial.core/src/org/eclipse/remote/serial/internal/core/messages.properties @@ -0,0 +1,11 @@ +################################################################################ +# Copyright (c) 2015 QNX Software Systems, and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# QNX Software Systems - initial contribution +################################################################################ +SerialPortConnection_SerialPortNotAvailable=Serial port not available. diff --git a/bundles/org.eclipse.remote.serial.ui/.classpath b/bundles/org.eclipse.remote.serial.ui/.classpath new file mode 100644 index 00000000000..eca7bdba8f0 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/org.eclipse.remote.serial.ui/.gitignore b/bundles/org.eclipse.remote.serial.ui/.gitignore new file mode 100644 index 00000000000..ae3c1726048 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/bundles/org.eclipse.remote.serial.ui/.project b/bundles/org.eclipse.remote.serial.ui/.project new file mode 100644 index 00000000000..48df9bbbfa7 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/.project @@ -0,0 +1,28 @@ + + + org.eclipse.remote.serial.ui + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + diff --git a/bundles/org.eclipse.remote.serial.ui/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.remote.serial.ui/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000000..0c68a61dca8 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,7 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 +org.eclipse.jdt.core.compiler.compliance=1.8 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.8 diff --git a/bundles/org.eclipse.remote.serial.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.remote.serial.ui/META-INF/MANIFEST.MF new file mode 100644 index 00000000000..7f8de82f79c --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/META-INF/MANIFEST.MF @@ -0,0 +1,16 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %bundleName +Bundle-SymbolicName: org.eclipse.remote.serial.ui;singleton:=true +Bundle-Version: 1.0.0.qualifier +Bundle-Activator: org.eclipse.remote.serial.internal.ui.Activator +Require-Bundle: org.eclipse.ui, + org.eclipse.core.runtime, + org.eclipse.remote.core;bundle-version="2.0.0", + org.eclipse.remote.ui;bundle-version="2.0.0", + org.eclipse.cdt.native.serial;bundle-version="1.0.0", + org.eclipse.remote.serial.core;bundle-version="1.0.0" +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 +Bundle-ActivationPolicy: lazy +Bundle-Vendor: %providerName +Bundle-Localization: plugin diff --git a/bundles/org.eclipse.remote.serial.ui/about.html b/bundles/org.eclipse.remote.serial.ui/about.html new file mode 100644 index 00000000000..3f810933b39 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/about.html @@ -0,0 +1,22 @@ + + + +About + + + +

About This Content

+ +

May 2, 2006

+

License

+ +

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the +Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. +For purposes of the EPL, "Program" will mean the Content.

+ +

If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may +apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise +indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org.

+ + + \ No newline at end of file diff --git a/bundles/org.eclipse.remote.serial.ui/about.ini b/bundles/org.eclipse.remote.serial.ui/about.ini new file mode 100644 index 00000000000..5bd1defab8b --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/about.ini @@ -0,0 +1,27 @@ +# about.ini +# contains information about a feature +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# "%key" are externalized strings defined in about.properties +# This file does not need to be translated. + +# Property "aboutText" contains blurb for "About" dialog (translated) +aboutText=%blurb + +# Property "windowImage" contains path to window icon (16x16) +# needed for primary features only + +# Property "featureImage" contains path to feature image (32x32) +featureImage=ptp_logo_icon32.png + +# Property "aboutImage" contains path to product image (500x330 or 115x164) +# needed for primary features only + +# Property "appName" contains name of the application (not translated) +# needed for primary features only + +# Property "welcomePage" contains path to welcome page (special XML-based format) +# optional + +# Property "welcomePerspective" contains the id of the perspective in which the +# welcome page is to be opened. +# optional diff --git a/bundles/org.eclipse.remote.serial.ui/about.mappings b/bundles/org.eclipse.remote.serial.ui/about.mappings new file mode 100644 index 00000000000..bddaab43109 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/about.mappings @@ -0,0 +1,6 @@ +# about.mappings +# contains fill-ins for about.properties +# java.io.Properties file (ISO 8859-1 with "\" escapes) +# This file does not need to be translated. + +0=@build@ \ No newline at end of file diff --git a/bundles/org.eclipse.remote.serial.ui/about.properties b/bundles/org.eclipse.remote.serial.ui/about.properties new file mode 100644 index 00000000000..823873c3396 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/about.properties @@ -0,0 +1,22 @@ +############################################################################### +# Copyright (c) 2015 QNX Software Systems and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# QNX Software Systems - initial API and implementation +############################################################################### + +# NLS_MESSAGEFORMAT_NONE +# NLS_ENCODING=UTF-8 + +blurb=Serial Port Remote Services\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +Copyright (c) 2015 QNX Software Systems, and others. All rights reserved.\n\ +Visit http://www.eclipse.org/ptp\n + diff --git a/bundles/org.eclipse.remote.serial.ui/build.properties b/bundles/org.eclipse.remote.serial.ui/build.properties new file mode 100644 index 00000000000..13880ee66f5 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/build.properties @@ -0,0 +1,10 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.xml,\ + about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + ptp_logo_icon32.png diff --git a/bundles/org.eclipse.remote.serial.ui/plugin.properties b/bundles/org.eclipse.remote.serial.ui/plugin.properties new file mode 100644 index 00000000000..214fce2774e --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/plugin.properties @@ -0,0 +1,2 @@ +bundleName = Remote Serial Port Services UI +providerName = Eclipse PTP diff --git a/bundles/org.eclipse.remote.serial.ui/plugin.xml b/bundles/org.eclipse.remote.serial.ui/plugin.xml new file mode 100644 index 00000000000..ce978ae8823 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/plugin.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/bundles/org.eclipse.remote.serial.ui/pom.xml b/bundles/org.eclipse.remote.serial.ui/pom.xml new file mode 100644 index 00000000000..56660ac6ea2 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/pom.xml @@ -0,0 +1,16 @@ + + + 4.0.0 + + + org.eclipse.remote + remote-parent + 1.1.1-SNAPSHOT + ../../releng/org.eclipse.remote.build/pom.xml + + + org.eclipse.remote.serial.ui + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/org.eclipse.remote.serial.ui/ptp_logo_icon32.png b/bundles/org.eclipse.remote.serial.ui/ptp_logo_icon32.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ec57270f33470106ed4317f17926cec5b7b8f5 GIT binary patch literal 53143 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 literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Activator.java b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Activator.java new file mode 100644 index 00000000000..68443c48293 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Activator.java @@ -0,0 +1,69 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.ui; + +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.ui.plugin.AbstractUIPlugin; +import org.osgi.framework.BundleContext; +import org.osgi.framework.ServiceReference; + +/** + * The activator class controls the plug-in life cycle + */ +public class Activator extends AbstractUIPlugin { + + // The plug-in ID + public static final String PLUGIN_ID = "org.eclipse.remote.serial.ui"; //$NON-NLS-1$ + + // The shared instance + private static Activator plugin; + + + public void start(BundleContext context) throws Exception { + super.start(context); + plugin = this; + } + + public void stop(BundleContext context) throws Exception { + plugin = null; + super.stop(context); + } + + /** + * Returns the shared instance + * + * @return the shared instance + */ + public static Activator getDefault() { + return plugin; + } + + public static void log(IStatus status) { + plugin.getLog().log(status); + } + + public static void log(Exception e) { + if (e instanceof CoreException) { + log(((CoreException) e).getStatus()); + } else { + log(new Status(IStatus.ERROR, PLUGIN_ID, e.getLocalizedMessage(), e)); + } + } + + public static T getService(Class service) { + BundleContext context = plugin.getBundle().getBundleContext(); + ServiceReference ref = context.getServiceReference(service); + return ref != null ? context.getService(ref) : null; + } + +} diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Messages.java b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Messages.java new file mode 100644 index 00000000000..feccc3df032 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/Messages.java @@ -0,0 +1,33 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.ui; + +import org.eclipse.osgi.util.NLS; + +public class Messages extends NLS { + private static final String BUNDLE_NAME = "org.eclipse.remote.serial.internal.ui.messages"; //$NON-NLS-1$ + public static String NewSerialPortConnectionWizardPage_BaudRateLabel; + public static String NewSerialPortConnectionWizardPage_ByteSizeLabel; + public static String NewSerialPortConnectionWizardPage_Description; + public static String NewSerialPortConnectionWizardPage_NameLabel; + public static String NewSerialPortConnectionWizardPage_ParityLabel; + public static String NewSerialPortConnectionWizardPage_PortLabel; + public static String NewSerialPortConnectionWizardPage_StopBitsLabel; + public static String NewSerialPortConnectionWizardPage_Title; + + static { + // initialize resource bundle + NLS.initializeMessages(BUNDLE_NAME, Messages.class); + } + + private Messages() { + } +} diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizard.java b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizard.java new file mode 100644 index 00000000000..dafff965c77 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizard.java @@ -0,0 +1,96 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.ui; + +import java.util.Set; + +import org.eclipse.jface.wizard.Wizard; +import org.eclipse.jface.wizard.WizardDialog; +import org.eclipse.remote.core.IRemoteConnectionType; +import org.eclipse.remote.core.IRemoteConnectionWorkingCopy; +import org.eclipse.remote.core.exception.RemoteConnectionException; +import org.eclipse.remote.serial.core.ISerialPortService; +import org.eclipse.remote.ui.IRemoteUIConnectionWizard; +import org.eclipse.swt.widgets.Shell; + +public class NewSerialPortConnectionWizard extends Wizard implements IRemoteUIConnectionWizard { + + private NewSerialPortConnectionWizardPage page; + private IRemoteConnectionWorkingCopy workingCopy; + private Shell shell; + private IRemoteConnectionType connectionType; + + public NewSerialPortConnectionWizard(Shell shell, IRemoteConnectionType connectionType) { + this.shell = shell; + this.connectionType = connectionType; + } + + @Override + public void addPages() { + page = new NewSerialPortConnectionWizardPage(); + addPage(page); + } + + @Override + public boolean performFinish() { + if (getConnection() == null) { + return false; + } + + workingCopy.setAttribute(ISerialPortService.PORT_NAME_ATTR, page.portName); + workingCopy.setAttribute(ISerialPortService.BAUD_RATE_ATTR, Integer.toString(page.baudRateIndex)); + workingCopy.setAttribute(ISerialPortService.BYTE_SIZE_ATTR, Integer.toString(page.byteSizeIndex)); + workingCopy.setAttribute(ISerialPortService.PARITY_ATTR, Integer.toString(page.parityIndex)); + workingCopy.setAttribute(ISerialPortService.STOP_BITS_ATTR, Integer.toString(page.stopBitsIndex)); + + return true; + } + + @Override + public IRemoteConnectionWorkingCopy open() { + WizardDialog dialog = new WizardDialog(shell, this); + dialog.setBlockOnOpen(true); + if (dialog.open() == WizardDialog.OK) { + return getConnection(); + } + return null; + } + + @Override + public IRemoteConnectionWorkingCopy getConnection() { + if (workingCopy == null) { + try { + workingCopy = connectionType.newConnection(page.name); + } catch (RemoteConnectionException e) { + Activator.log(e.getStatus()); + } + } + return workingCopy; + } + + @Override + public void setConnection(IRemoteConnectionWorkingCopy connection) { + workingCopy = connection; + } + + @Override + public void setConnectionName(String name) { + // TODO Auto-generated method stub + + } + + @Override + public void setInvalidConnectionNames(Set names) { + // TODO Auto-generated method stub + + } + +} diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizardPage.java b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizardPage.java new file mode 100644 index 00000000000..cc25f2ee280 --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/NewSerialPortConnectionWizardPage.java @@ -0,0 +1,183 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.ui; + +import java.io.IOException; + +import org.eclipse.cdt.serial.BaudRate; +import org.eclipse.cdt.serial.ByteSize; +import org.eclipse.cdt.serial.Parity; +import org.eclipse.cdt.serial.SerialPort; +import org.eclipse.cdt.serial.StopBits; +import org.eclipse.jface.wizard.WizardPage; +import org.eclipse.swt.SWT; +import org.eclipse.swt.events.KeyEvent; +import org.eclipse.swt.events.KeyListener; +import org.eclipse.swt.events.SelectionAdapter; +import org.eclipse.swt.events.SelectionEvent; +import org.eclipse.swt.layout.GridData; +import org.eclipse.swt.layout.GridLayout; +import org.eclipse.swt.widgets.Combo; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Label; +import org.eclipse.swt.widgets.Text; + +public class NewSerialPortConnectionWizardPage extends WizardPage { + + String name; + String portName; + int baudRateIndex; + int byteSizeIndex; + int parityIndex; + int stopBitsIndex; + + private String[] portNames; + + private Text nameText; + private Combo portCombo; + private Combo baudRateCombo; + private Combo byteSizeCombo; + private Combo parityCombo; + private Combo stopBitsCombo; + + protected NewSerialPortConnectionWizardPage() { + super(NewSerialPortConnectionWizardPage.class.getName()); + setDescription(Messages.NewSerialPortConnectionWizardPage_Description); + setTitle(Messages.NewSerialPortConnectionWizardPage_Title); + } + + @Override + public void createControl(Composite parent) { + Composite comp = new Composite(parent, SWT.NONE); + comp.setLayout(new GridLayout(2, false)); + + Label nameLabel = new Label(comp, SWT.NONE); + nameLabel.setText(Messages.NewSerialPortConnectionWizardPage_NameLabel); + + nameText = new Text(comp, SWT.BORDER | SWT.SINGLE); + nameText.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + nameText.setText(""); //$NON-NLS-1$ + nameText.addKeyListener(new KeyListener() { + @Override + public void keyReleased(KeyEvent e) { + updateStatus(); + } + + @Override + public void keyPressed(KeyEvent e) { + } + }); + + Label portLabel = new Label(comp, SWT.NONE); + portLabel.setText(Messages.NewSerialPortConnectionWizardPage_PortLabel); + + portCombo = new Combo(comp, SWT.READ_ONLY); + portCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + try { + portNames = SerialPort.list(); + } catch (IOException e) { + Activator.log(e); + } + for (String portName : portNames) { + portCombo.add(portName); + } + portCombo.select(0); + portCombo.addSelectionListener(new SelectionAdapter() { + @Override + public void widgetSelected(SelectionEvent e) { + updateStatus(); + } + }); + + Label baudRateLabel = new Label(comp, SWT.NONE); + baudRateLabel.setText(Messages.NewSerialPortConnectionWizardPage_BaudRateLabel); + + baudRateCombo = new Combo(comp, SWT.READ_ONLY); + baudRateCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + for (String baudRateStr : BaudRate.getStrings()) { + baudRateCombo.add(baudRateStr); + } + // TODO remember the last one + baudRateCombo.select(BaudRate.getStringIndex(BaudRate.getDefault())); + baudRateCombo.addSelectionListener(new SelectionAdapter() { + @Override + public void widgetSelected(SelectionEvent e) { + updateStatus(); + } + }); + + Label byteSizeLabel = new Label(comp, SWT.NONE); + byteSizeLabel.setText(Messages.NewSerialPortConnectionWizardPage_ByteSizeLabel); + + byteSizeCombo = new Combo(comp, SWT.READ_ONLY); + byteSizeCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + for (String byteSizeStr : ByteSize.getStrings()) { + byteSizeCombo.add(byteSizeStr); + } + byteSizeCombo.select(ByteSize.getStringIndex(ByteSize.getDefault())); + byteSizeCombo.addSelectionListener(new SelectionAdapter() { + @Override + public void widgetSelected(SelectionEvent e) { + updateStatus(); + } + }); + + Label parityLabel = new Label(comp, SWT.NONE); + parityLabel.setText(Messages.NewSerialPortConnectionWizardPage_ParityLabel); + + parityCombo = new Combo(comp, SWT.READ_ONLY); + parityCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + for (String parityStr : Parity.getStrings()) { + parityCombo.add(parityStr); + } + parityCombo.select(Parity.getStringIndex(Parity.getDefault())); + parityCombo.addSelectionListener(new SelectionAdapter() { + @Override + public void widgetSelected(SelectionEvent e) { + updateStatus(); + } + }); + + Label stopBitsLabel = new Label(comp, SWT.NONE); + stopBitsLabel.setText(Messages.NewSerialPortConnectionWizardPage_StopBitsLabel); + + stopBitsCombo = new Combo(comp, SWT.READ_ONLY); + stopBitsCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + for (String stopBitsStr : StopBits.getStrings()) { + stopBitsCombo.add(stopBitsStr); + } + stopBitsCombo.select(StopBits.getStringIndex(StopBits.getDefault())); + stopBitsCombo.addSelectionListener(new SelectionAdapter() { + @Override + public void widgetSelected(SelectionEvent e) { + updateStatus(); + } + }); + + setControl(comp); + updateStatus(); + } + + private void updateStatus() { + name = nameText.getText(); + + int portIndex = portCombo.getSelectionIndex(); + portName = portIndex < 0 ? null : portNames[portIndex]; + + baudRateIndex = baudRateCombo.getSelectionIndex(); + byteSizeIndex = byteSizeCombo.getSelectionIndex(); + parityIndex = parityCombo.getSelectionIndex(); + stopBitsIndex = stopBitsCombo.getSelectionIndex(); + + setPageComplete(!name.isEmpty() && portName != null); + } + +} diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/SerialPortConnectionsUI.java b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/SerialPortConnectionsUI.java new file mode 100644 index 00000000000..45917c43b3a --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/SerialPortConnectionsUI.java @@ -0,0 +1,73 @@ +/******************************************************************************* + * Copyright (c) 2015 QNX Software Systems, and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * QNX Software Systems - initial contribution + *******************************************************************************/ +package org.eclipse.remote.serial.internal.ui; + +import java.lang.reflect.InvocationTargetException; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.jface.operation.IRunnableContext; +import org.eclipse.jface.operation.IRunnableWithProgress; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.IRemoteConnectionType; +import org.eclipse.remote.core.IRemoteConnectionType.Service; +import org.eclipse.remote.core.exception.RemoteConnectionException; +import org.eclipse.remote.ui.IRemoteUIConnectionService; +import org.eclipse.remote.ui.IRemoteUIConnectionWizard; +import org.eclipse.swt.widgets.Shell; + +public class SerialPortConnectionsUI implements IRemoteUIConnectionService { + + private final IRemoteConnectionType connectionType; + + private SerialPortConnectionsUI(IRemoteConnectionType connectionType) { + this.connectionType = connectionType; + } + + public static class Factory implements IRemoteConnectionType.Service.Factory { + @SuppressWarnings("unchecked") + @Override + public T getService(IRemoteConnectionType connectionType, Class service) { + if (IRemoteUIConnectionService.class.equals(service)) { + return (T) new SerialPortConnectionsUI(connectionType); + } + return null; + } + } + + @Override + public IRemoteConnectionType getConnectionType() { + return connectionType; + } + + @Override + public IRemoteUIConnectionWizard getConnectionWizard(Shell shell) { + return new NewSerialPortConnectionWizard(shell, connectionType); + } + + @Override + public void openConnectionWithProgress(Shell shell, IRunnableContext context, final IRemoteConnection connection) { + try { + context.run(false, true, new IRunnableWithProgress() { + @Override + public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { + try { + connection.open(monitor); + } catch (RemoteConnectionException e) { + Activator.log(e.getStatus()); + } + } + }); + } catch (InvocationTargetException | InterruptedException e) { + Activator.log(e); + } + } + +} diff --git a/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/messages.properties b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/messages.properties new file mode 100644 index 00000000000..bfdb6482aaf --- /dev/null +++ b/bundles/org.eclipse.remote.serial.ui/src/org/eclipse/remote/serial/internal/ui/messages.properties @@ -0,0 +1,18 @@ +################################################################################ +# Copyright (c) 2015 QNX Software Systems, and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +# +# Contributors: +# QNX Software Systems - initial contribution +################################################################################ +NewSerialPortConnectionWizardPage_BaudRateLabel=Baud rate: +NewSerialPortConnectionWizardPage_ByteSizeLabel=Data size: +NewSerialPortConnectionWizardPage_Description=New serial port connection settings +NewSerialPortConnectionWizardPage_NameLabel=Connection name: +NewSerialPortConnectionWizardPage_ParityLabel=Parity: +NewSerialPortConnectionWizardPage_PortLabel=Serial port: +NewSerialPortConnectionWizardPage_StopBitsLabel=Stop bits: +NewSerialPortConnectionWizardPage_Title=New Serial Port Connection diff --git a/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/connector/RemoteConnectionManager.java b/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/connector/RemoteConnectionManager.java index 29ae728078f..f466a3e21e8 100644 --- a/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/connector/RemoteConnectionManager.java +++ b/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/connector/RemoteConnectionManager.java @@ -96,8 +96,7 @@ public class RemoteConnectionManager extends Job { */ IEclipsePreferences prefs = InstanceScope.INSTANCE.getNode(TerminalViewPlugin.getUniqueIdentifier()); String terminalShellCommand = prefs.get(IRemoteTerminalConstants.PREF_TERMINAL_SHELL_COMMAND, ""); //$NON-NLS-1$ - if (!("".equals(terminalShellCommand)) //$NON-NLS-1$ - && remoteConnection.hasService(IRemoteCommandShellService.class)) { + if (remoteConnection.hasService(IRemoteCommandShellService.class)) { IRemoteCommandShellService cmdShellSvc = remoteConnection.getService(IRemoteCommandShellService.class); remoteProcess = cmdShellSvc.getCommandShell(IRemoteProcessBuilder.ALLOCATE_PTY); } else { @@ -153,10 +152,10 @@ public class RemoteConnectionManager extends Job { byte[] buf = new byte[32 * 1024]; while (getState() == Job.RUNNING) { int n = in.read(buf, 0, buf.length); - if (n <= 0) { + if (n < 0) { break; } - if (parser == null || parser.parse(buf)) { + if (n > 0 && (parser == null || parser.parse(buf))) { control.getRemoteToTerminalOutputStream().write(buf, 0, n); } } diff --git a/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/settings/RemoteSettingsPage.java b/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/settings/RemoteSettingsPage.java index c4387c01fa6..0b3e9409521 100644 --- a/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/settings/RemoteSettingsPage.java +++ b/bundles/org.eclipse.remote.terminal/src/org/eclipse/remote/internal/terminal/settings/RemoteSettingsPage.java @@ -7,6 +7,13 @@ *******************************************************************************/ package org.eclipse.remote.internal.terminal.settings; +import java.util.List; + +import org.eclipse.remote.core.IRemoteCommandShellService; +import org.eclipse.remote.core.IRemoteConnectionType; +import org.eclipse.remote.core.IRemoteProcessService; +import org.eclipse.remote.core.IRemoteServicesManager; +import org.eclipse.remote.internal.ui.RemoteUIPlugin; import org.eclipse.remote.ui.widgets.RemoteConnectionWidget; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; @@ -60,7 +67,12 @@ public class RemoteSettingsPage extends AbstractSettingsPage { composite.setLayout(gridLayout); composite.setLayoutData(gridData); - fRemoteConnectionWidget = new RemoteConnectionWidget(composite, SWT.NONE, null, 0); + IRemoteServicesManager manager = RemoteUIPlugin.getService(IRemoteServicesManager.class); + // TODO remove the remote process service once we get command shell available with ssh and local + @SuppressWarnings("unchecked") + List connTypes = manager.getConnectionTypesSupporting(IRemoteCommandShellService.class, IRemoteProcessService.class); + + fRemoteConnectionWidget = new RemoteConnectionWidget(composite, SWT.NONE, null, 0, connTypes); loadSettings(); } } diff --git a/bundles/org.eclipse.remote.ui/src/org/eclipse/remote/ui/widgets/RemoteConnectionWidget.java b/bundles/org.eclipse.remote.ui/src/org/eclipse/remote/ui/widgets/RemoteConnectionWidget.java index a3f289251e6..37b91666eaf 100644 --- a/bundles/org.eclipse.remote.ui/src/org/eclipse/remote/ui/widgets/RemoteConnectionWidget.java +++ b/bundles/org.eclipse.remote.ui/src/org/eclipse/remote/ui/widgets/RemoteConnectionWidget.java @@ -158,7 +158,7 @@ public class RemoteConnectionWidget extends Composite { * a combination of flags that modify the behavior of the widget. */ public RemoteConnectionWidget(Composite parent, int style, String title, int flags) { - this(parent, style, title, flags, null); + this(parent, style, title, flags, null, null); } /** @@ -174,10 +174,58 @@ public class RemoteConnectionWidget extends Composite { * a combination of flags that modify the behavior of the widget. * @param context * runnable context, or null + * @param connnectionTypes + * list of connection types to select from + * @since 2.0 */ public RemoteConnectionWidget(Composite parent, int style, String title, int flags, IRunnableContext context) { + this(parent, style, title, flags, context, null); + } + + /** + * Constructor + * + * @param parent + * parent composite + * @param style + * style or SWT.NONE + * @param title + * if a title is supplied then the widget will be placed in a group. Can be null. + * @param flags + * a combination of flags that modify the behavior of the widget. + * @param connnectionTypes + * list of connection types to select from + * @since 2.0 + */ + public RemoteConnectionWidget(Composite parent, int style, String title, int flags, List connectionTypes) { + this(parent, style, title, flags, null, connectionTypes); + } + + /** + * Constructor + * + * @param parent + * parent composite + * @param style + * style or SWT.NONE + * @param title + * if a title is supplied then the widget will be placed in a group. Can be null. + * @param flags + * a combination of flags that modify the behavior of the widget. + * @param context + * runnable context, or null + * @param connnectionTypes + * list of connection types to select from + * @since 2.0 + */ + public RemoteConnectionWidget(Composite parent, int style, String title, int flags, IRunnableContext context, List connectionTypes) { super(parent, style); + if (connectionTypes != null) { + // Just present the connections that are provided + flags |= FLAG_FORCE_CONNECTION_TYPE_SELECTION | FLAG_NO_LOCAL_SELECTION; + } + Composite body = this; GridLayout layout = new GridLayout(1, false); @@ -200,9 +248,16 @@ public class RemoteConnectionWidget extends Composite { body = group; } - String id = Preferences.getString(IRemotePreferenceConstants.PREF_CONNECTION_TYPE_ID); - if (id != null) { - fDefaultConnectionType = fRemoteServicesManager.getConnectionType(id); + fRemoteServicesManager = RemoteUIPlugin.getService(IRemoteServicesManager.class); + if (connectionTypes != null) { + // No default if the list of connection types was supplied + fConnectionTypes = connectionTypes; + } else { + fConnectionTypes = fRemoteServicesManager.getRemoteConnectionTypes(); + String id = Preferences.getString(IRemotePreferenceConstants.PREF_CONNECTION_TYPE_ID); + if (id != null) { + fDefaultConnectionType = fRemoteServicesManager.getConnectionType(id); + } } /* @@ -250,9 +305,6 @@ public class RemoteConnectionWidget extends Composite { fNewConnectionButton.setLayoutData(new GridData()); fNewConnectionButton.addSelectionListener(fWidgetListener); - fRemoteServicesManager = RemoteUIPlugin.getService(IRemoteServicesManager.class); - fConnectionTypes = fRemoteServicesManager.getRemoteConnectionTypes(); - if (fConnectionTypeCombo != null) { initializeConnectionTypeCombo(); } @@ -319,9 +371,11 @@ public class RemoteConnectionWidget extends Composite { if (fDefaultConnectionType != null) { return fDefaultConnectionType; } - int selectionIndex = fConnectionTypeCombo.getSelectionIndex(); - if (fConnectionTypes.size() > 0 && selectionIndex > 0) { - return fConnectionTypes.get(selectionIndex - 1); + if (fConnectionTypeCombo != null) { + int selectionIndex = fConnectionTypeCombo.getSelectionIndex(); + if (fConnectionTypes.size() > 0 && selectionIndex > 0) { + return fConnectionTypes.get(selectionIndex - 1); + } } return null; } diff --git a/features/org.eclipse.remote.serial-feature/.project b/features/org.eclipse.remote.serial-feature/.project new file mode 100644 index 00000000000..15b7923f8a4 --- /dev/null +++ b/features/org.eclipse.remote.serial-feature/.project @@ -0,0 +1,17 @@ + + + org.eclipse.remote.serial-feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/org.eclipse.remote.serial-feature/build.properties b/features/org.eclipse.remote.serial-feature/build.properties new file mode 100644 index 00000000000..db80add92e9 --- /dev/null +++ b/features/org.eclipse.remote.serial-feature/build.properties @@ -0,0 +1,4 @@ +bin.includes = feature.xml,\ + feature.properties,\ + epl-v10.html,\ + eclipse_update_120.jpg diff --git a/features/org.eclipse.remote.serial-feature/eclipse_update_120.jpg b/features/org.eclipse.remote.serial-feature/eclipse_update_120.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfdf708ad617e4974cac04cc5c1c8192b09bbeb3 GIT binary patch literal 21695 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 + + + + + + + +Eclipse Public License - Version 1.0 + + + + + + +
+ +

Eclipse Public License - v 1.0 +

+ +

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER +THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, +REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE +OF THIS AGREEMENT.

+ +

1. DEFINITIONS

+ +

"Contribution" means:

+ +

a) +in the case of the initial Contributor, the initial code and documentation +distributed under this Agreement, and
+b) in the case of each subsequent Contributor:

+ +

i) +changes to the Program, and

+ +

ii) +additions to the Program;

+ +

where +such changes and/or additions to the Program originate from and are distributed +by that particular Contributor. A Contribution 'originates' from a Contributor +if it was added to the Program by such Contributor itself or anyone acting on +such Contributor's behalf. Contributions do not include additions to the +Program which: (i) are separate modules of software distributed in conjunction +with the Program under their own license agreement, and (ii) are not derivative +works of the Program.

+ +

"Contributor" means any person or +entity that distributes the Program.

+ +

"Licensed Patents " mean patent +claims licensable by a Contributor which are necessarily infringed by the use +or sale of its Contribution alone or when combined with the Program.

+ +

"Program" means the Contributions +distributed in accordance with this Agreement.

+ +

"Recipient" means anyone who +receives the Program under this Agreement, including all Contributors.

+ +

2. GRANT OF RIGHTS

+ +

a) +Subject to the terms of this Agreement, each Contributor hereby grants Recipient +a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly +display, publicly perform, distribute and sublicense the Contribution of such +Contributor, if any, and such derivative works, in source code and object code +form.

+ +

b) +Subject to the terms of this Agreement, each Contributor hereby grants +Recipient a non-exclusive, worldwide, royalty-free +patent license under Licensed Patents to make, use, sell, offer to sell, import +and otherwise transfer the Contribution of such Contributor, if any, in source +code and object code form. This patent license shall apply to the combination +of the Contribution and the Program if, at the time the Contribution is added +by the Contributor, such addition of the Contribution causes such combination +to be covered by the Licensed Patents. The patent license shall not apply to +any other combinations which include the Contribution. No hardware per se is +licensed hereunder.

+ +

c) +Recipient understands that although each Contributor grants the licenses to its +Contributions set forth herein, no assurances are provided by any Contributor +that the Program does not infringe the patent or other intellectual property +rights of any other entity. Each Contributor disclaims any liability to Recipient +for claims brought by any other entity based on infringement of intellectual +property rights or otherwise. As a condition to exercising the rights and +licenses granted hereunder, each Recipient hereby assumes sole responsibility +to secure any other intellectual property rights needed, if any. For example, +if a third party patent license is required to allow Recipient to distribute +the Program, it is Recipient's responsibility to acquire that license before +distributing the Program.

+ +

d) +Each Contributor represents that to its knowledge it has sufficient copyright +rights in its Contribution, if any, to grant the copyright license set forth in +this Agreement.

+ +

3. REQUIREMENTS

+ +

A Contributor may choose to distribute the +Program in object code form under its own license agreement, provided that: +

+ +

a) +it complies with the terms and conditions of this Agreement; and

+ +

b) +its license agreement:

+ +

i) +effectively disclaims on behalf of all Contributors all warranties and +conditions, express and implied, including warranties or conditions of title +and non-infringement, and implied warranties or conditions of merchantability +and fitness for a particular purpose;

+ +

ii) +effectively excludes on behalf of all Contributors all liability for damages, +including direct, indirect, special, incidental and consequential damages, such +as lost profits;

+ +

iii) +states that any provisions which differ from this Agreement are offered by that +Contributor alone and not by any other party; and

+ +

iv) +states that source code for the Program is available from such Contributor, and +informs licensees how to obtain it in a reasonable manner on or through a +medium customarily used for software exchange.

+ +

When the Program is made available in source +code form:

+ +

a) +it must be made available under this Agreement; and

+ +

b) a +copy of this Agreement must be included with each copy of the Program.

+ +

Contributors may not remove or alter any +copyright notices contained within the Program.

+ +

Each Contributor must identify itself as the +originator of its Contribution, if any, in a manner that reasonably allows +subsequent Recipients to identify the originator of the Contribution.

+ +

4. COMMERCIAL DISTRIBUTION

+ +

Commercial distributors of software may +accept certain responsibilities with respect to end users, business partners +and the like. While this license is intended to facilitate the commercial use +of the Program, the Contributor who includes the Program in a commercial +product offering should do so in a manner which does not create potential +liability for other Contributors. Therefore, if a Contributor includes the +Program in a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified Contributor to +the extent caused by the acts or omissions of such Commercial Contributor in +connection with its distribution of the Program in a commercial product +offering. The obligations in this section do not apply to any claims or Losses +relating to any actual or alleged intellectual property infringement. In order +to qualify, an Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial Contributor +to control, and cooperate with the Commercial Contributor in, the defense and +any related settlement negotiations. The Indemnified Contributor may participate +in any such claim at its own expense.

+ +

For example, a Contributor might include the +Program in a commercial product offering, Product X. That Contributor is then a +Commercial Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance claims and +warranties are such Commercial Contributor's responsibility alone. Under this +section, the Commercial Contributor would have to defend claims against the +other Contributors related to those performance claims and warranties, and if a +court requires any other Contributor to pay any damages as a result, the +Commercial Contributor must pay those damages.

+ +

5. NO WARRANTY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS +AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, +WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely +responsible for determining the appropriateness of using and distributing the +Program and assumes all risks associated with its exercise of rights under this +Agreement , including but not limited to the risks and costs of program errors, +compliance with applicable laws, damage to or loss of data, programs or +equipment, and unavailability or interruption of operations.

+ +

6. DISCLAIMER OF LIABILITY

+ +

EXCEPT AS EXPRESSLY SET FORTH IN THIS +AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF +THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF +THE POSSIBILITY OF SUCH DAMAGES.

+ +

7. GENERAL

+ +

If any provision of this Agreement is invalid +or unenforceable under applicable law, it shall not affect the validity or +enforceability of the remainder of the terms of this Agreement, and without +further action by the parties hereto, such provision shall be reformed to the +minimum extent necessary to make such provision valid and enforceable.

+ +

If Recipient institutes patent litigation +against any entity (including a cross-claim or counterclaim in a lawsuit) +alleging that the Program itself (excluding combinations of the Program with +other software or hardware) infringes such Recipient's patent(s), then such +Recipient's rights granted under Section 2(b) shall terminate as of the date +such litigation is filed.

+ +

All Recipient's rights under this Agreement +shall terminate if it fails to comply with any of the material terms or +conditions of this Agreement and does not cure such failure in a reasonable +period of time after becoming aware of such noncompliance. If all Recipient's +rights under this Agreement terminate, Recipient agrees to cease use and +distribution of the Program as soon as reasonably practicable. However, +Recipient's obligations under this Agreement and any licenses granted by +Recipient relating to the Program shall continue and survive.

+ +

Everyone is permitted to copy and distribute +copies of this Agreement, but in order to avoid inconsistency the Agreement is +copyrighted and may only be modified in the following manner. The Agreement +Steward reserves the right to publish new versions (including revisions) of +this Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. The Eclipse Foundation is the initial +Agreement Steward. The Eclipse Foundation may assign the responsibility to +serve as the Agreement Steward to a suitable separate entity. Each new version +of the Agreement will be given a distinguishing version number. The Program +(including Contributions) may always be distributed subject to the version of +the Agreement under which it was received. In addition, after a new version of +the Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly stated +in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to +the intellectual property of any Contributor under this Agreement, whether +expressly, by implication, estoppel or otherwise. All rights in the Program not +expressly granted under this Agreement are reserved.

+ +

This Agreement is governed by the laws of the +State of New York and the intellectual property laws of the United States of +America. No party to this Agreement will bring a legal action under this +Agreement more than one year after the cause of action arose. Each party waives +its rights to a jury trial in any resulting litigation.

+ +

 

+ +
+ + + + \ No newline at end of file diff --git a/features/org.eclipse.remote.serial-feature/feature.properties b/features/org.eclipse.remote.serial-feature/feature.properties new file mode 100644 index 00000000000..5239c671d4c --- /dev/null +++ b/features/org.eclipse.remote.serial-feature/feature.properties @@ -0,0 +1,24 @@ +################################################################################# +# Copyright (c) 2015 QNX Software Systems Corporation. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +################################################################################# + +# "featureName" property - name of the feature +featureName=Serial Port Remote Services + +# "providerName" property - name of the company that provides the feature +providerName=Eclipse PTP + +# "description" property - description of the feature +description=Provides serial port services for the remote framework + +# copyright +copyright=\ +Copyright (c) 2015 QNX Software Corporation.\n\ +All rights reserved. This program and the accompanying materials\n\ +are made available under the terms of the Eclipse Public License v1.0\n\ +which accompanies this distribution, and is available at\n\ +http://www.eclipse.org/legal/epl-v10.html\n diff --git a/features/org.eclipse.remote.serial-feature/feature.xml b/features/org.eclipse.remote.serial-feature/feature.xml new file mode 100644 index 00000000000..3f709e553ea --- /dev/null +++ b/features/org.eclipse.remote.serial-feature/feature.xml @@ -0,0 +1,36 @@ + + + + + %description + + + + %copyright + + + + %license + + + + + + + diff --git a/features/org.eclipse.remote.serial-feature/pom.xml b/features/org.eclipse.remote.serial-feature/pom.xml new file mode 100644 index 00000000000..87a6f575c5b --- /dev/null +++ b/features/org.eclipse.remote.serial-feature/pom.xml @@ -0,0 +1,49 @@ + + + 4.0.0 + + + org.eclipse.remote + remote-parent + 1.1.1-SNAPSHOT + ../../releng/org.eclipse.remote.build/pom.xml + + + org.eclipse.remote.features + org.eclipse.remote.serial + 1.0.0-SNAPSHOT + eclipse-feature + + + + + org.eclipse.tycho.extras + tycho-source-feature-plugin + + + source-feature + package + + source-feature + + + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + attached-p2-metadata + package + + p2-metadata + + + + + + + diff --git a/releng/org.eclipse.remote.build/mars.target b/releng/org.eclipse.remote.build/mars.target index 3f533456cf9..c8f48efd777 100644 --- a/releng/org.eclipse.remote.build/mars.target +++ b/releng/org.eclipse.remote.build/mars.target @@ -11,5 +11,10 @@ + + + + + diff --git a/releng/org.eclipse.remote.build/pom.xml b/releng/org.eclipse.remote.build/pom.xml index 18ef3305eba..59bf0824e8a 100644 --- a/releng/org.eclipse.remote.build/pom.xml +++ b/releng/org.eclipse.remote.build/pom.xml @@ -21,9 +21,10 @@ ${tycho-version} scm:git:git://git.eclipse.org/gitroot/ptp/org.eclipse.remote.git 4.5milestones - http://download.eclipse.org/eclipse/updates/${platform-version} - http://download.eclipse.org/cbi/updates/license - http://download.eclipse.org/tm/updates/4.0milestones + http://download.eclipse.org/eclipse/updates/${platform-version}/ + http://download.eclipse.org/cbi/updates/license/ + http://download.eclipse.org/tm/updates/4.0milestones/ + http://download.eclipse.org/tools/cdt/builds/master/nightly/ /home/data/httpd/download.eclipse.org/tools/ptp/builds/remote/${remote-release} @@ -52,6 +53,10 @@ ../../bundles/org.eclipse.remote.terminal ../../features/org.eclipse.remote.terminal-feature + + ../../bundles/org.eclipse.remote.serial.core + ../../bundles/org.eclipse.remote.serial.ui + ../../features/org.eclipse.remote.serial-feature @@ -70,6 +75,11 @@ ${tm-site} p2 + + cdt + ${cdt-site} + p2 +