[yocto] [PATCH] Add console fixes & run commands in a synchronous way

2012-11-22 Thread Ioana Grigoropol
AbstractHostShellReader.isFinished to wait for command outputs Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 13 +- .../org/yocto/bc/remote/utils/ConsoleHelper.java | 18 +-- .../bc/remote/utils/ConsoleHelperRunnable.java | 31 + .../org/yocto/bc/remote/utils

[yocto] [PATCH 1/3] Initialize bitbake session & environment parse variables

2012-11-26 Thread Ioana Grigoropol
- source oe-init-env for the connection shell - parse environment variables Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 13 +++-- .../src/org/yocto/bc/bitbake/ShellSession.java | 53 2 files changed, 26 insertions(+), 40

[yocto] [PATCH 2/3] Fix Bitbake commander project wizard

2012-11-26 Thread Ioana Grigoropol
- do not run git task in a loop - wait for the command to finish - use ModalContext.allowReadAndDispatch(false) - (needs some fixes for upstream RSE API - TBA) Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/InstallWizard.java | 27 ++-- 1 file changed, 14

[yocto] [PATCH 3/3] Validate Recipe autopopulated fields

2012-11-26 Thread Ioana Grigoropol
- validate that generated md5sums and sha256 sums are valid before populating the fields - clear all previous commands output (like after source & bitbake -e) in order to limit output parsing Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/remote/utils/RemoteHelper.java|

[yocto] [PATCH 1/4] Fix remote deletion of files

2012-11-27 Thread Ioana Grigoropol
- when deleting a file from a remote directory use the URI and not the location of the file which is null Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/org.yocto.bc.ui

[yocto] [PATCH 2/4] Fix md5sum & sha256sum pattern checks

2012-11-27 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../ui/wizards/NewBitBakeFileRecipeWizardPage.java |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/NewBitBakeFileRecipeWizardPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc

[yocto] [PATCH 3/4] Fix bitbake session by disabling sanity checks

2012-11-27 Thread Ioana Grigoropol
- when creating a shell session for Bitbake, we cannot run "bitbake -e -b recipe.bb" just by setting DISABLE_SANITY_CHECKS=1; we must first append DISABLE_SANITY_CHECKS to BB_ENV_EXTRAWHITE Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBRecipe.java

[yocto] [PATCH 4/4] Do not rely on AbstractHostShellOutputReader for waiting for command outputs

2012-11-27 Thread Ioana Grigoropol
for the first prompt line that comes after it, in order to parse the output. Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/remote/utils/RemoteHelper.java| 21 -- .../remote/utils/YoctoHostShellProcessAdapter.java | 68 +++- 2 files changed, 80 insertions(+), 9

[yocto] [PATCH 0/8] [eclipse-poky-windows] Multiple fixes against eclipse plugin for working on Windows agains Build Appliance

2012-11-28 Thread Ioana Grigoropol
- Add fixes for Recipe wizard & Bitbake Project Wizard - Wait for command output in a synchronous way using semaphores - Fix remote deletion of files - Initialize Bitbake session & parse environment variables Ioana Grigoropol (8): Add console fixes & run commands in a syn

[yocto] [PATCH 1/8] Add console fixes & run commands in a synchronous way

2012-11-28 Thread Ioana Grigoropol
AbstractHostShellReader.isFinished to wait for command outputs Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 13 +- .../org/yocto/bc/remote/utils/ConsoleHelper.java | 18 +-- .../bc/remote/utils/ConsoleHelperRunnable.java | 31 + .../org/yocto/bc/remote/utils

[yocto] [PATCH 2/8] Initialize bitbake session & environment parse variables

2012-11-28 Thread Ioana Grigoropol
- source oe-init-env for the connection shell - parse environment variables Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 13 +++-- .../src/org/yocto/bc/bitbake/ShellSession.java | 53 2 files changed, 26 insertions(+), 40

[yocto] [PATCH 3/8] Fix Bitbake commander project wizard

2012-11-28 Thread Ioana Grigoropol
- do not run git task in a loop - wait for the command to finish - use ModalContext.allowReadAndDispatch(false) - (needs some fixes for upstream RSE API - TBA) Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/InstallWizard.java | 27 ++-- 1 file changed, 14

[yocto] [PATCH 4/8] Validate Recipe autopopulated fields

2012-11-28 Thread Ioana Grigoropol
- validate that generated md5sums and sha256 sums are valid before populating the fields - clear all previous commands output (like after source & bitbake -e) in order to limit output parsing Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/remote/utils/RemoteHelper.java|

[yocto] [PATCH 5/8] Fix remote deletion of files

2012-11-28 Thread Ioana Grigoropol
- when deleting a file from a remote directory use the URI and not the location of the file which is null Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/org.yocto.bc.ui

[yocto] [PATCH 6/8] Fix md5sum & sha256sum pattern checks

2012-11-28 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../ui/wizards/NewBitBakeFileRecipeWizardPage.java |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/NewBitBakeFileRecipeWizardPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc

[yocto] [PATCH 7/8] Fix bitbake session by disabling sanity checks

2012-11-28 Thread Ioana Grigoropol
- when creating a shell session for Bitbake, we cannot run "bitbake -e -b recipe.bb" just by setting DISABLE_SANITY_CHECKS=1; we must first append DISABLE_SANITY_CHECKS to BB_ENV_EXTRAWHITE Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBRecipe.java

[yocto] [PATCH 8/8] Do not rely on AbstractHostShellOutputReader for waiting for command outputs

2012-11-28 Thread Ioana Grigoropol
for the first prompt line that comes after it, in order to parse the output. Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/remote/utils/RemoteHelper.java| 22 +-- .../remote/utils/YoctoHostShellProcessAdapter.java | 68 +++- 2 files changed, 81 insertions

[yocto] [PATCH 1/2] Show progress bar for New Bitbake Commander project

2012-12-04 Thread Ioana Grigoropol
p; parse task output using specialized Calculators Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 24 +-- .../yocto/bc/remote/utils/ProcessStreamBuffer.java |3 +- .../org/yocto/bc/remote/utils/RemoteHelper.java| 92 +++- .../org/yocto/b

[yocto] [PATCH 2/2] Show progress bar for building new Recipe in Bitbake commander perspective

2012-12-04 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../ui/wizards/NewBitBakeFileRecipeWizardPage.java | 119 +--- 1 file changed, 78 insertions(+), 41 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/NewBitBakeFileRecipeWizardPage.java b/plugins/org.yocto.bc.ui

[yocto] [PATCH] Validate project name and location for Bitbake command project

2012-12-04 Thread Ioana Grigoropol
validate an existing repository, make sure that the directory exists, and contains a .git directory as well as a oe-init-build-env script Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 94 +++ .../org/yocto/bc/remote/utils/RemoteHelper.java

[yocto] [PATCH 0/3] [eclipse-poky] Eclipse plugin on Windows - fixes for progress update on wizards & input validation

2012-12-04 Thread Ioana Grigoropol
ne or an existing one Ioana Grigoropol (3): Show progress bar for New Bitbake Commander project Show progress bar for building new Recipe in Bitbake commander perspective Validate project name and location for Bitbake command project .../src/org/yocto/bc/bitbake/ShellSession.java

[yocto] [PATCH 1/3] Show progress bar for New Bitbake Commander project

2012-12-04 Thread Ioana Grigoropol
p; parse task output using specialized Calculators Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 24 +-- .../yocto/bc/remote/utils/ProcessStreamBuffer.java |3 +- .../org/yocto/bc/remote/utils/RemoteHelper.java| 92 +++- .../org/yocto/b

[yocto] [PATCH 2/3] Show progress bar for building new Recipe in Bitbake commander perspective

2012-12-04 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../ui/wizards/NewBitBakeFileRecipeWizardPage.java | 119 +--- 1 file changed, 78 insertions(+), 41 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/NewBitBakeFileRecipeWizardPage.java b/plugins/org.yocto.bc.ui

[yocto] [PATCH 3/3] Validate project name and location for Bitbake command project

2012-12-04 Thread Ioana Grigoropol
validate an existing repository, make sure that the directory exists, and contains a .git directory as well as a oe-init-build-env script Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 94 +++ .../org/yocto/bc/remote/utils/RemoteHelper.java

[yocto] [PATCH] Fix incompatibility with jre1.6 support for typed HashMap

2012-12-05 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../remote/utils/YoctoHostShellProcessAdapter.java | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/remote/utils/YoctoHostShellProcessAdapter.java b/plugins/org.yocto.bc.ui

[yocto] [PATCH] Validate Bitbake Commander project when switching between new repo and existing one

