blob: d52f98896581f37197aa49343487ebd0d134dfdf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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 - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.rdt.sync.ui.wizards;
import static org.eclipse.ptp.rdt.sync.ui.wizards.ServiceModelWizardPage.CONFIG_PROPERTY;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.cdt.internal.ui.wizards.ICDTCommonProjectWizard;
import org.eclipse.cdt.managedbuilder.ui.wizards.MBSCustomPageManager;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.ptp.rdt.sync.ui.RDTSyncUIPlugin;
import org.eclipse.ptp.services.core.IServiceConfiguration;
import org.eclipse.ptp.services.core.ServiceModelManager;
/**
* An operation which handles configuring the remote portions of the Remote
* C/C++ Project when the project is actually being created.
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
* of a work in progress. There is no guarantee that this API will work or that
* it will remain the same. Please do not use this API without consulting with
* the RDT team.
*
*
*/
public class ServiceModelWizardPageOperation implements IRunnableWithProgress {
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
monitor.beginTask("configure model services", 100); //$NON-NLS-1$
IWizard wizard = MBSCustomPageManager.getPageData(ServiceModelWizardPage.SERVICE_MODEL_WIZARD_PAGE_ID).getWizardPage()
.getWizard();
IProject project = ((ICDTCommonProjectWizard) wizard).getLastProject();
IServiceConfiguration config = (IServiceConfiguration) getMBSProperty(CONFIG_PROPERTY);
ServiceModelManager smm = ServiceModelManager.getInstance();
smm.addConfiguration(project, config);
try {
smm.saveModelConfiguration();
} catch (IOException e) {
RDTSyncUIPlugin.log(e.toString(), e);
}
monitor.done();
}
private static Object getMBSProperty(String propertyId) {
return MBSCustomPageManager.getPageProperty(ServiceModelWizardPage.SERVICE_MODEL_WIZARD_PAGE_ID, propertyId);
}
}