aboutsummaryrefslogtreecommitdiffstats
path: root/common-be/src/main/java/org/openecomp/sdc/be/datatypes/elements/PropertyFilterConstraintDataDefinitionJsonDeserializer.java
blob: 894b54b291a94d5d0d7d261582c79f96a8e7bd21 (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
/*
 * -
 *  ============LICENSE_START=======================================================
 *  Copyright (C) 2022 Nordix Foundation.
 *  ================================================================================
 *  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.
 *
 *  SPDX-License-Identifier: Apache-2.0
 *  ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.be.datatypes.elements;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.openecomp.sdc.be.datatypes.enums.ConstraintType;
import org.openecomp.sdc.be.datatypes.enums.FilterValueType;
import org.openecomp.sdc.be.datatypes.enums.PropertyFilterTargetType;
import org.openecomp.sdc.be.utils.PropertyFilterConstraintDataDefinitionHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class PropertyFilterConstraintDataDefinitionJsonDeserializer extends StdDeserializer<PropertyFilterConstraintDataDefinition> {

    private static final Logger LOGGER = LoggerFactory.getLogger(PropertyFilterConstraintDataDefinitionJsonDeserializer.class);
    private static final String COULD_NOT_PARSE_CLASS = "Could not parse {} value as {}";

    public PropertyFilterConstraintDataDefinitionJsonDeserializer() {
        this(null);
    }

    public PropertyFilterConstraintDataDefinitionJsonDeserializer(Class<?> vc) {
        super(vc);
    }

    @Override
    public PropertyFilterConstraintDataDefinition deserialize(final JsonParser jsonParser, final DeserializationContext context) throws IOException {
        final JsonNode node = jsonParser.getCodec().readTree(jsonParser);

        if (node.isTextual()) {
            return PropertyFilterConstraintDataDefinitionHelper.convertLegacyConstraint(node.asText());
        }

        final var propertyFilterConstraint = new PropertyFilterConstraintDataDefinition();
        if (node.get("propertyName") != null) {
            propertyFilterConstraint.setPropertyName(node.get("propertyName").asText());
        }
        if (node.get("capabilityName") != null) {
            propertyFilterConstraint.setCapabilityName(node.get("capabilityName").asText());
        }
        if (node.get("targetType") != null) {
            propertyFilterConstraint.setTargetType(PropertyFilterTargetType.valueOf(node.get("targetType").asText()));
        }
        if (node.get("operator") != null) {
            propertyFilterConstraint.setOperator(ConstraintType.valueOf(node.get("operator").asText()));
        }
        if (node.get("valueType") != null) {
            propertyFilterConstraint.setValueType(FilterValueType.valueOf(node.get("valueType").asText()));
        }
        if (node.get("originalType") != null) {
            propertyFilterConstraint.setOriginalType(node.get("originalType").asText());
        }
        propertyFilterConstraint.setValue(deserializeValue(node.get("value")));

        return propertyFilterConstraint;
    }

    private Object deserializeValue(final JsonNode value) {
        final ObjectMapper objectMapper = new ObjectMapper();
        try {
            return objectMapper.treeToValue(value, ToscaFunction.class);
        } catch (final Exception e) {
            LOGGER.debug(COULD_NOT_PARSE_CLASS, PropertyFilterConstraintDataDefinition.class.getName(), ToscaFunction.class.getName(), e);
        }
        try {
            return objectMapper.treeToValue(value, Map.class);
        } catch (final Exception e) {
            LOGGER.debug(COULD_NOT_PARSE_CLASS, PropertyFilterConstraintDataDefinition.class.getName(), Map.class.getName(), e);
        }
        try {
            if (value.isArray()) {
                try {
                    objectMapper.treeToValue(value.get(0), ToscaFunction.class);
                } catch (JsonProcessingException e) {
                    return objectMapper.treeToValue(value, List.class);
                }
                List<ToscaFunction> listToscaFunction = new ArrayList<>();
                value.forEach(nodeListValue -> {
                    try {
                        listToscaFunction.add(objectMapper.treeToValue(nodeListValue, ToscaFunction.class));
                    } catch (JsonProcessingException e) {
                        LOGGER.debug(COULD_NOT_PARSE_CLASS, PropertyFilterConstraintDataDefinition.class.getName(), List.class.getName(), e);
                    }
                });
                return listToscaFunction;
            }
            else {
                return objectMapper.treeToValue(value, List.class);
            }
        } catch (final Exception e) {
            LOGGER.debug(COULD_NOT_PARSE_CLASS, PropertyFilterConstraintDataDefinition.class.getName(), List.class.getName(), e);
        }
        try {
            return objectMapper.treeToValue(value, String.class);
        } catch (final Exception e) {
            LOGGER.debug(COULD_NOT_PARSE_CLASS, PropertyFilterConstraintDataDefinition.class.getName(), String.class.getName(), e);
        }

        return null;
    }

}