2012-12-05 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/FiniteStateWizardPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/FiniteStateWizardPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards

[yocto] [PATCH 0/2] [eclipse-poky-windows] Fix validation & command running on Linux

2012-12-05 Thread Ioana Grigoropol
ecution - When running from Linux and using a Local connection, after restarting Eclipse RSE does not find the connection - fix it by manually checking for the localhost connection Ioana Grigoropol (2): Remove validation for existing git repository Fix synchronous waiting for command p

[yocto] [PATCH 1/2] Remove validation for existing git repository

2012-12-05 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/install/OptionsPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui

[yocto] [PATCH 2/2] Fix synchronous waiting for command prompt in Linux & connection lost when restarting

2012-12-05 Thread Ioana Grigoropol
value. - when working on a Linux machine and creating a project using the Local connection, after a restart, the RSE registry fails to find the project's connection using its URI because there is no host set. Manually set the current connection to Localhost Signed-off-by: Ioana Grigo

[yocto] [PATCH 0/8] [eclipse-poky-windows] Resending patches targeting fixes for Windows plugin

2012-12-06 Thread Ioana Grigoropol
- files modified under Windows are CRLF ended -> convert them to CR only and apply patch 0007 with --keep-cr Ioana Grigoropol (8): Show progress bar for New Bitbake Commander project Show progress bar for building new Recipe in Bitbake commander perspective Validate project name

[yocto] [PATCH 2/8] Show progress bar for building new Recipe in Bitbake commander perspective

2012-12-06 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../ui/wizards/NewBitBakeFileRecipeWizardPage.java | 119 +--- 1 file changed, 78 insertions(+), 41 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/NewBitBakeFileRecipeWizardPage.java b/plugins/org.yocto.bc.ui

[yocto] [PATCH 1/8] Show progress bar for New Bitbake Commander project

2012-12-06 Thread Ioana Grigoropol
p; parse task output using specialized Calculators Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 24 +-- .../yocto/bc/remote/utils/ProcessStreamBuffer.java |3 +- .../org/yocto/bc/remote/utils/RemoteHelper.java| 92 +++- .../org/yocto/b

[yocto] [PATCH 3/8] Validate project name and location for Bitbake command project

2012-12-06 Thread Ioana Grigoropol
validate an existing repository, make sure that the directory exists, and contains a .git directory as well as a oe-init-build-env script Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/ShellSession.java | 94 +++ .../org/yocto/bc/remote/utils/RemoteHelper.java

[yocto] [PATCH 4/8] Fix incompatibility with jre1.6 support for typed HashMap

2012-12-06 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../remote/utils/YoctoHostShellProcessAdapter.java | 18 -- 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/remote/utils/YoctoHostShellProcessAdapter.java b/plugins/org.yocto.bc.ui

[yocto] [PATCH 5/8] Remove validation for existing git repository

2012-12-06 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/install/OptionsPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui

[yocto] [PATCH 6/8] Fix synchronous waiting for command prompt in Linux & connection lost when restarting

2012-12-06 Thread Ioana Grigoropol
value. - when working on a Linux machine and creating a project using the Local connection, after a restart, the RSE registry fails to find the project's connection using its URI because there is no host set. Manually set the current connection to Localhost Signed-off-by: Ioana Grigo

[yocto] [PATCH 7/8] convert CRLF line terminators to CR only

2012-12-06 Thread Ioana Grigoropol
--- .../org/yocto/bc/ui/wizards/FiniteStateWizard.java | 112 +++ .../yocto/bc/ui/wizards/FiniteStateWizardPage.java | 320 ++-- 2 files changed, 216 insertions(+), 216 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/FiniteStateWizard.java b/p

[yocto] [PATCH 8/8] Validate Bitbake Commander project when switching between new repo and existing one

2012-12-06 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/FiniteStateWizardPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/FiniteStateWizardPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards

[yocto] [PATCH] [eclipse-poky][branch:windows-build]Ignore files from repository with invalid resource names

2012-12-10 Thread Ioana Grigoropol
on - since these files are needed for the internal cooking files should not be deleted, but the user does not need to see or modify them -> just ignore these exception, causing the files to be skipped when browsing the repo Signed-off-by: Ioana Grigoropol --- .../newproject/CreateBBCProjectOpe

