Search in sources :

Example 1 with DeployStatusDialog

use of org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog in project tmdm-studio-se by Talend.

the class AbstractDeployAction method showDeployStatus.

protected void showDeployStatus(IStatus status) {
    int count = 0;
    if (status.isMultiStatus()) {
        for (IStatus child : status.getChildren()) {
            if (child.isMultiStatus()) {
                count += child.getChildren().length;
            } else {
                count++;
            }
        }
    }
    MultiStatusDialog dialog = new DeployStatusDialog(getShell(), status);
    dialog.open();
}
Also used : IStatus(org.eclipse.core.runtime.IStatus) DeployStatusDialog(org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog) MultiStatusDialog(org.talend.mdm.repository.ui.dialogs.message.MultiStatusDialog)

Example 2 with DeployStatusDialog

use of org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog in project tmdm-studio-se by Talend.

the class DeployService method showDeployStatus.

private void showDeployStatus(Shell shell, IStatus status) {
    MultiStatusDialog dialog = new DeployStatusDialog(shell, status);
    dialog.open();
}
Also used : DeployStatusDialog(org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog) MultiStatusDialog(org.talend.mdm.repository.ui.dialogs.message.MultiStatusDialog)

Example 3 with DeployStatusDialog

use of org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog in project tmdm-studio-se by Talend.

the class UndeployAction method doRun.

/*
     * (non-Javadoc)
     * 
     * @see org.talend.mdm.repository.core.bridge.AbstractBridgeRepositoryAction#doRun()
     */
@Override
protected void doRun() {
    DeployService deployService = DeployService.getInstance();
    CommandManager cmanager = CommandManager.getInstance();
    List<IRepositoryViewObject> viewObjs = getSelectedRepositoryViewObject();
    if (viewObjs.size() < 1) {
        return;
    }
    SelectServerDefDialog dialog = getServerDefDialog(viewObjs);
    if (dialog.open() == IDialogConstants.OK_ID) {
        MDMServerDef serverDef = dialog.getSelectedServerDef();
        List<AbstractDeployCommand> deleteCommands = new ArrayList<AbstractDeployCommand>(viewObjs.size());
        for (IRepositoryViewObject obj : viewObjs) {
            ICommand deleteCmd = cmanager.getNewCommand(obj, ICommand.CMD_DELETE);
            deleteCmd.init(obj);
            deleteCommands.add((AbstractDeployCommand) deleteCmd);
        }
        IStatus status = deployService.runCommands(deleteCommands, serverDef);
        IProgressMonitor monitor = new NullProgressMonitor();
        deployService.updateChangedStatus(status);
        if (status.isMultiStatus()) {
            new DeployStatusDialog(getShell(), status).open();
        }
        for (IRepositoryViewObject viewObj : viewObjs) {
            MDMServerDef lastServerDef = RepositoryResourceUtil.getLastServerDef(viewObj);
            String id = viewObj.getId();
            CommandStack stack = cmanager.findCommandStack(id);
            if (stack != null) {
                if (RepositoryResourceUtil.isSameMDMServerDef(lastServerDef, serverDef)) {
                    List<ICommand> commands = stack.getCommands(ICommand.PHASE_RESTORE);
                    for (ICommand cmd : commands) {
                        cmd.execute(null, monitor);
                    }
                }
                cmanager.removeCommandStack(id, ICommand.PHASE_RESTORE);
                commonViewer.refresh(viewObj);
            }
        }
    } else {
        return;
    }
}
Also used : NullProgressMonitor(org.eclipse.core.runtime.NullProgressMonitor) CommandStack(org.talend.mdm.repository.core.command.CommandStack) IStatus(org.eclipse.core.runtime.IStatus) DeployStatusDialog(org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog) ArrayList(java.util.ArrayList) DeployService(org.talend.mdm.repository.core.service.DeployService) IProgressMonitor(org.eclipse.core.runtime.IProgressMonitor) CommandManager(org.talend.mdm.repository.core.command.CommandManager) ICommand(org.talend.mdm.repository.core.command.ICommand) IRepositoryViewObject(org.talend.core.model.repository.IRepositoryViewObject) SelectServerDefDialog(org.talend.mdm.workbench.serverexplorer.ui.dialogs.SelectServerDefDialog) AbstractDeployCommand(org.talend.mdm.repository.core.command.deploy.AbstractDeployCommand) MDMServerDef(org.talend.mdm.repository.model.mdmmetadata.MDMServerDef)

Aggregations

DeployStatusDialog (org.talend.mdm.repository.ui.dialogs.deploy.DeployStatusDialog)3 IStatus (org.eclipse.core.runtime.IStatus)2 MultiStatusDialog (org.talend.mdm.repository.ui.dialogs.message.MultiStatusDialog)2 ArrayList (java.util.ArrayList)1 IProgressMonitor (org.eclipse.core.runtime.IProgressMonitor)1 NullProgressMonitor (org.eclipse.core.runtime.NullProgressMonitor)1 IRepositoryViewObject (org.talend.core.model.repository.IRepositoryViewObject)1 CommandManager (org.talend.mdm.repository.core.command.CommandManager)1 CommandStack (org.talend.mdm.repository.core.command.CommandStack)1 ICommand (org.talend.mdm.repository.core.command.ICommand)1 AbstractDeployCommand (org.talend.mdm.repository.core.command.deploy.AbstractDeployCommand)1 DeployService (org.talend.mdm.repository.core.service.DeployService)1 MDMServerDef (org.talend.mdm.repository.model.mdmmetadata.MDMServerDef)1 SelectServerDefDialog (org.talend.mdm.workbench.serverexplorer.ui.dialogs.SelectServerDefDialog)1