Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1ed4f9903b76d7c07fc295b241fd65e5f0f6097c (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*******************************************************************************
 * Copyright (c) 2004, 2008 Tasktop Technologies and others.
 * 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.tasks.bugs;

import java.util.Map;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.mylyn.commons.core.AbstractErrorReporter;
import org.eclipse.mylyn.commons.core.StatusHandler;
import org.eclipse.mylyn.internal.tasks.bugs.wizards.ReportErrorWizard;
import org.eclipse.mylyn.internal.tasks.ui.util.TasksUiInternal;
import org.eclipse.mylyn.tasks.core.data.TaskData;

/**
 * @author Steffen Pingel
 */
public class TaskErrorReporter {

	private final PluginRepositoryMappingManager mappingManager;

	private final TaskContributorManager contributorManager;

	public TaskErrorReporter() {
		this.contributorManager = new TaskContributorManager();
		this.mappingManager = new PluginRepositoryMappingManager();
	}

	public TaskContributorManager getContributorManager() {
		return contributorManager;
	}

	public PluginRepositoryMappingManager getMappingManager() {
		return mappingManager;
	}

	public int getPriority(IStatus status) {
		Assert.isNotNull(status);
		String pluginId = status.getPlugin();
		for (int i = 0; i <= pluginId.length(); i++) {
			if (mappingManager.getMapping(pluginId.substring(0, i)) != null) {
				return AbstractErrorReporter.PRIORITY_DEFAULT;
			}
		}
		return AbstractErrorReporter.PRIORITY_NONE;
	}

	public void process(IStatus status) {
		Assert.isNotNull(status);
		AttributeTaskMapper mapper = preProcess(status);
		postProcess(mapper);
	}

	public AttributeTaskMapper preProcess(IStatus status) {
		Assert.isNotNull(status);
		String pluginId = status.getPlugin();
		Map<String, String> attributes = mappingManager.getAllAttributes(pluginId);
		contributorManager.preProcess(status, attributes);
		return new AttributeTaskMapper(attributes);
	}

	public void postProcess(AttributeTaskMapper mapper) {
		Assert.isNotNull(mapper);
		TaskData taskData;
		try {
			taskData = mapper.createTaskData(null);
			TasksUiInternal.createAndOpenNewTask(taskData);
		} catch (CoreException e) {
			StatusHandler.log(new Status(IStatus.ERROR, TasksBugsPlugin.ID_PLUGIN, "Unexpected error reporting error", //$NON-NLS-1$
					e));
		}
	}

	public void handle(final IStatus status) {
		ReportErrorWizard wizard = new ReportErrorWizard(TaskErrorReporter.this, status);
		WizardDialog dialog = new WizardDialog(TasksUiInternal.getShell(), wizard);
		dialog.setBlockOnOpen(false);
		dialog.setPageSize(500, 200);
		dialog.open();
	}

}

Back to the top