From 9825f0f0cb83b5d4e87748f00601110dea2e019c Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Mon, 20 Apr 2015 12:11:48 -0400 Subject: [PATCH] Bug 463976 - Implement a Console View based Terminal Adds a terminal console which can be opened by selecting Open Console > Terminal Console and selecting a remote connection which supports the command shell service. If a console is already open for that remote connection it will be shown and if one doesn't exist then a new one will be created. Buttons for connecting, disconnecting, scroll lock, and closing the console are also available. Also adds a local command shell with PTY support. Also added some syncronization around the connections in the connection type. Moved the Open Terminal to console plug-in and renamed it Open Command Shell. Also fixed missing serial port feature from the remote repo. Change-Id: I84282b04813471bb01385a328ebc144bdf0e6a28 Signed-off-by: Doug Schaefer --- bundles/org.eclipse.remote.console/.classpath | 7 + bundles/org.eclipse.remote.console/.gitignore | 1 + bundles/org.eclipse.remote.console/.project | 28 ++ .../.settings/org.eclipse.jdt.core.prefs | 7 + .../META-INF/MANIFEST.MF | 15 + bundles/org.eclipse.remote.console/about.html | 22 ++ bundles/org.eclipse.remote.console/about.ini | 27 ++ .../org.eclipse.remote.console/about.mappings | 6 + .../about.properties | 22 ++ .../build.properties | 12 + .../icons/clcl16/command_input_field.gif | Bin 0 -> 385 bytes .../icons/clcl16/connect_co.gif | Bin 0 -> 139 bytes .../icons/clcl16/disconnect_co.gif | Bin 0 -> 146 bytes .../icons/clcl16/lock_co.gif | Bin 0 -> 626 bytes .../icons/clcl16/newterminal.gif | Bin 0 -> 351 bytes .../icons/clcl16/properties_tsk.gif | Bin 0 -> 118 bytes .../icons/cview16/terminal_view.gif | Bin 0 -> 938 bytes .../icons/dlcl16/command_input_field.gif | Bin 0 -> 239 bytes .../icons/dlcl16/connect_co.gif | Bin 0 -> 874 bytes .../icons/dlcl16/disconnect_co.gif | Bin 0 -> 90 bytes .../icons/dlcl16/lock_co.gif | Bin 0 -> 588 bytes .../icons/dlcl16/newterminal.gif | Bin 0 -> 351 bytes .../icons/dlcl16/properties_tsk.gif | Bin 0 -> 90 bytes .../icons/dlcl16/rem_co.gif | Bin 0 -> 159 bytes .../icons/elcl16/command_input_field.gif | Bin 0 -> 239 bytes .../icons/elcl16/connect_co.gif | Bin 0 -> 890 bytes .../icons/elcl16/disconnect_co.gif | Bin 0 -> 118 bytes .../icons/elcl16/lock_co.gif | Bin 0 -> 626 bytes .../icons/elcl16/newterminal.gif | Bin 0 -> 351 bytes .../icons/elcl16/properties_tsk.gif | Bin 0 -> 118 bytes .../icons/elcl16/rem_co.gif | Bin 0 -> 163 bytes .../icons/eview16/terminal_view.gif | Bin 0 -> 938 bytes .../plugin.properties | 9 + bundles/org.eclipse.remote.console/plugin.xml | 45 +++ bundles/org.eclipse.remote.console/pom.xml | 16 + .../ptp_logo_icon32.png | Bin 0 -> 53143 bytes .../remote/internal/console/Activator.java | 148 ++++++++ .../internal/console/ConsoleMessages.java | 34 ++ .../console/ConsoleMessages.properties | 24 ++ .../remote/internal/console/ImageConsts.java | 52 +++ .../internal/console/TerminalConsole.java | 81 +++++ .../console/TerminalConsoleConnector.java | 285 +++++++++++++++ .../console/TerminalConsoleFactory.java | 83 +++++ .../internal/console/TerminalConsolePage.java | 178 ++++++++++ .../TerminalConsoleSettingsDialog.java | 188 ++++++++++ .../console/actions/ActionMessages.java | 25 ++ .../console/actions/ActionMessages.properties | 13 + .../console/actions/ConsoleAction.java | 62 ++++ .../console/actions/ConsoleActionConnect.java | 36 ++ .../actions/ConsoleActionDisconnect.java | 37 ++ .../actions/ConsoleActionScrollLock.java | 39 +++ .../actions/OpenCommandShellHandler.java | 27 ++ .../META-INF/MANIFEST.MF | 3 +- bundles/org.eclipse.remote.core/plugin.xml | 10 + .../internal/core/RemoteConnectionType.java | 86 +++-- .../local/LocalCommandShellService.java | 66 ++++ .../core/services/local/LocalProcess.java | 22 +- .../services/local/LocalProcessBuilder.java | 36 +- .../jsch/core/JSchProcessBuilder.java | 11 +- .../org.eclipse.remote.ui/plugin.properties | 1 - bundles/org.eclipse.remote.ui/plugin.xml | 22 -- .../ui/views/OpenTerminalHandler.java | 24 -- .../ui/widgets/RemoteConnectionWidget.java | 1 + .../.project | 17 + .../build.properties | 4 + .../eclipse_update_120.jpg | Bin 0 -> 21695 bytes .../epl-v10.html | 328 ++++++++++++++++++ .../feature.properties | 24 ++ .../feature.xml | 29 ++ .../pom.xml | 49 +++ releng/org.eclipse.remote.build/mars.target | 3 + releng/org.eclipse.remote.build/pom.xml | 9 +- releng/org.eclipse.remote.repo/category.xml | 14 +- 73 files changed, 2187 insertions(+), 101 deletions(-) create mode 100644 bundles/org.eclipse.remote.console/.classpath create mode 100644 bundles/org.eclipse.remote.console/.gitignore create mode 100644 bundles/org.eclipse.remote.console/.project create mode 100644 bundles/org.eclipse.remote.console/.settings/org.eclipse.jdt.core.prefs create mode 100644 bundles/org.eclipse.remote.console/META-INF/MANIFEST.MF create mode 100644 bundles/org.eclipse.remote.console/about.html create mode 100644 bundles/org.eclipse.remote.console/about.ini create mode 100644 bundles/org.eclipse.remote.console/about.mappings create mode 100644 bundles/org.eclipse.remote.console/about.properties create mode 100644 bundles/org.eclipse.remote.console/build.properties create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/command_input_field.gif create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/connect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/disconnect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/lock_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/newterminal.gif create mode 100644 bundles/org.eclipse.remote.console/icons/clcl16/properties_tsk.gif create mode 100644 bundles/org.eclipse.remote.console/icons/cview16/terminal_view.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/command_input_field.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/connect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/disconnect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/lock_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/newterminal.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/properties_tsk.gif create mode 100644 bundles/org.eclipse.remote.console/icons/dlcl16/rem_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/command_input_field.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/connect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/disconnect_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/lock_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/newterminal.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/properties_tsk.gif create mode 100644 bundles/org.eclipse.remote.console/icons/elcl16/rem_co.gif create mode 100644 bundles/org.eclipse.remote.console/icons/eview16/terminal_view.gif create mode 100644 bundles/org.eclipse.remote.console/plugin.properties create mode 100644 bundles/org.eclipse.remote.console/plugin.xml create mode 100644 bundles/org.eclipse.remote.console/pom.xml create mode 100644 bundles/org.eclipse.remote.console/ptp_logo_icon32.png create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/Activator.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.properties create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ImageConsts.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsole.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleConnector.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleFactory.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsolePage.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleSettingsDialog.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.properties create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleAction.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionConnect.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionDisconnect.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionScrollLock.java create mode 100644 bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/OpenCommandShellHandler.java create mode 100644 bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalCommandShellService.java delete mode 100644 bundles/org.eclipse.remote.ui/src/org/eclipse/remote/internal/ui/views/OpenTerminalHandler.java create mode 100644 features/org.eclipse.remote.console-feature/.project create mode 100644 features/org.eclipse.remote.console-feature/build.properties create mode 100644 features/org.eclipse.remote.console-feature/eclipse_update_120.jpg create mode 100644 features/org.eclipse.remote.console-feature/epl-v10.html create mode 100644 features/org.eclipse.remote.console-feature/feature.properties create mode 100644 features/org.eclipse.remote.console-feature/feature.xml create mode 100644 features/org.eclipse.remote.console-feature/pom.xml diff --git a/bundles/org.eclipse.remote.console/.classpath b/bundles/org.eclipse.remote.console/.classpath new file mode 100644 index 00000000000..eca7bdba8f0 --- /dev/null +++ b/bundles/org.eclipse.remote.console/.classpath @@ -0,0 +1,7 @@ + + + + + + + diff --git a/bundles/org.eclipse.remote.console/.gitignore b/bundles/org.eclipse.remote.console/.gitignore new file mode 100644 index 00000000000..ae3c1726048 --- /dev/null +++ b/bundles/org.eclipse.remote.console/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/bundles/org.eclipse.remote.console/.project b/bundles/org.eclipse.remote.console/.project new file mode 100644 index 00000000000..0d4f3afa834 --- /dev/null +++ b/bundles/org.eclipse.remote.console/.project @@ -0,0 +1,28 @@ + + + org.eclipse.remote.console + + + + + + 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.console/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.remote.console/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 00000000000..0c68a61dca8 --- /dev/null +++ b/bundles/org.eclipse.remote.console/.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.console/META-INF/MANIFEST.MF b/bundles/org.eclipse.remote.console/META-INF/MANIFEST.MF new file mode 100644 index 00000000000..2ac47095fa3 --- /dev/null +++ b/bundles/org.eclipse.remote.console/META-INF/MANIFEST.MF @@ -0,0 +1,15 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Console +Bundle-SymbolicName: org.eclipse.remote.console;singleton:=true +Bundle-Version: 1.0.0.qualifier +Bundle-Activator: org.eclipse.remote.internal.console.Activator +Bundle-Localization: plugin +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.ui.console;bundle-version="3.6.0", + org.eclipse.tm.terminal.control;bundle-version="4.0.0" +Bundle-RequiredExecutionEnvironment: JavaSE-1.7 +Bundle-ActivationPolicy: lazy diff --git a/bundles/org.eclipse.remote.console/about.html b/bundles/org.eclipse.remote.console/about.html new file mode 100644 index 00000000000..3f810933b39 --- /dev/null +++ b/bundles/org.eclipse.remote.console/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.console/about.ini b/bundles/org.eclipse.remote.console/about.ini new file mode 100644 index 00000000000..5bd1defab8b --- /dev/null +++ b/bundles/org.eclipse.remote.console/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.console/about.mappings b/bundles/org.eclipse.remote.console/about.mappings new file mode 100644 index 00000000000..bddaab43109 --- /dev/null +++ b/bundles/org.eclipse.remote.console/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.console/about.properties b/bundles/org.eclipse.remote.console/about.properties new file mode 100644 index 00000000000..f68a85a36b4 --- /dev/null +++ b/bundles/org.eclipse.remote.console/about.properties @@ -0,0 +1,22 @@ +############################################################################### +# Copyright (c) 2005, 2007 IBM Corporation 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: +# IBM Corporation - initial API and implementation +############################################################################### + +# NLS_MESSAGEFORMAT_NONE +# NLS_ENCODING=UTF-8 + +blurb=Remote Services\n\ +\n\ +Version: {featureVersion}\n\ +Build id: {0}\n\ +\n\ +Copyright (c) 2008 IBM Corporation, and others. All rights reserved.\n\ +Visit http://www.eclipse.org/ptp\n + diff --git a/bundles/org.eclipse.remote.console/build.properties b/bundles/org.eclipse.remote.console/build.properties new file mode 100644 index 00000000000..7cce477fcd5 --- /dev/null +++ b/bundles/org.eclipse.remote.console/build.properties @@ -0,0 +1,12 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + .,\ + plugin.xml,\ + plugin.properties,\ + icons/,\ + about.html,\ + about.ini,\ + about.mappings,\ + about.properties,\ + ptp_logo_icon32.png diff --git a/bundles/org.eclipse.remote.console/icons/clcl16/command_input_field.gif b/bundles/org.eclipse.remote.console/icons/clcl16/command_input_field.gif new file mode 100644 index 0000000000000000000000000000000000000000..9e3a547c145798fa08fb692df015a793213fbd1a GIT binary patch literal 385 zcmV-{0e=2RNk%w1VGsZi0M!5h^!EGh@%r)f`-qjU_W1ny`uv8PzKoy3y2szCv&G-& z_`%54;_CS2?D^^M`je){nykyBv(Mk?_vY>SZY`|a}j_4xfuZlYv_wT+pp z;p+I}>-gd7_vr8W@%8)n`TXDM_u=dKh|$WarlE(qt$M7agU7XT#Itn2uy(Vk zfB*mgA^8LW002J#EC2ui01yBW000J_z+Xm#&}4qdq%wJ2I+@R~k4bKxePc$9H1`IS$H3||U5)uj`H9-J7aY@tZ literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/clcl16/connect_co.gif b/bundles/org.eclipse.remote.console/icons/clcl16/connect_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..556b230da5693996a541f64393a5cfb91b4bcd33 GIT binary patch literal 139 zcmZ?wbhEHb6krfw*v!Dd@SlPEEH^^~gT8_P{FCz!-aVMSH2FUm03|Vj;!hSv1_pKp z9gq~r3Qu)m%S5)Zch7sbWtx2K>xBK@v;FkGS@-1G W&gcrAxidxV#@Wd$qt**DSOWlPf-bNC literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/clcl16/disconnect_co.gif b/bundles/org.eclipse.remote.console/icons/clcl16/disconnect_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..f1d5fb31e51476a24e289e7cf2d083058fb3fa2a GIT binary patch literal 146 zcmZ?wbhEHb6krfw*v!Ci-#-3+e0>80!+v}F|MBtjf#m%8_kn2t{)PsiFvI`<|A8bN zDE?$&WMJTC&;f~n%wS-#FF5JBdhd-z496C>ib@<2@H=YBn5x*&y^Cj=!u(ec#pJbA lyIR&OHT#;)l?%|2-kM+()~m7jt&Y*$wbNf#?G|LP1^^IEGNAwf literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/clcl16/lock_co.gif b/bundles/org.eclipse.remote.console/icons/clcl16/lock_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..68fd6cf39cac929152036675cc56c7edaf9217e9 GIT binary patch literal 626 zcmZ?wbhEHb6krfwc*el+=g+^tfB$8aO_rouLfByx#?%&}fyLWD1v0z5d?5PE7 zR`f5Qld)u0*3=25e?Oo8@@(7R_j~_-IP~|^@xPx={{4Jz+a#5*w>thj?Emv*)}Lqd z{ydxi=h=d%56*AwR@~CBd~lw{vQCTROI&x%bh)uN_rvwRn@8H8UYvU8{F;hr;pKHQ z>)Pa3H_IR0Pa$D!M)0=Ky*z@`A!~bBwKs})NlZBCiA&o%?WF#m~ z7}(D@q%}3Sv^Lvxbar($*&6px=(m|*(`0F^Jad+^ov|d3U6Ylu%F<;jM#i$5Moren z+8Z}%Gi}}4WMQJVTTOMJ0<*BNLX&x7KtQ~NgpQ6bAFrrxQ$kQmN>H4hp1PKpn21tZ zl3PS-YO)+gMdQHc12(!2 M&1HruY61+_0K&N{n*aa+ literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/clcl16/newterminal.gif b/bundles/org.eclipse.remote.console/icons/clcl16/newterminal.gif new file mode 100644 index 0000000000000000000000000000000000000000..80201e0d46944f559b4a73b846886d8c999dc5d1 GIT binary patch literal 351 zcmV-l0igazNk%w1VGsZi0M!5h|NsC0{{a60|Nj600RR60{{R30{{R303;_R5MgMtu z%T%-WN4)<^zW+|Z|4_mIQNjOG!v9mk|5d~Ph|l(7%Ku}_|7FVmXUqR+%>QW3|8UIx zaLoLF&-sPV_iWGqchmoQ)&F_c|9aK`d({4Z*8Ygv{*2oFliB!+-T#Z;|BBlElHB`@ z;QyE6{g&kaoag_Z=>MMM`kv|kq3Zvs@c*yu`nl}&!1@2d`TxiL|H}UV%>Vz-|NsBw z0RR90A^8LW002J#EC2ui01yBW000Jjz@KnP{2`9Tq!8gl5Eam<;>e^56&{o9rrR-n z;O5n{a@lx2Y7_axCK5DUu7;{UJ*O8e7MroGLkbiLEpI6*B^(n06TG|z`pYHf!VrZ z*PVa54W6%gxH@FFeRoLf4R)Jzc;%{xj64N8hjkY$)1H0yPr!Z4xvR~8FKk*a6_}>- Pph=f=WmBVr5Q8-Uq17^g literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/cview16/terminal_view.gif b/bundles/org.eclipse.remote.console/icons/cview16/terminal_view.gif new file mode 100644 index 0000000000000000000000000000000000000000..bbb6a9e153e146f57903aa2b5e0d2bc58cd641c8 GIT binary patch literal 938 zcmZ?wbhEHb6krfw_|Cxa|NsA)GiL(HKmWeGdG{tQEzQ{2n8nEC$+IgA3}@2L{AWn} zZ#?sVS{lO{5MTg;pFe-joXIe2)~xRC?%A_v`}+F+{reXrF$zXQV5o(F;!hSvkehWt z1Sn59aI`Zpa>#gWP&mlIC&%G%V1r^46B`$sK!HM|Yd62LSV6;uMg|TcDTyf>3sO!p zvT!)4L>4xBvq>`gln5|79hzvws<1?00YeLyg({nbSILTlo$QmedMhU+F|q2;J|?;5|=b=70_{LC}2!?U|_HY0P>7m*#H0l literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/command_input_field.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/command_input_field.gif new file mode 100644 index 0000000000000000000000000000000000000000..f538ca707fc7480b4586effcebbb307e1979ae3b GIT binary patch literal 239 zcmZ?wbhEHb6krfwIKsg2`}dz;zkdJx`Rnk}Q|B&RId$g3@snpifBE+5^Vg4`zARt8 z>C%P9Hse>gdT6M-Cl4_~*}`|Ns9p zU;xFREQ|~ck_h2{l~5|Km=i5pyLr;i3Ob2Z#xiV)yxV|=ihgM~q8`yJoey=qLxRSFfIA-s)E fymhU7Rhj(uX5s>U{Q`A*>>bSPleA1#6d9}maD{N$ literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/connect_co.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/connect_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..ae5e64b9f6f1b090da34d65bd48784886e8e2305 GIT binary patch literal 874 zcmZ?wbhEHb6krfw_|CwvfB*jZ^XLEn|DRzLjE2C-3jxKSEQ|~cObj|8uY>Z01BW{U zD~F8728DwR?CeT95(x_rwKK_BwPb8iXlP?(Q0cMwkmTGe!|LZ^v2oGK$r|2mF((UE aj!xCHPGXTXQajxtY@6nCa&v+MgEavEOe8}9 literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/disconnect_co.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/disconnect_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..24a628713dca636bfe498223f8382f189140cf93 GIT binary patch literal 90 zcmZ?wbhEHb6krfwn8?7efB*jZ^XLEn|DS<@LGdRGBLf2ygAR}llobH7wWsv2Jk7<( s$kioP{n2(-nO*KN;Z~JpouWlvOix;0c{hLlefKNJ?z8-VL>U;Y0qcJs5C8xG literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/lock_co.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/lock_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..b7764789356f9a62aa0b9ad50ff020f4e01e3b5d GIT binary patch literal 588 zcmZ?wbhEHb6krfwc*el+=g;5YzyJLD_50_~U-ut8zIf^C#x1+H@7%j)?fOrjzkdAm z<=~+s2M!)yzIxM^?R(a3*t~1c{=NGTUbuAS`;VXBzW@08?faLn-`;-s^yS<4KY#yj z+Pr!9uFao6z5Vp@&BqU~uUtB{Va>dqTUVSreem&vYxnP5+P7=n)JdIBAKkon`_l6# zcb+}Ief9F$^JkC0d-Lq&^M~8FZC<}>?%EY|)-0dBdfBX%OJ?lYvg+geSMT4xSigGF zotu|VpEz{w%7uG(ZoC4jesJ&er;mpY9{m6R|G$6#{{H<7WH1ahp!k!8k%7U5K?me; zP@FKZuWWE>YHn$5cIfEr>S}Tj@1M{wJ;9+@Tx`ZnF@14fmZ>g%vt~+(Gczyf6J5PV zlz%<{N{QvmMYeIU3JI;$QB<^MViFeS<~+7i)!trJn~{;3hwIW*2L&5PM>_>uMkYb= z)mKb(tgLiQtRxu)-UwV#mXX(!)iQ9FWS_Fo%-q6MS2Kx2^3j6J%LC+!W*AI#Zsk#Q d;)!8kXprg>R&tr6V3;hpC_v6pl#7MI8US7A;iv!r literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/newterminal.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/newterminal.gif new file mode 100644 index 0000000000000000000000000000000000000000..80201e0d46944f559b4a73b846886d8c999dc5d1 GIT binary patch literal 351 zcmV-l0igazNk%w1VGsZi0M!5h|NsC0{{a60|Nj600RR60{{R30{{R303;_R5MgMtu z%T%-WN4)<^zW+|Z|4_mIQNjOG!v9mk|5d~Ph|l(7%Ku}_|7FVmXUqR+%>QW3|8UIx zaLoLF&-sPV_iWGqchmoQ)&F_c|9aK`d({4Z*8Ygv{*2oFliB!+-T#Z;|BBlElHB`@ z;QyE6{g&kaoag_Z=>MMM`kv|kq3Zvs@c*yu`nl}&!1@2d`TxiL|H}UV%>Vz-|NsBw z0RR90A^8LW002J#EC2ui01yBW000Jjz@KnP{2`9Tq!8gl5Eam<;>e^56&{o9rrR-n z;O5n{a@lx2Y7_axCK5DUu7;{UJ*O8e7MroGLkbiLEpI6*B^(n06TG|z`pjqWXXeWH$Wh%qo&0|4{v9aI1S literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/dlcl16/rem_co.gif b/bundles/org.eclipse.remote.console/icons/dlcl16/rem_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..559e462985f439553de36c89f65392eae3e9a44e GIT binary patch literal 159 zcmZ?wbhEHb6krfw*v!Ci=-|O)$BrF5cyQ02Jv(;n*t~i3x^?STu3Wif$&v*N7X1JJ zp8*vp{$ycfVBliV0SSZ5U|{hHIO(~1uSCNtU5#UEjBbj3ZUQY)yXJ8fa4;1Ld|~WA z@!)sI-4+*(HUmTFi3NKYgjzF96l>i0I}eMb=?0hv=!;iZy|UTOS9Ern3j>2S03Llh A4*&oF literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/elcl16/command_input_field.gif b/bundles/org.eclipse.remote.console/icons/elcl16/command_input_field.gif new file mode 100644 index 0000000000000000000000000000000000000000..f538ca707fc7480b4586effcebbb307e1979ae3b GIT binary patch literal 239 zcmZ?wbhEHb6krfwIKsg2`}dz;zkdJx`Rnk}Q|B&RId$g3@snpifBE+5^Vg4`zARt8 z>C%P9Hse>gdT6M-Cl4_~*}`|Ns9p zU;xFREQ|~ck_h2{l~5|Km=i5pyLr;i3Ob2Z#xiV)yxV|=ihgM~q8`yJoey=qLxRSFfIA-s)E fymhU7Rhj(uX5s>U{Q`A*>>bSPleA1#6d9}maD{N$ literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/elcl16/connect_co.gif b/bundles/org.eclipse.remote.console/icons/elcl16/connect_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..c0de0d32dd66e4efb5e94661dd3f180de819a25d GIT binary patch literal 890 zcmZ?wbhEHb6krfw_|CwvfB*jZ^XE4-G{ncpGcYjx|NkFIj)Kt;7$G5`_>+Z^fq|7l z2jpK+o^ap@XW-_L@z|i?$jHvFq@$7W@BkyD6rX^F!y}hAHe)6Mg9L_#7FHRi7cT-A zFfa(}&*GW6ap~#l3jB+n%(#%)*d-IXDQ4w_2gmy4D{r-EOk8+&qC=vVtb_oAH2~_rouLfByx#?%&}fyLWD1v0z5d?5PE7 zR`f5Qld)u0*3=25e?Oo8@@(7R_j~_-IP~|^@xPx={{4Jz+a#5*w>thj?Emv*)}Lqd z{ydxi=h=d%56*AwR@~CBd~lw{vQCTROI&x%bh)uN_rvwRn@8H8UYvU8{F;hr;pKHQ z>)Pa3H_IR0Pa$D!M)0=Ky*z@`A!~bBwKs})NlZBCiA&o%?WF#m~ z7}(D@q%}3Sv^Lvxbar($*&6px=(m|*(`0F^Jad+^ov|d3U6Ylu%F<;jM#i$5Moren z+8Z}%Gi}}4WMQJVTTOMJ0<*BNLX&x7KtQ~NgpQ6bAFrrxQ$kQmN>H4hp1PKpn21tZ zl3PS-YO)+gMdQHc12(!2 M&1HruY61+_0K&N{n*aa+ literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/elcl16/newterminal.gif b/bundles/org.eclipse.remote.console/icons/elcl16/newterminal.gif new file mode 100644 index 0000000000000000000000000000000000000000..80201e0d46944f559b4a73b846886d8c999dc5d1 GIT binary patch literal 351 zcmV-l0igazNk%w1VGsZi0M!5h|NsC0{{a60|Nj600RR60{{R30{{R303;_R5MgMtu z%T%-WN4)<^zW+|Z|4_mIQNjOG!v9mk|5d~Ph|l(7%Ku}_|7FVmXUqR+%>QW3|8UIx zaLoLF&-sPV_iWGqchmoQ)&F_c|9aK`d({4Z*8Ygv{*2oFliB!+-T#Z;|BBlElHB`@ z;QyE6{g&kaoag_Z=>MMM`kv|kq3Zvs@c*yu`nl}&!1@2d`TxiL|H}UV%>Vz-|NsBw z0RR90A^8LW002J#EC2ui01yBW000Jjz@KnP{2`9Tq!8gl5Eam<;>e^56&{o9rrR-n z;O5n{a@lx2Y7_axCK5DUu7;{UJ*O8e7MroGLkbiLEpI6*B^(n06TG|z`pYHf!VrZ z*PVa54W6%gxH@FFeRoLf4R)Jzc;%{xj64N8hjkY$)1H0yPr!Z4xvR~8FKk*a6_}>- Pph=f=WmBVr5Q8-Uq17^g literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/icons/elcl16/rem_co.gif b/bundles/org.eclipse.remote.console/icons/elcl16/rem_co.gif new file mode 100644 index 0000000000000000000000000000000000000000..2cd9c544436c47a57f20b348b3fb024bb50701a7 GIT binary patch literal 163 zcmZ?wbhEHb6krfw*v!DNV#SID3l_|nF=N7n2^}3B4Gj$y6%_>q1sNF`2?+`R|Nmz| z1&Tje7#SG27<53wATtBYuHJj2L#xNM)vQ#JRl<>hDKU#-N&yE`p}?0M(Gw4T zcQCOfDoF5h^e6?|s2Q}nBw9^#gWP&mlIC&%G%V1r^46B`$sK!HM|Yd62LSV6;uMg|TcDTyf>3sO!p zvT!)4L>4xBvq>`gln5|79hzvws<1?00YeLyg({nbSILTlo$QmedMhU+F|q2;J|?;5|=b=70_{LC}2!?U|_HY0P>7m*#H0l literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/plugin.properties b/bundles/org.eclipse.remote.console/plugin.properties new file mode 100644 index 00000000000..5e5faa0c2c8 --- /dev/null +++ b/bundles/org.eclipse.remote.console/plugin.properties @@ -0,0 +1,9 @@ +########################################################################## +# Copyright (c) 2015 QNX Software Systems, Inc. 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 +########################################################################## +terminal.console.name=Command Shell Console +OpenTerminalCommand.name=Open Command Shell diff --git a/bundles/org.eclipse.remote.console/plugin.xml b/bundles/org.eclipse.remote.console/plugin.xml new file mode 100644 index 00000000000..592289c59f4 --- /dev/null +++ b/bundles/org.eclipse.remote.console/plugin.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bundles/org.eclipse.remote.console/pom.xml b/bundles/org.eclipse.remote.console/pom.xml new file mode 100644 index 00000000000..921424bb4b9 --- /dev/null +++ b/bundles/org.eclipse.remote.console/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.console + 1.0.0-SNAPSHOT + eclipse-plugin + diff --git a/bundles/org.eclipse.remote.console/ptp_logo_icon32.png b/bundles/org.eclipse.remote.console/ptp_logo_icon32.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ec57270f33470106ed4317f17926cec5b7b8f5 GIT binary patch literal 53143 zcmbr_b95!$+92?tJGPy4)UnNuPHZO~+qTiMZ95&?c5-6dwmo_8y)*yKd^7XaD(pJD z_S(;0tE$$j{X0*noQxy_y2#PB~eJ!3) zh9O_)(6(ag4j>?~DF1ArGwa@OUq9kGil{j%+88^!=-C^A2pHPv8xaA_?2TM(>@6IK zgcO-m769NNAmCiK_A08b8RscI)~Jj~L79y)90o3R+N;o3Qpu3N1SW88g?CmwMB1pR zN|f{Mw|o5{w`Tfaw802`!A0v)L;^I}E7)xB9E}gWNl|$G#DbI88Rh*hB4@^@v zmZho8;@HePQeg$@VFf*Bt6Qv2Do+M{mH)GT1SLScC{zl!UPdrQVR_`EOy=%J#KQdA z{R3xjpfEZ{^ygc(2BK3Dt?${C98&~6+>#VYY9VII6;bZ@Rys86*_jh@K8JiHluE*N z8Sc{vW)gOL?jwH;$P9`64cdA-e&v|H+y&!`)ME82XS!nry!X}(z+1(%t_gWV2JkDIv(l&6@XmWvQxV{j! z^4vjP9H2+rmfcS=f*XgUu9#O(EuPG(x(sjIKwJ?>`{Ns?sgJfTp-@JXGp%iiBd1fW zD1owykJ@`!5gnErgx>q!>iz4m zPSqhtE--8BO3bo&IvHi%`wUz{;p5&w6$ApDWFLNK@^NH=&`Cp*eCEr zZz%dQlJPTN5(gqpHFv`A+sj#H4HHFbEafqXCnT;JD9lOEoby>ok` z_=BKTS@vIdOUmkquXQ03VW-n^Rd_&Sr`lceWmWVhx;}H)3)OwTiw)aR@LayR^ZBOC zgN$}Y7f*&X!6iR8A3v>Z+0Dqu^74ngKN%xjod!8%a1}Y^q{&cQ-MaGRAH5G{Z_p*y z``Z3n3uOUwE(i$w4=W2L#jhvROVeR>u$InQ#Zt7< zQ&Po<{|r+()9ZwX43>R^Ktw(PO%X*%uJH^L6AGo#*>FTMF4498X;ao^5{@pQCo)fL z)K48l49*wZbNyD@MHaF8v&_ru)_p5ut-h!V^7SYCU_JLzm?cCPVa8g@ZqOzB;KZ?= z%~;oTvCZx^|%lL6OCzs#O1H$i~VxL*>Di^QWi@xlNiS7N! z#-d0TS&ypwhEQjSO_}=Hm=P%Sr9982l6 zS!WYO+~tknq}OV{^^5v*%UJ=LRN7WJ!%lAvhHmI6zz7;dYnL@jJMbNmY^s}7xrn7%C$t|TCYiyZm z1IK;JVy4;ZrI$Ruclr3)6jwVnNK#!eR>;GP-Jp%OVdb9@#RJ$^76hF=BDT>pUj}GiSwg zzM>xh@f-nNn*j>606_tAv~sOSvGNSty@5sQV}i4^zC{IQ>ZTHD2f!v5l)(E|Fu~$Y zV={zQz>jx7p_QT!*E~18sY5(D$nHATb zhy_%v`JW?-;i8-i7(fhN?$<9_F1S zmB=0?1BMnj^5mX^#{4*jith}WeZI~O-MM_Twl`6943ilPH zr`K;Z53eh;e_I~wO(=OI0j)P!v|eYEJ7+jTC4)$114tT&P*(olzq_F}gSvE(kVg)2 z!32E-R9|~DlB5D@$b^+L$^d}yKEtS5JbwFYW2g57fbU2S6Sfjtz^Jj@^7t+DxXRjn zpXQIQ@6HLJw~z?NjJF_(L|_K%bpH8rjYV2u1J|_hrNmfZp=iBV*h99k3|xgsb?SHgb@T>o;W=s;`N4Sk>{D7*2}dl#PZGR5 z#x3ry=5T}#$4_!kzWOZZn#X7l6S4)0hsy%|QE7VU&USF?bX6*>nLU7f2CzdD5kq64 z3w#ua=n1vKW)^4vMQ_MP?w)-8;bm5cOvbnzR8YlCfkUHfoDC;FM_~`-tCKZilJN`S zW5Xjb>vVLX`z0dg6~oTJA~wPCKgcWbAUV;7er{9mYebe*t;X3oEu-0eA*eWYI=3%H z^e^O5k>6j9bF}e@YXM=A8Af-o^P|YlP$!toV*Qw;d~9i9^x#0ufgj#zh$u;Z$*oqE z>AEQ!a8EKEkJ}?q3T9sl1`DdsQ5^MV zRbQ$#SqweN4A}V$;mpW^vmX@TSkLNif7LAKl;erFgGSlYJc`NoNt&x4qdXTP!QBl5 zM}EVaRBM7wi~1RCoBQnbOQgX8F#_UgqMG`O-FDDdQt?n4N&K)-^oB{FV3Cy9!py%~c ziOvh0ad^Wlcma&uB9z~SoGFn(i;sh_YU9EBcx&eIrtkl2(gx~DbBL8)w^$bjR6 zSXynC?yU_UYAxyEOTHj3cUMsJI0hBpS1Y_k!y_diKIr9MBs7d-I0e(Oq6 zVKbf^733L;6xdAE_rsI%KvR^^EKC5CIcdO96|(*@bB2^{8ffJ?6OcL&4pG9q1vBPD zG8LqwCa(kF;^y*&su8-4qstziAn?>O+RKF+-P$n;gy&7(wzRLfm!iC4IG`hhwclF` z%~_Wy;muM#vV*uvtE~yqf!L8`60%0}ME)Qi{qrplOs|IUC-#tB=#F?dHmvU^4yM1( zO*8l%v(N@5f~>%TE(KLA`6(1A#<)LRh5sXE@FRQ=$M!b7#8t+KB76Gi6hvy8+b@Hd zyaIZ|&}N9V(kA;k+QfVr%1kry?7AK`nje6)AcV7G{bx8bU$g_0oT`G0rZ6N*=9qwA zwns{Fp!A(^2qgJAz+rWXf{CH#2&YR2>fUHgHAzw|6!~2Amu5xH0_7$&>3VB{*b%FY-6#v0Y=;DMvfGybkpF| zF}%Y?=Qu4{4$y+=@4kP)YaGRqrJuvj8D~n;2*i%-M?NW%8QX)H8o{AHx;%f-trD6N z#~K7U7zDuY3X+&%Z5lZ%GD`ia2s~v2vJf&;*~Z4eDCZBhx$HUcQ6n5S%0qi^wN9z<&vP;5;E0#!dBRAEQt5c}3}mpm!KgZi$@gG4b37Dyq+x)ZZ0H(xSti=OW^&ojMrQ9a z+vpM|FwJps=7R;c=b)KYg7_O^y2B3$BZy3!1wRoJlX&sD?$R<1@i3*05g2Bn5!h0y zX_y3wUjtIDvkL1~*6b2m-GtBssSYwH%k%jW?7(=}e+(T=a+?51vaxyhrwpW&oSSRp zhO+=%90+rS4U=__mo4;VTdfO9@Y>%h$ZCwA;pS6(O}p}p88k3dKp^d4rOKc zJ7Nx&gL6k1kL)%R);tg2bRf=&nUC)@6@lvXx*L2qp=C|@WzS_07(q?mY?oQV zFp|jIGqu_S#@OAe&QQuVN*>gwQ~n4P-{c@y?$QNjtB<-hc$Bt6VjfxD$b`Oq9aT$W z>?$)|6DZMc&$>RtegJ8QiC=`$5FR>*FRGu~2G!u#!-kop+cHSBCBR110=4uEWii5T9BIyvhCy@=w~vsULGEM#pt^`X4DWJjj zQ-1Vgxqww~CQWH3ZD9E#c>Ab(&<9T~c)B(}qIQ||ka^^}Ca40^oMjrI5iEQio3~HQ zEKm~p+dDy#Pm=_m;CR4lD1>O`Jf%iQq~giPOHp?6$Dm#sO;)evh}_M=HGY5d*dqZVz4 zQ8i?kL@tL$6xp*&d#IG0HBP#tbWH7!*uv>wREpSsR9tVIxW79Im47BX=}Vxf*WZjN zdmSpFz%_Cjg^oL1E#q)$Sc~k(?sQ1BKt7AvH0J{@%i@gs!dvhT6UbZ(@o!iY32#Jy z))lrjsH9!E&eamt>H#1l)VXFlIMwgVUenJk|p5e$|<$nVm8Y{}XTt?|QKsa0V$NogzZd zR~uLs?0#lh7u3ky^aicv31%7rSCeH^lDH+KPmnydt)Ktiv~(f4O+y9qj7CX`^O{Ri*QdzX{GOAo4iW_o3@)N8-9y{Uhovt$BOwR zxL1q5C~vHh^Q{;g&_p-r@Wk4?KBn$x!$Ywon{sp?i4U=aulS7=&UdrJ)5KOM{(sv2 z9dIxwZ2K*eM$DP3M+RB8#j-B1vDFBPJlx#2otp$=7r;H+vFTVv!OB8 zK*W>ND@dr8gmhxt7f5lTK`I_wo@l%l+2b75H!q@}dlMmb zaK|)_y(|mqf-t)#yfYt&TbB+Kp^L8(DxV)CyNXMngQ2&JTb{f(H7q*4_Q~#g59n{h zqMf~{t-X|&V`UGbz$Bof>Bv#ag`ksh!G0*;1OW-623W?9LiSkOV*!ApV9dv#6tMDH ztqq*?0;v!|J!R^FvWi0icFmR4GTmv6E zIkg>@PaXB)%(+s@(YkZw(LYU0hrfOFufBt@SIYkBB+tgScdc7&hLeW4?9jxcVjOA0rw);d&wL{~=D3@w-EgZoR5I9yIMKDGH zhFvSJxZ{6RV~*d4+%w*sOiHa`3#h1X(MIxCTQ#VGWuB)xn#%hu9({SdNP z(|F9XTMw`8vW)!53FYKSUa2XeX)M-@#NoT(m>INLB1pWaUMEP5?&w-5@gy8;1e8nd zj^b$HThzme?ylk9?B~(U+*c2F!3$~rYY2>YaBx;)Uay*ZM~94f>_?+#-|>r)=`ZXo zmFp-p;bhBCwedvL?;0n_t8rb&b9#n{$UX0T^X&);0w`d-%uvc-_bziEq$KOiw006a zi{cN%!t8}LWLt3I>rH05?^7^n`21tEKX+Ja2CYD{0Y3G}I9D~>Ps^+|mTO#&p}9rg0_%Pu&8 zX3mLWw}b+keDTtOw6AG;s8u3oeB-%zCQHpOBVh(lbHB`&aCvYNwQiy{P^cSqt8i~~ zhY1Q@&kE|t2>}iwn53t!nJ$}~;kq^`52n}+!>R+ZW^f%c4?5`rHbQ%LMIJf3;q zK5`-z$O!lkNfy(e)IW2yDLoJkX8xA@v+_pb>9i-YQi#Iw_2@jm0D9W83jo2j7koVB zPwT~t3C@qp4Z|*k9o}yjIt6R*kkaiK%(Ub&LB5_vWnPnL6npbeze9y%SF-x2#1=?I z>*qouSRPu1oK6k#`Y;A36&o%~!6MIAvM6hYtB&p9pj!|O$d<6Zgm6c_c8m`+ai$j1 z^hwzd+2Xq9oR7aJe}efy80hJQXkK5~{?;Vb#55ECT|{{NL`*{Wu(HP*p7HGe)^U^6 z!MLJ0;dfbzZ^3uKCiN)7MTh+_n)2Kywx|7 zYUDHS2IK`@M2X8ZTdlv4$$vTNnDyyC9V# z_jU7Yu5@-OV%deFeC7e&++T!wp6#A3-n@UqSh1iTP^U>@Gnb5$&|tbIxPB#$+5THv z4c2xuN98vS4YjuN?aBSG+bH)fSSv{2s~}?rY8t+d4E?x`C|ZY4oDK>vSJ`u(s3&x7 zjQ2Ms??OACcSRlO(xDD)-Yet3UoYzgT7B=ao%O$LYaKM&C~ZM@lN6Vu&!n`Wte>gw z*6vy2>Khe)r0IrLbK5UYwY*+@;Z~@qPyKBW*A|iXQVbTjyk+G0+vX#1VCtv~4K6r* zW+$_8^+X*XZHvB`ws7TbXC&?ULm#Q2l6DaHRta|o$k7o=cRrD-C`@u_$hLBo=b2`!}y{BHC|k&c0R*xnY>Q) zrB?Gqy!I!RSZ@vwNA^xEjZd-2du}WixCr3*EY20-C}SE1Nu?HfkC~n=oT&}ng+4Jm z-mq(KHREu`eSAc4`V+5kVf>5B$r!rm)uCmp|ytX zCWN|~<^K1mR#cp}X;hgTL`^5G$sG(?axS9fTp4;Q(Z^S^zZ&XyqrI*lA8*+rq*Xzb zwT)9Tz+p|z5Ddc>R`!v<59VIEDUcNlm>>A6zGKvubH8b_1nMOp?X<72cz5)kGnBXV zo}X{gVO43~&TDMz7+}XNED3uvv*YL)gZN17ZE6SxwJ}N6g-uDE_wwv*ZZ&IRHbzs3 z1K{;fFx;q}(!5|*(^y9|dyZ@+!z=0fKl$*v#cerjS5*I01+Ama}u?dZk>u@<)1R5PE?W%}#jWV&z^lk=8&oh-c+!$NRi zrG<}i1)XtMG?Et;aj3)M#6dm+qY!$31#RHiLmz=&KYN&MVqL=pt14~kX)iuA=z119 z^9RcyS!9p$i_<9e>`0@*%e+5IhD*-Vfa4}8vdn9G-)Z`T%H`hRV?`0;Li#M->%L}1 zQl)I$`>z>(xwkW~W;&h_$EQ%SA$jwW90!h8zf*+OpUuk`GlR?gEsWcXS9^mg&XD+A zh77t!ZI%uZ>Bm>iUS54v-XKCKVQ<3R0jq9KUbjVvLoD~lbejm7F1EbQ;oAgj1GZHT z_On+*jk2<2*aR+z4!Oq81E}*Q-gkEQd`3aS=9lU^Tl2FKKw1E+Y5U9h|5LMhnJ3zwzug4L(SFe z#{9vqEt?r^psS~-d5}xZ_{G7m?m%Q~F3VX5F)&RaUshws{?-IuyVI5GWUfwIpI7_v zMNI6k;3Jf_ggKBYRtN>nQGY$LkBm-@noc&Q=%MuMYQ$_zEK@ z*&tSrW*{21cnIc-*$UyOE+2X@tb@~e%PK#EsD^?Bw?9BLs(q$%SBl;yL9WSf4EAi&q0TwZ6pW)zZE+%@&V*+z~Wf`pDlE4q-rx z!vxo~?(htJ&4U->QM0?V=^2A-vmAfTj)jQ!=-T@hB8`Pu#olicX;eGf+I%y2_o3;C zDU%mvL{N#aPchXm_7HKUU*@2b7A!K*Mrrd!$M(E)YKP&{TKkVIhv2e6j!=K9uZe9?E;Z` znx5HbVEF>v)?DGZ8Y}C2pj~B}`8&(ckq-{OEE9aPcHG`etTps`Wr4}9b;zpXc!UH^ zz?EJw^A5yN;`XJRP3t5$W2RdB2lv43{%w2G*s~o7_5B$a7w~$pL)P3M(tQ~S86@ql z9wy;x_#dE|-Ly?Y`a1c#Paa3G<5+y5?O;a2-=YKp_|86IwFCvW&!zKf9>`gi(pZYm zfdp)|9bM6xO&y4B>t?IVMFDsxxmJ7jOZDOu=MU5?miSk&)jc`9L>HDW&>7Cj0KW&& z)ngE+hLc$~T)q_{=lk3~s%4W!gY*t*%YD#Bn7fB55cGh^(Bxx0jrwC8v4zaa5jG6# zqCYXuvgk|+avp%99r^?f4?(?eza8s-jYnwe8?T`o%W@c7R=-QZs!S79 zTbQ)q(cS9be!W$S0)AVu)j7hRK*YFjSUJSwO}X&>SIMguiE22Vyqn$@Zp;swO_p8K zeWtvA$gL74b$6QBnS!m({8P(hiw>T+j$zdrq4Krg*k0CkZ+ZMCXgwA)&O-)%kWzFA zL3tIlMH`?|hW<$X6WfvpXE=^uh$)f4RUl1MZBJ;&gjpcnwnp;lPCvvxHyG2BsKW`XI@(|;M94Q0i;7a~b5l(GTQG&~9&d_K>O)Ldrx=^GFP<0Y zlMBcd1M333@mTw)&UUa`wX`eDxdI{qdf$MPVZ-A=Yuu!81nD&qc4lYas@@SShm521 z|G#~Xs4=2Hf8#DHO+2kNwdTbe!qhh%c@|xN0YBpq7qdt zB-fQ9K-@`mT{ErZiEZ0SfpDGg8dD9|K4;~y{;luMxZ9<-1yL5@OUcHo>I>;x&Y8+E zzUQqeMcd?GdTR-(r6So*IUq*8y>K-ejm?I*-S(TlqQ>iI81~Q3MyR9Yg--PhxQ2N_ zX0l^lcVjmOaLjyTCYDq-458T+v_>s|I?ERcLg(=D0Aho5@>)ShKPLAfSchOss{>GI4G$@Vw4OX z9DPgai1)F+xryV)6!;LIVE{n0tb0 zXVxH*_Z<+vlITx@cd=hxVj8L;-^N;`JF7+@6Dx{tbmG$!Lk-4QC5}oOvMs0((d>=2 z#YNKA_au88_k8nKcqQcV*O8*eWi~hZk+nORb16~t3!#`djIyvoK?3yWy+(NXk0vBD z=MY(zUN*ktp79e<@HuSTKl@$CrhW8(OXx{5-!m`-EvIhc6*caX_WI8%FImI$;pn^p zOH&TmK=MV6$pkP&gNvIQBGIT!sFjMqm0h<#1STL=l(^wfMns*Y%zF?$nA`Muzr}u0 zAYr`P#o56nQe=J0r~!GZu>0{u7R~*OpLs8H=L*dbJ}3{xtTqZsw})nUipn+H-gUFO zFrB9z*^9!BQ+C~wN(k4``~WmkAS|vkhHMANv}j{gzDX&HtI)BC%nJx%P!ot{hQn2z z9k$P$0HTnR?bjLCx=AHiF#ZbxtS47d9HRY+i6bJypNqtVGM0^SmuaD6vI2_VTI9(Z z)H58*ps7J_ekqNL*66@1!99Q?j)#Ptm;l_`EYl*pfOCU^-uPf3 zKB_!V)ciJl6*ftNzN5$;$-)l2YXF>}f{R&agbHap(%FUWlbtzix} zPlS>9XYPXru$_jhzN9J;zJ($P1pMtnUX~ zEf1K_bhw5*+6R?y%sU6{6R*j`;P7`qph-_EW&-g9`mdNX!K&Pp;am!?b0i&M!-7dj zn|6_d6j6Y~a=>_eFF4(I$bOyA2K<`JJ(h& z6A=JDX7|zDp_Gy{TZ7yf-blwQ2Y3C;L-p3jHB4n&EeopnDF#6lP#_H|zYKU(>YB_< z|A^3)NfeQXLWF2|8r^eSstn5m+9jU{m$-~^qJ2@)J~aBDxzS*y84;LIQWG|bd!6vt zISidYpqfnn94!HKRQCfUnaEBmU zu~rrm{PxS2!E_RT;z$@;h|s!P-T*E@pvA0dv87YJWr*1+zY^a9Ne3yi=3A-wbX@*i z+;W;>EqRaePt$2h(`ZZ{U;Xjrd#W3rKV!N|w@<>els-(r^esE|^~^;O9zJs@`cBAA zmzSq+Npv3lVKSdZvBW}X*N0WQ%bGN^Ha_?UgOVY{Z;O%SBu_lJr-AxyI!7NyEg~D` zL!DfwVSoCI5pJD%oCKKk7<-|SX~!+wqE}c?PQ3BxEyF&6YdI zDh83|!+0|Nf4Nn^vcXQ7@=ThDh8GiY$MB6=HusNz*A&d_&X|9RmWYPd1J)-9;*Z4t zNY}jKjJe7T6-h<$Z;e&YA15X|O(k|W31gy8{qh&cbtAO{hRbD!>VTx^W|~!&2_Nk7 zwwIpT^zfX;5f792_@TW$WqT@;;)d>)zRupPUJ~v-z0iMrt!~6}+>ou(kZr8w0bnrM znsL4S~n5aRy!i@E-b$jq~0mj;l#oE2WRgamX!sDP{4t1lS zFuL6iuE8MvRq`4aXo|HKp;HZI-G?HfoQIf2nUT-4Eh9R z0c82=gAwkI<+!AV*64#_1e<;Wl_3UN8?bi5-%3MIU^yVc9UH6Ejdx&!N=)l4U_$dnra!sif|&<85*w8u1+JH`m@AS?{V?uV%yYu=_OP zMRkl{^kfEH`hY`Dr>>w#EYNj{B30AVC@+dA%*H)tBht&-JhyK?O>JKvjKda|*)uV3 z+N=5B4wk5=0^DlEW6&?mRbk!L&*R0y*@&$))+9}El{AVm$9KjIuUY4wdM%k zcHJF`%%8CiuyWOc`oL54=qMhu4s637)ae*~a@ZHV?OgAjx@1exSMu*7vb09D*EZ$O z7dSL-mpviKc^ZP!x)ddY^=-w^6cyhkbs>@(U90?M=DK9!=nKoNk%fbwQ%f0i zP!?1VpB7&K8I*F^x#!ED@AA2MLVM`4+j(Q<(24e>nMkf)E7VT$`p$n7TXhv!X*>E_ zTlOAXSICU7!NgV6CYOnA=9VX0H#8iO1XA2QcX)HbTZ)Wue3MNS8vDTiHyM(i?s25Q zRf<6{y}()IedxzTo5XxXvVI~S{|&LS!9Me%Kl8q~wCJEVQ`RKVA|n%W$~ght+nO$4l0^hHu#)3-b>FgX=Pa!564`|RAmcsCy_>t_75vC{U>aT2rwz|a z6;I3Vj(5itIXTMqi_^aP?t`=X7c7l3)(d7QWw>EB9$oeT0Ruql?te?wV`ye_s+;OR z`u2}peYL^VJ2Eo-7e_gM$<;pXzIZz7Xpxrnb@ca*np0 zGa8__^;i3^Kvcg-OY|!eQo4?ae|ys}@Wt~QV&s0BNhUB@L z62|ImH2|K_1#BzrSVk_u;uVA>l#frjpG6 z=P{nr-7`StbMKyRMvN9f`_su1I`4J!DCbdBxLi+XC&4#6;vgczNnBC9774M!Y_{bt z1&cu_AXepLm!`JM<|~`ezXApSv}F5smZruQB&S%t^&a^HZMNfZZdXP;-k^5TdtlO^ zg`o;vp5_Dgt{C3wX%1`<^fI>+b_cYc<|A-ZRp3=l=##zV81#4+;v-V)-tR!7#2Zor zeKCZv-mb@W7o1|E5yOyg^zsKu#dj08E6np9=;c|qS=jp7raB3Hi?1f=p5SY5%S(7uZil= zMPg^d1Gy+>%e6Mc0Y*=ABGxl_g2++2XHnWvbj|9;$Y(jjXayc;1&ss5{FXe}IHz`C z+vTN5H9NFNeT2qd`OYv)koM2ls)?MYA2%GvjArV#+UjRMK^`4YZ;aO8%|7F3OaIh5 zw6G0S{Egiie{{Te=-#5KhK_$9jjz<+`)hO@_FX~LEP9w+j}7)goMb_^1}`Ph(MYg$ zhWG*-RrIvb$q1guMekLcPKiW`b;v41GH&ksbM|FR#~XpS&lI2(B|7^y_Eh@qua8_+ zLPs#8*@ALUS{5LRUV98DfdnFZtIE?We`{S+fLuE~6$4dF=og>je5VNv+KstqrEs2@m8`xg>1iy9hPf~R$74OW)rl!e4|eyk zbmdXW58!MynV`0}c*hYG_&c};xF)rN!cSOg$?aqJ9$B#dt zrkcLL!qtVNk~Xd)yq=V9HrmlM78%pS>LyJD=qd1_?KY;159BB`04J23L3IkWXSEEl z)5T43F~{ZcyP-#mTn~wwhaD4_U({ZPN{p2IXIFi~=8wDt^^my&Wl;@T=px-rw-6w? zfR~J2gQ@3JnHlrbn{)lRuj2eJc#(amgVrB~H=@VF z@2XefqvPLItvGDMq}2j{HJ6DHe|_3oJ(Hr)UZ5z@(8uhH(u^L+Eq1^hy(aADfu~`` zix6B>(h&l!j{9k`%4vbL;&(b%AsK4>T|Knb(#_eE9L2Rn;(JX7=mq+5JW?~($$#w- z8`&oEgt5B-4iVVT;*6!9gySEKsexUX0bXjGRJsu>7qK6*6mdX+a?h{2s4}L(NeU9| z!-J{IRir{#eA&8H+sE3c*cHkXOqGQ{Gx;9~a*>+O{DoQXHcPE5W|o6z+zHBNuQ04V zd8y{#Xr42AaG(F%BK0C1A0G(-|8$4A*V7()2{g+5*3hRc`fHT zuTmZdZ4&G7sv#luMet7`>A_HgJ4qbR2_Tb63P9?VZ7(Br12sL9NcI_GVxlFd@~B>Y z!Pe=*sE}--_5I*JM0UEZZ%yOiv<4kPT&GGt#cjT%YUq(}?LfTB2c1+;jvzz!S}dt+ zHt%CfEW(dC-_co|2htH}`W=dT8R{k#GhHNgJ*+KxRJPw$4|YRw{4q`iFxi(i+S(ar zXMtkzkzx0t+~dS!WM%Ck!}bUs^UyM=@)GvZC2rY)oJ8X~Ctc3Z$JgpO=TRbxr!1wx zPdWM4+hiYfUN-S6BbJpi9c54aO_)k>)m@~Oz%*6cHcNCQh8h0Z-9v`2NN#Z!wJ~VYrQ!$gh3R+><+O@QFLluvP zPPy>_l~dTyDC+KgbT)H3j7g%E!dH$e*C&GOYEK~5RrTB3bJ!nhjE@JkX7!Xm`>c(K z+d$coWGta<Ym z(nVW&zGf{%ZdR90wOCa zAbck9>#qVkcf5?jm^HG7=?B&o+!3nMrk*z=GJQ|Sfj}gj-MGOms&}sa#ACx%#&>f8 zXdt)ToBqlsp7v&allxEhP8-(9nvD$SW%^C?21l=zb4aESKVp;1KJ;yYh(6hVjwl65 zh|Ioe_}?x|d_5D+$!x%nkx1ySpnoM99ZmfR0Ht0vN;g=O3LZK?#Z|cm$BK|!`nj^~ zxcOhn)+EXQUbePvpX_|4FAb2j3;6fCK%osRZxO$s$0?>=*{^RB%eY%$VVHZ4#7(7s?VmhOId2|NO2vmQF$?#yxs zOh;I~!;9-qs*5hRvf*@PhP1(dn|C-`ys#ytujMve?-CLY#Xpl>Q3zYUYnGJe*(iQM zgmmQOKxH4wlx}r>#G=cQMtt}h?vsPPV)o3S32uOuqZ#-r9RcErV)_h3h|8-kY*XI^ zf%2k{P@;iQuI(p?%o6{RoYm|H5ELHLYl2KvA3VgvCY$K&@_q>d@!jS~SgW~>_DIG` zg7fvecSCNxb4VF`E?TKO>Zsi(efxOP6(_mwOaQc+{+oL<8t>=V!wv3|9KC*2oEX{b9mVSwK z?{H`6TPvLQB2EMp>efPJHBik9@M8+){(sR{p!wkytrgyr(dP;S{20UbqUK8>d%BZB zYhOy8%;(k_LWBV~ewl0WEljv0{%2p6)|p%8qS|q;kd*6@Wt{e>54AyLi~G~_=U28} z=T`#WSF)Uz%ou_{1Jc>V<`pVPK)3v8xn4Ph`8OL=%U#@E7ht!dAps`^l z4h;@po-Dp?B*8timPipJ)T0t~;dC^Z`Hf2c?gP_GKz%)Jhi?vKfb9`{k&|1~bs?yz zZGw#YTGYsbv%A{8OB5+s$2d(xEd%ZM;ZQ`!!YHfKrOEeL+FF?ry zm+?Ui`c*#EvR~{cSD4v!KvY)w#z3^~ydKt1;Z!cHg6}%51Uf}RHESXuAaJi=BT;$* zex(w6>o)(l@(BOa_$!5Q#Z4~#*bCB@P5jhnCG)&sgwSfnaYics_$+F*AiZFnrIfwR zxF%NMh;Is%D>jfW5b4niiXq7=f-~Zr6~fZeAzu}R3kjtd#K6;VarK^#&!uI-7ru3) zIBwnfbGY6qeSA3e-Rywb{Z7LD;2n4iWbQij%H{}^TZ4Vs*gfAQt>kUbzu;RoXE}jM z4-LiRs#oUXeKcoz?Da9(4@jS{s>9CcgrAw$HZ#i7@Z09KGAtY-e)wols)mRr zm|2zw3Y5#r79AE58e-Kd6q;xzNbmAudr1Zez7C~KISdistzltsle;JOtsgp?giDYG zd77bA`F#>Br~O2YOfaI{D50Jj;6ik@E1>G2QY%WFouwG5IuG@@=Y`I6xNF{7>is^_ zUBo#Nj+anAEYceEn^JNzHYsl?D{VPmGTErl>by0n;0G_c8su>`f+AQQGdMJEZHDQoV;u|%r)m(eoSoVls+ z;Xv{<(&QhSc5y=^X%gI#U`t8|WIjW(ml#er7-eiSovr)CAyg#4%r0D zi%z8%Kea=!&pMkhL&)fIv#%#-YuK9mTreko7Ppn+ypMhaaK)T@c-?r0;n;aZW3HG5 zxWAq#`H}lQHBNJS`<=GrA(MPAW-cNdt#Q}N-@z5phIDP<7*YE`@57;>Q<Z+1)sf6vcx1zjcOF-C216tpv6TnEV7W5i%^d zD{QrjwT*Yg*OL-;12sU{&iZ1t)DQWn1XX%c#W+&9g>E;urp>{$0TL&z{)U{)_N}H^ zFK)K9%g{vDHr~<9^+s4v9f@eMTVCw_iHju#llO#K~iUv!qE$;F>`zkmN$b^<)Vd*|Y}3@`S|%iQP>3v}Y( z6^=t%CA7pO^590*76>DmT!n~vkh}93=0Ex8*SF-vw;|n>Rf>M%66Dk6hA0OcpSYU1 zt(I@T_GGgsmK2WKSMV&f^f*)o39eT>N-JO1hF*5~D6G{6)cnk@xXf$llQSHv+TlFZ+ z363d8dIJCpxna@s)D9sgQ-P^vF}pLVuK|a$-p&H^0W`q}wjMM3OEMZz!h4QE2#YJl)ruhv$LD?WwySoVmSqKy{_?OjJAH-B|wkGqFXvmr`@q6n#W?}NQ>pa_~Ev+(ZZ`Zi|fdRr`BDLca`P+ue!_L zE>3cLON~@oAKH{btL3yumhX&81`2wi431zaKIcFE;LJwQKNDU52>I2jZt)t zJ&rJ}7%IEp$Jc&QR=KvxsI^(6q^fA_(IT!S7GFAQ|zRlP49M zNX`W_LKuxVjVUd_V^vh?Rx_MKuJ-Bh5QsHVer?kaz zRLL5h5Kqpx%w=dJr)OSx?m9WRLGL}lqx{sYy7X$uD=fKSrWr%8E(TsMxjAU|_166Q znUBayo&|vKM=c4`4kpA%6?9u$`{f2u&k@cbWZ0koCWFQjc%r22DtfKX@_RlyiK{Aa zUD;=AB~(*09^FBf_hq14ZEz=ubWw7=q*sl9LLEn6JvY>_L91F>DY^vRq`Oa*2x} zN4A5@OA%NPJTMx0jQpBLJliTZ%D~D2u6wH)VC_=BzYIVvdzkK*VYF`lyb~{`8L8QB zoK~{MGkEbub#l6Zu$;HueLyYYoRG=KfA(piS>tmq`4;ES6uzbRtMG2NTz1yikC0vJ zlK}ujyqr+g@Hcph(A-tY2xFb3clo@#-`d(>G;KJq&mA_M+!Vw<+q>YgC5jrQrs(>t zI;ynuT~EO)4k7*OH1;SFH@PDFUN9&>;OJM(*8=e#JDq}{x4U}4$OKLk;i0R0<%zYY zvb^*$j+0N%Yb|yPjX(8wyh{r)6^h|H@X?0ZG&y(KYD@6BTh3MlRCne^6bQouMCeap zQO!xuO?bwP%aA$F_Wv-X5S>X!zzF?m>hpp~=$Uc8V<3aST4hFu$w!an{?Cgq8Y@`s zR=y`ucLxl7fmyTAC)Fj#gG?txkYn)^UCvV{)p-uvOlfUT59;~tQ1!fy{!H82uq88j zz;JHx499_TnUdV|G3}lr{=YpYZX+LW9N&sWUg80GE)>S~T)@$Cn3Mgs7{x;#H6@*2 zq8&9C$pyLx8{6(nC#nEYo7lve?8DN)0JRaL@N?1Ga8bX5QK5kjvB8Jyj8xKWw$yfd zTnFra%58Fg1dbGvFz+%!Ms84z>!QC}gS?vep((xx(f{yH$2^b`%)twKy_aRr8faS~=?p(+8UQMrf=J{L~TYDe%3zomGj9H14n9+?PGyHf$qh!3`SxF%HEOYbr=ujZ__gjJ$ zCNbkiTBoQ#u|I|R8}3gWy+nwRu$lwht>0R#x}_(R%K=>UO5vKUJoQ-_a{aQ*^)O57apH`Q!%88I-D*R>PhTNd#eJ} z63eWB%}7C1SZ0!Bi`+}(N=L6qiMVq>*NOETMND0IyTF@t>vm0y}JmXWar#1pCqTG781$iijvIhpBaG^ZS32}oU4KU6s@E9xnYnxB;Y7BMh~@@ ztOfc!Iq7Vus;^4*lsXHgSZsKvnx;u}7`g#Ojt$*X{QgBt`Hn+-&kL>Qa_aK6xds(V zrmHxKj#*SdNV+R-b0^`e*doJV`a3K(ffY#E*X$>~y9K5A!cLjAv~`)+$qZC1XQcZv zRMvF8WZKX6rhe)+&g0Jc&f8~NWko-J^YY&*^XwAR`sjSGF*TV>>EY zjOmM=lL(F9xj>R)ERNngz`o~MQOuNj#h#UVrXVTJYNAzgpK)O<5HK+Cj55IkivgXz z8tY@0k}1&Rs;rF0KBtyZ(RWJa$UYdvS8f>rC!`q#w=+gEh@RIpzbZ@4#0Y~4!X*Gd z=6QK@qpxZQfnil%>-ixRcnq@ce0>QmE%t#Pujf&2Ksm@XGcu@Zrx@-S)2HwBybklm z$k?eG%!COKDG7U9({_%l@AdyJi;h~FW%z9JrH5Yg^8ZD^lR~-x}!8@VB z8~9v#dHL`q0v|%Rl3LzG|31H%xwI>~sV?(8zX{34U#Lbu-G?)PQd52TF=0)g(vPN2 zCU__&4QuPCb)v$CPXM>Z3wnQj|v0lmIh_5}-WMiAZcD?_Y z)nNzA1(*9ce+7t{{Oqw0y>^c{u786#Jj%c53YB0?qPv#Q!va957slBf<1$rnnv`!f zm=wWNH$+pRE>Li9TO+w?5&7=iU_J^H95Qk$J8M6&FTQV|>wYb>SGP2VFKaO9CeC(4 zhlC)-j-O$B(YKtY%LD&Dz&pwgKRbImY17RicYvw;=SUSAOfAU6MCxeq_@L_K3J?Coc7%i74)%h3aF5Kf%2WpsY;f|in zwY}hM2w#ms4=2oZ(#hm+&&?h76*Rl;yzJQ*M89a;RH555q>Yp#MNWtm=g)vf&dz1& z@!Z1%zm&^&^LeOt!x*IW{0*dYGX-5dOf|JBVXYVp=0IxXbiv9*ib`NPt{x>gumw}| zJ3zO~3xsLs3W$G?z52Z7F2F?aD96qQ-|__cgev5r-$c{cFXQsX^GAyW(X#=cjs2XKr$sgb zdy>(}j@OB16G`Mv1Ew0;bt+Djzo_kj=+C|FH75Z9q0xUiA>)Mq?oj?W-*24I{H9aX>j$w0Bwo}cUQ`TT zRR1`s?~EjCDSv|hco!O}oUeyI)N!4<0jC=OZD*VIVup6Z^`KJYO##TBc0HtrHN=M* zMF_Ahf z+6^uULk}XlSRu$Nq(bdn z0Q!r{ToDVzMaWVp9%QC*Sb+}K~fqs z4|xnrJgwK``-2IRR3uw3nMZ8)59A>ojv5MJFwU&b+1atfiHe5wcT{0cPTy-GM)EsR z|2}L0FsRGJT`0H+7`i2m`~ltaDXS)MxI*^f4fd};;zUF7IPC6hh2B4lMMAI7cGtlI z-C<~i4E(2r!>tRnn(80)ufnWCy~`dV@o8Kw!uHYt<)2la0Xbg3F0g)eR=sn}`caon z*?6tvac79Ur!%xF`0$8r*Ja(W?UzRgYaV6L?H{;yc?I9I9;886cNI2Vb4o1@+WeE`l*h;2(Ikx9T2bFfL+w7^!B z;BWcL@JLw`Z~t}$`LQPeB%N^q_Bs_jzWxvo7iMT3!tKeT*e_u_Ww=+Q+6OCobtfs+N@n328di zHrbuS;O;_=%K$uh6Zx8%jPuwj9u(_sXkcng=oe!1{py*>VY&`SRwv-a_7|(6Ag2`@ zyT8V$*)xyL+2?Z9C1kyg{pU~4$8dwkujsQHXU)rqn*iSL&Kz<0G1fdpz#zi%b^TU}o3syAR~>6RIOCSl|z0a8)`mhu5`X1;c8P)^20*JE0PLC58Z*s#-q%Dx=^Ec47KQ$zS*KoAaBw9K2KxI zl*~hhUq=(FguC>OzhtBXDbR-tqafrKk6^r>(G*!w!=W)M;~%XTS(|bo9^)}_5akM} z&4i{osyXH+%fU5qwKo50oA(C06EoL>SJKD$y)m$;Jyd42O4?CLYQ(T0Y2*SPs%9FVl>>tWJggF_I+Qtk z7c8p?N=aM)=y-HwyAOoAQeUGg#u;w-z>>i;xWb{W#xuFPg2rg$+__7ZAW^x($4vMv z%L{SaV|3dRUewwcYda1*f-_(Iz`Lwjmyg{n@(ta;;>~dq z!&R-g<0A?;tEP$^+bt%|LuD_8b%TbgLscYjE~x+L3Gyf4vUdI^^TZ{81tPyAn+L|r zB~7J;=@w1yb}&Xx#atH>KE%lH`t6zq)!0{$RoB+d*atKJ+jySutylp}C41FM(#Iie zY=qz~BJ&P3>%^S&2kZ>^C7ojx!mis<_7m9zLWH-WH3GIchsARpnl{nZi+2@zxi1uj z6q0!F`9Yrsw93xBa=Dli$Ys5-`s!Vp)$P8^q_=^F&&eAfrF^Chw~J$c1t>Y?tvxIZ zLcl{h4X*q7Quu5Nyi{2P&4$qalI;TX-yLZ;A);Z&BduFRdivMEqZIORcaH7%#w2TM zFYZ@Buefc|F+T30reUufIRkBO0{aX;)njZ-Gw7P`=fHGL>;1E;izeRfk7TlaV|aGn zFu`r(07<1O!}qq}G5F4OXosli6H2#iZz~C7sYJJfb?%U%=>pG!+-`q|m0hBM-}{#6 zYE)p|;eEAAc+&)`Cwbi(zg`b;l)2=Cy06c45ifZJNVZ$oHqJn@aCPAIw?HI*1hx%8 zf%HuFJLRrhEf#Ihr-tz?=o0oGe+LX;bI-qRO4rtO7+=tsO!wom$9v6OJK}K3LnfK( z`e)IUaHC^`l&6VJmReJ|e6FSKP5o9~y%r-R%fli%(SNUnoxon`-V)rPHNB+b;6vwGlSBS|oynNmsYFH3l6@iw@V2^CLd;2 z?GvT_bzUFy9lShZCi5aoYLq4^=>e=~JDoEpY*HDTJ}&jj{Z%^_ zWT=MaFXr_l=cd%MqC~&1)}N*3DqDGOvryd7V^eojcj~ny=SCwJ6smQ8cI7`*<$y_8 zw!(h)9{E`Cg0QIw#3q-Ve;Q(X(280WoOni4!y?Ht+;+Uqet*8UrS!Ccx8TeC=|$T_fb}9?;$MS&)$#R^ z(Hgws!n$~@k?5D&&FfI1ZCynJpPK&wC-hLXNrC=^$;hc07B>RE5bXOO)z#C_%g7?> zFM>X_JocbZd8P{!W`h2Tmy=#E(}$UC(-9W>6_v>T0zH=Htitphh-y^@(JFs$WfWw% zevw_m>My*;Wq{x6s}=~H9$bZ>s^4DJ3-&U?6xgZOhk3S1SqAxK3-1S%cM4!rM7<`$vM9F;fn5GS{7wR% znbfCOyFbd9_TN0?Zt!ks@5i^+iY3EEzIVkN$(Xi&8pFFJ+Jd#F!I|eZl1hRkt9=FU zulH2Ib6?qVxIRf81OR|qGBbhFXMs#7?YCvKk3toiDVOaU2f5!1(6cT@&28!x+Ni6?5@n^ovzA8~hE>{#%WM2+3MHme>8%90C3dyi&T%X-^?4 zdgT>eYlHzp@WdUs`|FweviSq>D`1T!Cs+;xe1}iA42{JjDKC*eKZ9ZVP@acsd%Js! zeLuoNEFdvcqE(H#?h-@JI0jF&>3Ppoz`I>v1iV$HCjflCZVBpw$V4Gy>hZ5#0sr=z z|6b(&fhSIoo75rGi|C8AzHnN6HKMB#G_&qR{n|qt5fm-&=ka}D-O0);;YjN|Gz?D) zCzzo`OB9Y8`TI#tsv(b0zaQ20*!6d_BNq4NTlm1v9w#+t0U?)ju_#umxOt}4hB$5X zt!ud|H`Bd?vk?(L+fqbQHC}R|E_-*s$l0S1(6PkS-~wD5e~G$UU#~Al0NpxcvDg5T zKk^p?_m9|XzlMEZ9;b&~wx~!~AL%U@>&eLCtMNVsn4p||Sn;2*e8Q#tZkL3xa8x3! zelE00Cp{LT;Ns&%u)xdnGP%kX)6m(`a4$LA;%R$#jcwDRdug zD}?*1F->8l+p91?pdq`fevxCi0|`Pm;ZJmXxdztj`lbbJCQv33v{7yHZm>1DEVyXK zhphmcHo6QE{XJyu52a6o{a9HI445grSe0JNkzWe>cr)t7ry zacv#V$#WiDz*;p^iV*p5%)1js$BxtFL_*N_!n3@S=i3izX5Ab72pJ=uYowsHAMVU56|D0NuDYt@)iJng&TR0 z3&FWET)0ee09t65h<2F}M?1D6XIFK5J7D1*C14YInokoQ(tHObwjtjw9V<^TW+x|n zv^a{d#_3%Lz{&T5c5HxE{Es0^&3xDiv(fcnf<1Irq2Iu7ADwG80p}e{+@^f#{ zm3cbIzx~N_!e!#Ft=pgzIo{B33+MBT&3e-8iyK>ots|Pp+g}Z2c10E<(*5Skk>@N>6?6~Z+7l2by z&j3@_*TgzdkJ3b|6zoVh-?HHG`chfWSqs~i!Lq{Gdbl{74}d2uVT!NqF_UZe5%kLi z*@C0lWA-Ee+fW1OFUkyrV++d?IZ~-Gm;MZPw3ur%w(fUPxgA-HC-!^awbAVcNDd3J zPW&wpJ`(oZ-xi72lsOE9dQ3QKA`UOit<%>U4}l8J`@{lARXn+y9$rA@Y)nrEAZ%S; z0faUy>YZBue8$C(A=sH6#dCL=rUAeRRDMH!=ckLIWd{@p+;C%UJG(A?^$0dI0BtWT^$PR17Nv@M8lI$Gc5`+@|N!uwk-lBX+x5(OEshVey?6 ze!HiEf3<^e?#Qtkh395AAx`n!`>Tb-F*1bv1QkG zQ0Uqs5#s>#axh7<;1789s>qRG2i-G1R<9kh1Nf(2gvg#mPn>}fdw%zd`pR9GdBr;AuB`LemO5UPQ? zIEro;32VHd>#QA<TqSM4T^{DvLLegC|HBVb4RTw3qw}7t#w3DJ^y7YWHMxNblqVDPKM4?%L1kei|m7z zYwEyWbrrczes1p=ax&z51bXIht6|l(lZR(tYQqcP9Q}L5e&$*F{p!i*J(0LF^7pD9 zfFJ#xuR#P&#X#?|bOF{rqybaH7@LcCzdSO#h6WrDHK#54PXN|;f3AN&LB2e}N2Xj` zEN7hXdkJO()*DaddJbf%$0x#@6Z7NPvFnR}Yw(MIJLH>Z7gb&GiOWyDa96=U3B7B2 z4E8+kN(~Qsm-Ai4!)hwrC(SKon2#$w{z?<_02L@(`CmgS_!lHTVYox4nCjQ-@{MMW zD^^h*3U&QWyX%)lT03wlwmleT{%g-@YX(rBQo6{!PjsISde7DpZ~Gj0=;r&=&h2PG zS$@Z>6mNw4m86|@kIB z$SXnU)gsAfT;E$U-12D8NDyxI3U2(LCjT#=_#d88s8e82pFSs?@)jHJ`TUfyf|}J< zQP0kb*4W7!)w;Kq8UAyVj|gz9o_oFQ4BDQod3e-9-!7S%oX91=m2Rf6mEC!N%Agu; zfPM6~WMj$e=3$MqfWQQ@qqj(&jGjYStL>OpXjV#^{}jXHwH0A#@|;emIF$>jLy^M` zJ#s!AC3amTm2=Jl(6UKZX)g^=kU9g`8^G&p&1)g5ZIaoCKx#@|z;3vVw4A1F4t#kX zSImFpOK{pgm>#67xW)w9ckI9^Ca!ct@-7EvQIXzW8z2 zpT?e+O*l^*>x#RzUI*HHjm3s(0@>&s7asex1s1~Q`L}KBT0|-!LOhdsPVlz?b5StA z|FJZh7Yo9doHyu%teNJpVpGtX=52Kr$eOW(rf;t~S`sOaXG&eAQerx3pjpR-&AH5T zbzpWquyHW&UY{`@AOpkFUi&0NSM2k`S^ZBpbX)S{UKT(lo(q^mtC)EGrDua2WG=2G z$HU6Q_wlQtF)ak;=nB3+%2CSmYtn));Phc`#|G_z+k4-=9S6BCp8 za)AcuFR;SG{p&yYKk*hm`|`#ikh?zx;2i?5{zAjV3kjAQ)A)xWs;}cp28cYZhi+8A?jtKQ7DM zFx4R4r;?Z1_WH^bwo>#XGxBPCvNITbI)iqn;5)jw-J0b0}_M0eYph)rN*9 z$a2e1@9P!3Qp(fnY8ERi$V4d!=)|JCcN6lUo3=im0^X{LKjhZy|A&pgK};@QhZ z8Rw_v^_r;r*Q9OB#?s$jwmHGpT(mgm1&eGrK@8b1RtX8C1ExsOrta#Tk^y9M{`mZ` zqB7G@X9F3Ml8hD`;Sf+N*B$*x#^@r=c-JLgx3|+RQfh$`10{N1;TLH<6e>~~yT~Ck z4X2LGuVQJnR^5C9N#_BR{V-JFP&c&`(s3jnmhZUY5%hI>pYiVV<=oxrRDZ7`axmGb`W(eb(%v^}XfL zAuxuZ!Bm3piV83~J8)-$0e@rx1^mMM&pZqC2;~T{z`zHOXcEcrOW306Gj2Fi;n$ei|Ov-LD`~Xl@ntQw_h)^wL zzzB&;Y)00wiEFB!=BQbo#M}<>=g9+00Qi`96atd(CEan?*#MQV(z;FD9&?cgT<(o( zFFC_08|maCRwT9Ix`=*89a-n1kC4n)X-RcEySnSFsF!>C2ZCCQ zs48TZ567j)?yhVs#HO|1*;kT6HErFEC7UlLk~FTV(qg`^JmCM!`RyU4Hrd`TRJoG~ z9uZV`yO<2hnj}-|#^6k*FYxE~~4AbUAlTt#HP-qq1NP2&7v?!TZ=1v&NEuR`jRjO?k18!C=jT#uT+-x;Jdbsjl zn=sip3dgIJf~wrJH%nx*meCw6Nru~z#s@wtsCYRIX<4JBD*Q%k_Sy-;`uM2waGFZN zbs`1r?f%p4S!Cs~4Mb`x8Xl~q1}^++AV)Xs{*G$LCHmz7qS`^`o@^!divGsw*I^Dx{cPDrW9(v$mg>sb#AL3B5>;~rb)J|GR`cZjJT?1ff;U-Vw z3|JMAP-YKT3L*VqT{n9VvXx`}$CRjnTq1Wy80hR0{=p&BPOYQIn|>U0&Gviy<$?ec zjoih!)~^-VA?c99s_81IUWbMlEwmevO1zCe-rMOEnzFjHbQTCqJ+Ji#d#&qQd?S-* zzcow|6`i=Dq>^(tw~Qz2Lpx{Cf?}BOECH&}jW4ayZIO-u|;j zaD6Pxyq#-L_|+7w9!fD@U>TJx=<}w?u~mbPL4{OgmoJ!jMtF(AHwN7CO~;r+D(1c_f#Va<}A@8qZ(mKOr;{V;(2tL+z*5@1~2s__9Wx8h+(C{8~f#pk7OVROv>|Tf41%lsc5B1JP&Qb zGFsP#6ksI8RIT>^GdYV$uka95%3jfwbqH^KQX;LvLOA`rgAzqTuV6P z<#lqjAmPar322QPNnF#azLSa^;8z#9^ zIc(QOH#UIJ*?fGmdSTk&3E7bvLE5GbCPSW3ZC_jAj{UPfS-;CLm3uEof?fMhpFL2Y zrM}M#*Cl1Kr4u>o@gcDzT(09k^HxtY5%~JBu`K@L5q|2=djo%RKZ6#3y{@?y; zRgnv#mG+R z>@_}YieXUgd{LNt(EIrA-UdDCdDD8^fXa)+$U9H68@&Kjt~;MeQZE&2FYm_}(VO2~ z3Gk72Gi3e2tww_XX|W!(q~;aP8z4l@qZ^DyKsWv3%`fr;I$hI(-Vqvm4#Q(&U*9Qaq`gM zTNfwN?-H2U`>TN-@7qMooFlJ5of@IS^9xR*w2IuJ*A@O$?}UelY0Ks*bhRSl^R#;> zs~#;06dleU0%p7ytp~i6jK12id(fZZ1Y9FHZUqxDLm( zdr`3-`f*BdN8e_?HkMH$Do%HO9ISd62uZ%v82Rm!PCjz{jEpZ-{~fu><@{HK%ZD_s zeBJhow-cFy#m`i9v)X>#Qzur0IIW=#$mBlw@v{lO`fH&0QYxdQa>jA)$n^MRgTvec zUTYOmwDjgrS?RV|s$Pw=cO~Wc^y&92zo$~$^GXZBo>3Fk^Zu@7HLh}GQB*0cbfc~2 zM|+^4BD$4sF<)YAO!*8o8N^K`Dl)i`7xRM!uESK{{Yk!3yT=72_sQFv{6!M+_0d5E z=7FFimNHMJ*P8~{8?GPASnjU0Zuzy=%F&W8q_`?B-SJV$w)rx#zhRLn7gKE9y%1H0 zpKikNHNwOYGNRRhZW3Z`{G3cGi$o>ovot6!5M{S?HSk-gh%7R>(0vt=aDL25jau>> zQV{b|-g}@tSMT=aluc5dF>2f4-6_0n*q1zgN>*Rf0)LVGQz0q^o_am9g5P5)?x25B zpcPu1!v6X`Lm0!GA{S~y-7WlAuAFcU<0t(tXQqS^k=lv*7Ld!ApKs}EW%ZTaMottP zZ{Hy=`2rq9VpnB;1CWGm@uyRd3GSK7TDmagch zjx;PT{Yrgjiilv&@euhL_DF{fMph{+5l61~sYQC^c+3*%Chm9ak4Rnx$%rQZZIT$NWmiMy|eh|j@D69#Asmqu_E(@^q2_66179G z!1roG$ZC<0uB>Ch;ZD?5E?0c{7;I9!WIv9hZ$NEAcz(XcEeuv{<6P^0JkvF6gcTxJ z4kr8rI@UIe6~%rTF^)n+>&V#L-on|?g`3&^>`IOxd_(wX&!1RL{kGrJO(=!%$8#55 zh!*zM2LNCEBGfxd4z`jUYZfN1tVCrhzT82Os=CflX$2F_b_;pci!*--;o(R|^) z|6qYuOmo&JI^e^K4f&6kMacJ+lpm5V5`z&RI+{z?v6A?#4QBnrOzWKB0)~_GcHw5G zz_P7y1_DfzrX;&vH%BD6o3^&aPBp~-Jcns@otUM)%Yy|OuMjXKlwjbaU$@;xlV?je z5jpi3Kq?xfBr=#9655TwE!J4k8W%P$9~k1r{idg3dHTbfV!-W)@A z#EXj$rQi>NZl)TL*a)@bx^m^cM>7{k!ZZgo>7>gvE)auxY@(=>=6j|UJ`g?vwT()6 zq}85h7>^tpJo!d9*gt|8(Ib3~8iB@)HFU(L$UZqwvZN|()eTs@Xnr%ea@G9JA|kmr zFu}^u*FTSN#>PVPc=e4HH{lrTh()fxN_NU29`;!HW8PZH?c(>z8_0sApgTfHBZ5@z zCnG`kCk=@8DJKf4j@bJ=`CU|p&hoJv(4_L!`pbR&|&c;^)9XjTpRAZF=L*&T2058R{U$`87n~S zW7b!m8MrJtSIRHspnRA z?(KU_!_;8I=VHA#OWOF6(+a0E`z>=;5$X147Np#7YV7|itjlu+-z$7@CmNznRbAIu zy-dV#7}xy0OWY!Lx>qvvHPf*8>QkcKL^DF+b=wHa;M-hO6fjl(@5qkn6g1!`%FKr7 zj7(7)AWZs=L}p>)y`UCjp@|aLB?&pkU(cO}?IHM53+W8cGe>NdT2If9!FNb)N{(6{&VM`EPcs{QEH0go8Z4fyd z99ZPS_X0+yHj#~;e*03MuMaHX;X?Bi`%)%0R3h6_fR4H8<-GDSgW{JW>K*n3C(z%0 zS3IUJ0bEq9F<-k!;4`lZl{2J@lSv(Qlc;yjv3T^Oj7#;ATarrjF7FSZ zRhoUt>=vc`uTds9FUQT*8GrLw%A1jz;TZufY_9zQu?2tU`*WA~XKeS_0LmH9TJEB4 zvQK>nQ;QV} z^+)Av(cCXlbuo1}eR9WWOgz?sZ)0q^39chM?>{_w^d+4Ub|S_jPNOb}xSTMb6pm|s zTyJ3bH_?TS&wYFzZKmE;b7w5!vQYujX=b~9 zqIvLR-*;^!q)a)dDZgt%xthrCbr)<=Xe`E`Rg7hzKTvij>fB1ooTz0LZ?}nt{N4!@ zUJ??23iUHLCdu(w3$3#DYo_#j|{H^&uY2A+x?%JzW40aUKRwJNzVI7Z z%hHZjO)fpze6m~EhCWdRvwA5|g^9i^HoW3s>G+)FK{t3KEV<nWFs9EX*dM%m*G=1z4ESsdSp>{^8 zobjO+EmWzn_u?3Y?ja+dTVq9wwGxRrHf06k?UIjQ^{8E}pp741u-6&>VNzBe2Kd?s zf|xI2ue4t$4o6B>TpsS*JNmrZ0#NFRhw+gU*%stwJZ8(b`f!t*erxTj(A9S;+O^K- z>nCZqry`JTv6i=l4p!ErR%hhn`71jifp6BeJ=#7Q%mQ8Y1GFTPj`nW^!O9W{Y~JwA zvDxBW-*W%y6^;X(_8dmtIX=G+7R_LZUQM)-__mCYKB0;kUyB+Tuxa=6sRrkHDYZ#H z?@QWyAE6eQ$oA75chfsJF`_7)@Z%68HpgBm_q{YjvuqaSFw5(zPYgxxN%W?CmGg6i z*-b_FNS^1RrDeJ}Z5iX#9xN|^_{I4}Jv3qU_eS5I*az*j1ib8v(J1(t)!W^AvZ~g@9UGQ1q#Jq;|txLP(;j5F(Of`m9)sM^ov_T z-|%|UfcK|@uA4j-<&2urJWQuZ!aY(pByfI{J!-&{>)9{W)bSpLCo>^Jg$yRq)aB-; z-xvBl9BTN!f8_e{Nu8^`2l*Q6jTN5STH2$FV$YkrnV*J6*^gGKXwBPG)`963N-V$M z4~Aw3HngapD^Q3pn+H3YvbjbF7|`~SQ!{UdeF*ZRWboOjIcj|Jx~h>aJc#`pzaHZ% z*<9KWL`$*8H?u5cs@wcH^#fohj^wm*A_#mMIel3a3dcMb@=*8|$z;8pkzm99TAz}7 z%qwMLu6xm~ul4k@Z)s zp2Bc?;O1?V5r>fhCY;AHJmi1AM=iQ5czVE-pbgfm6CtA2{>{>4sQZi{R8#EQfO*>9 zUy^V75l?whT4Y--C93i6 zW;L0S0go)oUdab@QA=DK#6@~h=SR0Ccejlu9uu)^Z5axj2`XoFkeJM`ID!lyBh{6= z``hPiR%BaLN3UC30QM`(48lQ;nY(^E%i_aLk``vxk^@&Zo-scH3=Zj4x}g-Dr0~SJ z8e#f(-n52!#C=*$=u_zLXH;sX^i#C6Cx2GI6r?PJ2!CfWvL@D@ycgw)?5*v;%52HF z0}AP6en42C$I2=rGas({6`=(amH6$F_aJ-1PnOgZ(PTfCyt^0At6T|um{&@gOP*x7 zNtuS!32qxsf%Zr+@wgMrM38>}dkgXBv8xL4eKi)Qph?%RIBA-RG`vRA+HtxETfNee ztfEzNVxE)&Dl6uTT$pV}> ziCkLi1hd3zBFtBHjw`!7amOrvsE9jZhX@1A!G?WeI2FP9Lk+}G15PDO#lxV@t- z)^lkC4brGA=;cYv!qvViIuVwlR=L*4pjl$4uv5 z)}OA>VKG<+6<0U4{)#tpDP#=qNzdr}E0xr2|N6x=Ld@MQj;d-@&3ztU81FYdr3=p;d#9&)m`f1M%sjk?=w^ysWa4{k+(9W1lub7KD_0* zjI?NUWt2W7_u1^c-}YFtfmE!wSMxGYJ{<4#EAmTZ>hJT<8nUS_1;_XMn4P(XHT;X$O}DD60}3FlwjqlW#mvk!ZB$P$R)wm}kMEq;DrCG1`&`yMiiZyA zt2o!WjV$>~!wp7QS>k(c!DrUIb-U{<112sCf;XNc>OYDxlYX)Td~;?i!tXL>R%gB| zkZ5Yk0chDyKhiIl=Hh$oW5Mn5iXt@aU?9VapW|RJGadatI{hdps_$y(e9Y>uot7ZO z-SG-@wLcw8skqoAn(1IpyQk#OLEL=n)4&ycOVF`Okr#Jf5XooD%gzR7uh+Y8zW$%~ z&NHZ~Zr$UdM-Ze5sFV-{M0$}DdXXZ63Me3*5IPBv0HK2@RjO146a_3OARP%oiWKQc z@1Qgh=|muq%UjO-o^$5TxswlP=6=ZjkXc#tf1b70Z~rrU@7Y;v$(glare;GJ36013 zSfk>CKJmqlK<5J@I1`73kq+ zGhf3#kiJy#E=xxt`E4L{B)n_*ZQIH9U~x+E#q)P7oW9c=2VwAVa7GW1Y|Xxst5%4z zUMXS(+da7%1+&?ZtUAku&-Pqi#w`WoiXrnLEzXUxqa!adLCd$FFk%9unZoZR1u zSTylp7U0aIeyYEN$M)Ihe){R9u4aIbXg0 zb|lAw%;<(g+-D|hot4Mx@tv<7XF|+*k2?FlU0wLju?d8;S2OJ3B}zg*&59SPGfZuT z)28b$c;N1ly=PQ8SoxRQ*SrC?r(1K1y_9b4A3dKpSnTMs#pp76ULl;54} z_b!9~2m`cMwTw*>ZwAxicSejm$f_gX4rT`}(=$okYQ!tZyuP$quX;m=HSLzP%maGI zRVcK)>L$XI!X(VxE+XCZ(hC)yHiFta)K@c^XxokJI)!7oo@v0ij{9Hj*1tafRO-%c znQx(R4|*siyFGuKA@sC?tfR<>*ey&aK=28BKGOs0T+P1WO_^UVN?JHLW!ZWj-!C*i zqpzG^H{i+=_Kd|F+A^Ehy^Yn&7bj#X&HB)NuUHBehm>E+(E7LN za@MhQb&yO3-yOSgQCJ_1bLmP^UPopwT&p<_ z8+0m+Za+;GGUH-l6d)MMfq6{Rs&h7%uf#VwBY0e;K-DzFlcxmP`%E>L;8s4ZjvLW$ z_Wo4a@~Ov7EnROTNW~hxfvizIvK-p5716q|{B5@@h3xgi(v$c0B{VBJrWEXn6Zj76 z7c9%ami*|#w7#6HG@yx|WBX<1Xd|!0AH)q{k+=Dg730Z#b6Ya+ zK8kfzmB~HA)IsXEy28&qvUxF>>I*td{Y@6RD!M-#mK ztS)Lty$I$cJU?6KUqnALawuZYAvm;LY8cgXtUQRQ-5cH+ln|laebq+zP&Xfv-f9rX z9no?~Yo2CQ5mO*DFDuNOm>R4W;uGas3Pt5;4j#@8ahs=yoNk0?Jt+u@M9$9GoCCG4ppwSXE z^0cRS?dz(Oj|gKArn=^_pQt$7&W!X#!TyKMHN(=id9zDTp!5+5U*-|J225HT$;i*= zp4(OP;rS#2q4bUIA2;|beY8w9HON>B?uMzabl;V&6B$ihIz%7QUAoI3^}cd+$uF$` z<6Nw+J+-rmz104((nVbBW#~uDA`tF|D^In-jU=UQ6!qa6_yVE3oaV1M7+<>8)oibiM7kQXhT zy!UH~$Yuw1sXw(8U_YpRL`zVO=WC()0Y5ddCNU0!#n)FnatJ}Bcr8@DE8zw3ww2wq z))i90A}Uwglf{Z#Fu>%&DrH^&x^r?B#ucIlto$U8$Th1PB?jlb~nHnL_>N`=a$xZ_om*@qN@?Ja_0ya%dEK-f0SopO7 zx`p)OG8BGYK^G)Unz|m1)AObB!VQH3Zl<)1r?SkSYSd?RnlEddHo5vxgrm+{%oYxSHnsflX> zx&@23UtiFft>d&{I=nXr^#(R~7ly|w9i+tNagQ{Fa39CW1dl)9$X#=OUfQErg5PrY zRKL4X!JlF_c$ZBPReVeJKFfO?j*B68+dpgFO;WhE+()*F%cAIY*YI-W={c?4ET~LF zYxekd-_&J?`)L|{yus51m`WSc&civcmhfFi8fv}7y_g~Iqp*#sOuH~&6FqaU_x6f^ zRFsCIBOTa0$whfs>m{A?=XuV1jWWq=u>yGsDbpiCSk0qH1JZRZxW`Ubqapa?C#FuW z)Xv6wX15t0C4(i^uV{0JddpCcFbCr2CRf$JWvsZnKJ}|H+31-|pF+thajlCRHa-Kz zTOQ``ZWkF9pxO=@GVOv+x4OLQ>Q;#{5qoTkIGGBCewfxrb#zlh{j_4~DqGkX#fzPOypt&^c$THwwrmk@b7dpJlFKF8*`Uj6_g zrsm4$GwZLwNH4>P4CNBS$z#oVckwsSIlJ9{&syv!@UeyOOpJ*Ah9qMHqw%A*?ERF$T- z-~<+Wv-W1`HPUj}WNUsWaGLCUk)yN|E(Sr~f85Ju&FBZQUd4a`X;Xo<9B&->%FlA} z_C}&+gI|llTm4P7^?iYfP4~@GnPt)=f|L&9HH0ajEf+V*N4qE|iYitB%gs(*;dECP zN4tODPVh@hU%+v}%dLKZXwS_G8&7<}hy)Jh0!qaDQs?gg@($~Sm6Yg5yMXz{9}yt# zr}NWG%Y#ucL(hHd8-!yv%-DXy4PQDhqbkq~7C&7wZRx|Q@EK*qQKBN=HpDH(sF%V| zbEbE#EY+u}@as9ZJlCt4EJ24cUcIjq23aZZ>E99QrJL=&eDXs*M!U^T2H#3TH{PyY zVWG|zH<-XrQ?xYAg)8UK2ZB@(aSGt8x~1h zJ$hN#L30f&Hj_7n^SMbhS&2)8gMNK4stz&ox%#l1!xMfdyTCVpQP;8Dd2HI$8y7x0 zudx4>p;yY7yF6n--E#Snxn=f@zjE8F4INh;wrizrcj$SO!B4gG^AAyj_p0vuQfP%@ z@evFGJ;G&UT^bB6A1te%zQtpjhu%KGjjhUdPPk>sUO%q+TsUqtW8-}U&v6gBt=?P0 zsKiA3ytXr_u#ER!jp7I9M)@oo$w{Xb97ldv0KbvB=(n^B<{}<1O5oo3!pKNU|REPrrq*z=`%ur?q*C9}ZhnSrM z!X74u_VE1uAD~LAXiqz+8w>@qhdH^xmBH(E4PcOqgEH9kih+cIrzXtVMK{13W*lH> z0u6A3DmZ{uRcMvakdp)+Fq9n#?cokbLeR?K-}6FF%D+{MgF(MbP;Sa#_1_u@9QK*Ep3`j;+OiE5lK~7c#WNe25U9*FOq~t(S5)vmLQV>Z=h>RrY&jYMN zds0&Jc5s9kX=(r2=E*l@urmtf2@x0f^Yat)lNLjGJBdpwC@6?aNQp~HiJmA#k^XR$ z9ap|04Rk)xYCm zT6QRyij;(;q^N|HsFb9Mgd{{-9wK$+?mxx}LUY$C}0~F$j@b<7n zsknI9Il;s|;Z928e^>s;{{7MG6I-0vQv5Gp{-f)Eoyz}8;cxE$mGplkB{f16ToNu4 zE}{q!B__Fxgo`KwM2Si6BH<#608wI+yGXc*B0!XwC0C;~)@N$w)yB8mV}Vv@T^xQHS^l$hi$ z5-y?$5G5wLi-e0P0z`>P?jqqLiU3h!lDkN_h$29gnB*=JE}{q!B__Fxgo`KwM2Si6 zBH<#608!%q=q}p7XL`WkC(}FpPUdk8sJsq4*#f6TPfOiIHzp^;|KZe-Pg`$oCnEUp z$yzu1+{8oa<`zvMeGhW2o0Ow{kr&m#50YpHB4rG`GD=^?Q(TRvOkp#rG~kVQz96J- z9(Ga7He2fyQ@+S;clJPX4sq$dF7)&hImGm#2hML@`KWm|eUQGw6f!V0G_)Ur`l&pC z1L1k@yp*fI<2Pk+<7C6-AMN2;+LIlzdN*#>--?k+<9>qZ!9dWmKgTwm2m#-67F(+8 zHVU|^Jvy0dz%Gs~xi)W#c@(>?oxBqP~P>9fM( zD?8bX$q`d4M@S@6pgUl9j=oZ_*ROItu=;r43b&@5#-KVhr(6vufHWs7OGhzZZMgjp za?3-YMmg_Yx3i%5A08APAGTxH!X?GUPDhUx#kLg5>y57O(H2eRWAeV^M0qr5Y-6isc)*D8 z>P3*L8QDWG+h_zOg&}86%D~D43izGrOUix~nDOk9pJG;u(sFXkic;vk8C=kjX=Tf6 z0PCAW4Qq`21Jr={rrs=VKp~YSxtS*!k~-5HpaB4Z$R+Z51?eLf`V86VM89Aqq-f9Y zsxON}m1ZpPtHv(%3uo|+FN^SwaT>yrsgmRv05Mnvp^H-gz8!RT^a zs2=i4us60)ww`C?r3h6^0iA+b(Rd)eGu^(zU6)$I;SdRe52AaEt2$^gZo5G!Mvx&`zWjpJAL@@w3SmoR%1)aGk(}D zLbW?n>-DUDPAV&aIqc&zNw$Yn4C$2S0%13gtLOV;K>E7W92BiJo##ZQdl(xdYdf?P zRm=s_MLczdt^d&{E6aA!(VvXuh0|UqZ;krT zgt{y($v0blIkc%;`6l>w=(6e1YGvc&XUJUMSW9aSe}phjzV|Pb@K6y1q=nUXN_`IT$0Qr!-%bq=(rS^)BUa=y+IH1yVho9B1Y)+-8KPS*KG=6B<~?_dW; zl-V>3ZW`sWhiqQ_m<(-Ocj4h%>O%g?y;dI(aMvwPKoqiF@=kX}9&W3_-+v4H^+F@; zC$N{6R|Ig5S6-r3Ue~r*+`N*t{mPSrt7}#;bNRyTJnc)q>p7p4fQ>7VLg0|i2ly_k z8-jBVB1(yk?E1m0ai3bzSLD~^Zfs}U_Y2|tIYrF$sEQca-m;HC zo@)_M4x6*ZA~&iD^ZV8!@*8e?%QT@i>-|xJaz96V_!0xxnBOj3kv8M*gw$6}B#aw% zP^Mmp5Ycmm(G7P8yXgWhoywO>gr8}HL!gqzTOJ%zAMb+o7YcYyejOKj{ z=X$Ag1CMlU(7oRRwZCYE>edtoMkBE@^@03tZkHCwuY7CwNW9;dXBrXa8lrjY*;!VD z*t`x_2ZeCSFg000fQD8=c7k*ksxL=ja@SSUV`;bT?f{b!tzOGTK1KWZNF@vTaT7<& zYE%Nv{{B+#)#9ZoWl4pAQrBUs#{R~4WlMSv0FJx#!Tw!uQp*@wX-l1xyk@U+^v-G1 zswePOtO5mU9g024)#3f`4coV0<#6;UNOdY)a;O~!i=je{Ty2{l9Xo|D!;il_ZKzpq zLiSEKDNHhV_n8;;=;oP;IJA?!tDrvBe;2HwuNLNfPP1FyRiIxgJe{uMdKm09@SK^3 zhHd+;S5%$hyi&Fwx!~z{Al|YQp^>6(BQ;IITRk*bj3xkp8t)v@7uw@b(~Qs1KebT7 z&l5fJOqV~UR7(MxDe02+z8xS^O`Qy+VqyX?Q>bYaD$v-5rI$OXhj)v5@=0dIj!$Dk zDmSvBc*m=Pdzr@Ds=j6Pa)vuN>#>H5A3ry9Nl)NX0^Za-E_~L0Svx80W?BrdG4?{( zO(U~UoQBy?okJ;YDbp`_ji23TB4_oLwyOG_Ya=Ve2-~&btMVDj)fYkMlu*mBzNpY-iC2R}8QT}R{ z#ymXQ4HlY@#Zo4Oby(-OksT+S3=`5Cf*tIe-{9K3@Z*|^LAd^Ed2sJ`l~dNZ&(vX+ z_0DK7_WkOC#{+DNtGkfkmA7@8YOMn<5?3z*SueKS0w+_I0XR7_N0TnHb4WDtQ~OdU z!xUUqTSo#9{Z#gTKvjQD#q~BMNqTKI;V1bK-*b2F_hKt7JnA;?v0LhdG$2aTb*+l) zZmrqhk&Wu7V!eAn&M9#7SrplJpQbu9muEi}57!n4MZ#%$zKYCRuR*$W_Q1i{4FmW@ z8(X^tE4N4;tVz*eamcU!_3rF}6f(f%?(3PE)MfmHPNH~x$1D5K!N)TtxWYF@yDf{L z*AG2KPnN18%iV|w+pw8t43p_B7ek15m73ZFDNjrpU2fpTDcZlf6-dQYjNLvKZ}^n^ z)LRVwZR^5jR^xQer)zWN*quRdr-G;$o|2TWCu@{xOw(oqG*f3K^eMACPEJ)o*}HVQ zwiHb0SW?D^dbpw%gQ29z0nIXODBIO>G~LyrPcA*O4nWyq{Ug=`ZcHAXIb*%w;DT9m z_Whz$Tw79GfeLw9kH3=9>7+AK(yB4$AtIxwc`Nm-@B;b6V)#zQ@V0*U9)5l^!3Q(X z*0b;978w;<_4T-6zpJE^P<1k!_-VuL;->OpVTsMk-tg612%*ky5#}xmH4|Wvh^d<$ zFOa%TP{4Fy+=R|)?*A-e<`<2`wZJXz~!Ou t8q0@)Vl%!A#tp$kG`VV8hla>w!BQbruR(BCF7>s>X}D%P;Q_dl2?@MZu2 literal 0 HcmV?d00001 diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/Activator.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/Activator.java new file mode 100644 index 00000000000..c6e10de8c36 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/Activator.java @@ -0,0 +1,148 @@ +package org.eclipse.remote.internal.console; + +import java.net.MalformedURLException; +import java.net.URL; +import java.util.HashMap; +import java.util.Map.Entry; + +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.jface.resource.ImageDescriptor; +import org.eclipse.jface.resource.ImageRegistry; +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.console"; //$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); + } + + public static Activator getDefault() { + return plugin; + } + + @Override + protected void initializeImageRegistry(ImageRegistry imageRegistry) { + HashMap map = new HashMap<>(); + + try { + // Local toolbars + map.put(ImageConsts.IMAGE_NEW_TERMINAL, "newterminal.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_CLCL_CONNECT, "connect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_CLCL_DISCONNECT, "disconnect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_CLCL_SETTINGS, "properties_tsk.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_CLCL_COMMAND_INPUT_FIELD, "command_input_field.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_CLCL_SCROLL_LOCK, "lock_co.gif"); //$NON-NLS-1$ + + loadImageRegistry(imageRegistry, ImageConsts.IMAGE_DIR_LOCALTOOL, map); + + map.clear(); + + // Enabled local toolbars + map.put(ImageConsts.IMAGE_NEW_TERMINAL, "newterminal.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_CONNECT, "connect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_DISCONNECT, "disconnect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_SETTINGS, "properties_tsk.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_COMMAND_INPUT_FIELD, "command_input_field.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_SCROLL_LOCK, "lock_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_ELCL_REMOVE, "rem_co.gif"); //$NON-NLS-1$ + + loadImageRegistry(imageRegistry, ImageConsts.IMAGE_DIR_ELCL, map); + + map.clear(); + + // Disabled local toolbars + map.put(ImageConsts.IMAGE_NEW_TERMINAL, "newterminal.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_CONNECT, "connect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_DISCONNECT, "disconnect_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_SETTINGS, "properties_tsk.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_COMMAND_INPUT_FIELD, "command_input_field.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_SCROLL_LOCK, "lock_co.gif"); //$NON-NLS-1$ + map.put(ImageConsts.IMAGE_DLCL_REMOVE, "rem_co.gif"); //$NON-NLS-1$ + + loadImageRegistry(imageRegistry, ImageConsts.IMAGE_DIR_DLCL, map); + + map.clear(); + + map.put(ImageConsts.IMAGE_TERMINAL_VIEW, "terminal_view.gif"); //$NON-NLS-1$ + + loadImageRegistry(imageRegistry, ImageConsts.IMAGE_DIR_EVIEW, map); + + map.clear(); + + } catch (MalformedURLException malformedURLException) { + malformedURLException.printStackTrace(); + } + } + + protected void loadImageRegistry(ImageRegistry imageRegistry, String strDir, HashMap map) + throws MalformedURLException { + ImageDescriptor imageDescriptor; + + for (Entry entry : map.entrySet()) { + URL url = plugin.getBundle().getEntry(ImageConsts.IMAGE_DIR_ROOT + strDir + entry.getValue()); + imageDescriptor = ImageDescriptor.createFromURL(url); + imageRegistry.put(entry.getKey(), imageDescriptor); + } + } + + /** + * Create log entry from an IStatus + * + * @param status + * status to log + */ + public static void log(IStatus status) { + getDefault().getLog().log(status); + } + + /** + * Create log entry from a string + * + * @param msg + * message to log + */ + public static void log(String msg) { + log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, msg, null)); + } + + /** + * Create log entry from a Throwable + * + * @param e + * throwable to log + */ + public static void log(Throwable e) { + log(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, e.getMessage(), e)); + } + + /** + * Return the OSGi service with the given service interface. + * + * @param service + * service interface + * @return the specified service or null if it's not registered + */ + public static T getService(Class service) { + final BundleContext context = plugin.getBundle().getBundleContext(); + final ServiceReference ref = context.getServiceReference(service); + return ref != null ? context.getService(ref) : null; + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.java new file mode 100644 index 00000000000..83fe6198c6d --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.java @@ -0,0 +1,34 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import org.eclipse.osgi.util.NLS; + +public class ConsoleMessages extends NLS { + static { + NLS.initializeMessages(ConsoleMessages.class.getName(), ConsoleMessages.class); + } + + public static String SELECT_CONNECTION; + public static String ENCODING_UNAVAILABLE_0; + public static String ENCODING_UNAVAILABLE_1; + public static String ENCODING; + public static String OPEN_CONSOLE_ERROR; + public static String STATUS; + public static String STATUS_CONNECTED; + public static String STATUS_CONNECTING; + public static String STATUS_CLOSED; + + public static String CONNECTING_TO_TERMINAL; + public static String OPENNING_TERMINAL; + public static String MAKING_CONNECTION; + public static String DISCONNECTING; +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.properties b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.properties new file mode 100644 index 00000000000..e07f47400e2 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ConsoleMessages.properties @@ -0,0 +1,24 @@ +################################################################################ +# 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 +################################################################################ +SELECT_CONNECTION = Select Remote Connection +ENCODING_UNAVAILABLE_0 = Unable to set Encoding +ENCODING_UNAVAILABLE_1 = Encoding {0} is unavailable! +ENCODING = Encoding: +OPEN_CONSOLE_ERROR = Error Opening Command Shell Console +STATUS = Status: +STATUS_CONNECTED = CONNECTED +STATUS_CONNECTING = CONNECTING... +STATUS_CLOSED = CLOSED + +CONNECTING_TO_TERMINAL = Connecting to Command Shell +OPENNING_TERMINAL = Openning Command Shell +MAKING_CONNECTION = Making Connection +DISCONNECTING = Disconnecting diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ImageConsts.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ImageConsts.java new file mode 100644 index 00000000000..a20dcabcb39 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/ImageConsts.java @@ -0,0 +1,52 @@ +/******************************************************************************* + * Copyright (c) 2003, 2015 Wind River Systems, Inc. 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 + * + * Initial Contributors: + * The following Wind River employees contributed to the Terminal component + * that contains this file: Chris Thew, Fran Litterio, Stephen Lamb, + * Helmut Haigermoser and Ted Williams. + * + * Contributors: + * Michael Scharf (Wind River) - extracted from TerminalConsts + * Martin Oberhuber (Wind River) - fixed copyright headers and beautified + * Anna Dushistova (MontaVista) - [227537] moved actions from terminal.view to terminal plugin + * Michael Scharf (Wind River) - [172483] added some more icons + * Michael Scharf (Wind River) - [240023] Get rid of the terminal's "Pin" button + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +public interface ImageConsts +{ + public final static String IMAGE_DIR_ROOT = "icons/"; //$NON-NLS-1$ + public final static String IMAGE_DIR_LOCALTOOL = "clcl16/"; // basic colors - size 16x16 //$NON-NLS-1$ + public final static String IMAGE_DIR_DLCL = "dlcl16/"; // disabled - size 16x16 //$NON-NLS-1$ + public final static String IMAGE_DIR_ELCL = "elcl16/"; // enabled - size 16x16 //$NON-NLS-1$ + public final static String IMAGE_DIR_VIEW = "cview16/"; // views //$NON-NLS-1$ + public final static String IMAGE_DIR_EVIEW = "eview16/"; // views //$NON-NLS-1$ + + public static final String IMAGE_NEW_TERMINAL = "TerminalViewNewTerminal"; //$NON-NLS-1$ + public static final String IMAGE_TERMINAL_VIEW = "TerminalView"; //$NON-NLS-1$ + public static final String IMAGE_CLCL_CONNECT = "ImageClclConnect"; //$NON-NLS-1$ + public static final String IMAGE_CLCL_DISCONNECT = "ImageClclDisconnect"; //$NON-NLS-1$ + public static final String IMAGE_CLCL_SETTINGS = "ImageClclSettings"; //$NON-NLS-1$ + public static final String IMAGE_CLCL_SCROLL_LOCK = "ImageClclScrollLock"; //$NON-NLS-1$ + + public static final String IMAGE_DLCL_CONNECT = "ImageDlclConnect"; //$NON-NLS-1$ + public static final String IMAGE_DLCL_DISCONNECT = "ImageDlclDisconnect"; //$NON-NLS-1$ + public static final String IMAGE_DLCL_SETTINGS = "ImageDlclSettings"; //$NON-NLS-1$ + public static final String IMAGE_DLCL_SCROLL_LOCK = "ImageDlclScrollLock"; //$NON-NLS-1$ + public static final String IMAGE_DLCL_REMOVE = "ImageDlclRemove"; //$NON-NLS-1$ + + public static final String IMAGE_ELCL_CONNECT = "ImageElclConnect"; //$NON-NLS-1$ + public static final String IMAGE_ELCL_DISCONNECT = "ImageElclDisconnect"; //$NON-NLS-1$ + public static final String IMAGE_ELCL_SETTINGS = "ImageElclSettings"; //$NON-NLS-1$ + public static final String IMAGE_ELCL_SCROLL_LOCK = "ImageElclScrollLock"; //$NON-NLS-1$ + public static final String IMAGE_ELCL_REMOVE = "ImageElclRemove"; //$NON-NLS-1$ + public static final String IMAGE_CLCL_COMMAND_INPUT_FIELD = "ImageClclCommandInputField";//$NON-NLS-1$ + public static final String IMAGE_ELCL_COMMAND_INPUT_FIELD = "ImageDlclCommandInputField";//$NON-NLS-1$ + public static final String IMAGE_DLCL_COMMAND_INPUT_FIELD = "ImageDlclCommandInputField";//$NON-NLS-1$ + } diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsole.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsole.java new file mode 100644 index 00000000000..8fdfc7b3d7a --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsole.java @@ -0,0 +1,81 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.tm.internal.terminal.provisional.api.TerminalState; +import org.eclipse.ui.console.AbstractConsole; +import org.eclipse.ui.console.IConsoleView; +import org.eclipse.ui.part.IPageBookViewPage; +import org.eclipse.ui.progress.UIJob; + +@SuppressWarnings("restriction") +public class TerminalConsole extends AbstractConsole { + private final String encoding; + private final TerminalConsoleConnector terminalConnector; + private final int index; + + public TerminalConsole(IRemoteConnection connection, int index, String encoding) { + super(connection.getName(), Activator.getDefault().getImageRegistry().getDescriptor(ImageConsts.IMAGE_TERMINAL_VIEW)); + this.encoding = encoding; + this.terminalConnector = new TerminalConsoleConnector(connection); + this.index = index; + } + + public TerminalConsoleConnector getTerminalConnector() { + return terminalConnector; + } + + public IRemoteConnection getConnection() { + return terminalConnector.getConnection(); + } + + public int getIndex() { + return index; + } + + public synchronized void setState(TerminalState terminalState) { + StringBuffer nameBuff = new StringBuffer(getConnection().getName()); + if (index > 0) { + nameBuff.append(' '); + nameBuff.append(String.valueOf(index)); + } + nameBuff.append(" ("); //$NON-NLS-1$ + if (terminalState == TerminalState.CLOSED) { + nameBuff.append(ConsoleMessages.STATUS_CLOSED); + } else if (terminalState == TerminalState.CONNECTED) { + nameBuff.append(ConsoleMessages.STATUS_CONNECTED); + } else if (terminalState == TerminalState.CONNECTING) { + nameBuff.append(ConsoleMessages.STATUS_CONNECTING); + } + nameBuff.append(")"); //$NON-NLS-1$ + + final String name = nameBuff.toString(); + if (!name.equals(getName())) { + UIJob job = new UIJob("updating name") { //$NON-NLS-1$ + public IStatus runInUIThread(IProgressMonitor monitor) { + TerminalConsole.this.setName(name); + return Status.OK_STATUS; + } + }; + job.setSystem(true); + job.schedule(); + } + } + + public IPageBookViewPage createPage(IConsoleView view) { + view.setFocus(); + return new TerminalConsolePage(this, encoding); + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleConnector.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleConnector.java new file mode 100644 index 00000000000..ad8668c9f4e --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleConnector.java @@ -0,0 +1,285 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.PlatformObject; +import org.eclipse.core.runtime.Status; +import org.eclipse.core.runtime.jobs.Job; +import org.eclipse.remote.core.IRemoteCommandShellService; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.IRemoteProcess; +import org.eclipse.remote.core.IRemoteProcessBuilder; +import org.eclipse.remote.core.IRemoteProcessTerminalService; +import org.eclipse.remote.core.exception.RemoteConnectionException; +import org.eclipse.tm.internal.terminal.provisional.api.ISettingsStore; +import org.eclipse.tm.internal.terminal.provisional.api.ITerminalConnector; +import org.eclipse.tm.internal.terminal.provisional.api.ITerminalControl; +import org.eclipse.tm.internal.terminal.provisional.api.TerminalState; + +@SuppressWarnings("restriction") +public class TerminalConsoleConnector { + + private final IRemoteConnection connection; + private IRemoteProcess remoteProcess; + private PageConnector[] pageConnectors = new PageConnector[0]; + private int width, height; + private TerminalState state = TerminalState.CLOSED; + + private class OutThread extends Thread { + public OutThread() { + super("Terminal Output"); //$NON-NLS-1$ + } + public void run() { + try { + byte[] buff = new byte[1024]; + InputStream in = remoteProcess.getInputStream(); + for (int n = in.read(buff); n >= 0; n = in.read(buff)) { + for (PageConnector connector : pageConnectors) { + ITerminalControl control = connector.control; + if (control != null) { + control.getRemoteToTerminalOutputStream().write(buff, 0, n); + } + } + } + setState(TerminalState.CLOSED); + synchronized (TerminalConsoleConnector.this) { + outThread = null; + } + } catch (IOException e) { + Activator.log(e); + } + } + } + private OutThread outThread; + + public TerminalConsoleConnector(IRemoteConnection connection) { + this.connection = connection; + } + + public IRemoteConnection getConnection() { + return connection; + } + + public ITerminalConnector newPageConnector() { + PageConnector connector = new PageConnector(); + List list = new ArrayList<>(Arrays.asList(pageConnectors)); + list.add(connector); + pageConnectors = list.toArray(new PageConnector[list.size()]); + return connector; + } + + private void disposePageConnector(PageConnector connector) { + List list = new ArrayList<>(Arrays.asList(pageConnectors)); + list.remove(connector); + pageConnectors = list.toArray(new PageConnector[list.size()]); + if (list.isEmpty()) { + // All gone, disconnect + disconnect(); + } + } + + private synchronized void setState(TerminalState state) { + this.state = state; + for (PageConnector connector : pageConnectors) { + ITerminalControl control = connector.control; + if (control != null) { + connector.control.setState(state); + } + } + } + + public synchronized void connect() { + if (state != TerminalState.CLOSED) { + return; + } + + new Job(ConsoleMessages.MAKING_CONNECTION) { + @Override + protected IStatus run(IProgressMonitor monitor) { + // make sure we're only doing this one at a time + // second and further controls will inherit much of this + synchronized (TerminalConsoleConnector.this) { + setState(TerminalState.CONNECTING); + + if (remoteProcess == null || remoteProcess.isCompleted()) { + try { + // We'll need a new one + if (!connection.isOpen()) { + try { + connection.open(monitor); + } catch (RemoteConnectionException e) { + return e.getStatus(); + } + } + remoteProcess = connection.getService(IRemoteCommandShellService.class) + .getCommandShell(IRemoteProcessBuilder.ALLOCATE_PTY); + } catch (IOException e) { + Activator.log(e); + return new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.getLocalizedMessage(), e); + } + } + + if (outThread == null) { + outThread = new OutThread(); + outThread.start(); + } + + if (width > 0 || height > 0) { + TerminalConsoleConnector.this.setTerminalSize(); + } + + setState(TerminalState.CONNECTED); + return Status.OK_STATUS; + } + } + }.schedule(); + } + + public void disconnect() { + if (!remoteProcess.isCompleted()) { + new Job(ConsoleMessages.DISCONNECTING) { + @Override + protected IStatus run(IProgressMonitor monitor) { + remoteProcess.destroy(); + return Status.OK_STATUS; + } + }.schedule(); + } + } + + private void setTerminalSize() { + int minWidth = Integer.MAX_VALUE; + int minHeight = Integer.MAX_VALUE; + + for (PageConnector connector : pageConnectors) { + if (connector.myWidth < minWidth) { + minWidth = connector.myWidth; + } + if (connector.myHeight < minHeight) { + minHeight = connector.myHeight; + } + } + + // Weird but the terminal has wrapping issues at this width, need to reduce it by 4. + minWidth -= 4; + + if (minWidth != width || minHeight != height) { + width = minWidth; + height = minHeight; + synchronized (this) { + if (remoteProcess != null) { + IRemoteProcessTerminalService termService = remoteProcess.getService(IRemoteProcessTerminalService.class); + if (termService != null) { + termService.setTerminalSize(width, height, 8 * width, 8 * height); + } + } + } + } + } + + private class PageConnector extends PlatformObject implements ITerminalConnector { + private int myWidth, myHeight; + private ITerminalControl control; + + @Override + public OutputStream getTerminalToRemoteStream() { + return remoteProcess.getOutputStream(); + } + + @Override + public void connect(final ITerminalControl control) { + this.control = control; + control.setVT100LineWrapping(true); + TerminalConsoleConnector.this.connect(); + if (!control.getState().equals(state)) { + control.setState(state); + } + } + + @Override + public synchronized void disconnect() { + disposePageConnector(this); + } + + @Override + public void setTerminalSize(int newWidth, int newHeight) { + if (newWidth != myWidth || newHeight != myHeight) { + myWidth = newWidth; + myHeight = newHeight; + TerminalConsoleConnector.this.setTerminalSize(); + } + } + + @Override + public String getId() { + // No id, we're magic + return null; + } + + @Override + public String getName() { + // No name + return null; + } + + @Override + public boolean isHidden() { + // in case we do leak into the TM world, we shouldn't be visible + return true; + } + + @Override + public boolean isInitialized() { + return true; + } + + @Override + public String getInitializationErrorMessage() { + return null; + } + + @Override + public boolean isLocalEcho() { + // TODO should the be a property of the connection? + return false; + } + + @Override + public void setDefaultSettings() { + // we don't do settings + } + + @Override + public String getSettingsSummary() { + // we don't do settings + return null; + } + + @Override + public void load(ISettingsStore arg0) { + // we don't do settings + } + + @Override + public void save(ISettingsStore arg0) { + // we don't do settings + } + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleFactory.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleFactory.java new file mode 100644 index 00000000000..411f1563dea --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleFactory.java @@ -0,0 +1,83 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.core.runtime.jobs.Job; +import org.eclipse.jface.window.Window; +import org.eclipse.remote.core.IRemoteCommandShellService; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.exception.RemoteConnectionException; +import org.eclipse.ui.PlatformUI; +import org.eclipse.ui.console.ConsolePlugin; +import org.eclipse.ui.console.IConsole; +import org.eclipse.ui.console.IConsoleFactory; +import org.eclipse.ui.console.IConsoleManager; + +public class TerminalConsoleFactory implements IConsoleFactory { + + @Override + public void openConsole() { + final TerminalConsoleSettingsDialog settingsDialog = new TerminalConsoleSettingsDialog( + PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell()); + if (settingsDialog.open() == Window.OK) { + openConsole(settingsDialog.getRemoteConnection(), settingsDialog.getEncoding()); + } + } + + public static void openConsole(final IRemoteConnection connection, final String encoding) { + new Job(ConsoleMessages.OPENNING_TERMINAL) { + @Override + public IStatus run(IProgressMonitor monitor) { + IRemoteCommandShellService commandShellService = connection.getService(IRemoteCommandShellService.class); + if (commandShellService == null) { + return Status.CANCEL_STATUS; + } + + try { + if (!connection.isOpen()) { + connection.open(monitor); + } + + // TODO, how to handle command shells that are singletons, like serial ports + + // Find the index; + IConsoleManager consoleManager = ConsolePlugin.getDefault().getConsoleManager(); + IConsole[] consoles = consoleManager.getConsoles(); + boolean[] indices = new boolean[consoles.length]; + for (IConsole console : consoles) { + if (console instanceof TerminalConsole) { + TerminalConsole terminalConsole = (TerminalConsole) console; + if (terminalConsole.getConnection().equals(connection)) { + indices[terminalConsole.getIndex()] = true; + } + } + } + int index = 0; + while (index < indices.length && indices[index]) { + index++; + } + + TerminalConsole terminalConsole = new TerminalConsole(connection, index, encoding); + consoleManager.addConsoles(new IConsole[] { terminalConsole }); + consoleManager.showConsoleView(terminalConsole); + + return Status.OK_STATUS; + } catch (RemoteConnectionException e) { + return e.getStatus(); + } + } + }.schedule(); + } + +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsolePage.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsolePage.java new file mode 100644 index 00000000000..e5a0d1d0720 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsolePage.java @@ -0,0 +1,178 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import java.io.UnsupportedEncodingException; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.Status; +import org.eclipse.core.runtime.jobs.Job; +import org.eclipse.jface.action.GroupMarker; +import org.eclipse.jface.action.IToolBarManager; +import org.eclipse.jface.dialogs.ErrorDialog; +import org.eclipse.osgi.util.NLS; +import org.eclipse.remote.internal.console.actions.ConsoleActionConnect; +import org.eclipse.remote.internal.console.actions.ConsoleActionDisconnect; +import org.eclipse.remote.internal.console.actions.ConsoleActionScrollLock; +import org.eclipse.swt.SWT; +import org.eclipse.swt.layout.FillLayout; +import org.eclipse.swt.layout.GridData; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Control; +import org.eclipse.tm.internal.terminal.control.ITerminalListener; +import org.eclipse.tm.internal.terminal.control.ITerminalViewControl; +import org.eclipse.tm.internal.terminal.control.TerminalViewControlFactory; +import org.eclipse.tm.internal.terminal.provisional.api.ITerminalConnector; +import org.eclipse.tm.internal.terminal.provisional.api.TerminalState; +import org.eclipse.ui.PlatformUI; +import org.eclipse.ui.console.IConsoleConstants; +import org.eclipse.ui.console.actions.CloseConsoleAction; +import org.eclipse.ui.part.IPageSite; +import org.eclipse.ui.part.Page; +import org.eclipse.ui.progress.UIJob; + +@SuppressWarnings("restriction") +public class TerminalConsolePage extends Page { + public static final String TOOLBAR_GROUP_ID = "org.eclipse.remote.internal.terminal.console.Toolbar"; //$NON-NLS-1$ + + private final ConsoleActionConnect connectAction; + private final ConsoleActionDisconnect disconnectAction; + + private final TerminalConsole terminalConsole; + private final String encoding; + private Composite mainComposite; + private ITerminalViewControl tViewCtrl; + + private Job connectTerminalJob = new ConnectTerminalJob(); + + private final ITerminalListener listener = new ITerminalListener() { + @Override + public void setState(TerminalState state) { + if (state == TerminalState.CONNECTING || state == TerminalState.CONNECTED) { + disconnectAction.setEnabled(true); + connectAction.setEnabled(false); + } else if (state == TerminalState.CLOSED) { + disconnectAction.setEnabled(false); + connectAction.setEnabled(true); + } + terminalConsole.setState(state); + } + + @Override + public void setTerminalTitle(final String title) { + // ignore titles coming from the widget + } + }; + + public TerminalConsolePage(TerminalConsole console, String encoding) { + terminalConsole = console; + this.encoding = encoding; + connectAction = new ConsoleActionConnect(console); + disconnectAction = new ConsoleActionDisconnect(console); + } + + public TerminalConsole getConsole() { + return terminalConsole; + } + + @Override + public void init(IPageSite pageSite) { + super.init(pageSite); + IToolBarManager toolBarManager = pageSite.getActionBars().getToolBarManager(); + toolBarManager.insertBefore(IConsoleConstants.OUTPUT_GROUP, new GroupMarker(TOOLBAR_GROUP_ID)); + toolBarManager.appendToGroup(TOOLBAR_GROUP_ID, connectAction); + toolBarManager.appendToGroup(TOOLBAR_GROUP_ID, disconnectAction); + toolBarManager.appendToGroup(TOOLBAR_GROUP_ID, new ConsoleActionScrollLock(this)); + toolBarManager.appendToGroup(TOOLBAR_GROUP_ID, new CloseConsoleAction(terminalConsole)); + } + + @Override + public void createControl(Composite parent) { + mainComposite = new Composite(parent, SWT.NONE); + mainComposite.setLayoutData(new GridData(GridData.FILL_BOTH)); + mainComposite.setLayout(new FillLayout()); + + tViewCtrl = TerminalViewControlFactory.makeControl(listener, + mainComposite, + new ITerminalConnector[] {}); + tViewCtrl.setConnector(terminalConsole.getTerminalConnector().newPageConnector()); + + try { + tViewCtrl.setEncoding(encoding); + } catch (UnsupportedEncodingException e) { + IStatus status = new Status(IStatus.ERROR, Activator.PLUGIN_ID, + NLS.bind(ConsoleMessages.ENCODING_UNAVAILABLE_1, encoding)); + Activator.log(status); + ErrorDialog.openError(PlatformUI.getWorkbench().getDisplay().getActiveShell(), + ConsoleMessages.OPEN_CONSOLE_ERROR, + ConsoleMessages.ENCODING_UNAVAILABLE_0, + status); + } + connectTerminalJob.schedule(); + } + + @Override + public Control getControl() { + return mainComposite; + } + + @Override + public void setFocus() { + tViewCtrl.setFocus(); + } + + @Override + public void dispose() { + tViewCtrl.disposeTerminal(); + super.dispose(); + } + + public TerminalState getTerminalState() { + return tViewCtrl.getState(); + } + + public void connectTerminal() { + if (!tViewCtrl.isConnected()) { + connectTerminalJob.schedule(); + } + } + + public void disconnectTerminal() { + if (tViewCtrl.getState() != TerminalState.CLOSED) { + tViewCtrl.getTerminalConnector().disconnect(); + } + } + + public void setScrollLock(boolean enabled) { + tViewCtrl.setScrollLock(enabled); + } + + public boolean getScrollLock() { + return tViewCtrl.isScrollLock(); + } + + class ConnectTerminalJob extends UIJob { + public ConnectTerminalJob() { + super(ConsoleMessages.CONNECTING_TO_TERMINAL); + setSystem(true); + } + + @Override + public IStatus runInUIThread(IProgressMonitor monitor) { + if (tViewCtrl != null && !tViewCtrl.isDisposed()) { + tViewCtrl.clearTerminal(); + tViewCtrl.connectTerminal(); + } + return Status.OK_STATUS; + } + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleSettingsDialog.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleSettingsDialog.java new file mode 100644 index 00000000000..5e8fdc9dd7b --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/TerminalConsoleSettingsDialog.java @@ -0,0 +1,188 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console; + +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.List; + +import org.eclipse.jface.dialogs.Dialog; +import org.eclipse.jface.dialogs.IDialogSettings; +import org.eclipse.jface.window.IShellProvider; +import org.eclipse.jface.window.Window; +import org.eclipse.remote.core.IRemoteCommandShellService; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.core.IRemoteConnectionType; +import org.eclipse.remote.core.IRemoteProcessService; +import org.eclipse.remote.core.IRemoteServicesManager; +import org.eclipse.remote.ui.widgets.RemoteConnectionWidget; +import org.eclipse.swt.SWT; +import org.eclipse.swt.events.SelectionEvent; +import org.eclipse.swt.events.SelectionListener; +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.Control; +import org.eclipse.swt.widgets.Label; +import org.eclipse.swt.widgets.Shell; + +public class TerminalConsoleSettingsDialog extends Dialog { + + private static final String CONNECTION_TYPE = "connectionType"; //$NON-NLS-1$ + private static final String CONNECTION_NAME = "connectionName"; //$NON-NLS-1$ + private static final String ENCODING = "encoding"; //$NON-NLS-1$ + + private RemoteConnectionWidget remoteConnWidget; + private Combo encodingCombo; + private String selectedEncoding; + + public TerminalConsoleSettingsDialog(IShellProvider parentShell) { + this(parentShell.getShell()); + } + + public TerminalConsoleSettingsDialog(Shell parentShell) { + super(parentShell); + } + + @Override + protected Control createDialogArea(Composite parent) { + Composite composite = (Composite) super.createDialogArea(parent); + composite.setLayout(new GridLayout(2, false)); + + IRemoteServicesManager manager = Activator.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); + + remoteConnWidget = new RemoteConnectionWidget(composite, SWT.NONE, null, 0, connTypes); + + IDialogSettings settings = getDialogSettings(); + String initialId = settings.get(CONNECTION_TYPE); + String initialName = settings.get(CONNECTION_NAME); + if (initialId != null && initialName != null) { + remoteConnWidget.setConnection(initialId, initialName); + } + GridData gd = new GridData(); + gd.horizontalSpan = 2; + remoteConnWidget.setLayoutData(gd); + remoteConnWidget.addSelectionListener(new ValidationSelectionListener()); + + Label encodingLabel = new Label(composite, SWT.NONE); + encodingLabel.setLayoutData(new GridData()); + encodingLabel.setText(ConsoleMessages.ENCODING); + + encodingCombo = new Combo(composite, SWT.READ_ONLY); + encodingCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); + int i = 0; + String initialEncoding = settings.get(ENCODING); + if (initialEncoding == null) { + initialEncoding = Charset.defaultCharset().name(); + } + for (String encoding : getEncodings()) { + encodingCombo.add(encoding); + if (encoding.equals(initialEncoding)) { + selectedEncoding = encoding; + encodingCombo.select(i); + } + i++; + } + encodingCombo.addSelectionListener(new ValidationSelectionListener()); + + return composite; + } + + private List getEncodings(){ + List encodings = new ArrayList<>(2); + encodings.add("ISO-8859-1"); //$NON-NLS-1$ + encodings.add("UTF-8"); //$NON-NLS-1$ + + String hostEncoding = Charset.defaultCharset().name(); + if (!encodings.contains(hostEncoding)) { + encodings.add(hostEncoding); + } + return encodings; + } + + @Override + protected void createButtonsForButtonBar(Composite parent) { + super.createButtonsForButtonBar(parent); + validateDialog(); + } + + @Override + protected void configureShell(Shell newShell) { + super.configureShell(newShell); + newShell.setText(ConsoleMessages.SELECT_CONNECTION); + } + + private void validateDialog() { + IRemoteConnection connection = remoteConnWidget.getConnection(); + selectedEncoding = encodingCombo.getItem(encodingCombo.getSelectionIndex()); + if (connection != null && selectedEncoding != null) { + getButton(OK).setEnabled(true); + } else { + getButton(OK).setEnabled(false); + } + } + + /** + * Get the remote connection selected in the dialog. + */ + public IRemoteConnection getRemoteConnection() { + return remoteConnWidget.getConnection(); + } + + /** + * Get the encoding selected in the dialog. + */ + public String getEncoding() { + return selectedEncoding; + } + + class ValidationSelectionListener implements SelectionListener { + @Override + public void widgetSelected(SelectionEvent e) { + validateDialog(); + } + + @Override + public void widgetDefaultSelected(SelectionEvent e) { + validateDialog(); + } + } + + private IDialogSettings getDialogSettings() { + IDialogSettings result = Activator.getDefault().getDialogSettings().getSection(TerminalConsoleSettingsDialog.class.getName()); + + if (result == null) { + result = Activator.getDefault().getDialogSettings().addNewSection(TerminalConsoleSettingsDialog.class.getName()); + } + + return result; + + } + + @Override + public int open() { + int rc = super.open(); + if (rc == Window.OK) { + // save the settings + IDialogSettings settings = getDialogSettings(); + IRemoteConnection connection = getRemoteConnection(); + settings.put(CONNECTION_TYPE, connection.getConnectionType().getId()); + settings.put(CONNECTION_NAME, connection.getName()); + settings.put(ENCODING, getEncoding()); + } + return rc; + } + +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.java new file mode 100644 index 00000000000..73d6553ec12 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.java @@ -0,0 +1,25 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console.actions; + +import org.eclipse.osgi.util.NLS; + +public class ActionMessages extends NLS { + + static { + NLS.initializeMessages(ActionMessages.class.getName(), ActionMessages.class); + } + + public static String CONNECT; + public static String DISCONNECT; + public static String SCROLL_LOCK; + +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.properties b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.properties new file mode 100644 index 00000000000..3d87929b24e --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ActionMessages.properties @@ -0,0 +1,13 @@ +################################################################################ +# 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 +################################################################################ +CONNECT = Connect +DISCONNECT = Disconnect +SCROLL_LOCK = Scroll Lock \ No newline at end of file diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleAction.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleAction.java new file mode 100644 index 00000000000..9df1416479b --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleAction.java @@ -0,0 +1,62 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console.actions; + +import org.eclipse.jface.action.Action; +import org.eclipse.jface.resource.ImageDescriptor; +import org.eclipse.jface.resource.ImageRegistry; +import org.eclipse.remote.internal.console.Activator; + +public abstract class ConsoleAction extends Action { + public ConsoleAction(String id) { + this(id, 0); + } + + public ConsoleAction(String id, int style) { + super("", style); //$NON-NLS-1$ + setId(id); + } + + protected void setupAction(String text, String tooltip, + String image, String enabledImage, String disabledImage, + boolean enabled) { + ImageRegistry imageRegistry = Activator.getDefault().getImageRegistry(); + setupAction(text, tooltip, image, enabledImage, disabledImage, enabled, imageRegistry); + } + + protected void setupAction(String text, String tooltip, + String hoverImage, String enabledImage, String disabledImage, + boolean enabled, ImageRegistry imageRegistry) { + setupAction(text, + tooltip, + imageRegistry.getDescriptor(hoverImage), + imageRegistry.getDescriptor(enabledImage), + imageRegistry.getDescriptor(disabledImage), + enabled); + } + + protected void setupAction(String text, String tooltip, + ImageDescriptor hoverImage, ImageDescriptor enabledImage, ImageDescriptor disabledImage, + boolean enabled) { + setText(text); + setToolTipText(tooltip); + setEnabled(enabled); + if (enabledImage != null) { + setImageDescriptor(enabledImage); + } + if (disabledImage != null) { + setDisabledImageDescriptor(disabledImage); + } + if (hoverImage != null) { + setHoverImageDescriptor(hoverImage); + } + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionConnect.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionConnect.java new file mode 100644 index 00000000000..e3c97bf1f26 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionConnect.java @@ -0,0 +1,36 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console.actions; + +import org.eclipse.remote.internal.console.ImageConsts; +import org.eclipse.remote.internal.console.TerminalConsole; + +public class ConsoleActionConnect extends ConsoleAction { + private final TerminalConsole console; + + public ConsoleActionConnect(TerminalConsole console) { + super(ConsoleActionConnect.class.getName()); + + this.console = console; + + setupAction(ActionMessages.CONNECT, + ActionMessages.CONNECT, + ImageConsts.IMAGE_CLCL_CONNECT, + ImageConsts.IMAGE_ELCL_CONNECT, + ImageConsts.IMAGE_DLCL_CONNECT, + true); + } + + @Override + public void run() { + console.getTerminalConnector().connect(); + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionDisconnect.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionDisconnect.java new file mode 100644 index 00000000000..b567063320b --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionDisconnect.java @@ -0,0 +1,37 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console.actions; + +import org.eclipse.remote.internal.console.ImageConsts; +import org.eclipse.remote.internal.console.TerminalConsole; + +public class ConsoleActionDisconnect extends ConsoleAction { + private final TerminalConsole console; + + public ConsoleActionDisconnect(TerminalConsole console) + { + super(ConsoleActionDisconnect.class.getName()); + + this.console = console; + + setupAction(ActionMessages.DISCONNECT, + ActionMessages.DISCONNECT, + ImageConsts.IMAGE_CLCL_DISCONNECT, + ImageConsts.IMAGE_ELCL_DISCONNECT, + ImageConsts.IMAGE_DLCL_DISCONNECT, + false); + } + + @Override + public void run() { + console.getTerminalConnector().disconnect(); + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionScrollLock.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionScrollLock.java new file mode 100644 index 00000000000..28c7e4a3fb2 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/ConsoleActionScrollLock.java @@ -0,0 +1,39 @@ +/******************************************************************************* + * 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 + *******************************************************************************/ +package org.eclipse.remote.internal.console.actions; + +import org.eclipse.jface.action.IAction; +import org.eclipse.remote.internal.console.ImageConsts; +import org.eclipse.remote.internal.console.TerminalConsolePage; + +public class ConsoleActionScrollLock extends ConsoleAction { + private final TerminalConsolePage page; + + public ConsoleActionScrollLock(TerminalConsolePage page) + { + super(ConsoleActionScrollLock.class.getName(), IAction.AS_RADIO_BUTTON); + + this.page = page; + + setupAction(ActionMessages.SCROLL_LOCK, + ActionMessages.SCROLL_LOCK, + ImageConsts.IMAGE_CLCL_SCROLL_LOCK, + ImageConsts.IMAGE_ELCL_SCROLL_LOCK, + ImageConsts.IMAGE_DLCL_SCROLL_LOCK, + true); + } + + @Override + public void run() { + page.setScrollLock(!page.getScrollLock()); + setChecked(page.getScrollLock()); + } +} diff --git a/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/OpenCommandShellHandler.java b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/OpenCommandShellHandler.java new file mode 100644 index 00000000000..a382559d8e5 --- /dev/null +++ b/bundles/org.eclipse.remote.console/src/org/eclipse/remote/internal/console/actions/OpenCommandShellHandler.java @@ -0,0 +1,27 @@ +package org.eclipse.remote.internal.console.actions; + +import java.nio.charset.Charset; + +import org.eclipse.core.commands.AbstractHandler; +import org.eclipse.core.commands.ExecutionEvent; +import org.eclipse.core.commands.ExecutionException; +import org.eclipse.core.runtime.Status; +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.remote.core.IRemoteConnection; +import org.eclipse.remote.internal.console.TerminalConsoleFactory; +import org.eclipse.ui.handlers.HandlerUtil; + +public class OpenCommandShellHandler extends AbstractHandler { + + @Override + public Object execute(ExecutionEvent event) throws ExecutionException { + ISelection selection = HandlerUtil.getActiveWorkbenchWindow(event).getActivePage().getSelection(); + if (selection != null && selection instanceof IStructuredSelection) { + IRemoteConnection connection = (IRemoteConnection) ((IStructuredSelection) selection).iterator().next(); + TerminalConsoleFactory.openConsole(connection, Charset.defaultCharset().name()); + } + return Status.OK_STATUS; + } + +} diff --git a/bundles/org.eclipse.remote.core/META-INF/MANIFEST.MF b/bundles/org.eclipse.remote.core/META-INF/MANIFEST.MF index 908862dc222..96f97d86378 100644 --- a/bundles/org.eclipse.remote.core/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.remote.core/META-INF/MANIFEST.MF @@ -9,7 +9,8 @@ Require-Bundle: org.eclipse.core.runtime, org.eclipse.core.filesystem, org.eclipse.core.resources, org.eclipse.core.variables, - org.eclipse.debug.core + org.eclipse.debug.core, + org.eclipse.cdt.core.native;bundle-version="5.8.0" Bundle-ActivationPolicy: lazy Export-Package: org.eclipse.remote.core, org.eclipse.remote.core.exception, diff --git a/bundles/org.eclipse.remote.core/plugin.xml b/bundles/org.eclipse.remote.core/plugin.xml index 51b916ebf9e..9753107b402 100644 --- a/bundles/org.eclipse.remote.core/plugin.xml +++ b/bundles/org.eclipse.remote.core/plugin.xml @@ -33,6 +33,11 @@ factory="org.eclipse.remote.internal.core.services.local.LocalProcessService$Factory" service="org.eclipse.remote.core.IRemoteProcessService"> + + + + diff --git a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteConnectionType.java b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteConnectionType.java index d62cc98cd86..d5db29d23ba 100644 --- a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteConnectionType.java +++ b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/RemoteConnectionType.java @@ -60,12 +60,14 @@ public class RemoteConnectionType implements IRemoteConnectionType { } // load up existing connections - try { - for (String connectionName : getPreferenceNode().childrenNames()) { - connections.put(connectionName, new RemoteConnection(this, connectionName)); + synchronized (connections) { + try { + for (String connectionName : getPreferenceNode().childrenNames()) { + connections.put(connectionName, new RemoteConnection(this, connectionName)); + } + } catch (BackingStoreException e) { + RemoteCorePlugin.log(e); } - } catch (BackingStoreException e) { - RemoteCorePlugin.log(e); } } @@ -284,23 +286,27 @@ public class RemoteConnectionType implements IRemoteConnectionType { */ @Override public IRemoteConnection getConnection(String name) { - return connections.get(name); + synchronized (connections) { + return connections.get(name); + } } @Override public IRemoteConnection getConnection(URI uri) { - IRemoteConnection connection = connections.get(uri.getAuthority()); - if (connection != null) { - return connection; + synchronized (connections) { + IRemoteConnection connection = connections.get(uri.getAuthority()); + if (connection != null) { + return connection; + } + + // If it's a file: scheme we must be the local connection type, just return our + // hopefully one connection, the Local connection. + if (uri.getScheme().equals("file") && !connections.isEmpty()) { //$NON-NLS-1$ + return connections.values().iterator().next(); + } + + return null; } - - // If it's a file: scheme we must be the local connection type, just return our - // hopefully one connection, the Local connection. - if (uri.getScheme().equals("file") && !connections.isEmpty()) { //$NON-NLS-1$ - return connections.values().iterator().next(); - } - - return null; } /* @@ -310,7 +316,9 @@ public class RemoteConnectionType implements IRemoteConnectionType { */ @Override public List getConnections() { - return new ArrayList(connections.values()); + synchronized (connections) { + return new ArrayList(connections.values()); + } } /* @@ -320,18 +328,24 @@ public class RemoteConnectionType implements IRemoteConnectionType { */ @Override public IRemoteConnectionWorkingCopy newConnection(String name) throws RemoteConnectionException { - if (connections.containsKey(name)) { - throw new ConnectionExistsException(name); + synchronized (connections) { + if (connections.containsKey(name)) { + throw new ConnectionExistsException(name); + } + return new RemoteConnectionWorkingCopy(this, name); } - return new RemoteConnectionWorkingCopy(this, name); } void addConnection(RemoteConnection remoteConnection) { - connections.put(remoteConnection.getName(), remoteConnection); + synchronized (connections) { + connections.put(remoteConnection.getName(), remoteConnection); + } } void removeConnection(String name) { - connections.remove(name); + synchronized (connections) { + connections.remove(name); + } } /* @@ -341,19 +355,21 @@ public class RemoteConnectionType implements IRemoteConnectionType { */ @Override public void removeConnection(IRemoteConnection connection) throws RemoteConnectionException { - if (connection instanceof RemoteConnection) { - connection.close(); - RemoteConnection conn = (RemoteConnection) connection; - try { - conn.getPreferences().removeNode(); - } catch (BackingStoreException e) { - throw new RemoteConnectionException(e); + synchronized (connections) { + if (connection instanceof RemoteConnection) { + connection.close(); + RemoteConnection conn = (RemoteConnection) connection; + try { + conn.getPreferences().removeNode(); + } catch (BackingStoreException e) { + throw new RemoteConnectionException(e); + } + conn.getSecurePreferences().removeNode(); + connections.remove(conn.getName()); + connection.fireConnectionChangeEvent(RemoteConnectionChangeEvent.CONNECTION_REMOVED); + } else { + RemoteCorePlugin.log("Wrong class for " + connection.getName() + ", was " + connection.getClass().getName()); //$NON-NLS-1$ //$NON-NLS-2$ } - conn.getSecurePreferences().removeNode(); - connections.remove(conn.getName()); - connection.fireConnectionChangeEvent(RemoteConnectionChangeEvent.CONNECTION_REMOVED); - } else { - RemoteCorePlugin.log("Wrong class for " + connection.getName() + ", was " + connection.getClass().getName()); //$NON-NLS-1$ //$NON-NLS-2$ } } diff --git a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalCommandShellService.java b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalCommandShellService.java new file mode 100644 index 00000000000..433d76e6541 --- /dev/null +++ b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalCommandShellService.java @@ -0,0 +1,66 @@ +/******************************************************************************* + * 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 - initial API and implementation + *******************************************************************************/ +package org.eclipse.remote.internal.core.services.local; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import org.eclipse.core.runtime.Platform; +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.core.IRemoteProcessBuilder; +import org.eclipse.remote.core.IRemoteProcessService; + +public class LocalCommandShellService implements IRemoteCommandShellService { + + private final IRemoteConnection connection; + + public LocalCommandShellService(IRemoteConnection connection) { + this.connection = connection; + } + + public static class Factory implements IRemoteCommandShellService.Factory { + @SuppressWarnings("unchecked") + @Override + public T getService(IRemoteConnection remoteConnection, Class service) { + if (service.equals(IRemoteCommandShellService.class)) { + return (T) new LocalCommandShellService(remoteConnection); + } + return null; + } + } + + @Override + public IRemoteConnection getRemoteConnection() { + return connection; + } + + @SuppressWarnings("nls") + @Override + public IRemoteProcess getCommandShell(int flags) throws IOException { + IRemoteProcessService procService = connection.getService(IRemoteProcessService.class); + String[] command; + if (Platform.getOS().equals(Platform.OS_WIN32)) { + command = new String[] { "cmd" }; + } else { + List list = new ArrayList<>(Arrays.asList(System.getenv("SHELL").split("\\s+"))); + list.add("-l"); + command = list.toArray(new String[list.size()]); + } + IRemoteProcessBuilder builder = procService.getProcessBuilder(command); + return builder.start(IRemoteProcessBuilder.ALLOCATE_PTY); + } + +} diff --git a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcess.java b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcess.java index 806cdee790d..b2d40f7beaa 100644 --- a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcess.java +++ b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcess.java @@ -16,14 +16,18 @@ import java.io.OutputStream; import java.io.PipedInputStream; import java.io.PipedOutputStream; +import org.eclipse.cdt.utils.pty.PTY; import org.eclipse.remote.core.IRemoteProcess; import org.eclipse.remote.core.IRemoteProcessControlService; +import org.eclipse.remote.core.IRemoteProcessTerminalService; -public class LocalProcess implements IRemoteProcessControlService { +public class LocalProcess implements IRemoteProcessControlService, IRemoteProcessTerminalService { private static int refCount = 0; private final IRemoteProcess remoteProcess; private final Process localProcess; + private final PTY pty; + private int width, height; private InputStream procStdout; private InputStream procStderr; private Thread stdoutReader; @@ -52,6 +56,9 @@ public class LocalProcess implements IRemoteProcessControlService { if (IRemoteProcessControlService.class.equals(service)) { return (T) remoteProcess.getService(LocalProcess.class); } + if (IRemoteProcessTerminalService.class.equals(service)) { + return (T) remoteProcess.getService(LocalProcess.class); + } return null; } } @@ -113,7 +120,9 @@ public class LocalProcess implements IRemoteProcessControlService { public LocalProcess(IRemoteProcess process) { remoteProcess = process; - localProcess = ((LocalProcessBuilder) process.getProcessBuilder()).getProcess(); + LocalProcessBuilder builder = (LocalProcessBuilder) process.getProcessBuilder(); + localProcess = builder.getProcess(); + pty = builder.getPty(); try { if (process.getProcessBuilder().redirectErrorStream()) { @@ -226,4 +235,13 @@ public class LocalProcess implements IRemoteProcessControlService { public IRemoteProcess getRemoteProcess() { return remoteProcess; } + + @Override + public void setTerminalSize(int cols, int rows, int pwidth, int pheight) { + if (pty != null && (width != cols || height != rows)) { + width = cols; + height = rows; + pty.setTerminalSize(width, height); + } + } } diff --git a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcessBuilder.java b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcessBuilder.java index 022f453f94e..5f713ea5b85 100644 --- a/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcessBuilder.java +++ b/bundles/org.eclipse.remote.core/src/org/eclipse/remote/internal/core/services/local/LocalProcessBuilder.java @@ -18,6 +18,9 @@ import java.util.List; import java.util.Map; import java.util.Map.Entry; +import org.eclipse.cdt.utils.pty.PTY; +import org.eclipse.cdt.utils.pty.PTY.Mode; +import org.eclipse.cdt.utils.spawner.ProcessFactory; import org.eclipse.core.filesystem.EFS; import org.eclipse.core.filesystem.IFileStore; import org.eclipse.core.runtime.CoreException; @@ -32,6 +35,7 @@ import org.eclipse.remote.core.AbstractRemoteProcessBuilder; import org.eclipse.remote.core.IProcessFactory; import org.eclipse.remote.core.IRemoteConnection; import org.eclipse.remote.core.IRemoteProcess; +import org.eclipse.remote.core.IRemoteProcessBuilder; import org.eclipse.remote.internal.core.RemoteCorePlugin; import org.eclipse.remote.internal.core.RemoteProcess; @@ -43,6 +47,7 @@ public class LocalProcessBuilder extends AbstractRemoteProcessBuilder { private final Map fRemoteEnv = new HashMap(); private Process localProcess; + private PTY pty; public LocalProcessBuilder(IRemoteConnection connection, List command) { super(connection, command); @@ -103,20 +108,31 @@ public class LocalProcessBuilder extends AbstractRemoteProcessBuilder { @Override public IRemoteProcess start(int flags) throws IOException { String commandArray[] = command().toArray(new String[0]); + + if ((flags & IRemoteProcessBuilder.ALLOCATE_PTY) != 0) { + environment().put("TERM", "vt100"); //$NON-NLS-1$ //$NON-NLS-2$ + } String environmentArray[] = new String[environment().size()]; int index = 0; for (Entry entry : environment().entrySet()) { environmentArray[index++] = entry.getKey() + "=" + entry.getValue(); //$NON-NLS-1$ } - if (directory() != null) { - try { - localProcess = fProcessFactory.exec(commandArray, environmentArray, - directory().toLocalFile(EFS.NONE, new NullProgressMonitor())); - } catch (CoreException e) { - throw new IOException(e.getMessage()); + + try { + if ((flags & IRemoteProcessBuilder.ALLOCATE_PTY) != 0) { + pty = new PTY(Mode.TERMINAL); + File dir = directory() != null ? directory().toLocalFile(EFS.NONE, new NullProgressMonitor()) : null; + localProcess = ProcessFactory.getFactory().exec(commandArray, environmentArray, dir, pty); + } else { + if (directory() != null) { + localProcess = fProcessFactory.exec(commandArray, environmentArray, + directory().toLocalFile(EFS.NONE, new NullProgressMonitor())); + } else { + localProcess = fProcessFactory.exec(commandArray, environmentArray); + } } - } else { - localProcess = fProcessFactory.exec(commandArray, environmentArray); + } catch (CoreException e) { + throw new IOException(e.getMessage()); } return new RemoteProcess(getRemoteConnection(), this); } @@ -125,6 +141,10 @@ public class LocalProcessBuilder extends AbstractRemoteProcessBuilder { return localProcess; } + public PTY getPty() { + return pty; + } + private IProcessFactory getProcessFactory() { IExtensionRegistry registry = Platform.getExtensionRegistry(); IExtensionPoint extensionPoint = registry.getExtensionPoint(RemoteCorePlugin.getUniqueIdentifier(), EXTENSION_POINT_ID); diff --git a/bundles/org.eclipse.remote.jsch.core/src/org/eclipse/remote/internal/jsch/core/JSchProcessBuilder.java b/bundles/org.eclipse.remote.jsch.core/src/org/eclipse/remote/internal/jsch/core/JSchProcessBuilder.java index 6c01b88c6f1..ceead2d9f1b 100644 --- a/bundles/org.eclipse.remote.jsch.core/src/org/eclipse/remote/internal/jsch/core/JSchProcessBuilder.java +++ b/bundles/org.eclipse.remote.jsch.core/src/org/eclipse/remote/internal/jsch/core/JSchProcessBuilder.java @@ -46,6 +46,7 @@ public class JSchProcessBuilder extends AbstractRemoteProcessBuilder { private Channel fChannel; private Map fNewRemoteEnv; private boolean fPreamble = true; + private boolean fShell = false; public JSchProcessBuilder(IRemoteConnection connection, List command) { super(connection, command); @@ -67,7 +68,8 @@ public class JSchProcessBuilder extends AbstractRemoteProcessBuilder { } public JSchProcessBuilder(IRemoteConnection connection) { - this(connection, "shell"); //$NON-NLS-1$ + this(connection, new ArrayList()); + fShell = true; } @Override @@ -102,7 +104,7 @@ public class JSchProcessBuilder extends AbstractRemoteProcessBuilder { } List cmdArgs = command(); - if (cmdArgs.size() < 1) { + if (cmdArgs.size() < 1 && !fShell) { throw new IndexOutOfBoundsException(); } @@ -161,10 +163,11 @@ public class JSchProcessBuilder extends AbstractRemoteProcessBuilder { } try { - if (cmdArgs.size() == 1 && cmdArgs.get(0).equals("shell")) { //$NON-NLS-1$ + if (fShell) { fChannel = fConnection.getShellChannel(); ((ChannelShell) fChannel).setPty((flags & ALLOCATE_PTY) == ALLOCATE_PTY); - RemoteDebugOptions.trace(RemoteDebugOptions.DEBUG_REMOTE_COMMANDS, "executing command: shell"); //$NON-NLS-1$ + ((ChannelShell) fChannel).setPtyType("vt100"); //$NON-NLS-1$ + RemoteDebugOptions.trace(RemoteDebugOptions.DEBUG_REMOTE_COMMANDS, "executing shell"); //$NON-NLS-1$ } else { fChannel = fConnection.getExecChannel(); String command = buildCommand(remoteCmd, env, clearEnv); diff --git a/bundles/org.eclipse.remote.ui/plugin.properties b/bundles/org.eclipse.remote.ui/plugin.properties index 06336c3c29e..6d387c5c375 100644 --- a/bundles/org.eclipse.remote.ui/plugin.properties +++ b/bundles/org.eclipse.remote.ui/plugin.properties @@ -16,5 +16,4 @@ ConnectionsView.name=Connections ConnectionsContent.name=Connections NewConnectionCommand.name=New Connection DeleteConnectionCommand.name=Delete Connection -OpenTerminalCommand.name=Open Terminal ConnectionProperties.name=Connection diff --git a/bundles/org.eclipse.remote.ui/plugin.xml b/bundles/org.eclipse.remote.ui/plugin.xml index b1de474ad95..59a38f886c1 100644 --- a/bundles/org.eclipse.remote.ui/plugin.xml +++ b/bundles/org.eclipse.remote.ui/plugin.xml @@ -121,11 +121,6 @@ id="org.eclipse.remote.ui.command.deleteConnection" name="%DeleteConnectionCommand.name"> - - @@ -168,23 +163,6 @@ - - - - - - - - - - + + org.eclipse.remote.console-feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + + org.eclipse.pde.FeatureNature + + diff --git a/features/org.eclipse.remote.console-feature/build.properties b/features/org.eclipse.remote.console-feature/build.properties new file mode 100644 index 00000000000..db80add92e9 --- /dev/null +++ b/features/org.eclipse.remote.console-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.console-feature/eclipse_update_120.jpg b/features/org.eclipse.remote.console-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.console-feature/feature.properties b/features/org.eclipse.remote.console-feature/feature.properties new file mode 100644 index 00000000000..c25ce255306 --- /dev/null +++ b/features/org.eclipse.remote.console-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=Remote Command Shell Console + +# "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.console-feature/feature.xml b/features/org.eclipse.remote.console-feature/feature.xml new file mode 100644 index 00000000000..4a9180dd711 --- /dev/null +++ b/features/org.eclipse.remote.console-feature/feature.xml @@ -0,0 +1,29 @@ + + + + + %description + + + + %copyright + + + + %license + + + + + diff --git a/features/org.eclipse.remote.console-feature/pom.xml b/features/org.eclipse.remote.console-feature/pom.xml new file mode 100644 index 00000000000..bc181190727 --- /dev/null +++ b/features/org.eclipse.remote.console-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.console + 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 c8f48efd777..b047b1de5c3 100644 --- a/releng/org.eclipse.remote.build/mars.target +++ b/releng/org.eclipse.remote.build/mars.target @@ -15,6 +15,9 @@ + + + diff --git a/releng/org.eclipse.remote.build/pom.xml b/releng/org.eclipse.remote.build/pom.xml index 84cd5fcd51e..af114b94f71 100644 --- a/releng/org.eclipse.remote.build/pom.xml +++ b/releng/org.eclipse.remote.build/pom.xml @@ -23,7 +23,7 @@ 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/tm/terminal/builds/development/nightly/ http://download.eclipse.org/tools/cdt/builds/master/nightly/ /home/data/httpd/download.eclipse.org/tools/ptp/builds/remote/${remote-release} @@ -50,9 +50,12 @@ ../../bundles/org.eclipse.remote.ui ../../features/org.eclipse.remote-feature ../../releng/org.eclipse.remote.repo - + + + ../../bundles/org.eclipse.remote.console + ../../features/org.eclipse.remote.console-feature ../../bundles/org.eclipse.remote.serial.core ../../bundles/org.eclipse.remote.serial.ui diff --git a/releng/org.eclipse.remote.repo/category.xml b/releng/org.eclipse.remote.repo/category.xml index e1873f917f1..5bda418eda8 100644 --- a/releng/org.eclipse.remote.repo/category.xml +++ b/releng/org.eclipse.remote.repo/category.xml @@ -6,10 +6,22 @@ - + + + + + + + + + + + +