/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.eclipse.services.ui.actions; import java.util.ArrayList; import java.util.List; import org.ebayopensource.turmeric.eclipse.buildsystem.utils.ActionUtil; import org.ebayopensource.turmeric.eclipse.core.logging.SOALogger; import org.ebayopensource.turmeric.eclipse.exception.resources.SOAActionExecutionFailedException; import org.ebayopensource.turmeric.eclipse.repositorysystem.core.GlobalRepositorySystem; import org.ebayopensource.turmeric.eclipse.repositorysystem.core.TrackingEvent; import org.ebayopensource.turmeric.eclipse.repositorysystem.utils.GlobalProjectHealthChecker; import org.ebayopensource.turmeric.eclipse.utils.plugin.ProgressUtil; import org.ebayopensource.turmeric.eclipse.utils.plugin.WorkspaceUtil; import org.ebayopensource.turmeric.eclipse.utils.ui.UIUtil; import org.ebayopensource.turmeric.eclipse.validator.utils.ValidateUtil; import org.ebayopensource.turmeric.eclipse.validator.utils.common.AbstractBaseAccessValidator; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.resources.WorkspaceJob; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.ui.IObjectActionDelegate; import org.eclipse.ui.IWorkbenchPart; /** * The Class GenerateServiceImplSkeleton. * * @author smathew * @deprecated */ @Deprecated public class GenerateServiceImplSkeleton implements IObjectActionDelegate { private IStructuredSelection selection; private static final SOALogger logger = SOALogger.getLogger(); /** * {@inheritDoc} * @see org.eclipse.ui.IObjectActionDelegate#setActivePart(org.eclipse.jface.action.IAction, org.eclipse.ui.IWorkbenchPart) */ @Override public void setActivePart(final IAction action, final IWorkbenchPart targetPart) { } /** * {@inheritDoc} * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction) */ @Override public void run(final IAction action) { try { if (SOALogger.DEBUG) logger.entering(action, selection); if (selection == null) return; /*if (!UIUtil .openChoiceDialog( "Overrwriting file", "This will overrwrite the implementation skeleton files, Do you really want to continue?", IStatus.WARNING)) { return; }*/ final IProject project = ActionUtil.preValidateAction(selection .getFirstElement(), logger); if (project == null) return; final IStatus status = new AbstractBaseAccessValidator() { @Override public List<IResource> getReadableFiles() { // should check the following files try { return GlobalProjectHealthChecker .getSOAProjectReadableResources(project); } catch (Exception e) { logger.warning(e); } return new ArrayList<IResource>(1); } @Override public List<IResource> getWritableFiles() { // we should ensure that the client config folder is // writable final List<IResource> result = new ArrayList<IResource>(); result.add(project); return result; } }.validate(project.getName()); final String messages = ValidateUtil .getFormattedStatusMessagesForAction(status); if (messages != null) { UIUtil.showErrorDialog(UIUtil.getActiveShell(), "Error", messages, (Throwable) null); return; } WorkspaceJob buildJob = new WorkspaceJob( "Building Service Impl Skeleton for " + project.getName()) { @Override public boolean belongsTo(Object family) { return false; } @Override public IStatus runInWorkspace(IProgressMonitor monitor) throws CoreException { try { monitor.beginTask(getName(), ProgressUtil.PROGRESS_STEP * 10); ActionUtil .generateServiceImplSkeleton(project, monitor); } catch (Exception e) { logger.error(e); throw new SOAActionExecutionFailedException(e); } finally { monitor.done(); WorkspaceUtil.refresh(monitor, project); } return Status.OK_STATUS; } }; buildJob.setRule(ResourcesPlugin.getWorkspace().getRuleFactory() .deleteRule(project)); GlobalRepositorySystem.instanceOf().getActiveRepositorySystem() .trackingUsage(new TrackingEvent( getClass().getName(), TrackingEvent.TRACKING_ACTION)); UIUtil.runJobInUIDialog(buildJob).schedule(); } catch (Exception e) { logger.error(e); UIUtil.showErrorDialog(e); } finally { if (SOALogger.DEBUG) logger.exiting(); } } /** * {@inheritDoc} * @see org.eclipse.ui.IActionDelegate#selectionChanged(org.eclipse.jface.action.IAction, org.eclipse.jface.viewers.ISelection) */ @Override public void selectionChanged(final IAction action, final ISelection selection) { this.selection = (IStructuredSelection) selection; } }