/sql-processor/src/main/java/org/sqlproc/engine/SqlControl.java

http://github.com/hudec/sql-processor · Java · 177 lines · 26 code · 20 blank · 131 comment · 0 complexity · 1d6edd5ab99b708ce9d8466c52c16855 MD5 · raw file

  1. package org.sqlproc.engine;
  2. import java.util.Map;
  3. /**
  4. * The compound parameters controlling the META SQL execution.
  5. *
  6. * <p>
  7. * For more info please see the <a href="https://github.com/hudec/sql-processor/wiki">Tutorials</a>.
  8. *
  9. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  10. */
  11. public interface SqlControl {
  12. /**
  13. * Returns the object used for the SQL statement static input values. The class of this object is also named as the
  14. * input class or the static parameters class. The exact class type isn't important, all the parameters injected
  15. * into the SQL query command are picked up using the reflection API. Compared to dynamicInputValues input
  16. * parameters, parameters in this class should't be produced by an end user to prevent SQL injection threat!
  17. *
  18. * @return the object used for the SQL statement static input values
  19. */
  20. public Object getStaticInputValues();
  21. /**
  22. * The object used for the SQL update statement dynamic input values. This enables to split input values into value
  23. * used for WHERE fragment and for UPDATE fragment of the SQL statement. In the case this parameter is null, the
  24. * dynamicInputValues parameter for {@link SqlCrudEngine#update(SqlSession, Object, SqlControl)} holds all input
  25. * values.
  26. *
  27. * @return the object used for the SQL update statement dynamic input values (UPDATE fragment)
  28. */
  29. public Object getDynamicUpdateValues();
  30. /**
  31. * Returns the max SQL execution time. This parameter can help to protect production system against ineffective SQL
  32. * query commands. The value is in milliseconds.
  33. *
  34. * @return the max SQL execution time
  35. */
  36. public Integer getMaxTimeout();
  37. /**
  38. * Returns the first SQL execution output row to be returned in the case we need to skip some rows in the result
  39. * set. The primary usage is to support the pagination.
  40. *
  41. * @return the first SQL execution output row
  42. */
  43. public Integer getFirstResult();
  44. /**
  45. * Returns the max number of SQL execution output rows, which can be returned in the result list. The primary usage
  46. * is to support the pagination.
  47. *
  48. * @return the max number of SQL execution output rows
  49. */
  50. public Integer getMaxResults();
  51. /**
  52. * Returns the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering
  53. * rule in this chain should correspond to one META SQL ordering statement.
  54. *
  55. * @return the ordering directive list
  56. */
  57. public SqlOrder getOrder();
  58. /**
  59. * Returns more result classes used for the return values, like the collections classes or the collections items.
  60. * They are used mainly for the one-to-one, one-to-many and many-to-many associations.
  61. *
  62. * @return more result classes used for the return values
  63. */
  64. public Map<String, Class<?>> getMoreResultClasses();
  65. /**
  66. * Returns the optional features. These features are defined in the statement execution scope. In the case of
  67. * conflict with the optional features defined in sthe statement/global scope, their priority is higher.
  68. *
  69. * @return the optional features
  70. */
  71. public Map<String, Object> getFeatures();
  72. /**
  73. * Returns the unique ID of the executed statement based on the input values combination. This ID can be used for
  74. * the caching purposes to optimize the
  75. * {@link org.sqlproc.engine.impl.SqlMetaStatement#process(org.sqlproc.engine.impl.SqlMetaStatement.Type, Object, SqlControl, SqlEngine)}
  76. *
  77. * The generation of the final ANSI SQL statement from the META SQL statement is influenced by the input values.
  78. * This ID is an indicator of the uniqueness these input values. For more info please see the tutorials.
  79. *
  80. * @return the unique ID of the executed statement based on the input values combination
  81. */
  82. public String getProcessingId();
  83. /**
  84. * Returns the fetch size of SQL execution output rows, which can be returned in one SQL statement.
  85. *
  86. * @return the fetch size of SQL execution output rows
  87. */
  88. public Integer getFetchSize();
  89. /**
  90. * Returns the indicator, that an empty INSERT or UPDATE statement execution should be ignored (for example update
  91. * statement without any bounded input values).
  92. *
  93. * @return the indicator, that an empty INSERT or UPDATE statement execution should be ignored
  94. */
  95. public Boolean getSkipEmptyStatement();
  96. /**
  97. * The low level (before and after the SQL command execution) SQL callback.
  98. */
  99. public static interface LowLevelSqlCallback {
  100. /**
  101. * Enables the input values and the final SQL command modification before the required database command
  102. * execution.
  103. *
  104. * @param sqlCommand
  105. * the final SQL command, which can be modified
  106. * @param inputValues
  107. * the input values, which can be modified
  108. * @return in the case of not null value the modified SQL command
  109. */
  110. String handleInputValues(String sqlCommand, Map<String, Object> inputValues);
  111. /**
  112. * Enables the output values modification after the required database command execution.
  113. *
  114. * @param outputValues
  115. * the output values, which can be modified
  116. */
  117. void handleOutputValues(Map<String, Object> outputValues);
  118. }
  119. /**
  120. * Returns the low level SQL callback handler
  121. *
  122. * @return the low level SQL callback handler
  123. */
  124. public LowLevelSqlCallback getLowLevelSqlCallback();
  125. /**
  126. * The SQL command execution callback (before and after the SQL command execution).
  127. */
  128. public static interface SqlExecutionCallback {
  129. /**
  130. * Enables the input values and the final SQL command modification before the required database command
  131. * execution.
  132. *
  133. * @param inputValues
  134. * the input values, which can be modified
  135. */
  136. void handleInputValues(Object inputValues);
  137. /**
  138. * Enables the output values modification after the required database command execution.
  139. *
  140. * @param outputValues
  141. * the output values, which can be modified
  142. */
  143. void handleOutputValues(Object outputValues);
  144. }
  145. /**
  146. * Returns the SQL command execution callback handler
  147. *
  148. * @return the SQL command execution callback handler
  149. */
  150. public SqlExecutionCallback getSqlExecutionCallback();
  151. /**
  152. * Returns the name of the required SQL Query Engine instance
  153. *
  154. * @return the name of the required SQL Query Engine instance
  155. */
  156. public String getSqlName();
  157. }