Search in sources :

Example 86 with IResource

use of com.openshift.restclient.model.IResource in project jbosstools-openshift by jbosstools.

the class ConnectionWrapper method connectionChanged.

@SuppressWarnings("unchecked")
void connectionChanged(String property, Object oldValue, Object newValue) {
    if (ConnectionProperties.PROPERTY_RESOURCE.equals(property)) {
        if (newValue != null) {
            IResource newResource = (IResource) newValue;
            ProjectWrapper projectWrapper = findProjectWrapper(newResource);
            if (projectWrapper != null) {
                if (projectWrapper.getWrapped().equals(newResource)) {
                    projectWrapper.updateWith((IProject) newResource);
                } else {
                    IResource oldVersion = resourceCache.getCachedVersion(newResource);
                    if (oldVersion == null) {
                        // it's an add
                        handleAdd(projectWrapper, newResource);
                    } else if (ResourceUtils.isOlder(oldVersion, newResource)) {
                        // it's an update
                        handleUpdate(projectWrapper, newResource);
                    }
                }
            } else if (oldValue != null) {
                // for Pods, which were marked for deletion and whose projects are already deleted
                resourceCache.remove((IResource) oldValue);
            }
        } else if (oldValue != null) {
            IResource oldResource = resourceCache.getCachedVersion((IResource) oldValue);
            if (oldResource != null) {
                ProjectWrapper projectWrapper = findProjectWrapper(oldResource);
                // it's a remove
                handleRemove(projectWrapper, oldResource);
            }
        } else {
            // old value == null, new value == null, ignore
            OpenShiftUIActivator.log(IStatus.WARNING, "old and new value are null", new RuntimeException("Warning origing"));
        }
    } else if (ConnectionProperties.PROPERTY_PROJECTS.equals(property) && (newValue instanceof List)) {
        updateWithResources((List<IProject>) newValue);
    }
}
Also used : ArrayList(java.util.ArrayList) List(java.util.List) IResource(com.openshift.restclient.model.IResource)

Example 87 with IResource

use of com.openshift.restclient.model.IResource in project jbosstools-openshift by jbosstools.

the class EditResourceLimitsHandler method execute.

@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
    IResource resource = UIUtils.getFirstElement(UIUtils.getCurrentSelection(event), IResource.class);
    RetrieveDCOrRCJob job = new RetrieveDCOrRCJob(resource);
    new JobChainBuilder(job).runWhenSuccessfullyDone(new UIJob("Launching Edit Resource Limits Wizard...") {

        @Override
        public IStatus runInUIThread(IProgressMonitor monitor) {
            IReplicationController dcOrRc = job.getDeplConfigOrReplController();
            if (dcOrRc == null) {
                return Status.CANCEL_STATUS;
            }
            editResources(HandlerUtil.getActiveShell(event), dcOrRc, dcOrRc.getName());
            return Status.OK_STATUS;
        }
    }).schedule();
    return null;
}
Also used : IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) UIJob(org.eclipse.ui.progress.UIJob) IResource(com.openshift.restclient.model.IResource) JobChainBuilder(org.jboss.tools.openshift.internal.common.core.job.JobChainBuilder) IReplicationController(com.openshift.restclient.model.IReplicationController)

Example 88 with IResource

use of com.openshift.restclient.model.IResource in project jbosstools-openshift by jbosstools.

the class NewApplicationWizard method init.

@Override
public void init(IWorkbench workbench, IStructuredSelection selection) {
    fromImageModel.setContainer(getContainer());
    if (selection == null || selection.isEmpty()) {
        return;
    }
    org.eclipse.core.resources.IProject selectedProject = UIUtils.getFirstElement(selection, org.eclipse.core.resources.IProject.class);
    model.setEclipseProject(selectedProject);
    Connection connection = UIUtils.getFirstElement(selection, Connection.class);
    if (connection != null) {
        setConnection(connection);
    } else {
        IResource resource = UIUtils.getFirstElement(selection, IResource.class);
        if (resource != null) {
            connection = ConnectionsRegistryUtil.safeGetConnectionFor(resource);
            setConnection(connection);
            model.setProject(resource.getProject());
        }
    }
    if (connection != null) {
        ConnectionsRegistrySingleton.getInstance().setRecent(connection);
    }
}
Also used : Connection(org.jboss.tools.openshift.core.connection.Connection) IResource(com.openshift.restclient.model.IResource)

Example 89 with IResource

use of com.openshift.restclient.model.IResource in project jbosstools-openshift by jbosstools.

the class NewApplicationWizard method performFinish.

@Override
public boolean performFinish() {
    final IResourcesModelJob createJob = isTemplateFlow() ? fromTemplateModel.createFinishJob() : fromImageModel.createFinishJob();
    createJob.addJobChangeListener(new JobChangeAdapter() {

        @Override
        public void done(IJobChangeEvent event) {
            IStatus status = event.getResult();
            if (JobUtils.isOk(status) || JobUtils.isWarning(status)) {
                Display.getDefault().syncExec(createJob.getSummaryRunnable(getShell()));
                OpenShiftUIUtils.showOpenShiftExplorer();
                if (model.getEclipseProject() != null) {
                    // No need to import the project from git, it's already here
                    return;
                }
                Collection<IResource> resources = createJob.getResources();
                final Map<IProject, Collection<IBuildConfig>> projectsAndBuildConfigs = getBuildConfigs(resources);
                if (projectsAndBuildConfigs.isEmpty()) {
                    return;
                }
                Connection connection = model.getConnection();
                Display.getDefault().asyncExec(new Runnable() {

                    @Override
                    public void run() {
                        ImportApplicationWizard wizard = new ImportApplicationWizard(projectsAndBuildConfigs);
                        wizard.addImportJobChangeListener(new JobChangeAdapter() {

                            @Override
                            public void done(IJobChangeEvent event) {
                                IService service = getService(resources);
                                List<org.eclipse.core.resources.IProject> importedProjects = wizard.getImportJob().getImportedProjects();
                                if (service != null && importedProjects.size() == 1) {
                                    Display.getDefault().asyncExec(new Runnable() {

                                        @Override
                                        public void run() {
                                            if (MessageDialog.openQuestion(getShell(), "Create server adapter", NLS.bind("Would you like to create a server adapter for the imported {0} project?", importedProjects.get(0).getName()))) {
                                                createServerAdapter(importedProjects.get(0), connection, service, getRoute(resources));
                                            }
                                        }
                                    });
                                }
                            }
                        });
                        new WizardDialog(getShell(), wizard).open();
                    }
                });
            }
        }

        protected Map<IProject, Collection<IBuildConfig>> getBuildConfigs(Collection<IResource> resources) {
            Map<IProject, Collection<IBuildConfig>> projects = new LinkedHashMap<>();
            for (IResource resource : resources) {
                if (resource instanceof IBuildConfig) {
                    IBuildConfig buildConfig = (IBuildConfig) resource;
                    if (StringUtils.isNotBlank(buildConfig.getSourceURI())) {
                        IProject p = buildConfig.getProject();
                        Collection<IBuildConfig> buildConfigs = projects.get(p);
                        if (buildConfigs == null) {
                            buildConfigs = new LinkedHashSet<>();
                            projects.put(p, buildConfigs);
                        }
                        buildConfigs.add(buildConfig);
                    }
                }
            }
            return projects;
        }

        protected IService getService(Collection<IResource> resources) {
            IResource service = getResourceOfType(resources, IService.class);
            return service == null ? null : (IService) service;
        }

        protected IRoute getRoute(Collection<IResource> resources) {
            IResource route = getResourceOfType(resources, IRoute.class);
            return route == null ? null : (IRoute) route;
        }

        private IResource getResourceOfType(Collection<IResource> resources, Class<? extends IResource> type) {
            for (IResource resource : resources) {
                if (type.isInstance(resource)) {
                    return resource;
                }
            }
            return null;
        }

        protected void createServerAdapter(org.eclipse.core.resources.IProject project, Connection connection, IService service, IRoute route) {
            try {
                IServerWorkingCopy server = OpenShiftServerUtils.create(OpenShiftResourceUniqueId.get(service));
                ServerSettingsWizardPageModel serverModel = new ServerSettingsWizardPageModel(service, route, project, connection, server, OCBinary.getInstance().getStatus(connection, new NullProgressMonitor()), RSyncValidator.get().getStatus());
                serverModel.loadResources();
                serverModel.updateServer();
                server.setAttribute(OpenShiftServerUtils.SERVER_START_ON_CREATION, false);
                serverModel.saveServer(null);
            } catch (CoreException ce) {
                OpenShiftUIActivator.getDefault().getLogger().logError("Error occured while creating a server adapter", ce);
                return;
            }
        }
    });
    boolean success = false;
    try {
        Job job = new JobChainBuilder(createJob.getJob()).runWhenSuccessfullyDone(new RefreshResourcesJob(createJob, true)).build();
        IStatus status = runInWizard(job, createJob.getDelegatingProgressMonitor(), getContainer());
        success = isFailed(status);
    } catch (InvocationTargetException | InterruptedException e) {
        OpenShiftUIActivator.getDefault().getLogger().logError(e);
        success = false;
    } finally {
        UsageStats.getInstance().newV3Application(model.getConnection().getHost(), success);
    }
    return success;
}
Also used : LinkedHashSet(java.util.LinkedHashSet) NullProgressMonitor(org.eclipse.core.runtime.NullProgressMonitor) IStatus(org.eclipse.core.runtime.IStatus) JobChangeAdapter(org.eclipse.core.runtime.jobs.JobChangeAdapter) ImportApplicationWizard(org.jboss.tools.openshift.internal.ui.wizard.importapp.ImportApplicationWizard) IRoute(com.openshift.restclient.model.route.IRoute) RefreshResourcesJob(org.jboss.tools.openshift.internal.ui.job.RefreshResourcesJob) IBuildConfig(com.openshift.restclient.model.IBuildConfig) List(java.util.List) IResourcesModelJob(org.jboss.tools.openshift.internal.ui.job.IResourcesModelJob) RefreshResourcesJob(org.jboss.tools.openshift.internal.ui.job.RefreshResourcesJob) Job(org.eclipse.core.runtime.jobs.Job) IService(com.openshift.restclient.model.IService) JobChainBuilder(org.jboss.tools.openshift.internal.common.core.job.JobChainBuilder) Connection(org.jboss.tools.openshift.core.connection.Connection) ServerSettingsWizardPageModel(org.jboss.tools.openshift.internal.ui.server.ServerSettingsWizardPageModel) IJobChangeEvent(org.eclipse.core.runtime.jobs.IJobChangeEvent) IProject(com.openshift.restclient.model.IProject) InvocationTargetException(java.lang.reflect.InvocationTargetException) IResourcesModelJob(org.jboss.tools.openshift.internal.ui.job.IResourcesModelJob) CoreException(org.eclipse.core.runtime.CoreException) IServerWorkingCopy(org.eclipse.wst.server.core.IServerWorkingCopy) Collection(java.util.Collection) Map(java.util.Map) LinkedHashMap(java.util.LinkedHashMap) WizardDialog(org.eclipse.jface.wizard.WizardDialog) IResource(com.openshift.restclient.model.IResource)

Example 90 with IResource

use of com.openshift.restclient.model.IResource in project jbosstools-openshift by jbosstools.

the class ResourceDetailsContentProvider method getElements.

@SuppressWarnings("unchecked")
@Override
public Object[] getElements(Object rootElements) {
    if (!(rootElements instanceof Collection)) {
        return new Object[] {};
    }
    List<IResource> resources = new ArrayList<>((Collection<IResource>) rootElements);
    Collections.sort(resources, new ResourceKindAndNameComparator());
    return resources.toArray();
}
Also used : ResourceKindAndNameComparator(org.jboss.tools.openshift.internal.core.util.ResourceKindAndNameComparator) ArrayList(java.util.ArrayList) Collection(java.util.Collection) IResource(com.openshift.restclient.model.IResource)

Aggregations

IResource (com.openshift.restclient.model.IResource)101 Test (org.junit.Test)32 Connection (org.jboss.tools.openshift.core.connection.Connection)27 IProject (com.openshift.restclient.model.IProject)14 IStatus (org.eclipse.core.runtime.IStatus)12 Collection (java.util.Collection)10 ServerResourceViewModel (org.jboss.tools.openshift.internal.ui.server.ServerResourceViewModel)9 IReplicationController (com.openshift.restclient.model.IReplicationController)8 IService (com.openshift.restclient.model.IService)8 ArrayList (java.util.ArrayList)8 CoreException (org.eclipse.core.runtime.CoreException)8 IDeploymentConfig (com.openshift.restclient.model.IDeploymentConfig)7 Status (org.eclipse.core.runtime.Status)7 ISelection (org.eclipse.jface.viewers.ISelection)7 OpenShiftException (com.openshift.restclient.OpenShiftException)6 ResourceKind (com.openshift.restclient.ResourceKind)6 IPod (com.openshift.restclient.model.IPod)6 List (java.util.List)6 IProgressMonitor (org.eclipse.core.runtime.IProgressMonitor)6 IBuildConfig (com.openshift.restclient.model.IBuildConfig)5