[yocto] [PATCH] [PATCH:v2][eclipse-poky][branch:windows-build]Ignore files from repository with invalid resource names

2012-12-10 Thread Ioana Grigoropol
on - since these files are needed for the internal cooking files should not be deleted, but the user does not need to see or modify them -> just ignore these exception, causing the files to be skipped when browsing the repo Signed-off-by: Ioana Grigoropol --- .../newproject/CreateBBCProject

[yocto] [PATCH] [eclipse-poky-windows][branch:windows-build]Remove validate existing repository radio button

2012-12-11 Thread Ioana Grigoropol
- remove radio button for validating existing repository but keep performing the validation in the back - make 'clone' button a check button Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 40 +--- 1 file changed, 18 inserti

[yocto] [PATCH v2] [eclipse-poky-windows][branch:windows-build]Remove validate existing repository radio button

2012-12-11 Thread Ioana Grigoropol
- remove radio button for validating existing repository but keep performing the validation in the back - make 'clone' button a check button Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 29 1 file changed, 5 inserti

[yocto] [PATCH v3] [eclipse-poky-windows][branch:windows-build]Remove validate existing repository radio button

2012-12-11 Thread Ioana Grigoropol
- remove radio button for validating existing repository but keep performing the validation in the back - make 'clone' button a check button Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 30 1 file changed, 6 inserti

[yocto] [PATCH] [eclipse-poky][branch: windows-build] Performance fix for New Bitbake project

2012-12-12 Thread Ioana Grigoropol
- after creating the project, the wizard should not block waiting for the environment to be populated and instead should be ran in the background Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 81 .../src/org/yocto/bc/bitbake

[yocto] [PATCH] [eclipse-poky][branch:windows-build]Fix variables hoover & remote file system detection

2013-01-07 Thread Ioana Grigoropol
ling - make sure that the "remote" FileSystem gets initialized, as well as the project connection Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|4 .../src/org/yocto/bc/bitbake/ShellSession.java | 13 - .../org/yocto/

[yocto] [PATCH 0/3][eclipse-poky][branch:windows-build]

2013-01-10 Thread Ioana Grigoropol
*** BLURB HERE *** Ioana Grigoropol (1): Fix variables hoover & remote file system detection yocto (2): Allow '-' in project names Signed-off-by: yocto Reinstate OEFileSystem, OEFile and Ignored Paths for Linux plugins/org.yocto.bc.ui/META-INF/MANIFEST.M

[yocto] [PATCH v2 0/3][eclipse-poky][branch:windows-build]Multiple fixes for windows-build branch

2013-01-10 Thread Ioana Grigoropol
Ioana Grigoropol (3): Fix variables hoover & remote file system detection Allow '-' in project names Reinstate OEFileSystem, OEFile and Ignored Paths for Linux plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |2 +- plugins/org.yocto.bc.ui/plugin.xml

[yocto] [PATCH v2 1/3] Fix variables hoover & remote file system detection

2013-01-10 Thread Ioana Grigoropol
ling - make sure that the "remote" FileSystem gets initialized, as well as the project connection Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|4 .../src/org/yocto/bc/bitbake/ShellSession.java | 13 - .../org/yocto/

[yocto] [PATCH v2 2/3] Allow '-' in project names

2013-01-10 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/install/OptionsPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards

[yocto] [PATCH v2 3/3] Reinstate OEFileSystem, OEFile and Ignored Paths for Linux

2013-01-10 Thread Ioana Grigoropol
er Windows Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |2 +- plugins/org.yocto.bc.ui/plugin.xml |3 +- .../org/yocto/bc/bitbake/ProjectInfoHelper.java| 24 ++-- .../src/org/yocto/bc/ui/Activator.java | 45 +--

[yocto] [PATCH] Send output from bitbake environment parsing in the background

2013-01-10 Thread Ioana Grigoropol
- after creating the project, the wizard should not block waiting for the environment to be populated and instead should be ran in the background Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 83 .../src/org/yocto/bc/bitbake

[yocto] [PATCH] [Temp-Performance-Patch] Run each command in separate shell and close it accordingly

2013-01-11 Thread Ioana Grigoropol
--needs more testing Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |1 + .../src/org/yocto/bc/bitbake/ShellSession.java | 10 +- .../org/yocto/bc/remote/utils/RemoteHelper.java| 289 .../bc/remote/utils

[yocto] [PATCH v2 0/5][eclipse-poky][branch:windows-build]Multiple fixes

2013-01-15 Thread Ioana Grigoropol
- applies onto commit 27bb1f9e45f0a9408453f9e7e70cc333b97afe Ioana Grigoropol (5): Fix variables hoover & remote file system detection Allow '-' in project names Reinstate OEFileSystem, OEFile and Ignored Paths for Linux Disable "Finish" when project location is in

[yocto] [PATCH v2 1/5] Fix variables hoover & remote file system detection

2013-01-15 Thread Ioana Grigoropol
ling - make sure that the "remote" FileSystem gets initialized, as well as the project connection Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|4 .../src/org/yocto/bc/bitbake/ShellSession.java | 13 - .../org/yocto/

[yocto] [PATCH v2 2/5] Allow '-' in project names

2013-01-15 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/install/OptionsPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards

[yocto] [PATCH v2 1/3] Reinstate OEFileSystem, OEFile and Ignored Paths for Linux

2013-01-15 Thread Ioana Grigoropol
er Windows Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |2 +- plugins/org.yocto.bc.ui/plugin.xml |3 +- .../src/org/yocto/bc/bitbake/BBSession.java| 62 ++--- .../org/yocto/bc/bitbake/ProjectInfoHelper.java| 24 ++-

[yocto] [PATCH v2 2/3] Disable "Finish" when project location is invalid

2013-01-15 Thread Ioana Grigoropol
- when Bitbake project location is invalid, an error should be displayed and "finish" button disabled Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/org.y

[yocto] [PATCH v2 3/5] Reinstate OEFileSystem, OEFile and Ignored Paths for Linux

2013-01-15 Thread Ioana Grigoropol
er Windows Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |2 +- plugins/org.yocto.bc.ui/plugin.xml |3 +- .../src/org/yocto/bc/bitbake/BBSession.java| 62 ++--- .../org/yocto/bc/bitbake/ProjectInfoHelper.java| 24 ++-

[yocto] [PATCH v2 3/3] Send output from bitbake environment parsing in the background

2013-01-15 Thread Ioana Grigoropol
- after creating the project, the wizard should not block waiting for the environment to be populated and instead should be ran in the background Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 27 + .../src/org/yocto/bc/bitbake

[yocto] [PATCH v2 4/5] Disable "Finish" when project location is invalid

2013-01-15 Thread Ioana Grigoropol
- when Bitbake project location is invalid, an error should be displayed and "finish" button disabled Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/org.y

[yocto] [PATCH v2 5/5] Send output from bitbake environment parsing in the background

2013-01-15 Thread Ioana Grigoropol
- after creating the project, the wizard should not block waiting for the environment to be populated and instead should be ran in the background Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 27 + .../src/org/yocto/bc/bitbake

[yocto] [PATCH v3 0/5][eclipse-poky][branch:windows-build]Multiple fixes

2013-01-15 Thread Ioana Grigoropol
- applies onto commit 5a27bb1f9e45f0a9408453f9e7e70cc333b97afe (windows-build HEAD) Ioana Grigoropol (5): Fix variables hoover & remote file system detection Allow '-' in project names Reinstate OEFileSystem, OEFile and Ignored Paths for Linux Disable "Finish"

[yocto] [PATCH v3 1/5] Fix variables hoover & remote file system detection

2013-01-15 Thread Ioana Grigoropol
ling - make sure that the "remote" FileSystem gets initialized, as well as the project connection Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java|4 .../src/org/yocto/bc/bitbake/ShellSession.java | 13 - .../org/yocto/

[yocto] [PATCH v3 2/5] Allow '-' in project names

2013-01-15 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards/install/OptionsPage.java b/plugins/org.yocto.bc.ui/src/org/yocto/bc/ui/wizards

[yocto] [PATCH v3 4/5] Disable "Finish" when project location is invalid

2013-01-15 Thread Ioana Grigoropol
- when Bitbake project location is invalid, an error should be displayed and "finish" button disabled Signed-off-by: Ioana Grigoropol --- .../yocto/bc/ui/wizards/install/OptionsPage.java | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/plugins/org.y

[yocto] [PATCH v3 3/5] Reinstate OEFileSystem, OEFile and Ignored Paths for Linux

2013-01-15 Thread Ioana Grigoropol
er Windows Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFEST.MF |2 +- plugins/org.yocto.bc.ui/plugin.xml |3 +- .../src/org/yocto/bc/bitbake/BBSession.java| 62 ++--- .../org/yocto/bc/bitbake/ProjectInfoHelper.java| 24 ++-

[yocto] [PATCH v3 5/5] Send output from bitbake environment parsing in the background

2013-01-15 Thread Ioana Grigoropol
- after creating the project, the wizard should not block waiting for the environment to be populated and instead should be ran in the background Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 27 + .../src/org/yocto/bc/bitbake

[yocto] [PATCH] [Bug #3963][eclipse-poky][branch:denzil]

2013-01-15 Thread Ioana Grigoropol
- source oe-init-build-env each time a command is ran using yocto-bsp tool Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/wizards/bsp/MainPage.java | 86 ++-- .../remotetools/wizards/bsp/PropertiesPage.java| 16 ++-- 2 files changed, 89 insertions(+), 13

[yocto] [PATCH] [eclipse-poky][branch:windows-build]Performance fix for Linux implementation

2013-01-16 Thread Ioana Grigoropol
- run each command in a separate shell - needs explicit sourcing of environment and closing for each command - tested only against Linux host & Linux local host connection - needs local patch for upstream API Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.bc.ui/META-INF/MANIFES

[yocto] [PATCH] [local patch for org.eclipse.rse.services] Fix race conditions for reading output from local processes

2013-01-16 Thread Ioana Grigoropol
ence the thread's reader, otherwise nulling this reference will be useless. Signed-off-by: Ioana Grigoropol --- .../dstore/shells/DStoreShellOutputReader.java | 52 .../services/local/shells/LocalHostShell.java | 22 - .../local/shells/

[yocto] [PATCH v2] [local patch for org.eclipse.rse.services] Fix race conditions for reading output from local processes

2013-01-17 Thread Ioana Grigoropol
ence the thread's reader, otherwise nulling this reference will be useless. Signed-off-by: Ioana Grigoropol --- .../dstore/shells/DStoreShellOutputReader.java | 52 .../services/local/shells/LocalHostShell.java | 22 - .../local/shells/

[yocto] [PATCH] [eclipse-poky][branch:windows-build]Performance fix for Windows implementation

2013-01-18 Thread Ioana Grigoropol
ions on the remote machine has variable MaxSessions set to a reasonable number (more than the default 10 sessions), otherwise an "Error creating terminal" will be thrown when more channels are opened for running remote commands (ChannelSftp) Signed-off-by: Ioana Grigoropol --- ...

[yocto] [PATCH v3] [local patch for org.eclipse.rse.services] Fix race conditions for reading output from local processes

2013-01-18 Thread Ioana Grigoropol
rlying reader. Since there can still be race conditions in this solution, all operations that involve the reference to now the only reader, must be performed under mutual exclusion using a shared lock between the LocalShellOutputReader and LocalHostThread. Signed-off-by: Ioana Grigoropol --

[yocto] [PATCH v2] [eclipse-poky][branch:windows-build]Performance fix for Windows implementation

2013-01-21 Thread Ioana Grigoropol
ions on the remote machine has variable MaxSessions set to a reasonable number (more than the default 10 sessions), otherwise an "Error creating terminal" will be thrown when more channels are opened for running remote commands (ChannelSftp) Signed-off-by: Ioana Grigoropol --- ...

[yocto] [PATCH v4] [local patch for org.eclipse.rse.services]Fix race conditions for reading output from local processes

2013-01-23 Thread Ioana Grigoropol
rlying reader. Since there can still be race conditions in this solution, all operations that involve the reference to now the only reader, must be performed under mutual exclusion using a shared lock between the LocalShellOutputReader and LocalHostThread. Signed-off-by: Ioana Grigoropol --

[yocto] [PATCH] [eclipse-poky][branch:windows-build]Fix Launching Hob command

2013-01-24 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/ui/actions/LaunchHobAction.java | 23 +--- .../bc/ui/builder/BitbakeCommanderNature.java | 20 ++--- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/plugins/org.yocto.bc.ui/src/org/yocto

[yocto] [PATCH v5] Fix race conditions for reading output from local processes

2013-01-24 Thread Ioana Grigoropol
rlying reader. Since there can still be race conditions in this solution, all operations that involve the reference to now the only reader, must be performed under mutual exclusion using a shared lock between the LocalShellOutputReader and LocalHostThread. Signed-off-by: Ioana Grigoropol --

[yocto] [PATCH] Capture and display bitbake errors

2013-01-25 Thread Ioana Grigoropol
the new project creation - recreate the console command handler Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 21 ++- .../src/org/yocto/bc/bitbake/ShellSession.java |4 .../yocto/bc/ui/wizards/install

[yocto] [PATCH v5] [399231] Fix race conditions when reading using LocalShellOutputReader(s)

2013-01-28 Thread Ioana Grigoropol
reader. Since there can still be race conditions in this solution, all operations that involve the reference to now the only reader, must be performed under mutual exclusion using a shared lock between the LocalShellOutputReader and LocalShellThread. Signed-off-by: Ioana Grigoropol --

[yocto] [PATCH v6] [399231] Fix race conditions when reading using LocalShellOutputReader(s)

2013-01-31 Thread Ioana Grigoropol
nternalReadLine with locks as long as we do it when reading. Signed-off-by: Ioana Grigoropol --- .../dstore/shells/DStoreShellOutputReader.java | 12 .../services/local/shells/LocalHostShell.java |5 ++-- .../local/shells/LocalShellOutputRead

[yocto] [PATCH v7] [399231] Fix race conditions when reading using LocalShellOutputReader(s)

2013-02-01 Thread Ioana Grigoropol
se the shell instead Signed-off-by: Ioana Grigoropol --- .../services/dstore/shells/DStoreHostShell.java| 10 .../services/local/shells/LocalHostShell.java | 15 +++- .../services/local/shells/LocalShellThread.java| 18 +++ .../.s

[yocto] [PATCH] Adapt API to RSE API local patch change

2013-02-01 Thread Ioana Grigoropol
- make a single point change to output processing after running a command - read output from remote commands using IHostShell interface Signed-off-by: Ioana Grigoropol --- .../org/yocto/bc/remote/utils/CommandRunnable.java | 58 +-- .../org/yocto/bc/remote/utils

[yocto] [PATCH] Capture and display bitbake errors

2013-02-07 Thread Ioana Grigoropol
the new project creation - recreate the console command handler Signed-off-by: Ioana Grigoropol --- .../src/org/yocto/bc/bitbake/BBSession.java| 21 ++- .../src/org/yocto/bc/bitbake/ShellSession.java |4 .../yocto/bc/ui/wizards/install

[yocto] [PATCH] [eclipse-poky][branch:danny]Use bash instead of sh for yocto-bsp build directory

2013-03-06 Thread Ioana Grigoropol
[Yocto #3968] Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/wizards/bsp/MainPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/MainPage.java b/plugins

[yocto] [PATCH] [eclipse-poky][branch:master]Use bash instead of sh for yocto-bsp build directory

2013-03-06 Thread Ioana Grigoropol
[Yocto #3747] Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/wizards/bsp/MainPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/MainPage.java b/plugins

[yocto] [PATCH] Remove clutter project templates

2013-03-12 Thread Ioana Grigoropol
- support for clutter was removed from core-image-sato along with clutter-box2d and thus the project templates in Eclipse should not be supported anymore; gtk templates should be used instead Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.sdk.ide/plugin.xml | 12

[yocto] [PATCH] [eclipse-poky][master]Add more comprehensive error message for invalid project name

2013-03-14 Thread Ioana Grigoropol
[Yocto #4008] Signed-off-by: Ioana Grigoropol --- .../sdk/ide/wizard/NewYoctoCProjectTemplate.java | 34 +--- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/plugins/org.yocto.sdk.ide/src/org/yocto/sdk/ide/wizard/NewYoctoCProjectTemplate.java b/plugins

[yocto] [PATCH v2] [eclipse-poky][master]Add more comprehensive error message for invalid project name

2013-03-14 Thread Ioana Grigoropol
[Yocto #4008] Signed-off-by: Ioana Grigoropol --- .../org/yocto/sdk/ide/YoctoSDKMessages.properties |1 + .../sdk/ide/wizard/NewYoctoCProjectTemplate.java | 27 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/plugins/org.yocto.sdk.ide/src/org/yocto

[yocto] [eclipse-poky][windows-build] Fix message displaying & Recipe parsing

2013-04-01 Thread Ioana Grigoropol
- customize output processing so that messages are displayed while a command sends interactive output (eg. git clone) - collect command output from corresponding buffer: when not using a Local connection to create a new Recipe, there is only one buffer standing for both Signed-off-by: Ioana

[yocto] [PATCH] [eclipse-poky][master]Use Directory dialog instead of File Dialog for system tap window

2013-04-02 Thread Ioana Grigoropol
[Yocto #4165] Signed-off-by: Ioana Grigoropol --- .../actions/SystemtapSettingDialog.java|8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/actions/SystemtapSettingDialog.java b/plugins

[yocto] [PATCH] [eclipse-poky][master]Check build directory when location is set using "Browse" button

2013-04-05 Thread Ioana Grigoropol
[Yocto #4206] Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/wizards/bsp/MainPage.java | 57 +++- 1 file changed, 43 insertions(+), 14 deletions(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/MainPage.java b

[yocto] [PATCH] [eclipse-poky][branch:danny]Use bash instead of sh for yocto-bsp build directory

2013-04-05 Thread Ioana Grigoropol
[Yocto #3968] Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/wizards/bsp/MainPage.java |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/wizards/bsp/MainPage.java b/plugins

[yocto] [eclipse-poky][branch:danny] Remove clutter project templates

2013-04-10 Thread Ioana Grigoropol
- support for clutter was removed from core-image-sato along with clutter-box2d and thus the project templates in Eclipse should not be supported anymore [Yocto #3991] Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.sdk.ide/plugin.xml | 12

[yocto] [PATCH] [eclipse-poky][branch:master]Use different dialogs for metadata & system tap script locations

2013-04-11 Thread Ioana Grigoropol
[Yocto #4243] Signed-off-by: Ioana Grigoropol --- .../actions/SystemtapSettingDialog.java| 21 +--- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/actions/SystemtapSettingDialog.java

[yocto] [PATCH] [eclipse-poky][master]Capture error output of crosstap command

2013-04-16 Thread Ioana Grigoropol
- when running a command using system tap plugin make sure to read all output from standard and error output and display it accordingly [Yocto #4270] Signed-off-by: Ioana Grigoropol --- .../org/yocto/sdk/remotetools/ShellSession.java| 79 1 file changed, 48

[yocto] [PATCH] [eclipse-poky][master]Add host to known_host for running crosstap script

2013-04-17 Thread Ioana Grigoropol
untered -> proceed to running crosstap command - authentication failed due to change in keys -> collect error message and display it to the user [Yocto #4307] Signed-off-by: Ioana Grigoropol --- .../org/yocto/sdk/remotetools/ShellSession.java| 89 .../

[yocto] [PATCH] [eclipse-poky][master]Display progress bar while running systemtap script

2013-04-24 Thread Ioana Grigoropol
[Yocto #4270] Signed-off-by: Ioana Grigoropol --- .../sdk/remotetools/actions/SystemtapHandler.java | 35 ++-- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/plugins/org.yocto.sdk.remotetools/src/org/yocto/sdk/remotetools/actions/SystemtapHandler.java b

[yocto] [PATCH 0/4] Initial changes for developing a common remote plugin

2013-04-26 Thread Ioana Grigoropol
t of control over commands stages [Yocto #4362] Ioana Grigoropol (4): Initial commit for remote separate plugin Refactor Model(s) to display customized messages Unify preProcess for all commands models Add default behaviour for commands for post processing Signed-off-by: Ioana Grigor

[yocto] [PATCH 1/4] Initial commit for remote separate plugin

2013-04-26 Thread Ioana Grigoropol
Signed-off-by: Ioana Grigoropol --- plugins/org.yocto.remote.utils/.classpath |7 +++ plugins/org.yocto.remote.utils/.project| 28 +++ .../.settings/org.eclipse.jdt.core.prefs |7 +++ .../org.yocto.remote.utils/META-INF/MANIFEST.MF| 10

[yocto] [PATCH 2/4] Refactor Model(s) to display customized messages

2013-04-26 Thread Ioana Grigoropol
- added new subtask for each of the models offered by YP for Remote Tools Signed-off-by: Ioana Grigoropol --- .../yocto/sdk/remotetools/actions/BaseModel.java | 70 .../sdk/remotetools/actions/OprofileModel.java | 15 +++-- .../sdk/remotetools/actions

  1   2   3   4   >