blob: 1dea58d2dc1720edad81e0d7808d9ef3495c129f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 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.wst.wsdl.ui.internal.actions;
import org.eclipse.wst.wsdl.Definition;
import org.eclipse.wst.wsdl.ui.internal.WSDLEditorPlugin;
import org.eclipse.wst.wsdl.ui.internal.util.WSDLEditorUtil;
import org.eclipse.wst.wsdl.util.WSDLConstants;
import org.eclipse.wst.xml.core.document.IDOMNode;
import org.eclipse.wst.xml.core.internal.provisional.format.FormatProcessorXML;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class AddWSISchemaImportAction extends BaseNodeAction
{
protected Definition definition;
protected Element definitionElement;
protected String namespace;
protected String location;
protected String elementDeclarationNamespacePrefix;
public AddWSISchemaImportAction(Definition definition, String namespace, String location)
{
this.definition = definition;
this.namespace = namespace;
this.location = location;
definitionElement = WSDLEditorUtil.getInstance().getElementForObject(definition);
}
public Node getNode()
{
return definitionElement;
}
public String getUndoDescription()
{
return WSDLEditorPlugin.getWSDLString("_UI_ACTION_ADD_IMPORT");
}
protected Element getOrCreateTypesElement()
{
Element typesElement = null;
if (definition.getTypes() == null)
{
if (definitionElement != null)
{
AddElementAction addTypesAction = new AddElementAction("", "icons/xsd_obj.gif", definitionElement, definitionElement.getPrefix(), "types");
addTypesAction.setComputeTopLevelRefChild(true);
addTypesAction.run();
typesElement = addTypesAction.getNewElement();
format(typesElement);
}
}
else
{
typesElement = WSDLEditorUtil.getInstance().getElementForObject(definition.getTypes());
}
return typesElement;
}
protected Element getImportHolderElement(Element typesElement) {
Element importHolderElement = null;
NodeList nodeList = typesElement.getChildNodes();
for (int i = 0; i < nodeList.getLength(); i++)
{
Node node = nodeList.item(i);
if (node.getNodeType() == Node.ELEMENT_NODE)
{
Element element = (Element) node;
if ("schema".equals(element.getLocalName()) && element.getAttribute("targetNamespace") == null)
{
importHolderElement = element;
break;
}
}
}
return importHolderElement;
}
public Element getOrCreateImportHolderElement(Element typesElement)
{
Element importHolderElement = getImportHolderElement(typesElement);
if (importHolderElement == null)
{
AddElementAction addImportHolderAction = new AddElementAction("", "icons/xsd_obj.gif", typesElement, "xsd", "schema")
{
protected void addAttributes(Element newElement)
{
newElement.setAttribute("xmlns:xsd", WSDLConstants.XSD_NAMESPACE_URI);
}
};
addImportHolderAction.run();
importHolderElement = addImportHolderAction.getNewElement();
format(importHolderElement);
}
return importHolderElement;
}
// We don't want to add the import if it's already there
protected boolean importNotAlreadyExists() {
boolean notExists = true;
if (definition.getTypes() != null) {
Element typesElement = WSDLEditorUtil.getInstance().getElementForObject(definition.getTypes());
Element schemaElement = getImportHolderElement(typesElement);
if (schemaElement != null) {
// Collect children
Node node = schemaElement.getFirstChild();
java.util.Vector schemaChildren = new java.util.Vector();
if (node != null) {
Node child = node;
if (!(child instanceof org.eclipse.wst.xml.core.internal.document.TextImpl)) {
schemaChildren.addElement(child);
}
while (child.getNextSibling() != null) {
child = child.getNextSibling();
if (!(child instanceof org.eclipse.wst.xml.core.internal.document.TextImpl)) {
schemaChildren.addElement(child);
}
}
for (int index = 0; index < schemaChildren.size(); index++) {
Element schemaChild = (Element) schemaChildren.elementAt(index);
String schemaLocation = schemaChild.getAttribute("schemaLocation");
String schemaNamespace = schemaChild.getAttribute("namespace");
if (schemaLocation != null && namespace != null &&
schemaLocation.equals(location) && schemaNamespace.equals(namespace)) {
notExists = false;
break;
}
}
}
}
}
return notExists;
}
public void run()
{
if (definitionElement != null && importNotAlreadyExists())
{
beginRecording();
performAddElement();
endRecording();
}
}
public void performAddElement()
{
try
{
Element typesElement = getOrCreateTypesElement();
Element importHolderElement = getOrCreateImportHolderElement(typesElement);
AddElementAction addImportAction = new AddElementAction("", "icons/xsd_obj.gif", importHolderElement, importHolderElement.getPrefix(), "import")
{
protected void addAttributes(Element newElement)
{
newElement.setAttribute("namespace", namespace);
newElement.setAttribute("schemaLocation", location);
}
};
addImportAction.run();
Element newElement = addImportAction.getNewElement();
format(newElement);
}
catch (Exception e)
{
}
}
public void setElementDeclarationNamespacePrefix(String nsPrefix)
{
this.elementDeclarationNamespacePrefix = nsPrefix;
}
protected static void format(Node parentNode)
{
if (parentNode instanceof IDOMNode)
{
// format selected node
FormatProcessorXML formatProcessorXML = new FormatProcessorXML();
formatProcessorXML.formatNode((IDOMNode)parentNode);
}
}
}