All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.parser.XmlRestDslParser Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.camel.parser;

import java.io.InputStream;
import java.util.Collections;
import java.util.List;

import org.w3c.dom.Document;

import org.apache.camel.parser.helper.CamelXmlRestDslParserHelper;
import org.apache.camel.parser.helper.XmlLineNumberParser;
import org.apache.camel.parser.model.RestConfigurationDetails;
import org.apache.camel.parser.model.RestServiceDetails;

/**
 * A Camel XML parser that parses Camel XML Rest DSL source code.
 * 

* This implementation is higher level details, and uses the lower level parser {@link CamelXmlRestDslParserHelper}. */ public final class XmlRestDslParser { private XmlRestDslParser() { } /** * Parses the XML file and build a rest configuration model of the discovered rest configurations in the XML source * file. * * @param xml the xml file as input stream * @param fullyQualifiedFileName the fully qualified source code file name * @return a list of rest configurations (often there is only one) */ public static List parseRestConfiguration( InputStream xml, String fullyQualifiedFileName) { // try parse it as dom Document dom = null; try { dom = XmlLineNumberParser.parseXml(xml); } catch (Exception e) { // ignore as the xml file may not be valid at this point } if (dom != null) { CamelXmlRestDslParserHelper parser = new CamelXmlRestDslParserHelper(); return parser.parseRestConfiguration(dom, fullyQualifiedFileName); } return Collections.emptyList(); } /** * Parses the java source class and build a rest service model of the discovered rest services in the java source * class. * * @param xml the xml file as input stream * @param fullyQualifiedFileName the fully qualified source code file name * @return a list of rest services */ public static List parseRestService(InputStream xml, String fullyQualifiedFileName) { // try parse it as dom Document dom = null; try { dom = XmlLineNumberParser.parseXml(xml); } catch (Exception e) { // ignore as the xml file may not be valid at this point } if (dom != null) { CamelXmlRestDslParserHelper parser = new CamelXmlRestDslParserHelper(); return parser.parseRestService(dom, fullyQualifiedFileName); } return Collections.emptyList(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy