/sql-processor/src/main/java/org/sqlproc/engine/config/SqlEngineConfiguration.java

http://github.com/hudec/sql-processor · Java · 780 lines · 286 code · 66 blank · 428 comment · 28 complexity · 0970b7e1a8749eff5529935cac28dd20 MD5 · raw file

  1. package org.sqlproc.engine.config;
  2. import java.io.IOException;
  3. import java.util.ArrayList;
  4. import java.util.HashSet;
  5. import java.util.LinkedHashMap;
  6. import java.util.List;
  7. import java.util.Map;
  8. import java.util.Map.Entry;
  9. import java.util.Set;
  10. import java.util.TreeMap;
  11. import java.util.concurrent.ConcurrentHashMap;
  12. import java.util.concurrent.atomic.AtomicInteger;
  13. import javax.xml.bind.JAXBException;
  14. import org.slf4j.Logger;
  15. import org.slf4j.LoggerFactory;
  16. import org.sqlproc.engine.config.store.SqlEngineConfigurationStore;
  17. import org.sqlproc.engine.config.store.XmlEngineConfiguration;
  18. import org.sqlproc.engine.impl.SqlProcessResult;
  19. import org.sqlproc.engine.impl.config.store.SimpleEngineConfigurationStore;
  20. /**
  21. * The dynamic configuration of the SQL Processor.
  22. *
  23. * <p>
  24. * The primary goal of this configuration is the eager initialization of the selected SQL Engines. The overall
  25. * configuration can be also persisted using the sql-processor-spring.
  26. *
  27. * The configuration can be dynamically changed using the JMX interface
  28. * {@link org.sqlproc.engine.jmx.SqlDefaultFactoryMXBean}.
  29. *
  30. * <p>
  31. * For more info please see the <a href="https://github.com/hudec/sql-processor/wiki">Tutorials</a>.
  32. *
  33. * @author <a href="mailto:Vladimir.Hudec@gmail.com">Vladimir Hudec</a>
  34. */
  35. public class SqlEngineConfiguration {
  36. /**
  37. * The internal slf4j logger.
  38. */
  39. final Logger logger = LoggerFactory.getLogger(getClass());
  40. /**
  41. * The container of initialized Query Engines' names (static or dynamic ones) together with the number of their
  42. * usage.
  43. */
  44. private ConcurrentHashMap<String, AtomicInteger> queryEngines = new ConcurrentHashMap<String, AtomicInteger>();
  45. /**
  46. * The container of initialized CRUD Engines' names (static or dynamic ones) together with the number of their
  47. * usage.
  48. */
  49. private ConcurrentHashMap<String, AtomicInteger> crudEngines = new ConcurrentHashMap<String, AtomicInteger>();
  50. /**
  51. * The container of initialized Procedure Engines' names (static or dynamic ones) together with the number of their
  52. * usage.
  53. */
  54. private ConcurrentHashMap<String, AtomicInteger> procedureEngines = new ConcurrentHashMap<String, AtomicInteger>();
  55. /**
  56. * The container of initialized dynamic Query Engines' names together with their SQL statement.
  57. */
  58. private ConcurrentHashMap<String, String> dynamicQueryEngines = new ConcurrentHashMap<String, String>();
  59. /**
  60. * The container of initialized dynamic CRUD Engines' names together with their SQL statement.
  61. */
  62. private ConcurrentHashMap<String, String> dynamicCrudEngines = new ConcurrentHashMap<String, String>();
  63. /**
  64. * The container of initialized dynamic Procedure Engines' names together with their SQL statement.
  65. */
  66. private ConcurrentHashMap<String, String> dynamicProcedureEngines = new ConcurrentHashMap<String, String>();
  67. /**
  68. * This flag indicates to speed up the initialization process.
  69. */
  70. private Boolean lazyInit;
  71. /**
  72. * The number of threads used for asynchronous initialization.
  73. */
  74. private Integer asyncInitThreads;
  75. /**
  76. * The engines, which usage is at least this number should be initialized directly.
  77. */
  78. private Integer initTreshold;
  79. /**
  80. * The most frequently used engines should be initialized preferentially.
  81. */
  82. private Boolean initInUsageOrder;
  83. /**
  84. * After the engines instantiations the users should be cleared.
  85. */
  86. private Boolean initClearUsage;
  87. /**
  88. * The processing cache can be used for {@link SqlProcessResult} instances.
  89. */
  90. private Boolean useProcessingCache;
  91. /**
  92. * The processing cache can be used for {@link SqlProcessResult} instances dynamically.
  93. */
  94. private Boolean useDynamicProcessingCache;
  95. /**
  96. * Positive list of engines, for which the processing cache can be used.
  97. */
  98. private Set<String> doProcessingCacheEngines = new HashSet<String>();
  99. /**
  100. * Negative list of engines, for which the processing cache can be used.
  101. */
  102. private Set<String> dontProcessingCacheEngines = new HashSet<String>();
  103. /**
  104. * The store to persist this configuration;
  105. */
  106. private SqlEngineConfigurationStore store;
  107. /**
  108. * The default constructor.
  109. */
  110. public SqlEngineConfiguration() {
  111. }
  112. /**
  113. * The constructor takes data from the persisted state in external file.
  114. *
  115. * @param directory
  116. * the directory, where the persisted file is placed
  117. * @param fileName
  118. * the name of the persisted file
  119. * @throws IOException
  120. * in the case there's a I/O problem with the persisted file
  121. * @throws JAXBException
  122. * in the case there's a problem with JAXB deserialization
  123. */
  124. public SqlEngineConfiguration(String directory, String fileName) throws IOException, JAXBException {
  125. store = new SimpleEngineConfigurationStore(directory, fileName, XmlEngineConfiguration.class,
  126. XmlEngineConfiguration.EngineUsage.class, XmlEngineConfiguration.EngineSql.class);
  127. }
  128. /**
  129. * The constructor takes data from the persisted state in external file.
  130. *
  131. * @param store
  132. * the store to persist this configuration
  133. * @throws IOException
  134. * in the case there's a I/O problem with the persisted file
  135. * @throws JAXBException
  136. * in the case there's a problem with JAXB deserialization
  137. */
  138. public SqlEngineConfiguration(SqlEngineConfigurationStore store) {
  139. this.store = store;
  140. }
  141. /**
  142. * Loads the persisted configuration.
  143. *
  144. * @throws JAXBException
  145. */
  146. public void load() throws JAXBException {
  147. if (store != null) {
  148. logger.warn(">>> load");
  149. boolean ok = store.readConfig(this);
  150. logger.warn("=== load ok={}", ok);
  151. logger.warn("<<< load this={}", this);
  152. }
  153. }
  154. /**
  155. * Persist the configuration into the external file.
  156. */
  157. public void store() {
  158. if (store != null) {
  159. logger.warn(">>> store this={}", this);
  160. store.writeConfig(this);
  161. logger.warn("<<< store");
  162. }
  163. }
  164. /**
  165. * Reset the state of the dynamic configuration instance.
  166. */
  167. public void clear() {
  168. queryEngines = new ConcurrentHashMap<String, AtomicInteger>();
  169. crudEngines = new ConcurrentHashMap<String, AtomicInteger>();
  170. procedureEngines = new ConcurrentHashMap<String, AtomicInteger>();
  171. dynamicQueryEngines = new ConcurrentHashMap<String, String>();
  172. dynamicCrudEngines = new ConcurrentHashMap<String, String>();
  173. dynamicProcedureEngines = new ConcurrentHashMap<String, String>();
  174. lazyInit = null;
  175. asyncInitThreads = null;
  176. initTreshold = null;
  177. initInUsageOrder = null;
  178. initClearUsage = null;
  179. useProcessingCache = null;
  180. useDynamicProcessingCache = null;
  181. doProcessingCacheEngines = new HashSet<String>();
  182. dontProcessingCacheEngines = new HashSet<String>();
  183. }
  184. /**
  185. * Reset the engines' usage counters.
  186. */
  187. public void clearUsage() {
  188. queryEngines = new ConcurrentHashMap<String, AtomicInteger>();
  189. crudEngines = new ConcurrentHashMap<String, AtomicInteger>();
  190. procedureEngines = new ConcurrentHashMap<String, AtomicInteger>();
  191. }
  192. /**
  193. * Adds the SQL Engine to the container of initialized engines.
  194. *
  195. * @param name
  196. * the name of the SQL Engine
  197. * @param engines
  198. * the container of initialized engines
  199. * @return the actual number of the engine's usage
  200. */
  201. protected int addEngine(String name, ConcurrentHashMap<String, AtomicInteger> engines) {
  202. AtomicInteger counter = engines.get(name);
  203. if (counter == null)
  204. counter = engines.putIfAbsent(name, new AtomicInteger(1));
  205. if (counter == null)
  206. return 1;
  207. else
  208. return counter.addAndGet(1);
  209. }
  210. /**
  211. * Removes the SQL Engine from the container of initialized engines.
  212. *
  213. * @param name
  214. * the name of the SQL Engine
  215. * @param engines
  216. * the container of initialized engines
  217. * @return the actual number of the engine's usage
  218. */
  219. protected int removeEngine(String name, ConcurrentHashMap<String, AtomicInteger> engines) {
  220. AtomicInteger counter = engines.remove(name);
  221. return (counter == null) ? 0 : counter.get();
  222. }
  223. /**
  224. * Adds the Query Engine to the container of initialized engines.
  225. *
  226. * @param name
  227. * the name of the Query Engine
  228. * @return the actual number of the engine's usage
  229. */
  230. public int addQueryEngine(String name) {
  231. return addEngine(name, queryEngines);
  232. }
  233. /**
  234. * Adds the CRUD Engine to the container of initialized engines.
  235. *
  236. * @param name
  237. * the name of the CRUD Engine
  238. * @return the actual number of the engine's usage
  239. */
  240. public int addCrudEngine(String name) {
  241. return addEngine(name, crudEngines);
  242. }
  243. /**
  244. * Adds the Procedure Engine to the container of initialized engines.
  245. *
  246. * @param name
  247. * the name of the Procedure Engine
  248. * @return the actual number of the engine's usage
  249. */
  250. public int addProcedureEngine(String name) {
  251. return addEngine(name, procedureEngines);
  252. }
  253. /**
  254. * Removes the Query Engine from the container of initialized engines.
  255. *
  256. * @param name
  257. * the name of the Query Engine
  258. * @return the actual number of the engine's usage
  259. */
  260. public int removeQueryEngine(String name) {
  261. return removeEngine(name, queryEngines);
  262. }
  263. /**
  264. * Removes the CRUD Engine from the container of initialized engines.
  265. *
  266. * @param name
  267. * the name of the CRUD Engine
  268. * @return the actual number of the engine's usage
  269. */
  270. public int removeCrudEngine(String name) {
  271. return removeEngine(name, crudEngines);
  272. }
  273. /**
  274. * Removes the Procedure Engine from the container of initialized engines.
  275. *
  276. * @param name
  277. * the name of the Procedure Engine
  278. * @return the actual number of the engine's usage
  279. */
  280. public int removeProcedureEngine(String name) {
  281. return removeEngine(name, procedureEngines);
  282. }
  283. /**
  284. * Adds the dynamic Query Engine to the container of initialized engines.
  285. *
  286. * @param name
  287. * the name of the dynamic Query Engine
  288. * @return the actual number of the engine's usage
  289. */
  290. public int addDynamicQueryEngine(String name, String sqlStatement) {
  291. dynamicQueryEngines.put(name, sqlStatement);
  292. return addQueryEngine(name);
  293. }
  294. /**
  295. * Adds the dynamic CRUD Engine to the container of initialized engines.
  296. *
  297. * @param name
  298. * the name of the dynamic CRUD Engine
  299. * @return the actual number of the engine's usage
  300. */
  301. public int addDynamicCrudEngine(String name, String sqlStatement) {
  302. dynamicCrudEngines.put(name, sqlStatement);
  303. return addCrudEngine(name);
  304. }
  305. /**
  306. * Adds the dynamic Procedure Engine to the container of initialized engines.
  307. *
  308. * @param name
  309. * the name of the dynamic Procedure Engine
  310. * @return the actual number of the engine's usage
  311. */
  312. public int addDynamicProcedureEngine(String name, String sqlStatement) {
  313. dynamicProcedureEngines.put(name, sqlStatement);
  314. return addProcedureEngine(name);
  315. }
  316. /**
  317. * Removes the dynamic Query Engine from the container of initialized engines.
  318. *
  319. * @param name
  320. * the name of the dynamic Query Engine
  321. * @return the actual number of the engine's usage
  322. */
  323. public int removeDynamicQueryEngine(String name) {
  324. dynamicQueryEngines.remove(name);
  325. AtomicInteger counter = queryEngines.get(name);
  326. return (counter == null) ? 0 : counter.get();
  327. }
  328. /**
  329. * Removes the dynamic CRUD Engine from the container of initialized engines.
  330. *
  331. * @param name
  332. * the name of the dynamic CRUD Engine
  333. * @return the actual number of the engine's usage
  334. */
  335. public int removeDynamicCrudEngine(String name) {
  336. dynamicCrudEngines.remove(name);
  337. AtomicInteger counter = crudEngines.get(name);
  338. return (counter == null) ? 0 : counter.get();
  339. }
  340. /**
  341. * Removes the dynamic Procedure Engine from the container of initialized engines.
  342. *
  343. * @param name
  344. * the name of the dynamic Procedure Engine
  345. * @return the actual number of the engine's usage
  346. */
  347. public int removeDynamicProcedureEngine(String name) {
  348. dynamicProcedureEngines.remove(name);
  349. AtomicInteger counter = procedureEngines.get(name);
  350. return (counter == null) ? 0 : counter.get();
  351. }
  352. /**
  353. * Returns the container of initialized Query Engines' names (static or dynamic ones) together with the number of
  354. * their usage
  355. *
  356. * @return the container of initialized Query Engines' names (static or dynamic ones) together with the number of
  357. * their usage
  358. */
  359. public ConcurrentHashMap<String, AtomicInteger> getQueryEngines() {
  360. return queryEngines;
  361. }
  362. /**
  363. * Returns the container of initialized CRUD Engines' names (static or dynamic ones) together with the number of
  364. * their usage
  365. *
  366. * @return the container of initialized CRUD Engines' names (static or dynamic ones) together with the number of
  367. * their usage
  368. */
  369. public ConcurrentHashMap<String, AtomicInteger> getCrudEngines() {
  370. return crudEngines;
  371. }
  372. /**
  373. * Returns the container of initialized Procedure Engines' names (static or dynamic ones) together with the number
  374. * of their usage
  375. *
  376. * @return the container of initialized Procedure Engines' names (static or dynamic ones) together with the number
  377. * of their usage
  378. */
  379. public ConcurrentHashMap<String, AtomicInteger> getProcedureEngines() {
  380. return procedureEngines;
  381. }
  382. /**
  383. * Returns the container of initialized dynamic Query Engines' names together with their SQL statement
  384. *
  385. * @return the container of initialized dynamic Query Engines' names together with their SQL statement
  386. */
  387. public ConcurrentHashMap<String, String> getDynamicQueryEngines() {
  388. return dynamicQueryEngines;
  389. }
  390. /**
  391. * Returns the container of initialized dynamic CRUD Engines' names together with their SQL statement
  392. *
  393. * @return the container of initialized dynamic CRUD Engines' names together with their SQL statement
  394. */
  395. public ConcurrentHashMap<String, String> getDynamicCrudEngines() {
  396. return dynamicCrudEngines;
  397. }
  398. /**
  399. * Returns the container of initialized dynamic Procedure Engines' names together with their SQL statement
  400. *
  401. * @return the container of initialized dynamic Procedure Engines' names together with their SQL statement
  402. */
  403. public ConcurrentHashMap<String, String> getDynamicProcedureEngines() {
  404. return dynamicProcedureEngines;
  405. }
  406. /**
  407. * Sets the container of initialized Query Engines' names (static or dynamic ones) together with the number of their
  408. * usage
  409. *
  410. * @param queryEngines
  411. * the container of initialized Query Engines' names (static or dynamic ones) together with the number of
  412. * their usage
  413. */
  414. public void setQueryEngines(ConcurrentHashMap<String, AtomicInteger> queryEngines) {
  415. this.queryEngines = queryEngines;
  416. }
  417. /**
  418. * Sets the container of initialized CRUD Engines' names (static or dynamic ones) together with the number of their
  419. * usage
  420. *
  421. * @param crudEngines
  422. * the container of initialized CRUD Engines' names (static or dynamic ones) together with the number of
  423. * their usage
  424. */
  425. public void setCrudEngines(ConcurrentHashMap<String, AtomicInteger> crudEngines) {
  426. this.crudEngines = crudEngines;
  427. }
  428. /**
  429. * Sets the container of initialized Procedure Engines' names (static or dynamic ones) together with the number of
  430. * their usage
  431. *
  432. * @param procedureEngines
  433. * the container of initialized Procedure Engines' names (static or dynamic ones) together with the
  434. * number of their usage
  435. */
  436. public void setProcedureEngines(ConcurrentHashMap<String, AtomicInteger> procedureEngines) {
  437. this.procedureEngines = procedureEngines;
  438. }
  439. /**
  440. * Sets the container of initialized dynamic Query Engines' names together with their SQL statement
  441. *
  442. * @param dynamicQueryEngines
  443. * the container of initialized dynamic Query Engines' names together with their SQL statement
  444. */
  445. public void setDynamicQueryEngines(ConcurrentHashMap<String, String> dynamicQueryEngines) {
  446. this.dynamicQueryEngines = dynamicQueryEngines;
  447. }
  448. /**
  449. * Sets the container of initialized dynamic CRUD Engines' names together with their SQL statement
  450. *
  451. * @param dynamicCrudEngines
  452. * the container of initialized dynamic CRUD Engines' names together with their SQL statement
  453. */
  454. public void setDynamicCrudEngines(ConcurrentHashMap<String, String> dynamicCrudEngines) {
  455. this.dynamicCrudEngines = dynamicCrudEngines;
  456. }
  457. /**
  458. * Sets the container of initialized dynamic Procedure Engines' names together with their SQL statement
  459. *
  460. * @param dynamicProcedureEngines
  461. * the container of initialized dynamic Procedure Engines' names together with their SQL statement
  462. */
  463. public void setDynamicProcedureEngines(ConcurrentHashMap<String, String> dynamicProcedureEngines) {
  464. this.dynamicProcedureEngines = dynamicProcedureEngines;
  465. }
  466. /**
  467. * Returns the indicator to speed up the initialization process
  468. *
  469. * @return the indicator to speed up the initialization process
  470. */
  471. public Boolean getLazyInit() {
  472. return lazyInit;
  473. }
  474. /**
  475. * Sets the indicator to speed up the initialization process
  476. *
  477. * @param lazyInit
  478. * the indicator to speed up the initialization process
  479. */
  480. public void setLazyInit(Boolean lazyInit) {
  481. this.lazyInit = lazyInit;
  482. }
  483. /**
  484. * Returns the number of threads used for asynchronous initialization
  485. *
  486. * @return the number of threads used for asynchronous initialization
  487. */
  488. public Integer getAsyncInitThreads() {
  489. return asyncInitThreads;
  490. }
  491. /**
  492. * Sets the number of threads used for asynchronous initialization
  493. *
  494. * @param asyncInitThreads
  495. * the number of threads used for asynchronous initialization
  496. */
  497. public void setAsyncInitThreads(Integer asyncInitThreads) {
  498. this.asyncInitThreads = asyncInitThreads;
  499. }
  500. /**
  501. * Returns the initialization threshold. The engines, which usage is at least this number should be initialized
  502. * directly
  503. *
  504. * @return the initialization threshold. The engines, which usage is at least this number should be initialized
  505. * directly
  506. */
  507. public Integer getInitTreshold() {
  508. return initTreshold;
  509. }
  510. /**
  511. * Sets the initialization threshold. The engines, which usage is at least this number should be initialized
  512. * directly
  513. *
  514. * @param initTreshold
  515. * the initialization threshold. The engines, which usage is at least this number should be initialized
  516. * directly
  517. */
  518. public void setInitTreshold(Integer initTreshold) {
  519. this.initTreshold = initTreshold;
  520. }
  521. /**
  522. * Returns the indicator that the most frequently used engines should be initialized preferentially
  523. *
  524. * @return the indicator that the most frequently used engines should be initialized preferentially
  525. */
  526. public Boolean getInitInUsageOrder() {
  527. return initInUsageOrder;
  528. }
  529. /**
  530. * Sets the indicator that the most frequently used engines should be initialized preferentially
  531. *
  532. * @param initInUsageOrder
  533. * the indicator that the most frequently used engines should be initialized preferentially
  534. */
  535. public void setInitInUsageOrder(Boolean initInUsageOrder) {
  536. this.initInUsageOrder = initInUsageOrder;
  537. }
  538. /**
  539. * Returns the indicator that after the engines instantiations the users should be cleared
  540. *
  541. * @return the indicator that after the engines instantiations the users should be cleared
  542. */
  543. public Boolean getInitClearUsage() {
  544. return initClearUsage;
  545. }
  546. /**
  547. * Sets the indicator that after the engines instantiations the users should be cleared
  548. *
  549. * @param initClearUsage
  550. * the indicator that after the engines instantiations the users should be cleared
  551. */
  552. public void setInitClearUsage(Boolean initClearUsage) {
  553. this.initClearUsage = initClearUsage;
  554. }
  555. /**
  556. * Returns the indicator that the processing cache can be used
  557. *
  558. * @return the indicator that the processing cache can be used
  559. */
  560. public Boolean getUseProcessingCache() {
  561. return useProcessingCache;
  562. }
  563. /**
  564. * Sets the indicator that the processing cache can be used
  565. *
  566. * @param useProcessingCache
  567. * the indicator that the processing cache can be used
  568. */
  569. public void setUseProcessingCache(Boolean useProcessingCache) {
  570. this.useProcessingCache = useProcessingCache;
  571. }
  572. /**
  573. * Returns the indicator that the processing cache can be used dynamically
  574. *
  575. * @return the indicator that the processing cache can be used dynamically
  576. */
  577. public Boolean getUseDynamicProcessingCache() {
  578. return useDynamicProcessingCache;
  579. }
  580. /**
  581. * Sets the indicator that the processing cache can be used for dynamically
  582. *
  583. * @param useDynamicProcessingCache
  584. * the indicator that the processing cache can be used dynamically
  585. */
  586. public void setUseDynamicProcessingCache(Boolean useDynamicProcessingCache) {
  587. this.useDynamicProcessingCache = useDynamicProcessingCache;
  588. }
  589. /**
  590. * Returns the list of engines, for which the processing cache can be used
  591. *
  592. * @return the list of engines, for which the processing cache can be used
  593. */
  594. public Set<String> getDoProcessingCacheEngines() {
  595. return doProcessingCacheEngines;
  596. }
  597. /**
  598. * Sets the list of engines, for which the processing cache can be used
  599. *
  600. * @param doProcessingCacheEngines
  601. * the list of engines, for which the processing cache can be used
  602. */
  603. public void setDoProcessingCacheEngines(Set<String> doProcessingCacheEngines) {
  604. this.doProcessingCacheEngines = doProcessingCacheEngines;
  605. }
  606. /**
  607. * Returns the list of engines, for which the processing cache can't be used
  608. *
  609. * @return the list of engines, for which the processing cache can't be used
  610. */
  611. public Set<String> getDontProcessingCacheEngines() {
  612. return dontProcessingCacheEngines;
  613. }
  614. /**
  615. * Sets the list of engines, for which the processing cache can't be used
  616. *
  617. * @param dontProcessingCacheEngines
  618. * the list of engines, for which the processing cache can't be used
  619. */
  620. public void setDontProcessingCacheEngines(Set<String> dontProcessingCacheEngines) {
  621. this.dontProcessingCacheEngines = dontProcessingCacheEngines;
  622. }
  623. /**
  624. * The simple container.
  625. */
  626. public class NameValue implements Comparable<NameValue> {
  627. public String name;
  628. public int value;
  629. public NameValue(String name, Integer value) {
  630. this.name = name;
  631. this.value = (value != null) ? value : 0;
  632. }
  633. @Override
  634. public int compareTo(NameValue o) {
  635. if (value < o.value)
  636. return 1;
  637. if (value > o.value)
  638. return -1;
  639. return 0;
  640. }
  641. }
  642. /**
  643. * Returns the container of the SQL Engines' names, which has to be initialized. This is called during The SQL
  644. * Processor initialization, so there's no need to handle concurrent changes.
  645. *
  646. * @param engines
  647. * the container of initialized engines
  648. * @param treshold
  649. * the engines, which usage is at least this number should be initialized directly
  650. * @return the container of the Query Engines' names, which has to be initialized
  651. */
  652. protected Map<String, Integer> getEnginesToInit(ConcurrentHashMap<String, AtomicInteger> engines,
  653. Integer treshold) {
  654. Map<String, Integer> map;
  655. if (initInUsageOrder != null && initInUsageOrder) {
  656. map = new LinkedHashMap<String, Integer>();
  657. List<NameValue> list = new ArrayList<NameValue>();
  658. for (Entry<String, AtomicInteger> e : engines.entrySet()) {
  659. if (initTreshold == null || e.getValue().get() >= initTreshold)
  660. list.add(new NameValue(e.getKey(), e.getValue().get()));
  661. }
  662. for (NameValue nv : list)
  663. map.put(nv.name, nv.value);
  664. } else {
  665. map = new TreeMap<String, Integer>();
  666. for (Entry<String, AtomicInteger> e : engines.entrySet()) {
  667. if (initTreshold == null || e.getValue().get() >= initTreshold)
  668. map.put(e.getKey(), e.getValue().get());
  669. }
  670. }
  671. return map;
  672. }
  673. /**
  674. * Returns the container of the Query Engines' names, which has to be initialized. This is called during The SQL
  675. * Processor initialization, so there's no need to handle concurrent changes.
  676. *
  677. * @param treshold
  678. * the engines, which usage is at least this number should be initialized directly
  679. * @return the container of the Query Engines' names, which has to be initialized
  680. */
  681. public Map<String, Integer> getQueryEnginesToInit(Integer treshold) {
  682. return getEnginesToInit(queryEngines, treshold);
  683. }
  684. /**
  685. * Returns the container of the CRUD Engines' names, which has to be initialized. This is called during The SQL
  686. * Processor initialization, so there's no need to handle concurrent changes.
  687. *
  688. * @param treshold
  689. * the engines, which usage is at least this number should be initialized directly
  690. * @return the container of the CRUD Engines' names, which has to be initialized
  691. */
  692. public Map<String, Integer> getCrudEnginesToInit(Integer treshold) {
  693. return getEnginesToInit(crudEngines, treshold);
  694. }
  695. /**
  696. * Returns the container of the Procedure Engines' names, which has to be initialized. This is called during The SQL
  697. * Processor initialization, so there's no need to handle concurrent changes.
  698. *
  699. * @param treshold
  700. * the engines, which usage is at least this number should be initialized directly
  701. * @return the container of the Procedure Engines' names, which has to be initialized
  702. */
  703. public Map<String, Integer> getProcedureEnginesToInit(Integer treshold) {
  704. return getEnginesToInit(procedureEngines, treshold);
  705. }
  706. @Override
  707. public String toString() {
  708. return "SqlEngineConfiguration [queryEngines=" + queryEngines + ", crudEngines=" + crudEngines
  709. + ", procedureEngines=" + procedureEngines + ", dynamicQueryEngines=" + dynamicQueryEngines
  710. + ", dynamicCrudEngines=" + dynamicCrudEngines + ", dynamicProcedureEngines=" + dynamicProcedureEngines
  711. + ", lazyInit=" + lazyInit + ", asyncInitThreads=" + asyncInitThreads + ", initTreshold=" + initTreshold
  712. + ", initInUsageOrder=" + initInUsageOrder + ", initClearUsage=" + initClearUsage + "]";
  713. }
  714. }