/*
* #%L
* Wisdom-Framework
* %%
* Copyright (C) 2013 - 2014 Wisdom Framework
* %%
* Licensed 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.
* #L%
*/
package org.wisdom.database.jdbc.service;
import javax.sql.DataSource;
import java.sql.Connection;
import java.util.Map;
/**
* A service letting application to retrieve data sources and open connections on these data sources. It's a
* high-level API for getting JDBC connections.
*/
public interface DataSources {
/**
* The default data source name.
*/
public static final String DEFAULT_DATASOURCE = "default";
/**
* A property published with the Data Source services indicating the data source name.
*/
public static final String DATASOURCE_NAME_PROPERTY = "datasource.name";
/**
* Gets the data source with the given name.
* @param database the data source name
* @return the data source with the given name, {@literal null} if none match
*/
DataSource getDataSource(String database);
/**
* Gets the default data source if any.
* @return the data source with the name 'default', {@literal null} if not defined
*/
DataSource getDataSource();
/**
* Gets the set of data sources (name -> data source).
* @return the map of name -> data source, empty if none.
*/
Map<String, DataSource> getDataSources();
/**
* Gets a connection on the default data source.
* The auto-commit is enabled.
* @return the connection, {@literal null} if the default data source is not configured,
* or if the connection cannot be opened.
*/
Connection getConnection();
/**
* Gets a connection on the default data source.
* @param autocommit enables or disables the auto-commit.
* @return the connection, {@literal null} if the default data source is not configured,
* or if the connection cannot be opened.
*/
Connection getConnection(boolean autocommit);
/**
* Gets the connection on the given database.
* The auto-commit is enabled.
* @param database the data source name
* @return the connection, {@literal null} if the data source with the given name is not configured,
* or if the connection cannot be opened.
*/
Connection getConnection(String database);
/**
* Gets the connection on the given database.
* The auto-commit is enabled.
* @param database the data source name
* @param autocommit enables or disables the auto-commit.
* @return the connection, {@literal null} if the data source with the given name is not configured,
* or if the connection cannot be opened.
*/
Connection getConnection(String database, boolean autocommit);
}