Integrate aai-schema-ingest library into aai-core
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / parsers / uri / URIToDBKey.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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  * ============LICENSE_END=========================================================
19  */
20 package org.onap.aai.parsers.uri;
21
22 import com.google.common.base.Joiner;
23 import org.onap.aai.exceptions.AAIException;
24 import org.onap.aai.introspection.Introspector;
25 import org.onap.aai.introspection.Loader;
26 import org.onap.aai.edges.enums.EdgeType;
27
28 import javax.ws.rs.core.MultivaluedMap;
29 import java.io.UnsupportedEncodingException;
30 import java.net.URI;
31 import java.util.ArrayList;
32 import java.util.List;
33
34 /**
35  * Creates a Unique database key from a URI
36  * 
37  * The key is of the form node-type/key(s).
38  */
39 public class URIToDBKey implements Parsable {
40
41         
42         private List<String> dbKeys = new ArrayList<>();
43
44         /**
45          * Instantiates a new URI to DB key.
46          *
47          * @param loader the loader
48          * @param uri the uri
49          * @throws IllegalArgumentException the illegal argument exception
50          * @throws AAIException the AAI exception
51          * @throws UnsupportedEncodingException the unsupported encoding exception
52          */
53         public URIToDBKey(Loader loader, URI uri) throws IllegalArgumentException, AAIException, UnsupportedEncodingException {
54                 URIParser parser = new URIParser(loader, uri);
55                 parser.parse(this);
56         }
57
58         /**
59          * @{inheritDoc}
60          */
61         @Override
62         public void processNamespace(Introspector obj) {
63         
64         }
65         
66         /**
67          * @{inheritDoc}
68          */
69         @Override
70         public String getCloudRegionTransform() {
71                 return "add";
72         }
73         
74         /**
75          * Gets the result.
76          *
77          * @return the result
78          */
79         public Object getResult() {
80                 return Joiner.on("/").join(this.dbKeys);
81         }
82
83         /**
84          * @{inheritDoc}
85          */
86         @Override
87         public boolean useOriginalLoader() {
88                 return false;
89         }
90
91         @Override
92         public void processObject(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys)
93                         throws AAIException {
94
95                 dbKeys.add(obj.getDbName());
96
97                 for (String key : uriKeys.keySet()) {
98                         dbKeys.add(uriKeys.getFirst(key).toString());
99                 }               
100         }
101
102         @Override
103         public void processContainer(Introspector obj, EdgeType type, MultivaluedMap<String, String> uriKeys,
104                         boolean isFinalContainer) {
105         }
106 }