blob: e33b5de12efa1bcd89c1c5960400d47c62b18def [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Alexander Fedorov <alexander.fedorov@arsysop.ru> - Bug 548799
*******************************************************************************/
package org.eclipse.ui.examples.templateeditor.editors;
import java.io.IOException;
import org.osgi.service.prefs.BackingStoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.preferences.InstanceScope;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.jface.resource.ResourceLocator;
import org.eclipse.jface.text.templates.ContextTypeRegistry;
import org.eclipse.jface.text.templates.persistence.TemplateStore;
import org.eclipse.ui.examples.javaeditor.JavaEditorExamplePlugin;
import org.eclipse.ui.examples.templateeditor.template.XMLContextType;
import org.eclipse.ui.editors.text.templates.ContributionContextTypeRegistry;
import org.eclipse.ui.editors.text.templates.ContributionTemplateStore;
/**
* The main plugin class to be used in the desktop.
*/
public class TemplateEditorUI {
/** Key to store custom templates. */
private static final String CUSTOM_TEMPLATES_KEY= "org.eclipse.ui.examples.templateeditor.customtemplates"; //$NON-NLS-1$
/** The shared instance. */
private static TemplateEditorUI fInstance;
/** The template store. */
private TemplateStore fStore;
/** The context type registry. */
private ContributionContextTypeRegistry fRegistry;
private TemplateEditorUI() {
}
/**
* Returns the shared instance.
*
* @return the shared instance
*/
public static TemplateEditorUI getDefault() {
if (fInstance == null)
fInstance= new TemplateEditorUI();
return fInstance;
}
/**
* Returns this plug-in's template store.
*
* @return the template store of this plug-in instance
*/
public TemplateStore getTemplateStore() {
if (fStore == null) {
fStore= new ContributionTemplateStore(getContextTypeRegistry(), JavaEditorExamplePlugin.getDefault().getPreferenceStore(), CUSTOM_TEMPLATES_KEY);
try {
fStore.load();
} catch (IOException e) {
JavaEditorExamplePlugin.getDefault().getLog().log(new Status(IStatus.ERROR, "org.eclipse.ui.examples.javaeditor", IStatus.OK, "", e)); //$NON-NLS-1$ //$NON-NLS-2$
}
}
return fStore;
}
/**
* Returns this plug-in's context type registry.
*
* @return the context type registry for this plug-in instance
*/
public ContextTypeRegistry getContextTypeRegistry() {
if (fRegistry == null) {
// create an configure the contexts available in the template editor
fRegistry= new ContributionContextTypeRegistry();
fRegistry.addContextType(XMLContextType.XML_CONTEXT_TYPE);
}
return fRegistry;
}
/* Forward plug-in methods to javaeditor example plugin default instance */
public ImageRegistry getImageRegistry() {
return JavaEditorExamplePlugin.getDefault().getImageRegistry();
}
public static ImageDescriptor imageDescriptorFromPlugin(String string, String default_image) {
return ResourceLocator.imageDescriptorFromBundle(string, default_image).orElse(null);
}
public IPreferenceStore getPreferenceStore() {
return JavaEditorExamplePlugin.getDefault().getPreferenceStore();
}
public void savePluginPreferences() {
try {
InstanceScope.INSTANCE.getNode(JavaEditorExamplePlugin.PLUGIN_ID).flush();
} catch (BackingStoreException e) {
JavaEditorExamplePlugin.log(e);
}
}
}