io.micronaut.configuration.jdbc.tomcat.metadata.TomcatDataSourcePoolMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-jdbc-tomcat Show documentation
Show all versions of micronaut-jdbc-tomcat Show documentation
Projects to support SQL Database access in Micronaut
/*
* Copyright 2017-2020 original authors
*
* 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
*
* https://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 io.micronaut.configuration.jdbc.tomcat.metadata;
import io.micronaut.jdbc.metadata.AbstractDataSourcePoolMetadata;
import org.apache.tomcat.jdbc.pool.ConnectionPool;
import org.apache.tomcat.jdbc.pool.DataSource;
import java.util.Optional;
/**
* {@link io.micronaut.jdbc.metadata.DataSourcePoolMetadata} for a Tomcat {@link org.apache.tomcat.jdbc.pool.DataSource}.
*
* @author Stephane Nicoll
* @author Christian Oestreich
* @since 1.0.0
*/
public class TomcatDataSourcePoolMetadata
extends AbstractDataSourcePoolMetadata {
private final ConnectionPool connectionPool;
/**
* Tomcat typed {@link io.micronaut.jdbc.metadata.DataSourcePoolMetadata} object.
*
* @param dataSource The datasource
*/
public TomcatDataSourcePoolMetadata(DataSource dataSource) {
super(dataSource);
this.connectionPool = dataSource.getPool();
}
@Override
public Integer getIdle() {
return Optional.ofNullable(connectionPool).map(ConnectionPool::getIdle).orElse(0);
}
@Override
public Integer getActive() {
return Optional.ofNullable(connectionPool).map(ConnectionPool::getActive).orElse(0);
}
/**
* Return the number of connections that have been borrowed from the
* data source or 0 if that information is not available.
*
* @return the number of borrowed connections or 0
*/
public final long getBorrowed() {
return Optional.ofNullable(connectionPool).map(ConnectionPool::getBorrowedCount).orElse(0L);
}
/**
* Return the number of connections that have been released from the
* data source or 0 if that information is not available.
*
* @return the number of borrowed connections or 0
*/
public final long getReleasedCount() {
return Optional.ofNullable(connectionPool).map(ConnectionPool::getReleasedCount).orElse(0L);
}
@Override
public Integer getMax() {
return getDataSource().getMaxActive();
}
@Override
public Integer getMin() {
return getDataSource().getMinIdle();
}
@Override
public String getValidationQuery() {
return getDataSource().getValidationQuery();
}
@Override
public Boolean getDefaultAutoCommit() {
return Optional.ofNullable(getDataSource().isDefaultAutoCommit()).orElse(false);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy