Skip to main content
summaryrefslogtreecommitdiffstats
blob: 061cc0fd229eeea77b3ca39d3cf9d3b86da907cd (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*******************************************************************************
 * Copyright (c) 2004 - 2005 University Of British Columbia 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:
 *     University Of British Columbia - initial API and implementation
 *******************************************************************************/
package org.eclipse.mylar.tasks;

import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

import org.eclipse.core.runtime.Preferences.IPropertyChangeListener;
import org.eclipse.core.runtime.Preferences.PropertyChangeEvent;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.mylar.core.MylarPlugin;
import org.eclipse.mylar.tasks.bugzilla.BugzillaContentProvider;
import org.eclipse.mylar.tasks.bugzilla.BugzillaEditingMonitor;
import org.eclipse.mylar.tasks.bugzilla.BugzillaMylarBridge;
import org.eclipse.mylar.tasks.bugzilla.BugzillaReferencesProvider;
import org.eclipse.mylar.tasks.bugzilla.BugzillaStructureBridge;
import org.eclipse.mylar.tasks.bugzilla.ui.BugzillaUiBridge;
import org.eclipse.mylar.ui.MylarUiPlugin;
import org.eclipse.swt.events.ShellEvent;
import org.eclipse.swt.events.ShellListener;
import org.eclipse.ui.IStartup;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.Workbench;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;

/**
 * @author Mik Kersten
 */
public class MylarTasksPlugin extends AbstractUIPlugin implements IStartup {
    
    private static MylarTasksPlugin plugin;
    private static TaskListManager taskListManager;
    private BugzillaContentProvider bugzillaProvider;
    
    public static final String FILE_EXTENSION = ".xml";
    public static final String TASK_ID = "org.eclipse.mylar.tasks.userid";
    public static final String DEFAULT_TASK_LIST_FILE = "tasklist" + FILE_EXTENSION;
    public static final String TASK_EDITOR_ID = "org.eclipse.mylar.tasks.ui.taskEditor";
    public static final String SHOW_P1_MODE = "org.eclipse.mylar.tasks.show.p1";
    public static final String SHOW_P2_MODE = "org.eclipse.mylar.tasks.show.p2";
    public static final String SHOW_P3_MODE = "org.eclipse.mylar.tasks.show.p3";
    public static final String SHOW_P4_MODE = "org.eclipse.mylar.tasks.show.p4";
    public static final String SHOW_P5_MODE = "org.eclipse.mylar.tasks.show.p5";
    public static final String FILTER_COMPLETE_MODE = "org.eclipse.mylar.tasks.filter.complete";
    public static final String FILTER_INCOMPLETE_MODE = "org.eclipse.mylar.tasks.filter.incomplete";
    
	private ResourceBundle resourceBundle;

	public enum Priority_Level {
        P1,
        P2,
        P3,
        P4,
        P5;               
        
        @Override
        public String toString() {
            switch(this) {
                case P1: return "P1";
                case P2: return "P2";
                case P3: return "P3";
                case P4: return "P4";
                case P5: return "P5";
                default: return "null";
            }
        }
        public static Priority_Level fromString(String string) {
            if (string == null) return null;
            if (string.equals("P1")) return P1;
            if (string.equals("P2")) return P2;
            if (string.equals("P3")) return P3;
            if (string.equals("P4")) return P4;
            if (string.equals("P5")) return P5;
            return null;
        }
    }
	
    /** The bridge between Bugzilla and mylar */
    private static BugzillaMylarBridge bridge = null;

    private BugzillaStructureBridge structureBridge;
    
    private static BugzillaReferencesProvider referencesProvider = new BugzillaReferencesProvider();
    
    private static ITaskActivityListener TASK_LIST_LISTENER = new ITaskActivityListener() {

        public void taskActivated(ITask task) {
            MylarPlugin.getTaskscapeManager().taskActivated(task.getHandle(), task.getPath());
        }

        public void tasksActivated(List<ITask> tasks) {
            for (ITask task : tasks) {
                MylarPlugin.getTaskscapeManager().taskActivated(task.getHandle(), task.getPath());
            }
        }

        public void taskDeactivated(ITask task) {
            MylarPlugin.getTaskscapeManager().taskDeactivated(task.getHandle(), task.getPath());
        }

		public void taskPropertyChanged(ITask updatedTask, String property) {
			// don't care about property change	
		}
        
    };
    
    private static ShellListener SHELL_LISTENER = new ShellListener() {
        private void saveState() {
            taskListManager.saveTaskList();
            for(ITask task : taskListManager.getTaskList().getActiveTasks()) {
                MylarPlugin.getTaskscapeManager().saveTaskscape(task.getHandle(), task.getPath());
            } 
        }
        public void shellClosed(ShellEvent arg0) {
            saveState();
        }  
        public void shellDeactivated(ShellEvent arg0) { 
            saveState();
        }
        public void shellActivated(ShellEvent arg0) { }
        public void shellDeiconified(ShellEvent arg0) { }
        public void shellIconified(ShellEvent arg0) { }
    };
    
    private static IPropertyChangeListener PREFERENCE_LISTENER = new IPropertyChangeListener() {

		public void propertyChange(PropertyChangeEvent event) {
			// TODO Auto-generated method stub
			if (event.getProperty().equals(MylarPlugin.MYLAR_DIR)) {				
				if (event.getOldValue() instanceof String) {
					String prevDir = (String) event.getOldValue();				
					MylarPlugin.getTaskscapeManager().updateMylarDirContents(prevDir);
					getTaskListManager().updateTaskscapeReference(prevDir);
					
					String path = MylarPlugin.getDefault().getUserDataDirectory() + File.separator + DEFAULT_TASK_LIST_FILE;        
					getTaskListManager().setFile(new File(path));
				}
			} else {
			}
		}        
    };
    
	public MylarTasksPlugin() {
		super();
		plugin = this;
	}

    public void earlyStartup() {
        final IWorkbench workbench = PlatformUI.getWorkbench();
        workbench.getDisplay().asyncExec(new Runnable() {
            public void run() {
                
            	structureBridge = new BugzillaStructureBridge();
            	
                MylarPlugin.getDefault().addBridge(structureBridge);
                MylarPlugin.getTaskscapeManager().addListener(referencesProvider);
                MylarUiPlugin.getDefault().addAdapter(BugzillaStructureBridge.EXTENSION, new BugzillaUiBridge());
                MylarPlugin.getDefault().getSelectionMonitors().add(new BugzillaEditingMonitor());             
                
                IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
                
                Workbench.getInstance().getActiveWorkbenchWindow().getShell().addShellListener(SHELL_LISTENER);
                MylarPlugin.getDefault().getPluginPreferences().addPropertyChangeListener(PREFERENCE_LISTENER);
                
                getPrefs().setDefault(SHOW_P1_MODE, true);
                getPrefs().setDefault(SHOW_P2_MODE, true);
                getPrefs().setDefault(SHOW_P3_MODE, true);
                getPrefs().setDefault(SHOW_P4_MODE, true);
                getPrefs().setDefault(SHOW_P5_MODE, true);                
                if (window != null) {
                    // create a new bridge and initialize it
                    bridge = new BugzillaMylarBridge();
                }
            }
        });
    }
    
    @Override
	public void start(BundleContext context) throws Exception {
        bugzillaProvider = new BugzillaContentProvider();
        String path = MylarPlugin.getDefault().getUserDataDirectory() + File.separator + DEFAULT_TASK_LIST_FILE;        
        File taskListFile = new File(path);
        taskListManager = new TaskListManager(taskListFile);
        taskListManager.addListener(TASK_LIST_LISTENER);
        taskListManager.readTaskList();
        if (taskListManager.getTaskList() == null) taskListManager.createNewTaskList();
        
		super.start(context);
	}

    @Override
	public void stop(BundleContext context) throws Exception {
		super.stop(context);
		plugin = null;
		resourceBundle = null;
	}

    /**
     * Get the bridge for this plugin
     * 
     * @return The bugzilla mylar bridge
     */
    public static BugzillaMylarBridge getBridge() {
        // make sure that the bridge initialized, if not, make a new one
        if (bridge == null) {
            bridge = new BugzillaMylarBridge();
//            MylarPlugin.getTaskscapeManager().addRelationshipProvider(new BugzillaRelationshipProvider());
//            MylarUiPlugin.getDefault().getAdapters().put(ITaskscapeNode.Kind.Bugzilla, new BugzillaUiAdapter());
        }
        return bridge;
    }
    
    
    public static TaskListManager getTaskListManager() {
        return taskListManager;
    }
    
	/**
	 * Returns the shared instance.
	 */
	public static MylarTasksPlugin getDefault() {
		return plugin;
	}

	/**
	 * Returns the string from the plugin's resource bundle,
	 * or 'key' if not found.
	 */
	public static String getResourceString(String key) {
		ResourceBundle bundle = MylarTasksPlugin.getDefault().getResourceBundle();
		try {
			return (bundle != null) ? bundle.getString(key) : key;
		} catch (MissingResourceException e) {
			return key;
		}
	}

	/**
	 * Returns the plugin's resource bundle,
	 */
	public ResourceBundle getResourceBundle() {
		try {
			if (resourceBundle == null)
				resourceBundle = ResourceBundle.getBundle("taskListPlugin.TaskListPluginPluginResources");
		} catch (MissingResourceException x) {
			resourceBundle = null;
		}
		return resourceBundle;
	}
    
    public BugzillaContentProvider getBugzillaProvider() {
        return bugzillaProvider;
    }
    
    public void setBugzillaProvider(BugzillaContentProvider bugzillaProvider) {
        this.bugzillaProvider = bugzillaProvider;
    }
    
    public BugzillaStructureBridge getStructureBridge() {
        return structureBridge;
    }

	public static BugzillaReferencesProvider getReferenceProvider() {
		return referencesProvider;
		
	}
	
	public static IPreferenceStore getPrefs() {
		return MylarPlugin.getDefault().getPreferenceStore();
	}
	
	public static void setPriorityLevel(Priority_Level pl, boolean showPriority) {
		String key = "";
		switch(pl) {
		case P1: key = SHOW_P1_MODE; break;
		case P2: key = SHOW_P2_MODE; break;
		case P3: key = SHOW_P3_MODE; break;
		case P4: key = SHOW_P4_MODE; break;
		case P5: key = SHOW_P5_MODE; break;
		default: key = SHOW_P1_MODE; break;
		}		
		getPrefs().setValue(key, showPriority);
	}
	public static boolean getPriorityLevel(Priority_Level pl) {
		String key = "";
		switch(pl) {
		case P1: key = SHOW_P1_MODE; break;
		case P2: key = SHOW_P2_MODE; break;
		case P3: key = SHOW_P3_MODE; break;
		case P4: key = SHOW_P4_MODE; break;
		case P5: key = SHOW_P5_MODE; break;
		default: key = SHOW_P1_MODE; break;
		}		
		if(getPrefs().contains(key)) {
			return getPrefs().getBoolean(key);
		} else {			
			return true;
		}		
	}
	public static List<Priority_Level> getPriorityLevels() {
		List<Priority_Level>  levels = new ArrayList<Priority_Level>();
		if (getPriorityLevel(Priority_Level.P1)) {
			levels.add(Priority_Level.P1);
		}
		if (getPriorityLevel(Priority_Level.P2)) {
			levels.add(Priority_Level.P2);
		}
		if (getPriorityLevel(Priority_Level.P3)) {
			levels.add(Priority_Level.P3);
		}
		if (getPriorityLevel(Priority_Level.P4)) {
			levels.add(Priority_Level.P4);
		}
		if (getPriorityLevel(Priority_Level.P5)) {
			levels.add(Priority_Level.P5);
		}
		return levels;
	}
	public void setFilterCompleteMode(boolean isFilterOn) {
		getPrefs().setValue(FILTER_COMPLETE_MODE, isFilterOn);
	}
	
	public boolean isFilterCompleteMode() {
		if (getPrefs().contains(FILTER_COMPLETE_MODE)) {
			return getPrefs().getBoolean(FILTER_COMPLETE_MODE);
		} else {
			return false;
		}
	}
	
	public void setFilterInCompleteMode(boolean isFilterOn) {
		getPrefs().setValue(FILTER_INCOMPLETE_MODE, isFilterOn);
	}
	
	public boolean isFilterInCompleteMode() {
		if (getPrefs().contains(FILTER_INCOMPLETE_MODE)) {
			return getPrefs().getBoolean(FILTER_INCOMPLETE_MODE);
		} else {
			return false;
		}
	}
}

Back to the top