# HG changeset patch # User stechong # Date 1276190136 18000 # Node ID fb33806f2865e3d527084c7c0a25633d537470ab # Parent 1d88f6209d70a4ff8f0d93ecdafaaa374d047965 Moved scanning job back to invoking thread for now. diff -r 1d88f6209d70 -r fb33806f2865 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/AbstractSDKManager.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/AbstractSDKManager.java Wed Jun 09 13:48:12 2010 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/AbstractSDKManager.java Thu Jun 10 12:15:36 2010 -0500 @@ -41,6 +41,7 @@ import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; +import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.jobs.IJobChangeListener; @@ -129,67 +130,12 @@ public AbstractSDKManager() { macroStore = SymbianMacroStore.getInstance(); - scanJob = new Job ("Scan System Drives") { - @Override - protected IStatus run(IProgressMonitor monitor) { - synchronized (sdkList) - { - ArrayList oldSDKList = new ArrayList(sdkList); - - getSBSv2Version(true); - - if (sdkList != null){ - sdkList.clear(); - } - - if (!doScanSDKs(monitor)) - return Status.OK_STATUS;; - - // now these SDK's are newly added, remove from internal list - for (ISymbianSDK sdk : sdkList) { - if (SDKManagerInternalAPI.getMissingSdk(sdk.getUniqueId()) != null) { - SDKManagerInternalAPI.removeMissingSdk(sdk - .getUniqueId()); - } - } - - // now these SDK's are removed from the old list, add to - // internal list - for (ISymbianSDK oldSdk : oldSDKList) { - boolean found = false; - for (ISymbianSDK sdk : sdkList) { - if (sdk.getUniqueId().equals(oldSdk.getUniqueId())) { - found = true; - break; - } - } - if (found == false) { - SDKManagerInternalAPI.addMissingSdk(oldSdk - .getUniqueId()); - // flush cache - SymbianBuildContextDataCache.refreshForSDKs(new ISymbianSDK[] { oldSdk }); - } - } - } - - // make sure we don't rescan over and over again - hasScannedSDKs = true; - - // tell others about it - fireInstalledSdkChanged(SDKChangeEventType.eSDKScanned); - scanCarbideSDKCache(); - - // Notify any plugins that want to know if the SDKManager has scanned plugins. - if (!sdkHookExtenstionsNotified) { - notifySDKManagerLoaded(); - sdkHookExtenstionsNotified = true; - } - if (monitor.isCanceled()) { - return Status.CANCEL_STATUS; - } - return Status.OK_STATUS; - } - }; +// scanJob = new Job ("Scan System Drives") { +// @Override +// protected IStatus run(IProgressMonitor monitor) { +// return handleScan(monitor); +// } +// }; } public SymbianMacroStore getSymbianMacroStore(){ @@ -197,10 +143,70 @@ } public void scanSDKs() { - if (scanJob.getState() == Job.NONE) { - scanJob.setSystem(true); - scanJob.schedule(); +// if (scanJob.getState() == Job.NONE) { +// scanJob.setSystem(true); +// scanJob.schedule(); +// } + handleScan(new NullProgressMonitor()); + } + + private IStatus handleScan(IProgressMonitor monitor) { + synchronized (sdkList) + { + ArrayList oldSDKList = new ArrayList(sdkList); + + getSBSv2Version(true); + + if (sdkList != null){ + sdkList.clear(); + } + + if (!doScanSDKs(monitor)) + return Status.OK_STATUS;; + + // now these SDK's are newly added, remove from internal list + for (ISymbianSDK sdk : sdkList) { + if (SDKManagerInternalAPI.getMissingSdk(sdk.getUniqueId()) != null) { + SDKManagerInternalAPI.removeMissingSdk(sdk + .getUniqueId()); + } + } + + // now these SDK's are removed from the old list, add to + // internal list + for (ISymbianSDK oldSdk : oldSDKList) { + boolean found = false; + for (ISymbianSDK sdk : sdkList) { + if (sdk.getUniqueId().equals(oldSdk.getUniqueId())) { + found = true; + break; + } + } + if (found == false) { + SDKManagerInternalAPI.addMissingSdk(oldSdk + .getUniqueId()); + // flush cache + SymbianBuildContextDataCache.refreshForSDKs(new ISymbianSDK[] { oldSdk }); + } + } } + + // make sure we don't rescan over and over again + hasScannedSDKs = true; + + // tell others about it + fireInstalledSdkChanged(SDKChangeEventType.eSDKScanned); + scanCarbideSDKCache(); + + // Notify any plugins that want to know if the SDKManager has scanned plugins. + if (!sdkHookExtenstionsNotified) { + notifySDKManagerLoaded(); + sdkHookExtenstionsNotified = true; + } + if (monitor.isCanceled()) { + return Status.CANCEL_STATUS; + } + return Status.OK_STATUS; } /**