Update license files, sonar plugin and fix tests
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / parsers / uri / URIToDBKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
4  * ================================================================================
5  * Copyright (C) 2017 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
21 package org.openecomp.aai.parsers.uri;
22
23 import java.io.UnsupportedEncodingException;
24 import java.net.URI;
25 import java.util.ArrayList;
26 import java.util.List;
27
28 import javax.ws.rs.core.MultivaluedMap;
29
30 import org.openecomp.aai.exceptions.AAIException;
31 import org.openecomp.aai.introspection.Introspector;
32 import org.openecomp.aai.introspection.Loader;
33 import com.google.common.base.Joiner;
34
35 /**
36  * Creates a Unique database key from a URI
37  * 
38  * The key is of the form node-type/key(s).
39  */
40 public class URIToDBKey implements Parsable {
41
42         
43         private List<String> dbKeys = new ArrayList<>();
44
45         /**
46          * Instantiates a new URI to DB key.
47          *
48          * @param loader the loader
49          * @param uri the uri
50          * @throws IllegalArgumentException the illegal argument exception
51          * @throws AAIException the AAI exception
52          * @throws UnsupportedEncodingException the unsupported encoding exception
53          */
54         public URIToDBKey(Loader loader, URI uri) throws IllegalArgumentException, AAIException, UnsupportedEncodingException {
55                 
56                 URIParser parser = new URIParser(loader, uri);
57                 parser.parse(this);
58         }
59         /*
60         public URIToDBKey(Version version, String uri) throws IllegalArgumentException {
61                 
62                 super(version, uri);
63                 try {
64                         context = ModelInjestor.getInstance().getContextForVersion(version);
65                         if (context == null) {
66                                 throw new IllegalArgumentException("could not find a context for version: " + version);
67                         }
68                         this.parse();
69                 } catch (Exception e) {
70                         throw new IllegalArgumentException("uri not valid against our model: " + uri);
71                 }
72         }*/
73         
74         /**
75          * @{inheritDoc}
76          */
77         @Override
78         public void processObject (Introspector obj, MultivaluedMap<String, String> uriKeys) {
79                 
80                 dbKeys.add(obj.getDbName());
81
82                 for (String key : uriKeys.keySet()) {
83                         dbKeys.add(uriKeys.getFirst(key).toString());
84                 }
85         }
86         
87         /**
88          * @{inheritDoc}
89          */
90         @Override
91         public void processContainer (Introspector obj, MultivaluedMap<String, String> uriKeys, boolean isFinalContainer) {
92                 
93         }
94         
95         /**
96          * @{inheritDoc}
97          */
98         @Override
99         public void processNamespace(Introspector obj) {
100         
101         }
102         
103         /**
104          * @{inheritDoc}
105          */
106         @Override
107         public String getCloudRegionTransform() {
108                 return "add";
109         }
110         
111         /**
112          * Gets the result.
113          *
114          * @return the result
115          */
116         public Object getResult() {
117                 return Joiner.on("/").join(this.dbKeys);
118         }
119
120         /**
121          * @{inheritDoc}
122          */
123         @Override
124         public boolean useOriginalLoader() {
125                 return false;
126         }
127 }