/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.query.mapping.xml; import org.teiid.core.TeiidRuntimeException; import org.teiid.core.util.Assertion; import org.teiid.query.QueryPlugin; /** * A Mapping Node document object. */ public class MappingDocument extends MappingBaseNode { MappingBaseNode root; boolean formatted; String encoding; String name; public MappingDocument(boolean formatted) { this(MappingNodeConstants.Defaults.DEFAULT_DOCUMENT_ENCODING, formatted); } public MappingDocument(String encoding, boolean formatted) { if (encoding == null) { encoding = MappingNodeConstants.Defaults.DEFAULT_DOCUMENT_ENCODING; } setDocumentEncoding(encoding); setFormatted(formatted); } public void acceptVisitor(MappingVisitor visitor) { visitor.visit(this); } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getFullyQualifiedName() { return name; } public MappingBaseNode getRootNode() { return root; } /** * A tag root is the first visual node on the document. A document can contain a "source" node * at root, but what ever is the first maping element that is the tag root. * @return */ public MappingElement getTagRootElement() { if (this.root instanceof MappingSourceNode) { return (MappingElement)this.root.getNodeChildren().get(0); } return (MappingElement)this.root; } void setRoot(MappingBaseNode root) { if (root != null) { this.root = root; this.getChildren().clear(); this.addChild(root); } } public String getDocumentEncoding() { return this.encoding; } public boolean isFormatted() { return this.formatted; } public boolean isDocumentNode() { return true; } public void setDocumentEncoding(String encoding) { this.encoding = encoding; setProperty(MappingNodeConstants.Properties.DOCUMENT_ENCODING, this.encoding); } public void setFormatted(boolean formatted) { this.formatted = formatted; setProperty(MappingNodeConstants.Properties.FORMATTED_DOCUMENT, Boolean.valueOf(this.formatted)); } /** * Make sure the cardinality is set correctly */ private void fixCardinality(MappingElement root) { root.setMaxOccurrs(1); root.setMinOccurrs(1); } public MappingAllNode addAllNode(MappingAllNode elem) { throw new TeiidRuntimeException(QueryPlugin.Event.TEIID30452, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30452)); } public MappingChoiceNode addChoiceNode(MappingChoiceNode elem) { throw new TeiidRuntimeException(QueryPlugin.Event.TEIID30452, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30452)); } public MappingSequenceNode addSequenceNode(MappingSequenceNode elem) { throw new TeiidRuntimeException(QueryPlugin.Event.TEIID30452, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID30452)); } public MappingElement addChildElement(MappingElement elem) { Assertion.isNotNull(elem); fixCardinality(elem); setRoot(elem); return elem; } public MappingSourceNode addSourceNode(MappingSourceNode elem) { Assertion.isNotNull(elem); setRoot(elem); return elem; } /** * @see org.teiid.query.mapping.xml.MappingNode#clone() */ public MappingDocument clone() { MappingDocument clone = (MappingDocument) super.clone(); clone.root = (MappingBaseNode) clone.getChildren().iterator().next(); return clone; } }