/sql-processor/src/main/java/org/sqlproc/engine/impl/SqlStandardControl.java

http://github.com/hudec/sql-processor · Java · 569 lines · 202 code · 52 blank · 315 comment · 5 complexity · 0290e0a6ad84e6aeac058f986127f7c3 MD5 · raw file

  1. package org.sqlproc.engine.impl;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import java.util.Set;
  5. import org.sqlproc.engine.SqlControl;
  6. import org.sqlproc.engine.SqlCrudEngine;
  7. import org.sqlproc.engine.SqlOrder;
  8. import org.sqlproc.engine.SqlSession;
  9. /**
  10. * The compound parameters controlling the META SQL execution.
  11. *
  12. * <p>
  13. * For more info please see the <a href="https://github.com/hudec/sql-processor/wiki">Tutorials</a>.
  14. *
  15. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  16. */
  17. public class SqlStandardControl implements SqlControl {
  18. /**
  19. * The object used for the SQL statement dynamic input values. The class of this object is also named as the input
  20. * class or the dynamic parameters class. The exact class type isn't important, all the parameters settled into the
  21. * SQL prepared statement are picked up using the reflection API.
  22. */
  23. private Object staticInputValues;
  24. /**
  25. * The object used for the SQL update statement dynamic input values. This enables to split input values into value
  26. * used for WHERE fragment and for UPDATE fragment of the SQL statement. In the case this parameter is null, the
  27. * dynamicInputValues parameter for {@link SqlCrudEngine#update(SqlSession, Object, SqlControl)} holds all input
  28. * values.
  29. */
  30. private Object dynamicUpdateValues;
  31. /**
  32. * The max SQL execution time. This parameter can help to protect production system against ineffective SQL query
  33. * commands. The value is in milliseconds.
  34. */
  35. private Integer maxTimeout;
  36. /**
  37. * The first SQL execution output row to be returned in the case we need to skip some rows in the result set. The
  38. * primary usage is to support the pagination.
  39. */
  40. private Integer firstResult;
  41. /**
  42. * The max number of SQL execution output rows, which can be returned in the result list. The primary usage is to
  43. * support the pagination.
  44. */
  45. private Integer maxResults;
  46. /**
  47. * The ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule in
  48. * this chain should correspond to one META SQL ordering statement.
  49. */
  50. private SqlOrder order;
  51. /**
  52. * More result classes used for the return values, like the collections classes or the collections items. They are
  53. * used mainly for the one-to-one, one-to-many and many-to-many associations.
  54. */
  55. private Map<String, Class<?>> moreResultClasses;
  56. /**
  57. * The optional features. These features are defined in the statement execution scope. In the case of conflict with
  58. * the optional features defined in sthe statement/global scope, their priority is higher.
  59. */
  60. private Map<String, Object> features = new HashMap<String, Object>();
  61. /**
  62. * The unique ID of the executed statement based on input values combination. This ID can be used for the caching
  63. * purposes to optimize the
  64. * {@link org.sqlproc.engine.impl.SqlMetaStatement#process(org.sqlproc.engine.impl.SqlMetaStatement.Type, Object, SqlControl, org.sqlproc.engine.SqlEngine)}
  65. *
  66. * The generation of the final ANSI SQL statement from the META SQL statement is influenced by the input values
  67. * combination. This ID is an indicator of the uniqueness these input values. For more info please see the
  68. * tutorials.
  69. */
  70. private String processingId;
  71. /**
  72. * Returns the fetch size of SQL execution output rows, which can be returned in one SQL statement.
  73. */
  74. private Integer fetchSize;
  75. /**
  76. * The indicator, that an empty INSERT or UPDATE statement execution should be ignored (for example update statement
  77. * without any bounded input values).
  78. */
  79. private Boolean skipEmptyStatement;
  80. /**
  81. * The low level SQL callback handler. Enables the input values and the final SQL command modification before the
  82. * required database command execution. Enables the output values modification after the required database command
  83. * execution.
  84. */
  85. private LowLevelSqlCallback lowLevelSqlCallback;
  86. /**
  87. * The SQL command execution callback handler. Enables the input values and the final SQL command modification
  88. * before the required database command execution. Enables the output values modification after the required
  89. * database command execution.
  90. */
  91. private SqlExecutionCallback sqlExecutionCallback;
  92. /**
  93. * The name of the required SQL Query Engine instance. It can be used in the case the name is to be chosen in the
  94. * runtime.
  95. */
  96. private String sqlName;
  97. /**
  98. * Standard constructor.
  99. */
  100. public SqlStandardControl() {
  101. }
  102. /**
  103. * Merging constructor.
  104. */
  105. public SqlStandardControl(SqlControl sqlControl) {
  106. if (sqlControl != null) {
  107. setStaticInputValues(sqlControl.getStaticInputValues());
  108. setDynamicUpdateValues(sqlControl.getDynamicUpdateValues());
  109. setFirstResult(sqlControl.getFirstResult());
  110. setMaxResults(sqlControl.getMaxResults());
  111. setMaxTimeout(sqlControl.getMaxTimeout());
  112. setMoreResultClasses(sqlControl.getMoreResultClasses());
  113. setOrder(sqlControl.getOrder());
  114. setFeatures(sqlControl.getFeatures());
  115. setProcessingId(sqlControl.getProcessingId());
  116. setFetchSize(sqlControl.getFetchSize());
  117. setLowLevelSqlCallback(sqlControl.getLowLevelSqlCallback());
  118. setSqlExecutionCallback(sqlControl.getSqlExecutionCallback());
  119. }
  120. }
  121. /**
  122. * {@inheritDoc}
  123. */
  124. @Override
  125. public Object getStaticInputValues() {
  126. return staticInputValues;
  127. }
  128. /**
  129. * Sets the object used for the SQL statement static input values. The class of this object is also named as the
  130. * input class or the static parameters class. The exact class type isn't important, all the parameters injected
  131. * into the SQL query command are picked up using the reflection API. Compared to dynamicInputValues input
  132. * parameters, parameters in this class should't be produced by an end user to prevent SQL injection threat!
  133. *
  134. * @param staticInputValues
  135. * the object used for the SQL statement static input values
  136. * @return this instance
  137. */
  138. public SqlStandardControl setStaticInputValues(Object staticInputValues) {
  139. this.staticInputValues = staticInputValues;
  140. return this;
  141. }
  142. /**
  143. * {@inheritDoc}
  144. */
  145. @Override
  146. public Object getDynamicUpdateValues() {
  147. return dynamicUpdateValues;
  148. }
  149. /**
  150. * Sets the object used for the SQL update statement dynamic input values. This enables to split input values into
  151. * value used for WHERE fragment and for UPDATE fragment of the SQL statement. In the case this parameter is null,
  152. * the dynamicInputValues parameter for {@link SqlCrudEngine#update(SqlSession, Object, SqlControl)} holds all input
  153. * values.
  154. *
  155. * @param dynamicUpdateValues
  156. * the object used for the SQL update statement dynamic input values (UPDATE fragment)
  157. * @return this instance
  158. */
  159. public SqlStandardControl setDynamicUpdateValues(Object dynamicUpdateValues) {
  160. this.dynamicUpdateValues = dynamicUpdateValues;
  161. return this;
  162. }
  163. /**
  164. * {@inheritDoc}
  165. */
  166. @Override
  167. public Integer getMaxTimeout() {
  168. return maxTimeout;
  169. }
  170. /**
  171. * Sets the max SQL execution time. This parameter can help to protect production system against ineffective SQL
  172. * query commands. The value is in milliseconds.
  173. *
  174. * @param maxTimeout
  175. * the max SQL execution time
  176. * @return this instance
  177. */
  178. public SqlStandardControl setMaxTimeout(Integer maxTimeout) {
  179. this.maxTimeout = maxTimeout;
  180. return this;
  181. }
  182. /**
  183. * {@inheritDoc}
  184. */
  185. @Override
  186. public Integer getFirstResult() {
  187. return firstResult;
  188. }
  189. /**
  190. * Sets the first SQL execution output row to be returned in the case we need to skip some rows in the result set.
  191. * The primary usage is to support the pagination.
  192. *
  193. * @param firstResult
  194. * the first SQL execution output row
  195. * @return this instance
  196. */
  197. public SqlStandardControl setFirstResult(Integer firstResult) {
  198. this.firstResult = firstResult;
  199. return this;
  200. }
  201. /**
  202. * {@inheritDoc}
  203. */
  204. @Override
  205. public Integer getMaxResults() {
  206. return maxResults;
  207. }
  208. /**
  209. * Sets the max number of SQL execution output rows, which can be returned in the result list. The primary usage is
  210. * to support the pagination.
  211. *
  212. * @param maxResults
  213. * the max number of SQL execution output rows
  214. * @return this instance
  215. */
  216. public SqlStandardControl setMaxResults(Integer maxResults) {
  217. this.maxResults = maxResults;
  218. return this;
  219. }
  220. /**
  221. * {@inheritDoc}
  222. */
  223. @Override
  224. public SqlOrder getOrder() {
  225. return order;
  226. }
  227. /**
  228. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  229. * in this chain should correspond to one META SQL ordering statement.
  230. *
  231. * @param order
  232. * the ordering directive list
  233. * @return this instance
  234. */
  235. public SqlStandardControl setOrder(SqlOrder order) {
  236. this.order = order;
  237. return this;
  238. }
  239. /**
  240. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  241. * in this chain should correspond to one META SQL ordering statement.
  242. *
  243. * @param order
  244. * the ordering directive
  245. * @return this instance
  246. */
  247. public SqlStandardControl setAscOrder(int order) {
  248. this.order = SqlOrder.getAscOrder(order);
  249. return this;
  250. }
  251. /**
  252. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  253. * in this chain should correspond to one META SQL ordering statement.
  254. *
  255. * @param order
  256. * the ordering directive
  257. * @return this instance
  258. */
  259. public SqlStandardControl setAscOrderNullsLast(int order) {
  260. this.order = SqlOrder.getAscOrderNullsLast(order);
  261. return this;
  262. }
  263. /**
  264. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  265. * in this chain should correspond to one META SQL ordering statement.
  266. *
  267. * @param order
  268. * the ordering directive
  269. * @return this instance
  270. */
  271. public SqlStandardControl setAscOrder(String order) {
  272. this.order = SqlOrder.getAscOrder(order);
  273. return this;
  274. }
  275. /**
  276. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  277. * in this chain should correspond to one META SQL ordering statement.
  278. *
  279. * @param order
  280. * the ordering directive
  281. * @return this instance
  282. */
  283. public SqlStandardControl setAscOrderNullsLast(String order) {
  284. this.order = SqlOrder.getAscOrderNullsLast(order);
  285. return this;
  286. }
  287. /**
  288. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  289. * in this chain should correspond to one META SQL ordering statement.
  290. *
  291. * @param order
  292. * the ordering directive
  293. * @return this instance
  294. */
  295. public SqlStandardControl setDescOrder(int order) {
  296. this.order = SqlOrder.getDescOrder(order);
  297. return this;
  298. }
  299. /**
  300. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  301. * in this chain should correspond to one META SQL ordering statement.
  302. *
  303. * @param order
  304. * the ordering directive
  305. * @return this instance
  306. */
  307. public SqlStandardControl setDescOrderNullsFirst(int order) {
  308. this.order = SqlOrder.getDescOrderNullsFirst(order);
  309. return this;
  310. }
  311. /**
  312. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  313. * in this chain should correspond to one META SQL ordering statement.
  314. *
  315. * @param order
  316. * the ordering directive
  317. * @return this instance
  318. */
  319. public SqlStandardControl setDescOrder(String order) {
  320. this.order = SqlOrder.getDescOrder(order);
  321. return this;
  322. }
  323. /**
  324. * Sets the ordering directive list. Using the class SqlOrder the ordering rules can be chained. Every ordering rule
  325. * in this chain should correspond to one META SQL ordering statement.
  326. *
  327. * @param order
  328. * the ordering directive
  329. * @return this instance
  330. */
  331. public SqlStandardControl setDescOrderNullsFirst(String order) {
  332. this.order = SqlOrder.getDescOrderNullsFirst(order);
  333. return this;
  334. }
  335. /**
  336. * {@inheritDoc}
  337. */
  338. @Override
  339. public Map<String, Class<?>> getMoreResultClasses() {
  340. return moreResultClasses;
  341. }
  342. /**
  343. * Sets more result classes used for the return values, like the collections classes or the collections items. They
  344. * are used mainly for the one-to-one, one-to-many and many-to-many associations.
  345. *
  346. * @param moreResultClasses
  347. * more result classes used for the return values
  348. * @return this instance
  349. */
  350. public SqlStandardControl setMoreResultClasses(Map<String, Class<?>> moreResultClasses) {
  351. this.moreResultClasses = moreResultClasses;
  352. return this;
  353. }
  354. /**
  355. * {@inheritDoc}
  356. */
  357. @Override
  358. public Map<String, Object> getFeatures() {
  359. return features;
  360. }
  361. /**
  362. * Sets the optional features. These features are defined in the statement execution scope. In the case of conflict
  363. * with the optional features defined in sthe statement/global scope, their priority is higher.
  364. *
  365. * @param features
  366. * the optional features
  367. */
  368. public SqlStandardControl setFeatures(Map<String, Object> features) {
  369. this.features = features;
  370. return this;
  371. }
  372. /**
  373. * Sets the optional feature in the stament's execution scope.
  374. *
  375. * @param name
  376. * the name of the optional feature
  377. * @param value
  378. * the value of the optional feature
  379. */
  380. public SqlStandardControl setFeature(String name, Object value) {
  381. features.put(name, value);
  382. unsetFeatures(SqlUtils.oppositeFeatures(name));
  383. return this;
  384. }
  385. /**
  386. * Clears the optional features in the stament's or execution scope.
  387. *
  388. * @param names
  389. * the names of the optional features
  390. */
  391. public SqlStandardControl unsetFeatures(Set<String> names) {
  392. if (names != null) {
  393. for (String name : names)
  394. features.remove(name);
  395. }
  396. return this;
  397. }
  398. /**
  399. * {@inheritDoc}
  400. */
  401. @Override
  402. public String getProcessingId() {
  403. return processingId;
  404. }
  405. /**
  406. * Sets the unique ID of the executed statement based on input values combination. This ID can be used for the
  407. * caching purposes to optimize the
  408. * {@link org.sqlproc.engine.impl.SqlMetaStatement#process(org.sqlproc.engine.impl.SqlMetaStatement.Type, Object, SqlControl, org.sqlproc.engine.SqlEngine)}
  409. *
  410. * The generation of the final ANSI SQL statement from the META SQL statement is influenced by the input values.
  411. * This ID is an indicator of the uniqueness these input values. For more info please see the tutorials.
  412. *
  413. * @param processingId
  414. * the unique ID of the executed statement based on input values combination
  415. */
  416. public SqlStandardControl setProcessingId(String processingId) {
  417. this.processingId = processingId;
  418. return this;
  419. }
  420. /**
  421. * {@inheritDoc}
  422. */
  423. @Override
  424. public Integer getFetchSize() {
  425. return fetchSize;
  426. }
  427. /**
  428. * Sets the fetch size of SQL execution output rows, which can be returned in one SQL statement.
  429. *
  430. * @param fetchSize
  431. * the fetch size of SQL execution output rows
  432. * @return this instance
  433. */
  434. public SqlStandardControl setFetchSize(Integer fetchSize) {
  435. this.fetchSize = fetchSize;
  436. return this;
  437. }
  438. /**
  439. * {@inheritDoc}
  440. */
  441. @Override
  442. public Boolean getSkipEmptyStatement() {
  443. return skipEmptyStatement;
  444. }
  445. /**
  446. * Sets the indicator, that an empty INSERT or UPDATE statement execution should be ignored (for example update
  447. * statement without any bounded input values).
  448. *
  449. * @param skipEmptyStatement
  450. * the indicator, that an empty INSERT or UPDATE statement execution should be ignored
  451. */
  452. public void setSkipEmptyStatement(Boolean skipEmptyStatement) {
  453. this.skipEmptyStatement = skipEmptyStatement;
  454. }
  455. /**
  456. * {@inheritDoc}
  457. */
  458. public LowLevelSqlCallback getLowLevelSqlCallback() {
  459. return lowLevelSqlCallback;
  460. }
  461. /**
  462. * Sets the low level SQL callback handler.
  463. *
  464. * @param lowLevelSqlCallback
  465. * the low level SQL callback handler
  466. * @return this instance
  467. */
  468. public SqlStandardControl setLowLevelSqlCallback(LowLevelSqlCallback lowLevelSqlCallback) {
  469. this.lowLevelSqlCallback = lowLevelSqlCallback;
  470. return this;
  471. }
  472. /**
  473. * {@inheritDoc}
  474. */
  475. public SqlExecutionCallback getSqlExecutionCallback() {
  476. return sqlExecutionCallback;
  477. }
  478. /**
  479. * Sets the SQL command execution callback handler.
  480. *
  481. * @param lowLevelSqlCallback
  482. * the SQL command execution callback handler
  483. * @return this instance
  484. */
  485. public SqlStandardControl setSqlExecutionCallback(SqlExecutionCallback sqlExecutionCallback) {
  486. this.sqlExecutionCallback = sqlExecutionCallback;
  487. return this;
  488. }
  489. /**
  490. * {@inheritDoc}
  491. */
  492. public String getSqlName() {
  493. return sqlName;
  494. }
  495. /**
  496. * Sets the name of the required SQL Query Engine instance
  497. *
  498. * @param sqlName
  499. * the name of the required SQL Query Engine instance
  500. * @return this instance
  501. */
  502. public SqlStandardControl setSqlName(String sqlName) {
  503. this.sqlName = sqlName;
  504. return this;
  505. }
  506. /**
  507. * {@inheritDoc}
  508. */
  509. @Override
  510. public String toString() {
  511. return "SqlStandardControl [staticInputValues=" + staticInputValues + ", dynamicUpdateValues="
  512. + dynamicUpdateValues + ", maxTimeout=" + maxTimeout + ", firstResult=" + firstResult + ", maxResults="
  513. + maxResults + ", order=" + order + ", moreResultClasses=" + moreResultClasses + ", features="
  514. + features + ", processingId=" + processingId + ", fetchSize=" + fetchSize + ", skipEmptyStatement="
  515. + skipEmptyStatement + ", sqlName=" + sqlName + "]";
  516. }
  517. }