Search in sources :

Example 1 with ProblemsContainer

use of com.liferay.ide.project.core.upgrade.ProblemsContainer in project liferay-ide by liferay.

the class AutoCorrectAllAction method run.

public void run() {
    final BundleContext context = FrameworkUtil.getBundle(AutoCorrectAction.class).getBundleContext();
    WorkspaceJob job = new WorkspaceJob("Auto correcting all of migration problem.") {

        @Override
        public IStatus runInWorkspace(IProgressMonitor monitor) {
            IStatus retval = Status.OK_STATUS;
            try {
                if ((_problemsContainerList != null) && (_problemsContainerList.size() > 0)) {
                    for (ProblemsContainer problemsContainer : _problemsContainerList) {
                        for (UpgradeProblems upgradeProblems : problemsContainer.getProblemsArray()) {
                            FileProblems[] fileProblemsArray = upgradeProblems.getProblems();
                            for (FileProblems fileProblems : fileProblemsArray) {
                                List<Problem> problems = fileProblems.getProblems();
                                Set<String> fixed = new HashSet<>();
                                for (Problem problem : problems) {
                                    if (problem.getStatus() == Problem.STATUS_IGNORE) {
                                        continue;
                                    }
                                    final IResource file = MigrationUtil.getIResourceFromProblem(problem);
                                    if (FileUtil.notExists(file)) {
                                        continue;
                                    }
                                    String fixedKey = file.getLocation().toString() + "," + problem.autoCorrectContext;
                                    if ((problem.autoCorrectContext == null) || fixed.contains(fixedKey)) {
                                        continue;
                                    }
                                    String autoCorrectKey = null;
                                    final int filterKeyIndex = problem.autoCorrectContext.indexOf(":");
                                    if (filterKeyIndex > -1) {
                                        autoCorrectKey = problem.autoCorrectContext.substring(0, filterKeyIndex);
                                    } else {
                                        autoCorrectKey = problem.autoCorrectContext;
                                    }
                                    final Collection<ServiceReference<AutoMigrator>> refs = context.getServiceReferences(AutoMigrator.class, "(auto.correct=" + autoCorrectKey + ")");
                                    for (ServiceReference<AutoMigrator> ref : refs) {
                                        final AutoMigrator autoMigrator = context.getService(ref);
                                        int problemsCorrected = autoMigrator.correctProblems(problem.file, problems);
                                        fixed.add(fixedKey);
                                        if ((problemsCorrected > 0) && (file != null)) {
                                            IMarker problemMarker = file.findMarker(problem.markerId);
                                            if ((problemMarker != null) && problemMarker.exists()) {
                                                problemMarker.delete();
                                            }
                                        }
                                    }
                                    file.refreshLocal(IResource.DEPTH_ONE, monitor);
                                }
                            }
                        }
                    }
                }
                UIUtil.sync(new Runnable() {

                    @Override
                    public void run() {
                        IViewPart view = UIUtil.findView(UpgradeView.ID);
                        try {
                            BreakingChangeSelectedProject selectedProject = UpgradeAssistantSettingsUtil.getObjectFromStore(BreakingChangeSelectedProject.class);
                            StructuredSelection projectSelection = null;
                            List<IProject> projects = new ArrayList<>();
                            if (selectedProject != null) {
                                List<BreakingChangeSimpleProject> selectedProjects = selectedProject.getSelectedProjects();
                                selectedProjects.stream().forEach(breakingProject -> projects.add(CoreUtil.getProject(breakingProject.getName())));
                                projectSelection = new StructuredSelection(projects.toArray(new IProject[0]));
                            }
                            new RunMigrationToolAction("Run Migration Tool", view.getViewSite().getShell(), projectSelection).run();
                        } catch (IOException ioe) {
                            ProjectUI.logError(ioe);
                        }
                    }
                });
            } catch (AutoMigrateException | CoreException | InvalidSyntaxException e) {
                return retval = ProjectUI.createErrorStatus("Unable to auto correct problem", e);
            }
            return retval;
        }
    };
    job.schedule();
}
Also used : CoreUtil(com.liferay.ide.core.util.CoreUtil) CoreException(org.eclipse.core.runtime.CoreException) StructuredSelection(org.eclipse.jface.viewers.StructuredSelection) ArrayList(java.util.ArrayList) HashSet(java.util.HashSet) IStatus(org.eclipse.core.runtime.IStatus) UpgradeAssistantSettingsUtil(com.liferay.ide.project.core.upgrade.UpgradeAssistantSettingsUtil) IProject(org.eclipse.core.resources.IProject) IViewPart(org.eclipse.ui.IViewPart) IMarker(org.eclipse.core.resources.IMarker) ServiceReference(org.osgi.framework.ServiceReference) InvalidSyntaxException(org.osgi.framework.InvalidSyntaxException) FileUtil(com.liferay.ide.core.util.FileUtil) UpgradeProblems(com.liferay.ide.project.core.upgrade.UpgradeProblems) Collection(java.util.Collection) Set(java.util.Set) Status(org.eclipse.core.runtime.Status) IOException(java.io.IOException) Action(org.eclipse.jface.action.Action) ProjectUI(com.liferay.ide.project.ui.ProjectUI) BundleContext(org.osgi.framework.BundleContext) IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) AutoMigrateException(com.liferay.blade.api.AutoMigrateException) WorkspaceJob(org.eclipse.core.resources.WorkspaceJob) Problem(com.liferay.blade.api.Problem) BreakingChangeSimpleProject(com.liferay.ide.project.core.upgrade.BreakingChangeSimpleProject) List(java.util.List) AutoMigrator(com.liferay.blade.api.AutoMigrator) UIUtil(com.liferay.ide.ui.util.UIUtil) IResource(org.eclipse.core.resources.IResource) BreakingChangeSelectedProject(com.liferay.ide.project.core.upgrade.BreakingChangeSelectedProject) FileProblems(com.liferay.ide.project.core.upgrade.FileProblems) UpgradeView(com.liferay.ide.project.ui.upgrade.animated.UpgradeView) ProblemsContainer(com.liferay.ide.project.core.upgrade.ProblemsContainer) FrameworkUtil(org.osgi.framework.FrameworkUtil) IStatus(org.eclipse.core.runtime.IStatus) IViewPart(org.eclipse.ui.IViewPart) AutoMigrateException(com.liferay.blade.api.AutoMigrateException) StructuredSelection(org.eclipse.jface.viewers.StructuredSelection) ProblemsContainer(com.liferay.ide.project.core.upgrade.ProblemsContainer) ArrayList(java.util.ArrayList) List(java.util.List) InvalidSyntaxException(org.osgi.framework.InvalidSyntaxException) BreakingChangeSelectedProject(com.liferay.ide.project.core.upgrade.BreakingChangeSelectedProject) HashSet(java.util.HashSet) UpgradeProblems(com.liferay.ide.project.core.upgrade.UpgradeProblems) WorkspaceJob(org.eclipse.core.resources.WorkspaceJob) IOException(java.io.IOException) IProject(org.eclipse.core.resources.IProject) ServiceReference(org.osgi.framework.ServiceReference) IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) FileProblems(com.liferay.ide.project.core.upgrade.FileProblems) CoreException(org.eclipse.core.runtime.CoreException) AutoMigrator(com.liferay.blade.api.AutoMigrator) Problem(com.liferay.blade.api.Problem) IMarker(org.eclipse.core.resources.IMarker) IResource(org.eclipse.core.resources.IResource) BundleContext(org.osgi.framework.BundleContext)

Example 2 with ProblemsContainer

use of com.liferay.ide.project.core.upgrade.ProblemsContainer in project liferay-ide by liferay.

the class FindBreakingChangesPage method getInitialInput.

public List<ProblemsContainer> getInitialInput() {
    List<ProblemsContainer> problems = null;
    try {
        MigrationProblemsContainer container = UpgradeAssistantSettingsUtil.getObjectFromStore(MigrationProblemsContainer.class);
        if (container != null) {
            problems = new ArrayList<>();
            problems.add(container);
        }
    } catch (IOException ioe) {
        ioe.printStackTrace();
    }
    _migrationContentProvider.setProblems(problems);
    return problems;
}
Also used : IOException(java.io.IOException) MigrationProblemsContainer(com.liferay.ide.project.core.upgrade.MigrationProblemsContainer) MigrationProblemsContainer(com.liferay.ide.project.core.upgrade.MigrationProblemsContainer) ProblemsContainer(com.liferay.ide.project.core.upgrade.ProblemsContainer)

Example 3 with ProblemsContainer

use of com.liferay.ide.project.core.upgrade.ProblemsContainer in project liferay-ide by liferay.

the class MigrationContentProvider method hasChildren.

@Override
public boolean hasChildren(Object element) {
    if (element instanceof ProblemsContainer) {
        ProblemsContainer problemsContainer = (ProblemsContainer) element;
        UpgradeProblems[] upgradeProblemsArray = problemsContainer.getProblemsArray();
        if (upgradeProblemsArray.length == 1) {
            if (ListUtil.isNotEmpty(problemsContainer.getProblemsArray()[0].getProblems())) {
                return true;
            }
            return false;
        } else {
            return true;
        }
    } else if (element instanceof UpgradeProblems) {
        if (ListUtil.isNotEmpty(((UpgradeProblems) element).getProblems())) {
            return true;
        }
        return false;
    }
    return false;
}
Also used : UpgradeProblems(com.liferay.ide.project.core.upgrade.UpgradeProblems) MigrationProblemsContainer(com.liferay.ide.project.core.upgrade.MigrationProblemsContainer) ProblemsContainer(com.liferay.ide.project.core.upgrade.ProblemsContainer)

Example 4 with ProblemsContainer

use of com.liferay.ide.project.core.upgrade.ProblemsContainer in project liferay-ide by liferay.

the class MigrationDecorator method decorate.

@Override
public void decorate(Object element, IDecoration decoration) {
    final List<Problem> problems = new ArrayList<>();
    final List<Problem> resolvedProblems = new ArrayList<>();
    final List<Problem> ignoreProblems = new ArrayList<>();
    if (element instanceof FileProblems) {
        final FileProblems fileProblems = (FileProblems) element;
        problems.addAll(fileProblems.getProblems());
        resolvedProblems.addAll(fileProblems.getProblems(Problem.STATUS_RESOLVED));
        ignoreProblems.addAll(fileProblems.getProblems(Problem.STATUS_IGNORE));
    } else if (element instanceof UpgradeProblems) {
        final UpgradeProblems upgradeProblems = (UpgradeProblems) element;
        for (FileProblems fileProblems : upgradeProblems.getProblems()) {
            problems.addAll(fileProblems.getProblems());
            resolvedProblems.addAll(fileProblems.getProblems(Problem.STATUS_RESOLVED));
            ignoreProblems.addAll(fileProblems.getProblems(Problem.STATUS_IGNORE));
        }
    } else if (element instanceof ProblemsContainer) {
        ProblemsContainer problemsContainer = (ProblemsContainer) element;
        for (UpgradeProblems upgradeProblems : problemsContainer.getProblemsArray()) {
            for (FileProblems fileProblems : upgradeProblems.getProblems()) {
                problems.addAll(fileProblems.getProblems());
                resolvedProblems.addAll(fileProblems.getProblems(Problem.STATUS_RESOLVED));
                ignoreProblems.addAll(fileProblems.getProblems(Problem.STATUS_IGNORE));
            }
        }
    }
    if (ListUtil.isNotEmpty(problems)) {
        StringBuilder sb = new StringBuilder();
        sb.append("[");
        sb.append(problems.size()).append(" total");
        if (ListUtil.isNotEmpty(resolvedProblems)) {
            sb.append(", ");
            sb.append(resolvedProblems.size());
            sb.append(" resolved");
        }
        if (ListUtil.isNotEmpty(ignoreProblems)) {
            sb.append(", ");
            sb.append(ignoreProblems.size());
            sb.append(" ignored");
        }
        sb.append("]");
        decoration.addSuffix(sb.toString());
    }
}
Also used : FileProblems(com.liferay.ide.project.core.upgrade.FileProblems) UpgradeProblems(com.liferay.ide.project.core.upgrade.UpgradeProblems) ArrayList(java.util.ArrayList) Problem(com.liferay.blade.api.Problem) ProblemsContainer(com.liferay.ide.project.core.upgrade.ProblemsContainer)

Aggregations

ProblemsContainer (com.liferay.ide.project.core.upgrade.ProblemsContainer)4 UpgradeProblems (com.liferay.ide.project.core.upgrade.UpgradeProblems)3 Problem (com.liferay.blade.api.Problem)2 FileProblems (com.liferay.ide.project.core.upgrade.FileProblems)2 MigrationProblemsContainer (com.liferay.ide.project.core.upgrade.MigrationProblemsContainer)2 IOException (java.io.IOException)2 ArrayList (java.util.ArrayList)2 AutoMigrateException (com.liferay.blade.api.AutoMigrateException)1 AutoMigrator (com.liferay.blade.api.AutoMigrator)1 CoreUtil (com.liferay.ide.core.util.CoreUtil)1 FileUtil (com.liferay.ide.core.util.FileUtil)1 BreakingChangeSelectedProject (com.liferay.ide.project.core.upgrade.BreakingChangeSelectedProject)1 BreakingChangeSimpleProject (com.liferay.ide.project.core.upgrade.BreakingChangeSimpleProject)1 UpgradeAssistantSettingsUtil (com.liferay.ide.project.core.upgrade.UpgradeAssistantSettingsUtil)1 ProjectUI (com.liferay.ide.project.ui.ProjectUI)1 UpgradeView (com.liferay.ide.project.ui.upgrade.animated.UpgradeView)1 UIUtil (com.liferay.ide.ui.util.UIUtil)1 Collection (java.util.Collection)1 HashSet (java.util.HashSet)1 List (java.util.List)1