aboutsummaryrefslogtreecommitdiffstats
path: root/aai-schema-ingest/src/main/java/org/onap/aai/nodes/CaseFormatStore.java
blob: 03036cad6c48d6aa6300d2785ca417ec582a22fb (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
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2019 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.onap.aai.nodes;

import com.google.common.base.CaseFormat;

import java.util.HashMap;
import java.util.Map;
import java.util.Optional;

import org.w3c.dom.Document;
import org.w3c.dom.NodeList;

/**
 * CaseFormatStore stores the converted strings from
 * lower hyphen (example-object) to lower camel case (exampleObject)
 * so it avoids the creation of the object for every single request
 * and cause an issue with taking too much memory just for the conversion
 */
public class CaseFormatStore {

    private final Map<String, String> lowerHyphenToLowerCamel = new HashMap<>();
    private final Map<String, String> lowerHyphenToUpperCamel = new HashMap<>();
    private final Map<String, String> lowerCamelToLowerHyphen = new HashMap<>();
    private final Map<String, String> upperCamelToLowerHyphen = new HashMap<>();

    CaseFormatStore() {
    }

    /**
     * Parses the document and creates a lower camel case string
     * upper camel string, lower hyphen and lower camel case
     *
     * @param doc Takes an xml document and adds it to the hash maps as appropriate
     */
    void parse(Document doc) {

        // Get the xml-root-element and add those nodes
        // with the attribute name and it to the hashmaps
        // For the attribute with name, it is going to be lower-hyphen
        // If the attribute is javaAttribute then it will be lower camel case
        NodeList list = doc.getElementsByTagName("xml-root-element");
        addCaseFormatForNodesAndProperties(list, "name");

        list = doc.getElementsByTagName("xml-element");
        addCaseFormatForNodesAndProperties(list, "java-attribute");

        list = doc.getElementsByTagName("xml-any-element");
        addCaseFormatForNodesAndProperties(list, "java-attribute");
    }

    private void addCaseFormatForNodesAndProperties(NodeList list, String attributeName) {
        for (int i = 0; i < list.getLength(); i++) {

            String lowerCamel = null;
            String lowerHyphen = null;

            if ("java-attribute".equals(attributeName)) {
                lowerCamel = list.item(i).getAttributes().getNamedItem(attributeName).getNodeValue();
                lowerHyphen = CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_HYPHEN, lowerCamel);
            } else {
                lowerHyphen = list.item(i).getAttributes().getNamedItem(attributeName).getNodeValue();
                lowerCamel = CaseFormat.LOWER_HYPHEN.to(CaseFormat.LOWER_CAMEL, lowerHyphen);
            }

            String upperCamel = CaseFormat.LOWER_HYPHEN.to(CaseFormat.UPPER_CAMEL, lowerHyphen);
            lowerHyphenToLowerCamel.put(lowerHyphen, lowerCamel);
            lowerHyphenToUpperCamel.put(lowerHyphen, upperCamel);
            upperCamelToLowerHyphen.put(upperCamel, lowerHyphen);
            lowerCamelToLowerHyphen.put(lowerCamel, lowerHyphen);
        }
    }

    public Optional<String> fromLowerHyphenToLowerCamel(String value) {
        return Optional.ofNullable(lowerHyphenToLowerCamel.get(value));
    }

    public Optional<String> fromLowerHyphenToUpperCamel(String value) {
        return Optional.ofNullable(lowerHyphenToUpperCamel.get(value));
    }

    public Optional<String> fromUpperCamelToLowerHyphen(String value) {
        return Optional.ofNullable(upperCamelToLowerHyphen.get(value));
    }

    public Optional<String> fromLowerCamelToLowerHyphen(String value) {
        return Optional.ofNullable(lowerCamelToLowerHyphen.get(value));
    }

}