blob: c5b11b8f05e4c8739c6250de75ca1d5c297553c1 [file] [log] [blame]
/*
* 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.k.loader.knative;
import java.util.Arrays;
import java.util.List;
import org.apache.camel.CamelContext;
import org.apache.camel.ExtendedCamelContext;
import org.apache.camel.RoutesBuilder;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.k.Runtime;
import org.apache.camel.k.Source;
import org.apache.camel.k.SourceLoader;
import org.apache.camel.k.annotation.Loader;
import org.apache.camel.k.support.RuntimeSupport;
import org.apache.camel.model.RouteDefinition;
import org.apache.camel.model.ToDefinition;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Loader({
"knative-source",
"knative-source-groovy",
"knative-source-java",
"knative-source-js",
"knative-source-kts",
"knative-source-xml",
"knative-source-yaml",
})
public class KnativeSourceLoader implements SourceLoader {
private static final Logger LOGGER = LoggerFactory.getLogger(KnativeSourceLoader.class);
private static final String LOADER_ID = "knative-source";
private static final String LANGUAGE_PREFIX = LOADER_ID + "-";
@Override
public List<String> getSupportedLanguages() {
return Arrays.asList(LANGUAGE_PREFIX + "yaml");
}
@Override
public void load(Runtime runtime, Source source) throws Exception {
if (LOADER_ID.equals(source.getLanguage())) {
throw new IllegalArgumentException("Cannot load source of type " + source.getLanguage());
}
String languageId = source.getLanguage();
if (languageId.startsWith(LANGUAGE_PREFIX)) {
languageId = languageId.substring(LANGUAGE_PREFIX.length());
}
final CamelContext camelContext = runtime.getCamelContext();
final SourceLoader loader = RuntimeSupport.lookupLoaderByLanguage(camelContext, languageId);
loader.load(new RuntimeWrapper(runtime), source);
}
private static class RuntimeWrapper implements Runtime {
private final Runtime runtime;
RuntimeWrapper(Runtime runtime) {
this.runtime = runtime;
}
@Override
public CamelContext getCamelContext() {
return runtime.getCamelContext();
}
@Override
public void addRoutes(RoutesBuilder builder) {
if (builder instanceof RouteBuilder) {
runtime.addRoutes(new RouteBuilderWrapper((RouteBuilder)builder));
} else {
runtime.addRoutes(builder);
}
}
}
private static class RouteBuilderWrapper extends RouteBuilder {
private final RouteBuilder builder;
RouteBuilderWrapper(RouteBuilder builder) {
this.builder = builder;
}
@Override
public void setContext(CamelContext context) {
builder.setContext(context);
}
@Override
public void configure() throws Exception {
}
@Override
public void addRoutesToCamelContext(CamelContext context) throws Exception {
//TODO: this is a little hack as then configureRoutes will
// be invoked twice: 1 by this hack and 1 by delegated
// builder. Maybe, we should add builder lifecycle events.
List<RouteDefinition> definitions = builder.configureRoutes(context).getRoutes();
if (definitions.size() == 1) {
final String sink = context.resolvePropertyPlaceholders("{{env:KNATIVE_SINK:sink}}");
final String uri = String.format("knative://endpoint/%s", sink);
final RouteDefinition definition = definitions.get(0);
LOGGER.info("Add sink:{} to route:{}", uri, definition.getId());
// assuming that route is linear like there's no content based routing
// or ant other EIP that would branch the flow
definition.getOutputs().add(new ToDefinition(uri));
} else {
LOGGER.warn("Cannot determine route to enrich. the knative enpoint need to explicitly be defined");
}
//TODO: this is needed for java language because by default
// camel main inspects route builders to detect beans
// to be registered to the camel registry but as the
// original builder is masked by this wrapping builder,
// beans can't be automatically discovered
context.adapt(ExtendedCamelContext.class)
.getBeanPostProcessor()
.postProcessBeforeInitialization(builder, builder.getClass().getName());
builder.addRoutesToCamelContext(context);
}
}
}