/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* 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:
* Bruno Medeiros - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui;
import melnorme.lang.ide.ui.LangUIPlugin;
import melnorme.utilbox.misc.MiscUtil;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.osgi.framework.BundleContext;
import com.googlecode.goclipse.core.operations.GoToolManager;
import com.googlecode.goclipse.core.operations.IGoOperationsListener;
import com.googlecode.goclipse.core.tools.GocodeServerManager;
import com.googlecode.goclipse.ui.actions.StartGocodeServerOperation;
public class GoUIPlugin extends LangUIPlugin {
protected static GocodeServerManager gocodeServerManager = new GocodeServerManager();
protected IGoOperationsListener operationsListener;
@Override
protected void doCustomStart_finalStage() {
operationsListener = new GoOperationsConsoleListener();
GoToolManager.getDefault().addListener(operationsListener);
super.doCustomStart_finalStage();
}
@Override
protected void doInitializeAfterLoad(IProgressMonitor monitor) throws CoreException {
}
public static GocodeServerManager prepareGocodeManager_inUI() {
// This must run from UI thread, so that we can report errors if startup fails
new StartGocodeServerOperation(gocodeServerManager).executeAndHandle();
return gocodeServerManager;
}
@Override
protected void doCustomStop(BundleContext context) {
MiscUtil.dispose(gocodeServerManager);
gocodeServerManager = null;
GoToolManager.getDefault().removeListener(operationsListener);
}
}