Package com.avaje.ebeaninternal.server.query

Source Code of com.avaje.ebeaninternal.server.query.CQueryRowCount

package com.avaje.ebeaninternal.server.query;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

import javax.persistence.PersistenceException;

import com.avaje.ebeaninternal.api.SpiQuery;
import com.avaje.ebeaninternal.api.SpiTransaction;
import com.avaje.ebeaninternal.server.core.OrmQueryRequest;
import com.avaje.ebeaninternal.server.core.SpiOrmQueryRequest;
import com.avaje.ebeaninternal.server.deploy.BeanDescriptor;
import com.avaje.ebeaninternal.server.type.DataBind;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Executes the select row count query.
*/
public class CQueryRowCount {

  private static final Logger logger = LoggerFactory.getLogger(CQueryRowCount.class);

  /**
   * The overall find request wrapper object.
   */
  private final OrmQueryRequest<?> request;

  private final BeanDescriptor<?> desc;

  private final SpiQuery<?> query;

  /**
   * Where clause predicates.
   */
  private final CQueryPredicates predicates;

  /**
   * The final sql that is generated.
   */
  private final String sql;

  /**
   * The resultSet that is read and converted to objects.
   */
  private ResultSet rset;

  /**
   * The statement used to create the resultSet.
   */
  private PreparedStatement pstmt;

  private String bindLog;

  private long startNano;
 
  private int executionTimeMicros;

  private int rowCount;
 
  /**
   * Create the Sql select based on the request.
   */
  public CQueryRowCount(OrmQueryRequest<?> request, CQueryPredicates predicates, String sql) {
    this.request = request;
    this.query = request.getQuery();
    this.sql = sql;

    query.setGeneratedSql(sql);

    this.desc = request.getBeanDescriptor();
    this.predicates = predicates;

  }
 
  /**
   * Return a summary description of this query.
   */
  public String getSummary() {
    StringBuilder sb = new StringBuilder();
      sb.append("FindRowCount exeMicros[").append(executionTimeMicros)
      .append("] rows[").append(rowCount)
      .append("] type[").append(desc.getFullName())
      .append("] predicates[").append(predicates.getLogWhereSql())
      .append("] bind[").append(bindLog).append("]");
   
    return sb.toString();   
  }

  /**
   * Return the bind log.
   */
  public String getBindLog() {
        return bindLog;
    }

    /**
   * Return the generated sql.
   */
  public String getGeneratedSql() {
    return sql;
  }
 
  public SpiOrmQueryRequest<?> getQueryRequest() {
    return request;
  }

  /**
   * Execute the query returning the row count.
   */
  public int findRowCount() throws SQLException {

    startNano = System.nanoTime();
    try {
     
      SpiTransaction t = request.getTransaction();
      Connection conn = t.getInternalConnection();
      pstmt = conn.prepareStatement(sql);
 
      if (query.getTimeout() > 0){
        pstmt.setQueryTimeout(query.getTimeout());
      }
 
      bindLog = predicates.bind(new DataBind(pstmt));
 
      rset = pstmt.executeQuery();
     
      if (!rset.next()){
        throw new PersistenceException("Expecting 1 row but got none?");
      }

      rowCount = rset.getInt(1);
     
      long exeNano = System.nanoTime() - startNano;
      executionTimeMicros = (int)exeNano/1000;
   
      return rowCount;
     
    } finally {
      close();
    }
  }

  /**
   * Close the resources.
   * <p>
   * The jdbc resultSet and statement need to be closed. Its important that
   * this method is called.
   * </p>
   */
  private void close() {
    try {
      if (rset != null) {
        rset.close();
        rset = null;
      }
    } catch (SQLException e) {
      logger.error(null, e);
    }
    try {
      if (pstmt != null) {
        pstmt.close();
        pstmt = null;
      }
    } catch (SQLException e) {
      logger.error(null, e);
    }
  }

 
}
TOP

Related Classes of com.avaje.ebeaninternal.server.query.CQueryRowCount

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.