2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
3 * Modifications Copyright © 2018 IBM.
\r
5 * Licensed under the Apache License, Version 2.0 (the "License");
\r
6 * you may not use this file except in compliance with the License.
\r
7 * You may obtain a copy of the License at
\r
9 * http://www.apache.org/licenses/LICENSE-2.0
\r
11 * Unless required by applicable law or agreed to in writing, software
\r
12 * distributed under the License is distributed on an "AS IS" BASIS,
\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
14 * See the License for the specific language governing permissions and
\r
15 * limitations under the License.
\r
18 package org.onap.ccsdk.config.data.adaptor.dao;
\r
20 import java.util.Map;
\r
21 import java.util.concurrent.ConcurrentHashMap;
\r
22 import java.util.concurrent.Executors;
\r
23 import java.util.concurrent.ScheduledExecutorService;
\r
24 import java.util.concurrent.TimeUnit;
\r
25 import org.apache.commons.lang3.StringUtils;
\r
26 import org.onap.ccsdk.config.data.adaptor.DataAdaptorConstants;
\r
27 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
\r
28 import org.springframework.jdbc.core.JdbcTemplate;
\r
29 import com.att.eelf.configuration.EELFLogger;
\r
30 import com.att.eelf.configuration.EELFManager;
\r
31 import com.google.common.base.Preconditions;
\r
33 public class ConfigPropertyMapDaoImpl implements ConfigPropertyMapDao {
\r
35 private static EELFLogger logger = EELFManager.getInstance().getLogger(ConfigPropertyMapDaoImpl.class);
\r
37 private JdbcTemplate jdbcTemplate;
\r
38 private Map<String, String> configPropertyMap = new ConcurrentHashMap<>();
\r
40 public ConfigPropertyMapDaoImpl(JdbcTemplate jdbcTemplate) {
\r
41 this.jdbcTemplate = jdbcTemplate;
\r
44 String envType = configPropertyMap.get(DataAdaptorConstants.PROPERTY_ENV_TYPE);
\r
45 if (!(DataAdaptorConstants.PROPERTY_ENV_PROD.equalsIgnoreCase(envType)
\r
46 || DataAdaptorConstants.PROPERTY_ENV_SOLO.equalsIgnoreCase(envType))) {
\r
47 ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
\r
48 Runnable task = () -> {
\r
51 executor.scheduleWithFixedDelay(task, 60, 15, TimeUnit.MINUTES);
\r
55 private void initializeMap() {
\r
56 String getPropQuery = "SELECT * FROM CONFIG_PROPERTY_MAP";
\r
57 jdbcTemplate.queryForList(getPropQuery).forEach(rows -> {
\r
58 String key = StringUtils.trimToEmpty((String) rows.get("reference_key"));
\r
59 String value = StringUtils.trimToEmpty((String) rows.get("reference_value"));
\r
60 configPropertyMap.put(key, value);
\r
62 logger.trace("loaded configPropertyMap : ({})", configPropertyMap);
\r
66 public String getConfigPropertyByKey(String key) throws SvcLogicException {
\r
67 Preconditions.checkArgument(StringUtils.isNotBlank(key), "missing property key");
\r
68 return configPropertyMap.get(key);
\r