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

org.apache.camel.parser.RestDslParser 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.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.apache.camel.parser.helper.CamelJavaRestDslParserHelper;
import org.apache.camel.parser.model.RestConfigurationDetails;
import org.apache.camel.parser.model.RestServiceDetails;
import org.jboss.forge.roaster.model.source.JavaClassSource;
import org.jboss.forge.roaster.model.source.MethodSource;

import static org.apache.camel.parser.RouteBuilderParser.findAllConfigureMethods;

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

* This implementation is higher level details, and uses the lower level parser {@link CamelJavaRestDslParserHelper}. */ public final class RestDslParser { private RestDslParser() { } /** * Parses the java source class and build a rest configuration model of the discovered rest configurations in the * java source class. * * @param clazz the java source class * @param fullyQualifiedFileName the fully qualified source code file name * @return a list of rest configurations (often there is only one) */ public static List parseRestConfiguration( JavaClassSource clazz, String fullyQualifiedFileName, boolean includeInlinedRouteBuilders) { List> methods = findAllConfigureMethods(clazz, includeInlinedRouteBuilders); CamelJavaRestDslParserHelper parser = new CamelJavaRestDslParserHelper(); List list = new ArrayList<>(); for (MethodSource configureMethod : methods) { // there may be multiple route builder configure methods List details = parser.parseRestConfiguration(clazz, fullyQualifiedFileName, configureMethod); list.addAll(details); } // we end up parsing bottom->up so reverse list Collections.reverse(list); return list; } /** * Parses the java source class and build a rest service model of the discovered rest services in the java source * class. * * @param clazz the java source class * @param fullyQualifiedFileName the fully qualified source code file name * @return a list of rest services */ public static List parseRestService( JavaClassSource clazz, String fullyQualifiedFileName, boolean includeInlinedRouteBuilders) { List> methods = findAllConfigureMethods(clazz, includeInlinedRouteBuilders); CamelJavaRestDslParserHelper parser = new CamelJavaRestDslParserHelper(); List list = new ArrayList<>(); for (MethodSource configureMethod : methods) { // there may be multiple route builder configure methods List details = parser.parseRestService(clazz, fullyQualifiedFileName, configureMethod); list.addAll(details); } // we end up parsing bottom->up so reverse list Collections.reverse(list); return list; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy