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

com.speedment.runtime.core.component.sql.SqlStreamOptimizerInfo Maven / Gradle / Ivy

Go to download

A Speedment bundle that shades all dependencies into one jar. This is useful when deploying an application on a server.

The newest version!
/*
 *
 * Copyright (c) 2006-2019, Speedment, Inc. All Rights Reserved.
 *
 * 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.
 */
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.speedment.runtime.core.component.sql;

import com.speedment.runtime.core.db.DbmsType;
import com.speedment.runtime.core.internal.component.sql.SqlStreamOptimizerInfoImpl;
import com.speedment.runtime.field.Field;
import java.util.List;
import java.util.function.BiFunction;
import java.util.function.Function;
import java.util.function.ToLongBiFunction;

/**
 *
 * @author Per Minborg
 * @param  the entity type
 */
public interface SqlStreamOptimizerInfo {

    /**
     * Returns the DbmsType.
     *
     * @return the DbmsType
     */
    DbmsType getDbmsType();

    /**
     * Returns the SQL select statement.
     * 

* The initial value is "SELECT " + sqlColumnList + " FROM " + * sqlTableReference; * * @return the SQL select statement */ String getSqlSelect(); /** * Returns the SQL select count statement. *

* "SELECT COUNT(*) FROM " + sqlTableReference; * * @return the SQL select count statement */ String getSqlSelectCount(); /** * Returns a BiFunction that will read in the count long value from the * database. *

* E.g. getCounter.apply("select count(*) from user", emptyList())) * * @return a BiFunction that will read in the count long value from the * database */ ToLongBiFunction> getCounter(); /** * Returns a Function that will map a Field to a column name. * * @return a Function that will map a Field to a column name */ Function, String> getSqlColumnNamer(); /** * Returns a Function that will map a Field to a column class type. * * @return a Function that will map a Field to a column class type */ Function, Class> getSqlDatabaseTypeFunction(); static SqlStreamOptimizerInfo of( final DbmsType dbmsType, final String sqlSelect, final String sqlSelectCount, final ToLongBiFunction> counter, final Function, String> sqlColumnNamer, final Function, Class> sqlDatabaseTypeFunction ) { return new SqlStreamOptimizerInfoImpl<>( dbmsType, sqlSelect, sqlSelectCount, counter, sqlColumnNamer, sqlDatabaseTypeFunction ); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy