summaryrefslogtreecommitdiffstats
path: root/blueprints-processor/plugin/assignment-provider/src/main/java/org/onap/ccsdk/config/assignment/processor/DBResourceProcessor.java
blob: 5f3e6094c8cb306eedc420f7150ef9561365a919 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
 * Copyright © 2017-2018 AT&T Intellectual Property.
 * Modifications Copyright © 2018 IBM.
 * 
 * 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.
 */

package org.onap.ccsdk.config.assignment.processor;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.collections.MapUtils;
import org.apache.commons.lang3.StringUtils;
import org.onap.ccsdk.config.assignment.service.ConfigAssignmentUtils;
import org.onap.ccsdk.config.data.adaptor.service.ConfigResourceService;
import org.onap.ccsdk.config.model.ConfigModelConstant;
import org.onap.ccsdk.config.model.ConfigModelException;
import org.onap.ccsdk.config.model.ValidTypes;
import org.onap.ccsdk.config.model.data.ResourceAssignment;
import org.onap.ccsdk.config.model.data.dict.ResourceDefinition;
import org.onap.ccsdk.config.model.data.dict.SourcesDefinition;
import org.onap.ccsdk.config.model.service.ComponentNode;
import org.onap.ccsdk.config.model.utils.JsonUtils;
import org.onap.ccsdk.config.model.utils.ResourceAssignmentUtils;
import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
import org.onap.ccsdk.sli.core.sli.SvcLogicException;
import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.ObjectNode;

public class DBResourceProcessor implements ComponentNode {

    private static EELFLogger logger = EELFManager.getInstance().getLogger(DBResourceProcessor.class);
    private ConfigResourceService configResourceService;
    private Map<String, ResourceDefinition> dictionaries;

    public DBResourceProcessor(ConfigResourceService configResourceService) {
        this.configResourceService = configResourceService;
    }

    @Override
    public Boolean preCondition(Map<String, String> inParams, SvcLogicContext ctx, Map<String, Object> componentContext)
            throws SvcLogicException {
        return Boolean.TRUE;
    }

    @Override
    public void preProcess(Map<String, String> inParams, SvcLogicContext ctx, Map<String, Object> componentContext)
            throws SvcLogicException {
        // Auto-generated method stub
    }

    @Override
    public void process(Map<String, String> inParams, SvcLogicContext ctx) throws SvcLogicException {
        // Auto-generated method stub
    }

    @SuppressWarnings("unchecked")
    @Override
    public void process(Map<String, String> inParams, SvcLogicContext ctx, Map<String, Object> componentContext)
            throws SvcLogicException {
        try {
            List<ResourceAssignment> batchResourceAssignment =
                    (List<ResourceAssignment>) componentContext.get(ConfigModelConstant.PROPERTY_RESOURCE_ASSIGNMENTS);
            dictionaries =
                    (Map<String, ResourceDefinition>) componentContext.get(ConfigModelConstant.PROPERTY_DICTIONARIES);

            if (CollectionUtils.isNotEmpty(batchResourceAssignment)) {
                for (ResourceAssignment resourceAssignment : batchResourceAssignment) {
                    processResourceAssignment(ctx, componentContext, resourceAssignment);
                }
            }
        } catch (Exception e) {
            throw new SvcLogicException(String.format("DBResourceProcessor Exception : (%s)", e), e);
        }
    }

    private void processResourceAssignment(SvcLogicContext ctx, Map<String, Object> componentContext,
            ResourceAssignment resourceAssignment) throws SvcLogicException, ConfigModelException {
        if (resourceAssignment != null) {
            try {
                validate(resourceAssignment);

                // Check if It has Input
                Object value = ConfigAssignmentUtils.getContextKeyValue(ctx, resourceAssignment.getName());
                if (value != null) {
                    logger.info("db source template key ({}) found from input and value is ({})",
                            resourceAssignment.getName(), value);
                    ResourceAssignmentUtils.setResourceDataValue(componentContext, resourceAssignment, value);
                    return;
                }

                ResourceDefinition resourceDefinition = dictionaries.get(resourceAssignment.getDictionaryName());
                SourcesDefinition sourceDb = resourceDefinition.getSources().get("db");
                if (StringUtils.isBlank(sourceDb.getProperties().getQuery())) {
                    throw new SvcLogicException("db query property is missing");
                }

                String sql = sourceDb.getProperties().getQuery();
                Map<String, String> inputKeyMapping = sourceDb.getProperties().getInputKeyMapping();

                logger.info("Db dictionary information : ({}), ({}), ({})", sql, inputKeyMapping,
                        sourceDb.getProperties().getOutputKeyMapping());

                Map<String, Object> namedParameters = populateNamedParameter(componentContext, inputKeyMapping);

                logger.info("Parameter information : ({})", namedParameters);
                List<Map<String, Object>> rows = configResourceService.query(sql, namedParameters);
                if (rows != null && !rows.isEmpty()) {
                    processDBResults(ctx, componentContext, resourceAssignment, sourceDb, rows);
                } else {
                    logger.warn("Failed to get db result for dictionary name ({}) the query ({})",
                            resourceAssignment.getDictionaryName(), sql);
                }

                // Check the value has populated for mandatory case
                ResourceAssignmentUtils.assertTemplateKeyValueNotNull(componentContext, resourceAssignment);
            } catch (Exception e) {
                ResourceAssignmentUtils.setFailedResourceDataValue(componentContext, resourceAssignment,
                        e.getMessage());
                throw new SvcLogicException(
                        String.format("Failed in template key (%s) assignments : (%s)", resourceAssignment, e), e);
            }
        } else {
            // Do Nothing
        }
    }

    private void validate(ResourceAssignment resourceAssignment) throws SvcLogicException {
        if (resourceAssignment == null) {
            throw new SvcLogicException("resource assignment is not defined");
        }

        if (StringUtils.isBlank(resourceAssignment.getName())) {
            throw new SvcLogicException("resource assignment template key is not defined");
        }

        if (StringUtils.isBlank(resourceAssignment.getDictionaryName())) {
            throw new SvcLogicException(
                    String.format("resource assignment dictionary name is not defined for template key (%s)",
                            resourceAssignment.getName()));
        }

        if (!ConfigModelConstant.SOURCE_DB.equalsIgnoreCase(resourceAssignment.getDictionarySource())) {
            throw new SvcLogicException(String.format("resource assignment source is not db, it is (%s)",
                    resourceAssignment.getDictionarySource()));
        }

        ResourceDefinition resourceDefinition = dictionaries.get(resourceAssignment.getDictionaryName());
        if (resourceDefinition == null) {
            throw new SvcLogicException(String.format("missing resource dictionary definition for name (%s)  ",
                    resourceAssignment.getDictionaryName()));
        }

        if (resourceDefinition.getSources() == null || resourceDefinition.getSources().get("db") == null) {
            throw new SvcLogicException(String.format("missing resource dictionary db source definition for name (%s) ",
                    resourceAssignment.getDictionaryName()));
        }

        SourcesDefinition sourceDb = resourceDefinition.getSources().get("db");
        if (StringUtils.isBlank(sourceDb.getProperties().getQuery())) {
            throw new SvcLogicException(String.format("Failed to get request Query for dictionary (%s)",
                    resourceAssignment.getDictionaryName()));
        }

    }

    private Map<String, Object> populateNamedParameter(Map<String, Object> componentContext,
            Map<String, String> inputKeyMapping) {
        Map<String, Object> namedParameters = new HashMap<>();
        if (MapUtils.isNotEmpty(inputKeyMapping)) {

            for (Map.Entry<String, String> mapping : inputKeyMapping.entrySet()) {
                ResourceDefinition referenceDictionaryDefinition = dictionaries.get(mapping.getValue());
                Object expressionValue =
                        ResourceAssignmentUtils.getDictionaryKeyValue(componentContext, referenceDictionaryDefinition);
                logger.trace("Reference dictionary key ({}), value ({})", mapping.getKey(), expressionValue);
                namedParameters.put(mapping.getKey(), expressionValue);
            }
        }
        return namedParameters;
    }

