org.wildfly.extension.camel.parser.CamelSubsystemParser Maven / Gradle / Ivy
/*
* #%L
* Wildfly Camel :: Subsystem
* %%
* Copyright (C) 2013 - 2014 RedHat
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package org.wildfly.extension.camel.parser;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ADD;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM;
import static org.jboss.as.controller.parsing.ParseUtils.missingRequired;
import static org.jboss.as.controller.parsing.ParseUtils.requireNoNamespaceAttribute;
import static org.jboss.as.controller.parsing.ParseUtils.unexpectedAttribute;
import static org.jboss.as.controller.parsing.ParseUtils.unexpectedElement;
import java.util.Collections;
import java.util.List;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
import org.jboss.dmr.ModelNode;
import org.jboss.staxmapper.XMLElementReader;
import org.jboss.staxmapper.XMLExtendedStreamReader;
/**
* Parse Camel subsystem configuration
*
* @author [email protected]
* @since 23-Aug-2013
*/
final class CamelSubsystemParser implements Namespace10, XMLStreamConstants, XMLElementReader> {
static XMLElementReader> INSTANCE = new CamelSubsystemParser();
// hide ctor
private CamelSubsystemParser() {
}
@Override
public void readElement(XMLExtendedStreamReader reader, List operations) throws XMLStreamException {
ModelNode address = new ModelNode();
address.add(SUBSYSTEM, CamelExtension.SUBSYSTEM_NAME);
address.protect();
ModelNode subsystemAdd = new ModelNode();
subsystemAdd.get(OP).set(ADD);
subsystemAdd.get(OP_ADDR).set(address);
operations.add(subsystemAdd);
while (reader.hasNext() && reader.nextTag() != END_ELEMENT) {
switch (Namespace.forUri(reader.getNamespaceURI())) {
case VERSION_1_0: {
final Element element = Element.forName(reader.getLocalName());
switch (element) {
case CAMEL_CONTEXT: {
parseCamelContext(reader, address, operations);
break;
}
default:
throw unexpectedElement(reader);
}
}
default:
continue;
}
}
}
private void parseCamelContext(XMLExtendedStreamReader reader, ModelNode address, List operations) throws XMLStreamException {
String contextName = null;
for (int i = 0; i < reader.getAttributeCount(); i++) {
requireNoNamespaceAttribute(reader, i);
final String attrValue = reader.getAttributeValue(i);
final Attribute attribute = Attribute.forName(reader.getAttributeLocalName(i));
switch (attribute) {
case ID: {
contextName = attrValue;
break;
}
default:
throw unexpectedAttribute(reader, i);
}
}
if (contextName == null) {
throw missingRequired(reader, Collections.singleton(Attribute.ID));
}
StringBuffer content = new StringBuffer();
while (reader.hasNext() && reader.next() != END_ELEMENT) {
switch (reader.getEventType()) {
case CHARACTERS:
case CDATA:
content.append(reader.getText());
break;
}
}
String contextContent = content.toString();
ModelNode propNode = new ModelNode();
propNode.get(OP).set(ADD);
propNode.get(OP_ADDR).set(address).add(ModelConstants.CONTEXT, contextName);
propNode.get(ModelConstants.VALUE).set(contextContent);
operations.add(propNode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy