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

org.apache.camel.component.jooq.JooqProducer Maven / Gradle / Ivy

Go to download

The jooq component enables you to store and retrieve entities from databases using JOOQ

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.component.jooq;

import org.apache.camel.Exchange;
import org.apache.camel.Expression;
import org.apache.camel.Message;
import org.apache.camel.support.DefaultProducer;
import org.apache.camel.util.ObjectHelper;
import org.jooq.Configuration;
import org.jooq.DSLContext;
import org.jooq.Query;
import org.jooq.Result;
import org.jooq.ResultQuery;
import org.jooq.UpdatableRecord;
import org.jooq.impl.DSL;

public class JooqProducer extends DefaultProducer {

    private final Expression expression;
    private JooqEndpoint endpoint;

    public JooqProducer(JooqEndpoint endpoint, Expression expression) {
        super(endpoint);
        this.expression = expression;
        this.endpoint = endpoint;
    }

    @Override
    public void process(Exchange exchange) {
        JooqConfiguration configuration = endpoint.getConfiguration();
        Configuration dbConfig = configuration.getDatabaseConfiguration();
        JooqOperation operation = configuration.getOperation();
        String querySQL = configuration.getQuery();

        switch (operation) {
            case EXECUTE:
                if (ObjectHelper.isEmpty(querySQL)) {
                    Query query = expression.evaluate(exchange, Query.class);

                    query.attach(dbConfig);
                    query.execute();
                } else {
                    DSLContext context = DSL.using(dbConfig);
                    context.execute(querySQL);
                }

                break;
            case FETCH:
                Result result;
                if (ObjectHelper.isEmpty(querySQL)) {
                    ResultQuery resultQuery = expression.evaluate(exchange, ResultQuery.class);
                    resultQuery.attach(dbConfig);
                    result = resultQuery.fetch();
                } else {
                    DSLContext context = DSL.using(dbConfig);
                    result = context.fetch(querySQL);
                }

                Message target = exchange.getPattern().isOutCapable() ? exchange.getOut() : exchange.getIn();
                target.setBody(result);
                break;
            case NONE:
                DSLContext context = DSL.using(dbConfig);
                final UpdatableRecord entity = expression.evaluate(exchange, UpdatableRecord.class);
                context.batchStore(entity).execute();
                break;
            default:
                throw new IllegalArgumentException("Wrong operation: " + operation);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy