Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2fa5916ed54665c849cd15766d975640a7863684 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*****************************************************************************
 * Copyright (c) 2013 CEA LIST.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   CEA LIST - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.cdo.internal.ui.actions;

import java.lang.reflect.InvocationTargetException;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.papyrus.cdo.core.IPapyrusRepository;
import org.eclipse.papyrus.cdo.internal.ui.Activator;
import org.eclipse.papyrus.cdo.internal.ui.l10n.Messages;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.statushandlers.IStatusAdapterConstants;
import org.eclipse.ui.statushandlers.StatusAdapter;
import org.eclipse.ui.statushandlers.StatusManager;

/**
 * This is the ConnectRepositoryAction type. Enjoy.
 */
public class ConnectRepositoryAction extends AbstractRepositoryAction {

	public ConnectRepositoryAction(IWorkbenchPart part) {
		super(Messages.ConnectRepositoryAction_0, Activator.getIcon(Activator.ICON_CONNECT_REPOSITORY_ENABLED), Activator.getIcon(Activator.ICON_CONNECT_REPOSITORY_DISABLED), part);
	}

	@Override
	protected boolean isEnabledFor(IPapyrusRepository repository) {
		return !repository.isConnected();
	}

	@Override
	protected void run(final IPapyrusRepository repository) {
		try {
			getPart().getSite().getWorkbenchWindow().run(true, false, new IRunnableWithProgress() {

				@Override
				public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {

					IStatus status = repository.connect();
					if(status.matches(IStatus.WARNING | IStatus.ERROR)) {
						StatusAdapter adapter = new StatusAdapter(status);
						adapter.setProperty(IStatusAdapterConstants.TIMESTAMP_PROPERTY, System.currentTimeMillis());
						adapter.setProperty(IStatusAdapterConstants.TITLE_PROPERTY, Messages.ConnectRepositoryAction_errorTitle);
						StatusManager.getManager().handle(adapter, StatusManager.SHOW);
					}
				}
			});
		} catch (Exception e) {
			Activator.log.error("Unexpected exception in async repository connection.", e); //$NON-NLS-1$
		}
	}
}

Back to the top