Search in sources :

Example 1 with IManagedProject

use of org.eclipse.cdt.managedbuilder.core.IManagedProject in project m2e-nar by maven-nar.

the class CProjectConfigurator method getCdtMavenConfig.

private ICConfigurationDescription getCdtMavenConfig(IProject project, ICProjectDescription des, IToolChain tc, String artefactType, String name, boolean setActive, IProgressMonitor monitor) throws CoreException {
    IManagedProject mProj = ManagedBuildManager.getBuildInfo(project).getManagedProject();
    ICConfigurationDescription mavenCfg = des.getConfigurationByName(name);
    if (mavenCfg == null) {
        List<IConfiguration> cfgs = getCfgs(tc, artefactType);
        if (cfgs.isEmpty()) {
            throw new CoreException(new Status(IStatus.ERROR, MavenNarPlugin.PLUGIN_ID, "Cannot find any configurations"));
        }
        monitor.worked(10);
        monitor.worked(10);
        // cfgs = CfgHolder.unique(cfgs);
        // cfgs = CfgHolder.reorder(cfgs);
        IConfiguration cfgRelease = null;
        IConfiguration cfgFirst = null;
        int work = 50 / cfgs.size();
        for (IConfiguration cfg : cfgs) {
            IBuildProperty b = cfg.getBuildProperties().getProperty(ManagedBuildManager.BUILD_TYPE_PROPERTY_ID);
            if (cfgRelease == null && b != null && b.getValue() != null && ManagedBuildManager.BUILD_TYPE_PROPERTY_RELEASE.equals(b.getValue().getId())) {
                cfgRelease = cfg;
            }
            if (cfgFirst == null) {
                cfgFirst = cfg;
            }
            monitor.worked(work);
        }
        if (cfgFirst != null) {
            if (cfgRelease != null) {
                cfgFirst = cfgRelease;
            }
            MavenNarPlugin.getDefault().log("Creating configuration " + name);
            IConfiguration newCfg = createConfiguration(cfgFirst, mProj, des);
            newCfg.setName(name);
            newCfg.setDescription("m2e generated configuration");
            mavenCfg = ManagedBuildManager.getDescriptionForConfiguration(newCfg);
        }
    }
    if (mavenCfg != null) {
        if (setActive) {
            des.setActiveConfiguration(mavenCfg);
        }
        return mavenCfg;
    } else {
        throw new CoreException(new Status(IStatus.ERROR, MavenNarPlugin.PLUGIN_ID, "Cannot find any configurations"));
    }
// mngr.setProjectDescription(project, des);
}
Also used : IManagedProject(org.eclipse.cdt.managedbuilder.core.IManagedProject) IStatus(org.eclipse.core.runtime.IStatus) Status(org.eclipse.core.runtime.Status) CoreException(org.eclipse.core.runtime.CoreException) IBuildProperty(org.eclipse.cdt.managedbuilder.buildproperties.IBuildProperty) ICConfigurationDescription(org.eclipse.cdt.core.settings.model.ICConfigurationDescription) IConfiguration(org.eclipse.cdt.managedbuilder.core.IConfiguration)

Example 2 with IManagedProject

use of org.eclipse.cdt.managedbuilder.core.IManagedProject in project m2e-nar by maven-nar.

the class CProjectConfigurator method getCdtProject.

private ICProjectDescription getCdtProject(IProject project, IToolChain tc, String artefactType, IProgressMonitor monitor) throws CoreException {
    try {
        ICProjectDescriptionManager mngr = CoreModel.getDefault().getProjectDescriptionManager();
        if (!project.hasNature(CCProjectNature.CC_NATURE_ID)) {
            MavenNarPlugin.getDefault().log("Configuring project with " + tc.getUniqueRealName() + " tool chain");
            // Add the C++ Nature
            CCorePlugin.getDefault().convertProjectToNewCC(project, ManagedBuildManager.CFG_DATA_PROVIDER_ID, monitor);
            ICProjectDescription des = mngr.createProjectDescription(project, false, false);
            IManagedBuildInfo info = ManagedBuildManager.createBuildInfo(project);
            List<IConfiguration> cfgs = getCfgs(tc, artefactType);
            if (cfgs.isEmpty()) {
                throw new CoreException(new Status(IStatus.ERROR, MavenNarPlugin.PLUGIN_ID, "Cannot find any configurations"));
            }
            IConfiguration cf = cfgs.get(0);
            IManagedProject mProj = ManagedBuildManager.createManagedProject(project, cf.getProjectType());
            info.setManagedProject(mProj);
            return des;
        } else {
            ICProjectDescription des = mngr.getProjectDescription(project, true);
            return des;
        }
    } catch (BuildException e) {
        throw new CoreException(new Status(IStatus.ERROR, MavenNarPlugin.PLUGIN_ID, "Cannot create CDT managed project", e));
    }
}
Also used : IStatus(org.eclipse.core.runtime.IStatus) Status(org.eclipse.core.runtime.Status) IManagedProject(org.eclipse.cdt.managedbuilder.core.IManagedProject) ICProjectDescription(org.eclipse.cdt.core.settings.model.ICProjectDescription) IManagedBuildInfo(org.eclipse.cdt.managedbuilder.core.IManagedBuildInfo) CoreException(org.eclipse.core.runtime.CoreException) ICProjectDescriptionManager(org.eclipse.cdt.core.settings.model.ICProjectDescriptionManager) BuildException(org.eclipse.cdt.managedbuilder.core.BuildException) IConfiguration(org.eclipse.cdt.managedbuilder.core.IConfiguration)

Aggregations

IConfiguration (org.eclipse.cdt.managedbuilder.core.IConfiguration)2 IManagedProject (org.eclipse.cdt.managedbuilder.core.IManagedProject)2 CoreException (org.eclipse.core.runtime.CoreException)2 IStatus (org.eclipse.core.runtime.IStatus)2 Status (org.eclipse.core.runtime.Status)2 ICConfigurationDescription (org.eclipse.cdt.core.settings.model.ICConfigurationDescription)1 ICProjectDescription (org.eclipse.cdt.core.settings.model.ICProjectDescription)1 ICProjectDescriptionManager (org.eclipse.cdt.core.settings.model.ICProjectDescriptionManager)1 IBuildProperty (org.eclipse.cdt.managedbuilder.buildproperties.IBuildProperty)1 BuildException (org.eclipse.cdt.managedbuilder.core.BuildException)1 IManagedBuildInfo (org.eclipse.cdt.managedbuilder.core.IManagedBuildInfo)1