org.apache.camel.component.elsql.ElsqlComponent Maven / Gradle / Ivy
/*
* 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.elsql;
import java.util.Map;
import javax.sql.DataSource;
import com.opengamma.elsql.ElSqlConfig;
import org.apache.camel.Endpoint;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.annotations.Component;
import org.apache.camel.support.DefaultComponent;
import org.apache.camel.support.PropertyBindingSupport;
import org.apache.camel.util.PropertiesHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
@Component("elsql")
public class ElsqlComponent extends DefaultComponent {
private static final Logger LOG = LoggerFactory.getLogger(ElsqlComponent.class);
@Metadata(autowired = true)
private DataSource dataSource;
@Metadata
private ElSqlDatabaseVendor databaseVendor;
@Metadata(label = "advanced")
private ElSqlConfig elSqlConfig;
@Metadata
private String resourceUri;
public ElsqlComponent() {
}
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
String elsqlName = remaining;
String resUri = resourceUri;
String[] part = remaining.split(":");
if (part.length == 2) {
elsqlName = part[0];
resUri = part[1];
} else if (part.length > 2) {
throw new IllegalArgumentException("Invalid uri. Must by elsql:elsqlName:resourceUri, was: " + uri);
}
String onConsume = getAndRemoveParameter(parameters, "consumer.onConsume", String.class);
if (onConsume == null) {
onConsume = getAndRemoveParameter(parameters, "onConsume", String.class);
}
String onConsumeFailed = getAndRemoveParameter(parameters, "consumer.onConsumeFailed", String.class);
if (onConsumeFailed == null) {
onConsumeFailed = getAndRemoveParameter(parameters, "onConsumeFailed", String.class);
}
String onConsumeBatchComplete = getAndRemoveParameter(parameters, "consumer.onConsumeBatchComplete", String.class);
if (onConsumeBatchComplete == null) {
onConsumeBatchComplete = getAndRemoveParameter(parameters, "onConsumeBatchComplete", String.class);
}
// create endpoint
ElsqlEndpoint endpoint = new ElsqlEndpoint(uri, this, elsqlName, resUri);
endpoint.setElSqlConfig(elSqlConfig);
endpoint.setDatabaseVendor(databaseVendor);
endpoint.setOnConsume(onConsume);
endpoint.setOnConsumeFailed(onConsumeFailed);
endpoint.setOnConsumeBatchComplete(onConsumeBatchComplete);
// endpoint configured data source takes precedence
DataSource ds = dataSource;
if (endpoint.getDataSource() != null) {
ds = endpoint.getDataSource();
}
if (ds == null) {
throw new IllegalArgumentException("DataSource must be configured");
}
// create template
NamedParameterJdbcTemplate jdbcTemplate = new NamedParameterJdbcTemplate(ds);
Map templateOptions = PropertiesHelper.extractProperties(parameters, "template.");
PropertyBindingSupport.bindProperties(getCamelContext(), jdbcTemplate, templateOptions);
// set template on endpoint
endpoint.setNamedJdbcTemplate(jdbcTemplate);
endpoint.setDataSource(ds);
endpoint.setTemplateOptions(templateOptions);
return endpoint;
}
public ElSqlDatabaseVendor getDatabaseVendor() {
return databaseVendor;
}
/**
* To use a vendor specific {@link com.opengamma.elsql.ElSqlConfig}
*/
public void setDatabaseVendor(ElSqlDatabaseVendor databaseVendor) {
this.databaseVendor = databaseVendor;
}
/**
* Sets the DataSource to use to communicate with the database.
*/
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
public DataSource getDataSource() {
return dataSource;
}
/**
* Sets the DataSource to use to communicate with the database.
*/
public ElSqlConfig getElSqlConfig() {
return elSqlConfig;
}
/**
* To use a specific configured ElSqlConfig. It may be better to use the databaseVendor option instead.
*/
public void setElSqlConfig(ElSqlConfig elSqlConfig) {
this.elSqlConfig = elSqlConfig;
}
public String getResourceUri() {
return resourceUri;
}
/**
* The resource file which contains the elsql SQL statements to use. You can specify multiple resources separated by
* comma. The resources are loaded on the classpath by default, you can prefix with file: to load from file
* system. Notice you can set this option on the component and then you do not have to configure this on the
* endpoint.
*/
public void setResourceUri(String resourceUri) {
this.resourceUri = resourceUri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy