Sync the latest code changes
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / serialization / queryformats / FormatFactory.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.serialization.queryformats;
23
24 import javax.ws.rs.core.MultivaluedHashMap;
25 import javax.ws.rs.core.MultivaluedMap;
26
27 import org.onap.aai.exceptions.AAIException;
28 import org.onap.aai.introspection.Loader;
29 import org.onap.aai.serialization.db.DBSerializer;
30 import org.onap.aai.serialization.queryformats.exceptions.QueryParamInjectionException;
31 import org.onap.aai.serialization.queryformats.utils.QueryParamInjector;
32 import org.onap.aai.serialization.queryformats.utils.UrlBuilder;
33
34 public class FormatFactory {
35
36         private final Loader loader;
37         private final DBSerializer serializer;
38         private final UrlBuilder urlBuilder;
39         private final QueryParamInjector injector;
40         public FormatFactory (Loader loader, DBSerializer serializer) throws AAIException {
41                 this.loader = loader;
42                 this.serializer = serializer;
43                 this.urlBuilder = new UrlBuilder(loader.getVersion(), serializer);
44                 this.injector = QueryParamInjector.getInstance();
45         }
46         
47         public Formatter get(Format format) throws AAIException {
48                 return get(format, new MultivaluedHashMap<String, String>());
49         }
50         
51         public Formatter get(Format format, MultivaluedMap<String, String> params) throws AAIException {
52                 
53                 Formatter formatter = null;
54
55                 switch (format) {
56                         case graphson :
57                                 formatter = new Formatter(inject(new GraphSON(), params));
58                                 break;
59                         case pathed :
60                                 formatter = new Formatter(inject(new PathedURL(loader, urlBuilder), params));
61                                 break;
62                         case id :
63                                 formatter = new Formatter(inject(new IdURL(loader, urlBuilder), params));
64                                 break;
65                         case resource :
66                                 formatter = new Formatter(inject(new Resource.Builder(loader, serializer, urlBuilder), params).build());
67                                 break;
68                         case resource_and_url :
69                                 formatter = new Formatter(inject(new Resource.Builder(loader, serializer, urlBuilder).includeUrl(), params).build());
70                                 break;
71                         case raw :
72                                 formatter = new Formatter(inject(new RawFormat.Builder(loader, serializer, urlBuilder), params).build());
73                                 break;
74                         case simple :
75                                 formatter = new Formatter(inject(new RawFormat.Builder(loader, serializer, urlBuilder).depth(0).modelDriven(), params).build());
76                                 break;
77                         case console :
78                                 formatter = new Formatter(inject(new Console(), params));
79                                 break;
80                         case count :
81                                 formatter = new Formatter(inject(new Count(), params));
82                                 break;
83                         default :
84                                 break;
85
86                 }
87                 
88                 return formatter;
89         }
90         
91         private <T> T inject (T obj, MultivaluedMap<String, String> params) throws QueryParamInjectionException {
92                 
93                 injector.injectParams(obj, params);
94                 return obj;
95         }
96         
97 }