d5083e1b153c64a3e6f0b75521b37a0a2eeed9a6
[policy/xacml-pdp.git] / applications / common / src / main / java / org / onap / policy / pdp / xacml / application / common / matchable / MatchablePropertyTypeMap.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pdp.xacml.application.common.matchable;
24
25 import com.att.research.xacml.api.Identifier;
26 import com.att.research.xacml.std.IdentifierImpl;
27 import java.util.Collections;
28 import java.util.Map;
29 import java.util.Map.Entry;
30 import lombok.NonNull;
31 import oasis.names.tc.xacml._3_0.core.schema.wd_17.AnyOfType;
32 import org.onap.policy.models.tosca.authorative.concepts.ToscaEntrySchema;
33 import org.onap.policy.models.tosca.authorative.concepts.ToscaProperty;
34 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyConversionException;
35 import org.onap.policy.pdp.xacml.application.common.ToscaPolicyTranslatorUtils;
36
37 public class MatchablePropertyTypeMap extends MatchablePropertyTypeBase<Map<String, MatchablePropertyType<?>>> {
38     MatchableProperty primitiveProperty;
39
40     /**
41      * constructor.
42      *
43      * @param toscaProperty ToscaProperty object
44      */
45     public MatchablePropertyTypeMap(@NonNull ToscaProperty toscaProperty) {
46         super(toscaProperty);
47
48         ToscaEntrySchema schema = toscaProperty.getEntrySchema();
49         this.primitiveProperty = MatchablePolicyType.handlePrimitive(schema.getType(), schema);
50     }
51
52     @SuppressWarnings("unchecked")
53     @Override
54     public Map<String, MatchablePropertyType<?>> validate(Object value) throws ToscaPolicyConversionException {
55         if (value instanceof Map) {
56             return (Map<String, MatchablePropertyType<?>>) value;
57         }
58         return Collections.emptyMap();
59     }
60
61     @Override
62     public Object generate(Object value, Identifier attributeId) throws ToscaPolicyConversionException {
63         AnyOfType anyOf = new AnyOfType();
64         for (Entry<String, MatchablePropertyType<?>> entrySet : this.validate(value).entrySet()) {
65             final String id = entrySet.getKey();
66             final Object val = entrySet.getValue();
67             //
68             // For map we use the LHS as part of the attribute id
69             //
70             Identifier newId = new IdentifierImpl(attributeId + ":" + id);
71             //
72             // Build the AnyOfType
73             //
74             anyOf = ToscaPolicyTranslatorUtils.buildAndAppendAllof(anyOf,
75                     primitiveProperty.getType().generate(val, newId));
76         }
77         return anyOf;
78     }
79
80 }