blob: 79398b815c1f6a909d7cdda2dc3475faf91aa0cb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsp.ui.registry;
import java.util.Iterator;
import org.eclipse.jst.jsp.core.PageDirectiveAdapter;
import org.eclipse.jst.jsp.core.internal.java.IJSPTranslation;
import org.eclipse.jst.jsp.core.internal.java.JSPTranslationAdapterFactory;
import org.eclipse.jst.jsp.core.modelhandler.ModelHandlerForJSP;
import org.eclipse.jst.jsp.ui.internal.JSPUIPlugin;
import org.eclipse.ui.views.properties.IPropertySource;
import org.eclipse.wst.html.ui.views.contentoutline.JFaceNodeAdapterFactoryForHTML;
import org.eclipse.wst.sse.core.AdapterFactory;
import org.eclipse.wst.sse.core.IFactoryRegistry;
import org.eclipse.wst.sse.core.IStructuredModel;
import org.eclipse.wst.sse.core.PropagatingAdapter;
import org.eclipse.wst.sse.core.modelhandler.IDocumentTypeHandler;
import org.eclipse.wst.sse.ui.registry.AdapterFactoryProvider;
import org.eclipse.wst.sse.ui.registry.AdapterFactoryRegistry;
import org.eclipse.wst.sse.ui.registry.embedded.EmbeddedAdapterFactoryProvider;
import org.eclipse.wst.sse.ui.util.Assert;
import org.eclipse.wst.sse.ui.views.contentoutline.IJFaceNodeAdapter;
import org.eclipse.wst.xml.core.document.XMLDocument;
import org.eclipse.wst.xml.core.document.XMLModel;
import org.eclipse.wst.xml.ui.views.properties.XMLPropertySourceAdapterFactory;
/**
* @author pavery
*/
public class AdapterFactoryProviderForJSP implements AdapterFactoryProvider {
/*
* @see AdapterFactoryProvider#addAdapterFactories(IStructuredModel)
*/
public void addAdapterFactories(IStructuredModel structuredModel) {
// these are the main factories, on model's factory registry
addContentBasedFactories(structuredModel);
// -------
// Must update/add to propagating adapters here too
addPropagatingAdapters(structuredModel);
// -------
// Must update/add to "editor side" embedded adapters here too
addEmbeddedContentFactories(structuredModel);
}
protected void addContentBasedFactories(IStructuredModel structuredModel) {
IFactoryRegistry factoryRegistry = structuredModel.getFactoryRegistry();
Assert.isNotNull(factoryRegistry, "Program Error: client caller must ensure model has factory registry"); //$NON-NLS-1$
AdapterFactory factory = null;
// == this list came from the previous "HTML only" list
// factory = factoryRegistry.getFactoryFor(ContentAssistAdapter.class);
// if (factory == null) {
// factory = new HTMLContentAssistAdapterFactory(ContentAssistAdapter.class, false);
// factoryRegistry.addFactory(factory);
// }
// factory = factoryRegistry.getFactoryFor(ContentAssistAdapter.class);
// if (factory == null) {
// factory = new JSPContentAssistAdapterFactory();
// factoryRegistry.addFactory(factory);
// }
// factory = factoryRegistry.getFactoryFor(DoubleClickAdapter.class);
// if (factory == null) {
// factory = new DoubleClickAdapterFactory(DoubleClickAdapter.class, true);
// factoryRegistry.addFactory(factory);
// }
// // == New adapter factories for tagInfo
// factory = factoryRegistry.getFactoryFor(HoverHelpAdapter.class);
// if (factory == null) {
// factory = new JSPHoverHelpAdapterFactory(HoverHelpAdapter.class, true);
// factoryRegistry.addFactory(factory);
// }
// factory = factoryRegistry.getFactoryFor(TagInfoProviderAdapter.class);
// if (factory == null) {
// factory = new JSTagInfoProviderAdapterFactory(TagInfoProviderAdapter.class, true);
// factoryRegistry.addFactory(factory);
// }
// ==
// == this list came from the previous 'for both XML and HTML' list
factory = factoryRegistry.getFactoryFor(IPropertySource.class);
if (factory == null) {
factory = new XMLPropertySourceAdapterFactory();
factoryRegistry.addFactory(factory);
}
factory = factoryRegistry.getFactoryFor(IJFaceNodeAdapter.class);
if (factory == null) {
factory = new JFaceNodeAdapterFactoryForHTML(IJFaceNodeAdapter.class, true);
factoryRegistry.addFactory(factory);
}
factory = factoryRegistry.getFactoryFor(IJSPTranslation.class);
if (factory == null) {
factory = new JSPTranslationAdapterFactory();
factoryRegistry.addFactory(factory);
}
}
protected void addEmbeddedContentFactories(IStructuredModel structuredModel) {
if (structuredModel instanceof XMLModel) {
XMLModel xmlModel = (XMLModel) structuredModel;
XMLDocument document = xmlModel.getDocument();
PageDirectiveAdapter pageDirectiveAdapter = (PageDirectiveAdapter) document.getAdapterFor(PageDirectiveAdapter.class);
if (pageDirectiveAdapter != null) {
// made into registry mechanism
AdapterFactoryRegistry adapterRegistry = JSPUIPlugin.getDefault().getEmbeddedAdapterFactoryRegistry();
Iterator adapterList = adapterRegistry.getAdapterFactories();
// And all those appropriate for this particular type of content
while (adapterList.hasNext()) {
EmbeddedAdapterFactoryProvider provider = (EmbeddedAdapterFactoryProvider) adapterList.next();
if (provider.isFor(pageDirectiveAdapter.getEmbeddedType())) {
provider.addAdapterFactories(structuredModel);
}
}
}
}
}
protected void addPropagatingAdapters(IStructuredModel structuredModel) {
// if (structuredModel instanceof XMLModel) {
// AdapterFactory factory = null;
// XMLModel xmlModel = (XMLModel) structuredModel;
// XMLDocument document = xmlModel.getDocument();
// PropagatingAdapter propagatingAdapter = (PropagatingAdapter) document.getAdapterFor(PropagatingAdapter.class);
// if (propagatingAdapter != null) {
// DMW: 8/16/2002 removed since this one was no longer needed for page directive
// lanague. It might still be needed for script and meta languages?
// but even they were "commented out" in the JSPPageDirectiveLineStyleUpdaterFactory
// so not sure what the plan it there.
// factory = new JSPPageDirectiveLineStyleUpdaterFactory();
// propagatingAdapter.addAdaptOnCreateFactory(factory);
// propagatingAdapter.initializeForFactory(factory, document);
// }
// }
if (structuredModel instanceof XMLModel) {
// AdapterFactory factory = null;
XMLModel xmlModel = (XMLModel) structuredModel;
XMLDocument document = xmlModel.getDocument();
PropagatingAdapter propagatingAdapter = (PropagatingAdapter) document.getAdapterFor(PropagatingAdapter.class);
if (propagatingAdapter != null) {
// checking if we should bother adding this factory
// if the preference says not to check validity, we don't bother creating this factory
// to improve performance...
//if(structuredModel.getStructuredPreferenceStore().getPreferenceString(CommonPreferenceNames.EDITOR_VALIDATION_METHOD).equals(CommonPreferenceNames.EDITOR_VALIDATION_CONTENT_MODEL)) {
//factory = new ReconcilerAdapterFactoryForXML();
//propagatingAdapter.addAdaptOnCreateFactory(factory);
// (pa) perf:
//propagatingAdapter.initializeForFactory(factory, xmlModel.getDocument());
//}
}
}
}
/*
* @see AdapterFactoryProvider#isFor(ContentTypeDescription)
*/
public boolean isFor(IDocumentTypeHandler contentTypeDescription) {
return (contentTypeDescription instanceof ModelHandlerForJSP);
}
public void reinitializeFactories(IStructuredModel structuredModel) {
// assuming the original ones have been removed already
// from the page directives registry. The original ones
// are removed when the embeddedContentType is set.
addEmbeddedContentFactories(structuredModel);
}
}