    @SuppressWarnings("squid:S3776")
    private void processDBResults(SvcLogicContext ctx, Map<String, Object> componentContext,
            ResourceAssignment resourceAssignment, SourcesDefinition sourceDb, List<Map<String, Object>> rows)
            throws SvcLogicException, ConfigModelException {

        Map<String, String> outputKeyMapping = sourceDb.getProperties().getOutputKeyMapping();
        String type = resourceAssignment.getProperty().getType();
        String entrySchema = null;
        logger.info("Response processing type({})", type);
        // Primitive Types
        if (ValidTypes.getPrimitivePropertType().contains(type)) {

            Map<String, Object> row = rows.get(0);
            String dbColumnName = outputKeyMapping.get(resourceAssignment.getDictionaryName());
            Object dbColumnValue = row.get(dbColumnName);
            ResourceAssignmentUtils.setResourceDataValue(componentContext, resourceAssignment, dbColumnValue);

        } else if (ValidTypes.getListPropertType().contains(type)) {
            // Array Types
            if (resourceAssignment.getProperty().getEntrySchema() != null) {
                entrySchema = resourceAssignment.getProperty().getEntrySchema().getType();
            }

            if (StringUtils.isNotBlank(entrySchema)) {
                ArrayNode arrayNode = JsonNodeFactory.instance.arrayNode();

                for (Map<String, Object> row : rows) {
                    if (ValidTypes.getPrimitivePropertType().contains(entrySchema)) {
                        String dbColumnName = outputKeyMapping.get(resourceAssignment.getDictionaryName());
                        Object dbColumnValue = row.get(dbColumnName);
                        // Add Array JSON
                        JsonUtils.populatePrimitiveValues(dbColumnValue, entrySchema, arrayNode);
                    } else {
                        ObjectNode arrayChildNode = JsonNodeFactory.instance.objectNode();
                        for (Map.Entry<String, String> mapping : outputKeyMapping.entrySet()) {
                            Object dbColumnValue = row.get(mapping.getKey());
                            String propertyTypeForDataType =
                                    ConfigAssignmentUtils.getPropertyType(ctx, entrySchema, mapping.getKey());
                            JsonUtils.populatePrimitiveValues(mapping.getKey(), dbColumnValue, propertyTypeForDataType,
                                    arrayChildNode);
                        }
                        arrayNode.add(arrayChildNode);
                    }
                }
                // Set the List of Complex Values
                ResourceAssignmentUtils.setResourceDataValue(componentContext, resourceAssignment, arrayNode);
            } else {
                throw new SvcLogicException(String.format("Entry schema is not defined for dictionary (%s) info",
                        resourceAssignment.getDictionaryName()));
            }
        } else {
            // Complex Types
            Map<String, Object> row = rows.get(0);
            ObjectNode objectNode = JsonNodeFactory.instance.objectNode();
            for (Map.Entry<String, String> mapping : outputKeyMapping.entrySet()) {
                Object dbColumnValue = row.get(mapping.getKey());
                String propertyTypeForDataType = ConfigAssignmentUtils.getPropertyType(ctx, type, mapping.getKey());
                JsonUtils.populatePrimitiveValues(mapping.getKey(), dbColumnValue, propertyTypeForDataType, objectNode);
            }
            ResourceAssignmentUtils.setResourceDataValue(componentContext, resourceAssignment, objectNode);
        }
    }

    @Override
    public void postProcess(Map<String, String> inParams, SvcLogicContext ctx, Map<String, Object> componentContext)
            throws SvcLogicException {
        // Auto-generated method stub
    }

}