/sql-processor/src/main/java/org/sqlproc/engine/jmx/SqlDefaultFactoryMXBean.java

http://github.com/hudec/sql-processor · Java · 1034 lines · 572 code · 68 blank · 394 comment · 70 complexity · 341158921925363e481d0c9f23d0d459 MD5 · raw file

  1. package org.sqlproc.engine.jmx;
  2. import java.util.ArrayList;
  3. import java.util.Collections;
  4. import java.util.List;
  5. import java.util.Map;
  6. import java.util.Map.Entry;
  7. import java.util.concurrent.atomic.AtomicInteger;
  8. import java.util.concurrent.atomic.AtomicLong;
  9. import javax.xml.bind.JAXBException;
  10. import org.sqlproc.engine.SqlEngine;
  11. import org.sqlproc.engine.SqlEngineException;
  12. import org.sqlproc.engine.SqlEngineFactory;
  13. import org.sqlproc.engine.config.SqlEngineConfiguration;
  14. /**
  15. * The simplified JMX interface for the SQL Engine factory.
  16. *
  17. * <p>
  18. * The factory can be based on Spring DI framework for example.
  19. *
  20. * <p>
  21. * For more info please see the <a href="https://github.com/hudec/sql-processor/wiki">Tutorials</a>.
  22. *
  23. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  24. */
  25. public class SqlDefaultFactoryMXBean {
  26. /**
  27. * The SQL Engine factory instance
  28. */
  29. private SqlEngineFactory sqlEngineFactory;
  30. /**
  31. * In the case the SQL Query Engines are not initialized, a new static instances are established in the cache.
  32. *
  33. * @param names
  34. * the names of the required SQL Query Engines instances
  35. * @return the number of successfully initialized engines
  36. */
  37. public int initQueryEngines(String names) {
  38. int count = 0;
  39. StringBuilder errors = new StringBuilder();
  40. if ("*".equals(names)) {
  41. for (String name : sqlEngineFactory.getQueryNames()) {
  42. try {
  43. sqlEngineFactory.getCheckedQueryEngine(name);
  44. count++;
  45. } catch (SqlEngineException ex) {
  46. errors.append(ex.getMessage()).append("\n");
  47. }
  48. }
  49. } else {
  50. for (String name : names.split(",")) {
  51. try {
  52. sqlEngineFactory.getCheckedQueryEngine(name);
  53. count++;
  54. } catch (SqlEngineException ex) {
  55. errors.append(ex.getMessage()).append("\n");
  56. }
  57. }
  58. }
  59. if (errors.length() == 0) {
  60. storeConfiguration();
  61. return count;
  62. }
  63. throw new RuntimeException(errors.append("/nInitialized engines: ").append(count).toString());
  64. }
  65. /**
  66. * In the case the SQL CRUD Engines are not initialized, a new static instances are established in the cache.
  67. *
  68. * @param names
  69. * the names of the required SQL CRUD Engines instances
  70. * @return the number of successfully initialized engines
  71. */
  72. public int initCrudEngines(String names) {
  73. int count = 0;
  74. StringBuilder errors = new StringBuilder();
  75. if ("*".equals(names)) {
  76. for (String name : sqlEngineFactory.getCrudNames()) {
  77. try {
  78. sqlEngineFactory.getCheckedCrudEngine(name);
  79. count++;
  80. } catch (SqlEngineException ex) {
  81. errors.append(ex.getMessage()).append("\n");
  82. }
  83. }
  84. } else {
  85. for (String name : names.split(",")) {
  86. try {
  87. sqlEngineFactory.getCheckedCrudEngine(name);
  88. count++;
  89. } catch (SqlEngineException ex) {
  90. errors.append(ex.getMessage()).append("\n");
  91. }
  92. }
  93. }
  94. if (errors.length() == 0) {
  95. storeConfiguration();
  96. return count;
  97. }
  98. throw new RuntimeException(errors.append("/nInitialized engines: ").append(count).toString());
  99. }
  100. /**
  101. * In the case the SQL Procedure Engines are not initialized, a new static instances are established in the cache.
  102. *
  103. * @param names
  104. * the names of the required SQL Procedure Engines instances
  105. * @return the number of successfully initialized engines
  106. */
  107. public int initProcedureEngines(String names) {
  108. int count = 0;
  109. StringBuilder errors = new StringBuilder();
  110. if ("*".equals(names)) {
  111. for (String name : sqlEngineFactory.getProcedureNames()) {
  112. try {
  113. sqlEngineFactory.getCheckedProcedureEngine(name);
  114. count++;
  115. } catch (SqlEngineException ex) {
  116. errors.append(ex.getMessage()).append("\n");
  117. }
  118. }
  119. } else {
  120. for (String name : names.split(",")) {
  121. try {
  122. sqlEngineFactory.getCheckedProcedureEngine(name);
  123. count++;
  124. } catch (SqlEngineException ex) {
  125. errors.append(ex.getMessage()).append("\n");
  126. }
  127. }
  128. }
  129. if (errors.length() == 0) {
  130. storeConfiguration();
  131. return count;
  132. }
  133. throw new RuntimeException(errors.append("/nInitialized engines: ").append(count).toString());
  134. }
  135. /**
  136. * In the case any dynamic SQL Query Engine is in the cache, the static one is re-established.
  137. *
  138. * @param names
  139. * the names of the required SQL Query Engines instances
  140. * @return the number of successfully reset engines
  141. */
  142. public int resetQueryEngines(String names) {
  143. int count = 0;
  144. StringBuilder errors = new StringBuilder();
  145. for (String name : names.split(",")) {
  146. try {
  147. sqlEngineFactory.getCheckedStaticQueryEngine(name);
  148. count++;
  149. } catch (SqlEngineException ex) {
  150. errors.append(ex.getMessage()).append("\n");
  151. }
  152. }
  153. if (errors.length() == 0) {
  154. storeConfiguration();
  155. return count;
  156. }
  157. throw new RuntimeException(errors.append("/nReset engines: ").append(count).toString());
  158. }
  159. /**
  160. * In the case any dynamic SQL CRUD Engine is in the cache, the static one is re-established.
  161. *
  162. * @param names
  163. * the names of the required SQL CRUD Engines instances
  164. * @return the number of successfully reset engines
  165. */
  166. public int resetCrudEngines(String names) {
  167. int count = 0;
  168. StringBuilder errors = new StringBuilder();
  169. for (String name : names.split(",")) {
  170. try {
  171. sqlEngineFactory.getCheckedStaticCrudEngine(name);
  172. count++;
  173. } catch (SqlEngineException ex) {
  174. errors.append(ex.getMessage()).append("\n");
  175. }
  176. }
  177. if (errors.length() == 0) {
  178. storeConfiguration();
  179. return count;
  180. }
  181. throw new RuntimeException(errors.append("/nReset engines: ").append(count).toString());
  182. }
  183. /**
  184. * In the case a dynamic SQL Procedure Engine is in the cache, the static one is re-established.
  185. *
  186. * @param names
  187. * the names of the required SQL Procedure Engines instances
  188. * @return the number of successfully reset engines
  189. */
  190. public int resetProcedureEngines(String names) {
  191. int count = 0;
  192. StringBuilder errors = new StringBuilder();
  193. for (String name : names.split(",")) {
  194. try {
  195. sqlEngineFactory.getCheckedStaticProcedureEngine(name);
  196. count++;
  197. } catch (SqlEngineException ex) {
  198. errors.append(ex.getMessage()).append("\n");
  199. }
  200. }
  201. if (errors.length() == 0) {
  202. storeConfiguration();
  203. return count;
  204. }
  205. throw new RuntimeException(errors.append("/nReset engines: ").append(count).toString());
  206. }
  207. /**
  208. * A new dynamic SQL Query Engine instance is established in the cache. The static one is suppressed.
  209. *
  210. * @param name
  211. * the name of the required SQL Query Engine instance
  212. * @param sqlStatement
  213. * the new SQL statement, which is going to replace the original one
  214. */
  215. public void newQueryEngine(String name, String sqlStatement) throws SqlEngineException {
  216. try {
  217. sqlEngineFactory.getDynamicQueryEngine(name, sqlStatement);
  218. storeConfiguration();
  219. } catch (SqlEngineException ex) {
  220. throw new RuntimeException(ex.getMessage());
  221. }
  222. }
  223. /**
  224. * A new dynamic SQL CRUD Engine instance is established in the cache. The static one is suppressed.
  225. *
  226. * @param name
  227. * the name of the required SQL CRUD Engine instance
  228. * @param sqlStatement
  229. * the new SQL statement, which is going to replace the original one
  230. */
  231. public void newCrudEngine(String name, String sqlStatement) {
  232. try {
  233. sqlEngineFactory.getDynamicCrudEngine(name, sqlStatement);
  234. storeConfiguration();
  235. } catch (SqlEngineException ex) {
  236. throw new RuntimeException(ex.getMessage());
  237. }
  238. }
  239. /**
  240. * A new dynamic SQL Procedure Engine instance is established in the cache. The static one is suppressed.
  241. *
  242. * @param name
  243. * the name of the required SQL Procedure Engine instance
  244. * @param sqlStatement
  245. * the new SQL statement, which is going to replace the original one
  246. */
  247. public void newProcedureEngine(String name, String sqlStatement) {
  248. try {
  249. sqlEngineFactory.getDynamicProcedureEngine(name, sqlStatement);
  250. storeConfiguration();
  251. } catch (SqlEngineException ex) {
  252. throw new RuntimeException(ex.getMessage());
  253. }
  254. }
  255. /**
  256. * Returns the collection of names of all initialized/constructed static SQL Query Engine instances.
  257. *
  258. * @return The collection of all initialized static SQL Query Engine instances' names
  259. */
  260. public List<String> getQueryNames() {
  261. List<String> list = new ArrayList<String>();
  262. list.addAll(sqlEngineFactory.getQueryNames());
  263. Collections.sort(list);
  264. return list;
  265. }
  266. /**
  267. * Returns the collection of names of all initialized/constructed dynamic SQL Query Engine instances.
  268. *
  269. * @return The collection of all initialized dynamic SQL Query Engine instances' names
  270. */
  271. public List<String> getQueryDynamicNames() {
  272. List<String> list = new ArrayList<String>();
  273. list.addAll(sqlEngineFactory.getQueryDynamicNames());
  274. Collections.sort(list);
  275. return list;
  276. }
  277. /**
  278. * Returns the collection of names of all initialized/constructed static SQL CRUD Engine instances.
  279. *
  280. * @return The collection of all initialized static SQL CRUD Engine instances' names
  281. */
  282. public List<String> getCrudNames() {
  283. List<String> list = new ArrayList<String>();
  284. list.addAll(sqlEngineFactory.getCrudNames());
  285. Collections.sort(list);
  286. return list;
  287. }
  288. /**
  289. * Returns the collection of names of all initialized/constructed dynamic SQL CRUD Engine instances.
  290. *
  291. * @return The collection of all initialized dynamic SQL CRUD Engine instances' names
  292. */
  293. public List<String> getCrudDynamicNames() {
  294. List<String> list = new ArrayList<String>();
  295. list.addAll(sqlEngineFactory.getCrudDynamicNames());
  296. Collections.sort(list);
  297. return list;
  298. }
  299. /**
  300. * Returns the collection of names of all initialized/constructed static SQL ProcedureEngine instances.
  301. *
  302. * @return The collection of all initialized static SQL ProcedureEngine instances' names
  303. */
  304. public List<String> getProcedureNames() {
  305. List<String> list = new ArrayList<String>();
  306. list.addAll(sqlEngineFactory.getProcedureNames());
  307. Collections.sort(list);
  308. return list;
  309. }
  310. /**
  311. * Returns the collection of names of all initialized/constructed dynamic SQL ProcedureEngine instances.
  312. *
  313. * @return The collection of all initialized dynamic SQL ProcedureEngine instances' names
  314. */
  315. public List<String> getProcedureDynamicNames() {
  316. List<String> list = new ArrayList<String>();
  317. list.addAll(sqlEngineFactory.getProcedureDynamicNames());
  318. Collections.sort(list);
  319. return list;
  320. }
  321. /**
  322. * Returns the processing cache used for the selected SQL Query Engine
  323. *
  324. * @param name
  325. * the name of the required SQL Query Engine
  326. * @return the processing cache used for the selected SQL Query Engine or the error message
  327. */
  328. public List<String> getQueryEngineProcessingCache(String name) {
  329. StringBuilder errors = new StringBuilder();
  330. try {
  331. SqlEngine engine = sqlEngineFactory.getCheckedQueryEngine(name);
  332. List<String> list = new ArrayList<String>();
  333. list.addAll(engine.getProcessingCache().keySet());
  334. Collections.sort(list);
  335. return list;
  336. } catch (SqlEngineException ex) {
  337. errors.append(ex.getMessage()).append("\n");
  338. }
  339. throw new RuntimeException(errors.toString());
  340. }
  341. /**
  342. * Returns the processing cache used for the selected SQL CRUD Engine
  343. *
  344. * @param name
  345. * the name of the required SQL CRUD Engine
  346. * @return the processing cache used for the selected SQL CRUD Engine or the error message
  347. */
  348. public List<String> getCrudEngineProcessingCache(String name) {
  349. StringBuilder errors = new StringBuilder();
  350. try {
  351. SqlEngine engine = sqlEngineFactory.getCheckedCrudEngine(name);
  352. List<String> list = new ArrayList<String>();
  353. list.addAll(engine.getProcessingCache().keySet());
  354. Collections.sort(list);
  355. return list;
  356. } catch (SqlEngineException ex) {
  357. errors.append(ex.getMessage()).append("\n");
  358. }
  359. throw new RuntimeException(errors.toString());
  360. }
  361. /**
  362. * Returns the processing cache used for the selected SQL Procedure Engine
  363. *
  364. * @param name
  365. * the name of the required SQL Procedure Engine
  366. * @return the processing cache used for the selected SQL Procedure Engine or the error message
  367. */
  368. public List<String> getProcedureEngineProcessingCache(String name) {
  369. StringBuilder errors = new StringBuilder();
  370. try {
  371. SqlEngine engine = sqlEngineFactory.getCheckedProcedureEngine(name);
  372. List<String> list = new ArrayList<String>();
  373. list.addAll(engine.getProcessingCache().keySet());
  374. Collections.sort(list);
  375. return list;
  376. } catch (SqlEngineException ex) {
  377. errors.append(ex.getMessage()).append("\n");
  378. }
  379. throw new RuntimeException(errors.toString());
  380. }
  381. /**
  382. * Returns the processing cache statistics used for the selected SQL Query Engine
  383. *
  384. * @param name
  385. * the name of the required SQL Query Engine
  386. * @return the processing cache statistics used for the selected SQL Query Engine or the error message
  387. */
  388. public List<String> getQueryEngineProcessingCacheStatistics(String name) {
  389. StringBuilder errors = new StringBuilder();
  390. try {
  391. SqlEngine engine = sqlEngineFactory.getCheckedQueryEngine(name);
  392. List<String> list = new ArrayList<String>();
  393. for (Entry<String, AtomicLong> e : engine.getProcessingCacheStatistics().entrySet())
  394. list.add(e.getKey() + "=" + e.getValue().get());
  395. Collections.sort(list);
  396. return list;
  397. } catch (SqlEngineException ex) {
  398. errors.append(ex.getMessage()).append("\n");
  399. }
  400. throw new RuntimeException(errors.toString());
  401. }
  402. /**
  403. * Returns the processing cache statistics used for the selected SQL CRUD Engine
  404. *
  405. * @param name
  406. * the name of the required SQL CRUD Engine
  407. * @return the processing cache statistics used for the selected SQL CRUD Engine or the error message
  408. */
  409. public List<String> getCrudEngineProcessingCacheStatistics(String name) {
  410. StringBuilder errors = new StringBuilder();
  411. try {
  412. SqlEngine engine = sqlEngineFactory.getCheckedCrudEngine(name);
  413. List<String> list = new ArrayList<String>();
  414. for (Entry<String, AtomicLong> e : engine.getProcessingCacheStatistics().entrySet())
  415. list.add(e.getKey() + "=" + e.getValue().get());
  416. Collections.sort(list);
  417. return list;
  418. } catch (SqlEngineException ex) {
  419. errors.append(ex.getMessage()).append("\n");
  420. }
  421. throw new RuntimeException(errors.toString());
  422. }
  423. /**
  424. * Returns the processing cache statistics used for the selected SQL Procedure Engine
  425. *
  426. * @param name
  427. * the name of the required SQL Procedure Engine
  428. * @return the processing cache statistics used for the selected SQL Procedure Engine or the error message
  429. */
  430. public List<String> getProcedureEngineProcessingCacheStatistics(String name) {
  431. StringBuilder errors = new StringBuilder();
  432. try {
  433. SqlEngine engine = sqlEngineFactory.getCheckedProcedureEngine(name);
  434. List<String> list = new ArrayList<String>();
  435. for (Entry<String, AtomicLong> e : engine.getProcessingCacheStatistics().entrySet())
  436. list.add(e.getKey() + "=" + e.getValue().get());
  437. Collections.sort(list);
  438. return list;
  439. } catch (SqlEngineException ex) {
  440. errors.append(ex.getMessage()).append("\n");
  441. }
  442. throw new RuntimeException(errors.toString());
  443. }
  444. /**
  445. * Clears the processing cache used for the selected SQL Query Engine
  446. *
  447. * @param name
  448. * the name of the required SQL Query Engine
  449. * @param names
  450. * the names of the processing cache entries to be cleared
  451. * @return the number of successfully reset engine cache entries
  452. */
  453. public int resetQueryEngineProcessingCache(String name, String names) {
  454. int count = 0;
  455. StringBuilder errors = new StringBuilder();
  456. try {
  457. SqlEngine engine = sqlEngineFactory.getCheckedQueryEngine(name);
  458. for (String name0 : names.split(",")) {
  459. engine.getProcessingCache().remove(name0);
  460. engine.getProcessingCacheStatistics().remove(name0);
  461. count++;
  462. }
  463. } catch (SqlEngineException ex) {
  464. errors.append(ex.getMessage()).append("\n");
  465. }
  466. if (errors.length() == 0)
  467. return count;
  468. throw new RuntimeException(errors.append("/nReset engine cache: ").append(count).toString());
  469. }
  470. /**
  471. * Clears the processing cache used for the selected SQL CRUD Engine
  472. *
  473. * @param name
  474. * the name of the required SQL CRUD Engine
  475. * @param names
  476. * the names of the processing cache entries to be cleared
  477. * @return the number of successfully reset engine cache entries
  478. */
  479. public int resetCrudEngineProcessingCache(String name, String names) {
  480. int count = 0;
  481. StringBuilder errors = new StringBuilder();
  482. try {
  483. SqlEngine engine = sqlEngineFactory.getCheckedCrudEngine(name);
  484. for (String name0 : names.split(",")) {
  485. engine.getProcessingCache().remove(name0);
  486. engine.getProcessingCacheStatistics().remove(name0);
  487. count++;
  488. }
  489. } catch (SqlEngineException ex) {
  490. errors.append(ex.getMessage()).append("\n");
  491. }
  492. if (errors.length() == 0)
  493. return count;
  494. throw new RuntimeException(errors.append("/nReset engine cache: ").append(count).toString());
  495. }
  496. /**
  497. * Clears the processing cache used for the selected SQL Procedure Engine
  498. *
  499. * @param name
  500. * the name of the required SQL Procedure Engine
  501. * @param names
  502. * the names of the processing cache entries to be cleared
  503. * @return the number of successfully reset engine cache entries
  504. */
  505. public int resetProcedureEngineProcessingCache(String name, String names) {
  506. int count = 0;
  507. StringBuilder errors = new StringBuilder();
  508. try {
  509. SqlEngine engine = sqlEngineFactory.getCheckedProcedureEngine(name);
  510. for (String name0 : names.split(",")) {
  511. engine.getProcessingCache().remove(name0);
  512. engine.getProcessingCacheStatistics().remove(name0);
  513. count++;
  514. }
  515. } catch (SqlEngineException ex) {
  516. errors.append(ex.getMessage()).append("\n");
  517. }
  518. if (errors.length() == 0)
  519. return count;
  520. throw new RuntimeException(errors.append("/nReset engine cache: ").append(count).toString());
  521. }
  522. /**
  523. * Returns the dynamic SQL Processor configuration ant checks it's not null
  524. *
  525. * @return the dynamic SQL Processor configuration
  526. */
  527. private SqlEngineConfiguration getConfiguration() {
  528. SqlEngineConfiguration configuration = sqlEngineFactory.getConfiguration();
  529. if (configuration == null)
  530. throw new IllegalArgumentException("The dynamic configation is null");
  531. return configuration;
  532. }
  533. /**
  534. * Returns the indicator to speed up the initialization process
  535. *
  536. * @return the indicator to speed up the initialization process
  537. */
  538. public boolean isLazyInit() {
  539. return sqlEngineFactory.isLazyInit();
  540. }
  541. /**
  542. * Sets the indicator to speed up the initialization process
  543. *
  544. * @param lazyInit
  545. * the indicator to speed up the initialization process
  546. */
  547. public void setLazyInit(boolean lazyInit) {
  548. getConfiguration().setLazyInit(lazyInit);
  549. storeConfiguration();
  550. }
  551. /**
  552. * Returns the number of threads used for asynchronous initialization
  553. *
  554. * @return the number of threads used for asynchronous initialization
  555. */
  556. public Integer getAsyncInitThreads() {
  557. return getConfiguration().getAsyncInitThreads();
  558. }
  559. /**
  560. * Sets the number of threads used for asynchronous initialization
  561. *
  562. * @param asyncInitThreads
  563. * the number of threads used for asynchronous initialization
  564. */
  565. public void setAsyncInitThreads(Integer asyncInitThreads) {
  566. getConfiguration().setAsyncInitThreads(asyncInitThreads);
  567. storeConfiguration();
  568. }
  569. /**
  570. * Returns the initialization threshold. The engines, which usage is at least this number should be initialized
  571. * directly
  572. *
  573. * @return the initialization threshold. The engines, which usage is at least this number should be initialized
  574. * directly
  575. */
  576. public Integer getInitTreshold() {
  577. return getConfiguration().getInitTreshold();
  578. }
  579. /**
  580. * Sets the initialization threshold. The engines, which usage is at least this number should be initialized
  581. * directly
  582. *
  583. * @param initTreshold
  584. * the initialization threshold. The engines, which usage is at least this number should be initialized
  585. * directly
  586. */
  587. public void setInitTreshold(Integer initTreshold) {
  588. getConfiguration().setInitTreshold(initTreshold);
  589. storeConfiguration();
  590. }
  591. /**
  592. * Returns the indicator that the most frequently used engines should be initialized preferentially
  593. *
  594. * @return the indicator that the most frequently used engines should be initialized preferentially
  595. */
  596. public Boolean getInitInUsageOrder() {
  597. return getConfiguration().getInitInUsageOrder();
  598. }
  599. /**
  600. * Sets the indicator that the most frequently used engines should be initialized preferentially
  601. *
  602. * @param initInUsageOrder
  603. * the indicator that the most frequently used engines should be initialized preferentially
  604. */
  605. public void setInitInUsageOrder(Boolean initInUsageOrder) {
  606. getConfiguration().setInitInUsageOrder(initInUsageOrder);
  607. storeConfiguration();
  608. }
  609. /**
  610. * Returns the flag indicating the asynchronous SQL Processor engines initialization has been finished.
  611. *
  612. * @return the flag indicating the asynchronous SQL Processor engines initialization has been finished
  613. */
  614. public Boolean isAsyncInitFinished() {
  615. return sqlEngineFactory.isAsyncInitFinished();
  616. }
  617. /**
  618. * Returns the result of engines initialization process. For every engine, for which there's error in the
  619. * initialization process there a error message. In the case there's no error, the result message is null.
  620. *
  621. * @return the result of engines initialization process
  622. */
  623. public String getEnginesInitErrors() {
  624. return sqlEngineFactory.getEnginesInitErrorsMsg();
  625. }
  626. /**
  627. * Loads the persisted configuration.
  628. */
  629. public void loadConfiguration() {
  630. try {
  631. getConfiguration().load();
  632. } catch (JAXBException e) {
  633. throw new RuntimeException(e.getMessage());
  634. }
  635. }
  636. /**
  637. * Persists the configuration into the external file.
  638. */
  639. public void storeConfiguration() {
  640. getConfiguration().store();
  641. }
  642. /**
  643. * Resets the state of the dynamic configuration instance.
  644. */
  645. public void clearConfiguration() {
  646. getConfiguration().clear();
  647. }
  648. /**
  649. * Reset the engines' usage counters.
  650. */
  651. public void clearConfigurationUsage() {
  652. getConfiguration().clearUsage();
  653. }
  654. /**
  655. * Converts list
  656. *
  657. * @param map
  658. * the input list
  659. * @return the output list
  660. */
  661. private List<String> toList(Map<String, Integer> map) {
  662. List<String> list = new ArrayList<String>();
  663. for (Entry<String, Integer> e : map.entrySet()) {
  664. list.add(e.getKey() + ":" + e.getValue());
  665. }
  666. return list;
  667. }
  668. /**
  669. * Returns the container of the Query Engines' names, which has to be initialized. This is called during The SQL
  670. * Processor initialization, so there's no need to handle concurrent changes.
  671. *
  672. * @return the container of the Query Engines' names, which has to be initialized
  673. */
  674. public List<String> getQueryEnginesToInit() {
  675. return toList(getConfiguration().getQueryEnginesToInit(getConfiguration().getInitTreshold()));
  676. }
  677. /**
  678. * Returns the container of the CRUD Engines' names, which has to be initialized. This is called during The SQL
  679. * Processor initialization, so there's no need to handle concurrent changes.
  680. *
  681. * @return the container of the CRUD Engines' names, which has to be initialized
  682. */
  683. public List<String> getCrudEnginesToInit() {
  684. return toList(getConfiguration().getCrudEnginesToInit(getConfiguration().getInitTreshold()));
  685. }
  686. /**
  687. * Returns the container of the Procedure Engines' names, which has to be initialized. This is called during The SQL
  688. * Processor initialization, so there's no need to handle concurrent changes.
  689. *
  690. * @return the container of the Procedure Engines' names, which has to be initialized
  691. */
  692. public List<String> getProcedureEnginesToInit() {
  693. return toList(getConfiguration().getProcedureEnginesToInit(getConfiguration().getInitTreshold()));
  694. }
  695. /**
  696. * Returns the Query Engine usage number.
  697. *
  698. * @param name
  699. * the name of the SQL Query Engine
  700. *
  701. * @return the Query Engine usage number
  702. */
  703. public int getQueryEngineUsage(String name) {
  704. AtomicInteger usage = getConfiguration().getQueryEngines().get(name);
  705. if (usage == null)
  706. return 0;
  707. return usage.get();
  708. }
  709. /**
  710. * Returns the CRUD Engine usage number.
  711. *
  712. * @param name
  713. * the name of the SQL CRUD Engine
  714. *
  715. * @return the CRUD Engine usage number
  716. */
  717. public int getCrudEngineUsage(String name) {
  718. AtomicInteger usage = getConfiguration().getCrudEngines().get(name);
  719. if (usage == null)
  720. return 0;
  721. return usage.get();
  722. }
  723. /**
  724. * Returns the Procedure Engine usage number.
  725. *
  726. * @param name
  727. * the name of the SQL Procedure Engine
  728. *
  729. * @return the Procedure Engine usage number
  730. */
  731. public int getProcedureEngineUsage(String name) {
  732. AtomicInteger usage = getConfiguration().getProcedureEngines().get(name);
  733. if (usage == null)
  734. return 0;
  735. return usage.get();
  736. }
  737. /**
  738. * Resets the Query Engine usage number.
  739. *
  740. * @param name
  741. * the name of the SQL Query Engine
  742. *
  743. * @return the Query Engine usage number
  744. */
  745. public int resetQueryEngineUsage(String name) {
  746. AtomicInteger usage = getConfiguration().getQueryEngines().get(name);
  747. if (usage == null)
  748. return 0;
  749. usage.set(0);
  750. storeConfiguration();
  751. return usage.get();
  752. }
  753. /**
  754. * Resets the CRUD Engine usage number.
  755. *
  756. * @param name
  757. * the name of the SQL CRUD Engine
  758. *
  759. * @return the CRUD Engine usage number
  760. */
  761. public int resetCrudEngineUsage(String name) {
  762. AtomicInteger usage = getConfiguration().getCrudEngines().get(name);
  763. if (usage == null)
  764. return 0;
  765. usage.set(0);
  766. storeConfiguration();
  767. return usage.get();
  768. }
  769. /**
  770. * Resets the Procedure Engine usage number.
  771. *
  772. * @param name
  773. * the name of the SQL Procedure Engine
  774. *
  775. * @return the Procedure Engine usage number
  776. */
  777. public int resetProcedureEngineUsage(String name) {
  778. AtomicInteger usage = getConfiguration().getProcedureEngines().get(name);
  779. if (usage == null)
  780. return 0;
  781. usage.set(0);
  782. storeConfiguration();
  783. return usage.get();
  784. }
  785. /**
  786. * Returns the indicator that the processing cache can be used
  787. *
  788. * @return the indicator that the processing cache can be used
  789. */
  790. public Boolean getUseProcessingCache() {
  791. return getConfiguration().getUseProcessingCache();
  792. }
  793. /**
  794. * Sets the indicator that the processing cache can be used
  795. *
  796. * @param useProcessingCache
  797. * the indicator that the processing cache can be used
  798. */
  799. public void setUseProcessingCache(Boolean useProcessingCache) {
  800. getConfiguration().setUseProcessingCache(useProcessingCache);
  801. storeConfiguration();
  802. }
  803. /**
  804. * Returns the indicator that the processing cache can be used dynamically
  805. *
  806. * @return the indicator that the processing cache can be used dynamically
  807. */
  808. public Boolean getUseDynamicProcessingCache() {
  809. return getConfiguration().getUseDynamicProcessingCache();
  810. }
  811. /**
  812. * Sets the indicator that the processing cache can be used dynamically
  813. *
  814. * @param useDynamicProcessingCache
  815. * the indicator that the processing cache can be used dynamically
  816. */
  817. public void setUseDynamicProcessingCache(Boolean useDynamicProcessingCache) {
  818. getConfiguration().setUseDynamicProcessingCache(useDynamicProcessingCache);
  819. storeConfiguration();
  820. }
  821. /**
  822. * Returns the list of engines, for which the processing cache can be used
  823. *
  824. * @return the list of engines, for which the processing cache can be used
  825. */
  826. public List<String> getDoProcessingCacheEngines() {
  827. ArrayList<String> list = new ArrayList<>();
  828. list.addAll(getConfiguration().getDoProcessingCacheEngines());
  829. return list;
  830. }
  831. /**
  832. * Updates the positive processing cache.
  833. *
  834. * @param names
  835. * the names of the required SQL Query Engines instances
  836. * @return the number of successfully engines added to positive processing cache
  837. */
  838. public int initDoProcessingCache(String names) {
  839. int count = 0;
  840. StringBuilder errors = new StringBuilder();
  841. for (String name : names.split(",")) {
  842. try {
  843. getConfiguration().getDoProcessingCacheEngines().add(name);
  844. count++;
  845. } catch (SqlEngineException ex) {
  846. errors.append(ex.getMessage()).append("\n");
  847. }
  848. }
  849. if (errors.length() == 0) {
  850. storeConfiguration();
  851. return count;
  852. }
  853. throw new RuntimeException(errors.append("/nEngines for processing cache: ").append(count).toString());
  854. }
  855. /**
  856. * Updates the positive processing cache.
  857. *
  858. * @param names
  859. * the names of the required SQL Query Engines instances to be removed
  860. * @return the number of successfully engines removed from positive processing cache
  861. */
  862. public int resetDoProcessingCache(String names) {
  863. int count = 0;
  864. StringBuilder errors = new StringBuilder();
  865. if ("*".equals(names)) {
  866. try {
  867. count = getConfiguration().getDoProcessingCacheEngines().size();
  868. getConfiguration().getDoProcessingCacheEngines().clear();
  869. count++;
  870. } catch (SqlEngineException ex) {
  871. errors.append(ex.getMessage()).append("\n");
  872. }
  873. } else {
  874. for (String name : names.split(",")) {
  875. try {
  876. getConfiguration().getDoProcessingCacheEngines().remove(name);
  877. count++;
  878. } catch (SqlEngineException ex) {
  879. errors.append(ex.getMessage()).append("\n");
  880. }
  881. }
  882. }
  883. if (errors.length() == 0) {
  884. storeConfiguration();
  885. return count;
  886. }
  887. throw new RuntimeException(errors.append("/nRemoved engines from processing cache: ").append(count).toString());
  888. }
  889. /**
  890. * Returns the list of engines, for which the processing cache can't be used
  891. *
  892. * @return the list of engines, for which the processing cache can't be used
  893. */
  894. public List<String> getDontProcessingCacheEngines() {
  895. ArrayList<String> list = new ArrayList<>();
  896. list.addAll(getConfiguration().getDontProcessingCacheEngines());
  897. return list;
  898. }
  899. /**
  900. * Updates the negative processing cache.
  901. *
  902. * @param names
  903. * the names of the required SQL Query Engines instances to be excluded
  904. * @return the number of successfully engines added to negative processing cache
  905. */
  906. public int initDontProcessingCache(String names) {
  907. int count = 0;
  908. StringBuilder errors = new StringBuilder();
  909. for (String name : names.split(",")) {
  910. try {
  911. getConfiguration().getDontProcessingCacheEngines().add(name);
  912. count++;
  913. } catch (SqlEngineException ex) {
  914. errors.append(ex.getMessage()).append("\n");
  915. }
  916. }
  917. if (errors.length() == 0) {
  918. storeConfiguration();
  919. return count;
  920. }
  921. throw new RuntimeException(errors.append("/nEngines not for processing cache: ").append(count).toString());
  922. }
  923. /**
  924. * Updates the negative processing cache.
  925. *
  926. * @param names
  927. * the names of the required SQL Query Engines instances to be reset
  928. * @return the number of successfully engines removed from negative processing cache
  929. */
  930. public int resetDontProcessingCache(String names) {
  931. int count = 0;
  932. StringBuilder errors = new StringBuilder();
  933. if ("*".equals(names)) {
  934. try {
  935. count = getConfiguration().getDontProcessingCacheEngines().size();
  936. getConfiguration().getDoProcessingCacheEngines().clear();
  937. count++;
  938. } catch (SqlEngineException ex) {
  939. errors.append(ex.getMessage()).append("\n");
  940. }
  941. } else {
  942. for (String name : names.split(",")) {
  943. try {
  944. getConfiguration().getDontProcessingCacheEngines().remove(name);
  945. count++;
  946. } catch (SqlEngineException ex) {
  947. errors.append(ex.getMessage()).append("\n");
  948. }
  949. }
  950. }
  951. if (errors.length() == 0) {
  952. storeConfiguration();
  953. return count;
  954. }
  955. throw new RuntimeException(errors.append("/nReset engines for processing cache: ").append(count).toString());
  956. }
  957. /**
  958. * Sets the SQL Engine factory instance
  959. *
  960. * @param sqlEngineFactory
  961. * the SQL Engine factory instance
  962. */
  963. public void setSqlEngineFactory(SqlEngineFactory sqlEngineFactory) {
  964. this.sqlEngineFactory = sqlEngineFactory;
  965. }
  966. }