Class EnhancedPreparedStatementImpl

java.lang.Object
org.tquadrat.foundation.sql.internal.EnhancedPreparedStatementBase
org.tquadrat.foundation.sql.internal.EnhancedPreparedStatementImpl
All Implemented Interfaces:
AutoCloseable, EnhancedPreparedStatement

@ClassVersion(sourceVersion="$Id: EnhancedPreparedStatementImpl.java 1100 2024-02-16 23:33:45Z tquadrat $") @API(status=INTERNAL, since="0.1.0") public final class EnhancedPreparedStatementImpl extends EnhancedPreparedStatementBase
The implementation for EnhancedPreparedStatement.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: EnhancedPreparedStatementImpl.java 1100 2024-02-16 23:33:45Z tquadrat $
Since:
0.1.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.sql.internal.EnhancedPreparedStatementImpl"

UML Diagram for "org.tquadrat.foundation.sql.internal.EnhancedPreparedStatementImpl"

UML Diagram for "org.tquadrat.foundation.sql.internal.EnhancedPreparedStatementImpl"
  • Field Details

  • Constructor Details

    • EnhancedPreparedStatementImpl

      public EnhancedPreparedStatementImpl(String sourceStatement, PreparedStatement preparedStatement, Map<String,int[]> parameterIndex)
      Creates a new instance of EnhancedPreparedStatementImpl.
      Parameters:
      sourceStatement - The original SQL statement with the placeholders; mainly used for logging purposes.
      preparedStatement - The wrapped instance of PreparedStatement.
      parameterIndex - The mapping for the named placeholders to the position based placeholders.
  • Method Details

    • addStacktrace

      protected final boolean addStacktrace()
      Returns a flag that indicates whether a stacktrace should be added to the logging.
      Specified by:
      addStacktrace in class EnhancedPreparedStatementBase
      Returns:
      true if the stacktrace should be created and added, false otherwise.
    • convertIndexBufferToParameterIndex

      @API(status=INTERNAL, since="0.1.0") public static final Map<String,int[]> convertIndexBufferToParameterIndex(Map<String,? extends List<Integer>> indexBuffer)
      Converts the index buffer to a parameter index.
      Note:
      • The method is public to allow simpler Unit tests.
      Parameters:
      indexBuffer - The index buffer.
      Returns:
      The parameter index.
    • create

      @API(status=MAINTAINED, since="0.1.0") public static final EnhancedPreparedStatementImpl create(Connection connection, String sql) throws SQLException
      Creates a new instance of EnhancedPreparedStatementImpl.
      Parameters:
      connection - The connection to the database.
      sql - The text of the SQL statement with the placeholders.
      Returns:
      The new statement.
      Throws:
      SQLException - Unable to create an instance of an EnhancedPreparedStatement.
    • doLogging

      protected final void doLogging(String operation, StackTraceElement[] stackTrace)
      Composes the log information and sends it.
      Specified by:
      doLogging in class EnhancedPreparedStatementBase
      Parameters:
      operation - The operation that logs.
      stackTrace - The stack trace; can be null.
    • enableLogging

      public static final void enableLogging(EnhancedPreparedStatement.StatementLogger logger, BooleanSupplier logCheck, boolean addStacktrace)

      Enables the logging output for the EnhancedPreparedStatement instances.

      The logger method takes three arguments:

      1. operation – The name of the operation that logs.
      2. statement – The source of the prepared statement.
      3. values – A list of the values in the format
        <name> [<type>]:<value>
        A type of NULL indicates an unknown type; for large values (like Blob or Reader) only the class is given instead of the real value.
      4. stacktrace – The stacktrace; will be null if addStacktrace is false.

      The logCheck method returns true only when logging should be done. No information is collected while it returns false. As the method is called for nearly any operation, its implementation should be as efficient as possible.

      Parameters:
      logger - The method that takes the logging information.
      logCheck - The method that returns a flag whether log output is desired.
      addStacktrace - true if the stacktrace should be added to the log output.
    • isLoggingEnabled

      public final boolean isLoggingEnabled()
      Checks whether logging is currently enabled.
      Specified by:
      isLoggingEnabled in interface EnhancedPreparedStatement
      Specified by:
      isLoggingEnabled in class EnhancedPreparedStatementBase
      Returns:
      true if logging is enabled and log information have to be collected, false otherwise.
    • parseSQL

      @API(status=INTERNAL, since="0.1.0") public static final String parseSQL(String sql, Map<? super String,List<Integer>> indexBuffer)
      Parses the given SQL statement with the named placeholders and returns the text for a call to Connection.prepareStatement(String).
      Note:
      • The method is public to allow simpler Unit tests.
      Parameters:
      sql - The source text for the SQL statement.
      indexBuffer - The mapping from the names to the indexes.
      Returns:
      The target SQL text.