org.apache.camel.component.jooq.JooqEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-jooq Show documentation
Show all versions of camel-jooq Show documentation
The jooq component enables you to store and retrieve entities from databases using JOOQ
/*
* 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.component.jooq;
import org.apache.camel.Category;
import org.apache.camel.Consumer;
import org.apache.camel.Exchange;
import org.apache.camel.Expression;
import org.apache.camel.NoTypeConversionAvailableException;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.spi.UriEndpoint;
import org.apache.camel.spi.UriParam;
import org.apache.camel.support.ScheduledPollEndpoint;
import org.jooq.Query;
import org.jooq.ResultQuery;
/**
* Store and retrieve Java objects from an SQL database using JOOQ.
*/
@UriEndpoint(firstVersion = "3.0.0", scheme = "jooq", syntax = "jooq:entityType", title = "JOOQ",
category = { Category.DATABASE, Category.SQL })
public class JooqEndpoint extends ScheduledPollEndpoint {
private Expression producerExpression;
@UriParam
private JooqConfiguration configuration;
public JooqEndpoint(String uri, String remaining, JooqComponent component, JooqConfiguration configuration) {
super(uri, component);
this.configuration = configuration;
}
@Override
public Producer createProducer() {
return new JooqProducer(this, getProducerExpression());
}
public JooqConfiguration getConfiguration() {
return configuration;
}
public void setConfiguration(JooqConfiguration configuration) {
this.configuration = configuration;
}
public Expression getProducerExpression() {
if (producerExpression == null) {
producerExpression = createProducerExpression();
}
return producerExpression;
}
protected Expression createProducerExpression() {
final Class> type;
switch (configuration.getOperation()) {
case NONE:
type = configuration.getEntityType();
break;
case EXECUTE:
type = Query.class;
break;
case FETCH:
type = ResultQuery.class;
break;
default:
throw new UnsupportedOperationException("Operation: " + configuration.getOperation());
}
return new Expression() {
public Object evaluate(Exchange exchange, Class asType) {
Object answer = exchange.getIn().getBody(type);
if (answer == null) {
Object defaultValue = exchange.getIn().getBody();
if (defaultValue != null) {
throw RuntimeCamelException
.wrapRuntimeCamelException(new NoTypeConversionAvailableException(defaultValue, type));
}
answer = exchange.getContext().getInjector().newInstance(type);
}
return answer;
}
};
}
@Override
public Consumer createConsumer(Processor processor) throws Exception {
JooqConsumer consumer = new JooqConsumer(this, processor);
configureConsumer(consumer);
return consumer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy