# HG changeset patch # User wpaul # Date 1243902664 18000 # Node ID ab6393bd82aa5c44f90da988122f6d5b147904e2 # Parent 5dd39ff8dbd0849c045d4a23816dfaa6ec73f511# Parent 8b34b48b483ff478a35cc500717a0f46d49fadf4 merged diff -r 5dd39ff8dbd0 -r ab6393bd82aa builder/com.nokia.carbide.cdt.builder.test/data/errorpatterns/sbsv2.errors.input.txt --- a/builder/com.nokia.carbide.cdt.builder.test/data/errorpatterns/sbsv2.errors.input.txt Mon Jun 01 19:15:12 2009 -0500 +++ b/builder/com.nokia.carbide.cdt.builder.test/data/errorpatterns/sbsv2.errors.input.txt Mon Jun 01 19:31:04 2009 -0500 @@ -5,6 +5,9 @@ Making J:/epoc32/build/Cone/makefile.default +Regression for bug 9091. Don't report info lines with SBSv2 error checker +Could not write toolcheck cache: [Errno 2] No such file or directory: u'R:\\\\epoc32\\build\\toolcheck_cache__armv5_udeb.tmp' + Executing 'make -r -f "J:/epoc32/build/Cone/makefile.default" -j 4 DESCRAMBLE="C:/Symbian/SITK/sbs/bin/sbs_descramble.exe sbs2631027042"' diff -r 5dd39ff8dbd0 -r ab6393bd82aa builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/DefaultIncludeFileLocator.java --- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/DefaultIncludeFileLocator.java Mon Jun 01 19:15:12 2009 -0500 +++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/builder/DefaultIncludeFileLocator.java Mon Jun 01 19:31:04 2009 -0500 @@ -72,7 +72,7 @@ } } else if (sbvPlatform != null){ - Map platPaths = sbvPlatform.getBuildIncludePaths(); + LinkedHashMap platPaths = sbvPlatform.getBuildIncludePaths(); Set set = platPaths.keySet(); for (IPath path : set) { String pathType = platPaths.get(path); diff -r 5dd39ff8dbd0 -r ab6393bd82aa builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideLanguageData.java --- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideLanguageData.java Mon Jun 01 19:15:12 2009 -0500 +++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideLanguageData.java Mon Jun 01 19:31:04 2009 -0500 @@ -179,7 +179,7 @@ } else if (sbvPlat != null){ - Map platPaths = sbvPlat.getBuildIncludePaths(); + LinkedHashMap platPaths = sbvPlat.getBuildIncludePaths(); Set set = platPaths.keySet(); for (IPath path : set) { String pathType = platPaths.get(path); diff -r 5dd39ff8dbd0 -r ab6393bd82aa builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideSBSv1Builder.java --- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideSBSv1Builder.java Mon Jun 01 19:15:12 2009 -0500 +++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/CarbideSBSv1Builder.java Mon Jun 01 19:31:04 2009 -0500 @@ -1190,10 +1190,20 @@ // run abld build platform for each component for (IPath path : normalMakMakePaths) { - + + String buildPlatform = ""; + if ( buildConfig.getPlatformString().startsWith(ISymbianBuildContext.ARMV5_PLATFORM) && + EpocEngineHelper.hasFeatureVariantKeyword(buildConfig.getCarbideProject(), path)) { + + buildPlatform = buildConfig.getPlatformString().toLowerCase(); + + } else { + buildPlatform = buildConfig.getBasePlatformForVariation().toLowerCase(); + } + List argsList = new ArrayList(); argsList.add(BUILD_CMD); - argsList.add(buildConfig.getPlatformString().toLowerCase()); + argsList.add(buildPlatform); argsList.add(buildConfig.getTargetString().toLowerCase()); argsList.add(path.removeFileExtension().lastSegment()); @@ -1212,11 +1222,21 @@ // run abld build platform target for each test component for (IPath path : testMakMakePaths) { - + + String buildPlatform = ""; + if ( buildConfig.getPlatformString().startsWith(ISymbianBuildContext.ARMV5_PLATFORM) && + EpocEngineHelper.hasFeatureVariantKeyword(buildConfig.getCarbideProject(), path)) { + + buildPlatform = buildConfig.getPlatformString().toLowerCase(); + + } else { + buildPlatform = buildConfig.getBasePlatformForVariation().toLowerCase(); + } + List argsList = new ArrayList(); argsList.add(TEST_CMD); argsList.add(BUILD_CMD); - argsList.add(buildConfig.getPlatformString().toLowerCase()); + argsList.add(buildPlatform); argsList.add(buildConfig.getTargetString().toLowerCase()); argsList.add(path.removeFileExtension().lastSegment()); @@ -1716,10 +1736,20 @@ // run abld clean/reallyclean for each component for (IPath path : normalMakMakePaths) { - + + String buildPlatform = ""; + if ( buildConfig.getPlatformString().startsWith(ISymbianBuildContext.ARMV5_PLATFORM) && + EpocEngineHelper.hasFeatureVariantKeyword(buildConfig.getCarbideProject(), path)) { + + buildPlatform = buildConfig.getPlatformString().toLowerCase(); + + } else { + buildPlatform = buildConfig.getBasePlatformForVariation().toLowerCase(); + } + List argsList = new ArrayList(); argsList.add(abldCleanCmd); - argsList.add(buildConfig.getPlatformString().toLowerCase()); + argsList.add(buildPlatform); argsList.add(buildConfig.getTargetString().toLowerCase()); argsList.add(path.removeFileExtension().lastSegment()); @@ -1881,10 +1911,20 @@ // run abld freeze for each component for (IPath path : normalMakMakePaths) { - + + String buildPlatform = ""; + if ( buildConfig.getPlatformString().startsWith(ISymbianBuildContext.ARMV5_PLATFORM) && + EpocEngineHelper.hasFeatureVariantKeyword(buildConfig.getCarbideProject(), path)) { + + buildPlatform = buildConfig.getPlatformString().toLowerCase(); + + } else { + buildPlatform = buildConfig.getBasePlatformForVariation().toLowerCase(); + } + List argsList = new ArrayList(); argsList.add(FREEZE_CMD); - argsList.add(buildConfig.getPlatformString().toLowerCase()); + argsList.add(buildPlatform); argsList.add(path.removeFileExtension().lastSegment()); for (String arg : buildConfig.getBuildArgumentsInfo().getAbldFreezeArgs().split(" ")) { @@ -2351,8 +2391,16 @@ abldArgs.add(TEST_CMD); //$NON-NLS-1$ } + String buildPlatform = ""; + if ( config.getPlatformString().startsWith(ISymbianBuildContext.ARMV5_PLATFORM) && + EpocEngineHelper.hasFeatureVariantKeyword(config.getCarbideProject(), componentPath)){ + buildPlatform = config.getPlatformString().toLowerCase(); + } else { + buildPlatform = config.getBasePlatformForVariation().toLowerCase(); + } + abldArgs.add(MAKEFILE_CMD); //$NON-NLS-1$ - abldArgs.add(config.getPlatformString().toLowerCase()); + abldArgs.add(buildPlatform); abldArgs.add(componentPath.removeFileExtension().lastSegment()); for (String arg : config.getBuildArgumentsInfo().getAbldMakefileArgs().split(" ")) { @@ -2780,6 +2828,9 @@ int firstInclude = rcompCmd.indexOf("-I"); int dashU = rcompCmd.lastIndexOf("-u"); int dashO = rcompCmd.lastIndexOf("-o$@"); + if (dashO < 0){ + dashO = rcompCmd.lastIndexOf("-o\"$@\""); + } if (firstInclude < 0 || dashU < 0 || dashO < 0) { throw new CoreException(new Status(IStatus.ERROR, CarbideBuilderPlugin.PLUGIN_ID, 0, "Failed trying to build cpp command", null)); //$NON-NLS-1$ } @@ -2862,7 +2913,7 @@ // cleanup the __PRODUCT_INCLUDE__ macro if necessary macros = macros.replaceFirst("\\\\\"", "\"<" + makefilePath.getDevice()); macros = macros.replaceFirst("\\\\\"", ">\""); - macros = macros.replaceAll("\\\\", "\\\\\\\\"); + macros = macros.replaceAll("\\\\", "/"); newRule = newRule.replaceFirst("-u ", macros); } diff -r 5dd39ff8dbd0 -r ab6393bd82aa builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/error/parsers/SBSv2ErrorParser.java --- a/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/error/parsers/SBSv2ErrorParser.java Mon Jun 01 19:15:12 2009 -0500 +++ b/builder/com.nokia.carbide.cdt.builder/src/com/nokia/carbide/cdt/internal/builder/error/parsers/SBSv2ErrorParser.java Mon Jun 01 19:31:04 2009 -0500 @@ -26,6 +26,7 @@ private static final Pattern warningPattern = Pattern.compile("(.*)"); //$NON-NLS-1$ private static final Pattern errorPattern = Pattern.compile("(.*)"); //$NON-NLS-1$ + private static final Pattern infoPattern = Pattern.compile("(.*)"); //$NON-NLS-1$ public SBSv2ErrorParser() { } @@ -34,7 +35,11 @@ initialise(); - Matcher matcher = warningPattern.matcher(line); + Matcher matcher = infoPattern.matcher(line); + if (matcher.matches()) { + return true; // just ignore info messages + } + matcher = warningPattern.matcher(line); if (matcher.matches()) { // strip the tags String text = line.substring("".length(), line.length() - "".length()); //$NON-NLS-1$ //$NON-NLS-2$ diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/install_remote_agent.xml --- a/core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/install_remote_agent.xml Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/install_remote_agent.xml Mon Jun 01 19:31:04 2009 -0500 @@ -23,17 +23,17 @@ href="/com.nokia.carbide.cpp.doc.user/html/reference/trk/wnd_new_conn_install_tab.htm" title="Select the appropriate remote agent"> - Choose the remote agent that matches the OS on the target device. + In the Install remote agents tab choose the remote agent that matches the OS on the target device. + label="Click Install to download and immediately install the selected remote agent to the target device."> + label="Or, click Save to download and save the remote agent for installation later. This step is optional, clicking Install is recommended." + skip="true"> diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/new_remote_conn.xml --- a/core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/new_remote_conn.xml Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/html/cheatsheets/new_remote_conn.xml Mon Jun 01 19:31:04 2009 -0500 @@ -12,12 +12,11 @@ Use the New Connections window to create, edit, and manage remote connection settings to enable on-device debugging and the installation of remote agents. - + + Use the Edit connection name and type page to define basic remote connection settings. @@ -34,20 +33,18 @@ In the Connection settings page specify the connection settings, the device OS, and verify the presence of a remote agent. + label="Select the serial port from the available list. A named COM port (COM4 - BthModem0) indicates an active port."> + label="Select the OS used by the device from the dropdown list."> Select service to test and click Initiate service testing @@ -56,13 +53,13 @@ label="Select a service in the Select the service to test list."> + label="Click Initiate service test to test the connection."> + label="Examine Status box for results. Failures indicate that the COM port is not open. Not responding indicates that no service is running on the device."> + label="Click Finish to create the connection setting and have it appear in the Remote Connections view."> - - + + Follow these steps to install on-device run mode debug software and compilers, create ROM images, and define launch configurations. + href="/com.nokia.carbide.cpp.doc.user/html/reference/trk/wnd_new_connection_wizard.htm" + title="Target Side Requirements"> - Choose one of the these methods to install device connection software on your PC to interact with the target device. + Before you can perform run-mode debugging on a target device, be sure that your development setup includes the following: - + + - + + - + Before you begin stop mode debugging, make sure all preconditions are met. + label="Install or verify that the correct version of Perl () is installed."> + + + + + + - + + + + Import the bld.inf file into the Project Explorer view to create the project. + + + + + + - + + + + + - + + + + Once imported its time to build the project to ensure correct any build issue prior to debugging. + + + + + + href="/com.nokia.carbide.cpp.doc.user/html/tasks/breakpoints/pgm_bp_setting.htm" + title="Set Breakpoint in Project"> - Choose one of these methods to install the SISX file on the target device. + Body - + - + + href="/com.nokia.carbide.cpp.doc.user/html/debugger/debug/cmds_starting.htm" + title="Launch Project to Debug"> - Body + Launch the project in debug mode to define a launch configuration, download the executable to the target device, and start debugging the program. - - + + + + + + + + + - + + + Use the Debug perspective to examine variables, breakpoints, memory, assembly code, and other details of the halted program. + + + + + + + + + diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.doc.user/plugin.xml --- a/core/com.nokia.carbide.cpp.doc.user/plugin.xml Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.doc.user/plugin.xml Mon Jun 01 19:31:04 2009 -0500 @@ -41,23 +41,20 @@ name="Carbide.c++ On-device Debugging"/> + name="Downloading and Installing Remote Agents"/> @@ -69,6 +66,7 @@ + - - + --> diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.sdk.core.test/src/com/nokia/carbide/cpp/sdk/core/test/SBVCatalogTest.java --- a/core/com.nokia.carbide.cpp.sdk.core.test/src/com/nokia/carbide/cpp/sdk/core/test/SBVCatalogTest.java Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core.test/src/com/nokia/carbide/cpp/sdk/core/test/SBVCatalogTest.java Mon Jun 01 19:31:04 2009 -0500 @@ -18,8 +18,7 @@ package com.nokia.carbide.cpp.sdk.core.test; import java.net.URL; -import java.util.Map; -import java.util.Set; +import java.util.*; import junit.framework.TestCase; @@ -106,12 +105,38 @@ platform = catalog.findPlatform("wilma88"); assertNull(platform); + } + + /** + * Test the number and order of build include paths + * @throws Exception + */ + public void testBuildIncludePaths() throws Exception { + setupForSDK(new Path("Data/var/group1")); + ISBVPlatform[] platforms = catalog.getPlatforms(); + assertEquals(7, platforms.length); + + ISBVPlatform platform; + // test build include paths platform = catalog.findPlatform("dino79"); assertNotNull(platform); assertEquals(4, platform.getBuildIncludePaths().size()); - Map systemPaths = platform.getBuildIncludePaths(); + LinkedHashMap systemPaths = platform.getBuildIncludePaths(); + + Set pathSet = systemPaths.keySet(); + Object[] paths = pathSet.toArray(); + IPath p; + p = (IPath)paths[0]; + assertTrue("Variant build include Paths possibly in wrong order", p.toPortableString().contains("epoc32/include/config/flintstone500/dino79")); + p = (IPath)paths[1]; + assertTrue("Variant build include Paths possibly in wrong order", p.toPortableString().contains("/epoc32/include/config/flintstone500")); + p = (IPath)paths[2]; + assertTrue("Variant build include Paths possibly in wrong order", p.toPortableString().contains("/epoc32/include/config")); + p = (IPath)paths[3]; + assertTrue("Variant build include Paths possibly in wrong order", p.toPortableString().contains("/epoc32/include")); + Set set = systemPaths.keySet(); for (IPath path : set) { String pathType = systemPaths.get(path); @@ -121,7 +146,8 @@ assertEquals(16, platform.getROMBuildIncludePaths().size()); - } + + } /** * @param built diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java Mon Jun 01 19:31:04 2009 -0500 @@ -383,7 +383,7 @@ systemPaths.add(path.toFile()); } } else if (sbvPlat != null) { - Map platPaths = sbvPlat.getBuildIncludePaths(); + LinkedHashMap platPaths = sbvPlat.getBuildIncludePaths(); Set set = platPaths.keySet(); for (IPath path : set) { String pathType = platPaths.get(path); diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SBVPlatform.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SBVPlatform.java Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SBVPlatform.java Mon Jun 01 19:31:04 2009 -0500 @@ -197,9 +197,9 @@ } - protected Map getBuildIncludePathsFromParents(){ + protected LinkedHashMap getBuildIncludePathsFromParents(){ - Map parentBuildIncludes = new HashMap(); + LinkedHashMap parentBuildIncludes = new LinkedHashMap(); ISBVPlatform platform = getExtendedVariant(); ISBVPlatform prevPlat; @@ -255,9 +255,9 @@ return sdkIncludePath.toOSString(); } - public Map getBuildIncludePaths(){ + public LinkedHashMap getBuildIncludePaths(){ - Map fullPathMap = new HashMap(); + LinkedHashMap fullPathMap = new LinkedHashMap(); fullPathMap.putAll(systemBuildIncludePaths); fullPathMap.putAll(getBuildIncludePathsFromParents()); @@ -265,8 +265,8 @@ return fullPathMap; } - public Map getROMBuildIncludePaths(){ - Map fullPathMap = new HashMap(); + public LinkedHashMap getROMBuildIncludePaths(){ + LinkedHashMap fullPathMap = new LinkedHashMap(); fullPathMap.putAll(romBuildIncludePaths); fullPathMap.putAll(getROMBuildIncludePathsFromParents()); diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java Mon Jun 01 19:31:04 2009 -0500 @@ -1156,7 +1156,7 @@ } public boolean isEKA1() { - return !isEKA2(); + return !isEKA2() && getOSVersion().getMajor() < 9 && getOSVersion().getMajor() >= 6; } public boolean isEKA2() { diff -r 5dd39ff8dbd0 -r ab6393bd82aa core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java Mon Jun 01 19:15:12 2009 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISBVPlatform.java Mon Jun 01 19:31:04 2009 -0500 @@ -12,12 +12,12 @@ */ package com.nokia.carbide.cpp.sdk.core; -import java.util.List; -import java.util.Map; +import java.util.LinkedHashMap; import org.eclipse.core.runtime.IPath; import com.nokia.carbide.cpp.epoc.engine.EpocEnginePlugin; +import com.nokia.carbide.cpp.epoc.engine.model.sbv.ISBVView; /** * This interface defines a single Symbian Binary Variation (SBV) platform. @@ -81,12 +81,12 @@ * The MAP of BUILD_INCLUDE paths from the variant and all it's parents * @return Map of IPaths and the operation to perform (set, prepend, append) */ - Map getBuildIncludePaths(); + LinkedHashMap getBuildIncludePaths(); /** * The MAP of ROM_INCLUDE paths from the variant and all it's parents * @return list of paths */ - Map getROMBuildIncludePaths(); + LinkedHashMap getROMBuildIncludePaths(); } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/sbv/ESBVFlags.java --- a/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/cpp/epoc/engine/model/sbv/ESBVFlags.java Mon Jun 01 19:15:12 2009 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -/* -* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - -package com.nokia.carbide.cpp.epoc.engine.model.sbv; - -/** - * This enumeration defines all the flags which may appear in the SBV (.var) - * grammar. - * - */ -public enum ESBVFlags { - COMPILEWITHPARENT, - COMPILEALONE, - VIRTUALVARIANT, - VARIANT -} diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/ExportsPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/ExportsPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/ExportsPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -105,4 +105,8 @@ return testExports; } + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/OverviewPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/OverviewPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/OverviewPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -194,4 +194,8 @@ return testMakMakeFiles; } + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/ExpportsPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/ExpportsPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/ExpportsPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -32,6 +32,19 @@ public class ExpportsPageTester { /** + * Retrieves any error message from the Exports page. + * @param page - Exports page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof ExportsPage) { + ExportsPage exportsPage = (ExportsPage) page; + return exportsPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the Exports section from an Exports page. * @param page - Exports page provided by caller * @return - Exports section if success, null otherwise diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/OverviewPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/OverviewPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/editors/inf/testapi/OverviewPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -35,6 +35,19 @@ public class OverviewPageTester { /** + * Retrieves any error message from the Overview page. + * @param page - Overview page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof OverviewPage) { + OverviewPage overviewPage = (OverviewPage) page; + return overviewPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the "Active Build Configuration" label from the Overview page. * @param page - Overview page provided by caller * @return - label widget if success, null otherwise diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/LibrariesPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/LibrariesPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/LibrariesPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -156,4 +156,8 @@ return debugLibraries; } + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OptionsPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OptionsPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OptionsPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -127,4 +127,8 @@ return kernelSectionPart; } + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OverviewPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OverviewPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/OverviewPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -452,5 +452,9 @@ public ImageHyperlink getOptionsHyperlink() { return optionsImageHyperlink; } - + + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/SourcesPage.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/SourcesPage.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/SourcesPage.java Mon Jun 01 19:31:04 2009 -0500 @@ -136,4 +136,8 @@ return missingSourcesSectionPart; } + public String getErrorMesaage() { + return getManagedForm().getForm().getMessage(); + } + } diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/LibrariesPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/LibrariesPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/LibrariesPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -32,6 +32,19 @@ public class LibrariesPageTester { /** + * Retrieves any error message from the Libraries page. + * @param page - Libraries page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof LibrariesPage) { + LibrariesPage librariesPage = (LibrariesPage) page; + return librariesPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the "Libraries" section of the Libraries page. * @param page - Libraries page provided by caller * @return - section part if success, null otherwise diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OptionsPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OptionsPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OptionsPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -37,6 +37,19 @@ public class OptionsPageTester { /** + * Retrieves any error message from the Options page. + * @param page - Options page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof OptionsPage) { + OptionsPage optionsPage = (OptionsPage) page; + return optionsPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the "Runtime" section of the Options page. * @param page - Options page provided by caller * @return - section part if success, null otherwise diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OverviewPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OverviewPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/OverviewPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -32,6 +32,19 @@ public class OverviewPageTester { /** + * Retrieves any error message from the Overview page. + * @param page - Overview page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof OverviewPage) { + OverviewPage overviewPage = (OverviewPage) page; + return overviewPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the "Active Build Configuration" label of the Overview page. * @param page - Overview page provided by caller * @return - label widget if success, null otherwise diff -r 5dd39ff8dbd0 -r ab6393bd82aa project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/SourcesPageTester.java --- a/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/SourcesPageTester.java Mon Jun 01 19:15:12 2009 -0500 +++ b/project/com.nokia.carbide.cpp.project.ui/src/com/nokia/carbide/cpp/internal/project/ui/mmpEditor/testapi/SourcesPageTester.java Mon Jun 01 19:31:04 2009 -0500 @@ -35,6 +35,19 @@ public class SourcesPageTester { /** + * Retrieves any error message from the Sources page. + * @param page - Sources page provided by caller + * @return error message string if success, null otherwise + */ + public static String getErrorMesaage(FormPage page) { + if (page != null && page instanceof SourcesPage) { + SourcesPage sourcesPage = (SourcesPage) page; + return sourcesPage.getErrorMesaage(); + } + return null; + } + + /** * Retrieves the "C/C++ Sources" section of the Sources page. * @param page - Overview page provided by caller * @return - section part if success, null otherwise