aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/impl/ConfigFileChangeListener.java
blob: 4efc43d675ff073e70ba696ee52cc64ab0cd9da5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.openecomp.sdc.common.impl;

import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.jci.listeners.FileChangeListener;
import org.openecomp.sdc.common.api.BasicConfiguration;
import org.openecomp.sdc.common.api.ConfigurationListener;
import org.openecomp.sdc.common.log.enums.EcompLoggerErrorCode;
import org.openecomp.sdc.common.log.wrappers.Logger;
import org.openecomp.sdc.common.util.YamlToObjectConverter;
import org.openecomp.sdc.exception.YamlConversionException;

public class ConfigFileChangeListener extends FileChangeListener {

    private static final Logger LOGGER = Logger.getLogger(ConfigFileChangeListener.class.getName());
    private Map<String, List<ConfigurationListener>> fileChangeToCallBack = new HashMap<>();
    private Object lock = new Object();
    private YamlToObjectConverter yamlToObjectConverter = new YamlToObjectConverter();

    @Override
    public void onFileChange(File pFile) {
        super.onFileChange(pFile);
        if (pFile == null) {
            LOGGER.debug("Invalid file '{}'.", pFile);
            return;
        }
        if (fileChangeToCallBack == null) {
            LOGGER.debug("File '{}' callback is null.", pFile);
            return;
        }
        final String id = findIdFromFileName(pFile.getName());
        if (id == null) {
            LOGGER.warn(EcompLoggerErrorCode.UNKNOWN_ERROR, "", "", "Cannot calculate id from file {}", pFile.getName());
            return;
        }
        final List<ConfigurationListener> listeners = fileChangeToCallBack.get(id);
        if (CollectionUtils.isEmpty(listeners)) {
            LOGGER.debug("No file listeners for file '{}', id '{}'.", pFile, id);
            return;
        }
        for (final ConfigurationListener configurationListener : listeners) {
            final Class<? extends BasicConfiguration> configClass = configurationListener.getType();
            final BasicConfiguration basicConfiguration;
            try {
                basicConfiguration = yamlToObjectConverter.convert(pFile.getAbsolutePath(), configClass);
            } catch (final YamlConversionException e) {
                LOGGER.warn(EcompLoggerErrorCode.SCHEMA_ERROR, "Configuration", "Configuration",
                    "Cannot update the listeners for file Change since the file content is invalid: {}", e.getLocalizedMessage());
                continue;
            }
            LOGGER.debug("Loaded configuration after converting is {}", basicConfiguration);
            configurationListener.getCallBack().reconfigure(basicConfiguration);
        }
        LOGGER.debug("File {} was changed.", pFile);
    }

    private String findIdFromFileName(String name) {
        String result = null;
        if (name != null) {
            int startIndex = 0;
            int endIndex = name.length();
            if (name.contains(File.separator)) {
                startIndex = name.lastIndexOf(File.separator);
            }
            result = name.substring(startIndex, endIndex);
        }
        return result;
    }

    public void register(String id, ConfigurationListener configurationListener) {
        if (configurationListener != null) {
            synchronized (lock) {
                List<ConfigurationListener> callbacks = fileChangeToCallBack.get(id);
                if (callbacks == null) {
                    callbacks = new ArrayList<>();
                    fileChangeToCallBack.put(id, callbacks);
                }
                callbacks.add(configurationListener);
            }
        }
    }
}