Enhancements for the aai-common library
[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-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
21 package org.onap.aai.serialization.queryformats;
22
23 import org.onap.aai.exceptions.AAIException;
24 import org.onap.aai.introspection.Loader;
25 import org.onap.aai.serialization.db.DBSerializer;
26 import org.onap.aai.serialization.queryformats.exceptions.QueryParamInjectionException;
27 import org.onap.aai.serialization.queryformats.utils.QueryParamInjector;
28 import org.onap.aai.serialization.queryformats.utils.UrlBuilder;
29 import org.onap.aai.setup.SchemaVersions;
30
31 import javax.ws.rs.core.MultivaluedHashMap;
32 import javax.ws.rs.core.MultivaluedMap;
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
41     public FormatFactory(Loader loader, DBSerializer serializer, SchemaVersions schemaVersions, String basePath)
42             throws AAIException {
43         this.loader = loader;
44         this.serializer = serializer;
45         this.urlBuilder = new UrlBuilder(loader.getVersion(), serializer, schemaVersions, basePath);
46         this.injector = QueryParamInjector.getInstance();
47     }
48
49     public Formatter get(Format format) throws AAIException {
50         return get(format, new MultivaluedHashMap<>());
51     }
52
53     public Formatter get(Format format, MultivaluedMap<String, String> params) throws AAIException {
54
55         Formatter formatter = null;
56
57         switch (format) {
58             case graphson:
59                 formatter = new Formatter(inject(new GraphSON(), params));
60                 break;
61             case pathed:
62                 formatter = new Formatter(inject(new PathedURL.Builder(loader, serializer, urlBuilder), params).build(), params);
63                 break;
64             case pathed_resourceversion:
65                 formatter = new Formatter(inject(new PathedURL.Builder(loader, serializer, urlBuilder).includeUrl(), params).build(), params);
66                 break;
67             case id:
68                 formatter = new Formatter(inject(new IdURL.Builder(loader, serializer, urlBuilder), params).build(), params);
69                 break;
70             case resource:
71                 formatter = new Formatter(inject(new Resource.Builder(loader, serializer, urlBuilder, params), params).build(), params);
72                 break;
73             case resource_and_url:
74                 formatter = new Formatter(
75                         inject(new Resource.Builder(loader, serializer, urlBuilder, params).includeUrl(), params).build(), params);
76                 break;
77             case raw:
78                 formatter =
79                         new Formatter(inject(new RawFormat.Builder(loader, serializer, urlBuilder), params).build(), params);
80                 break;
81             case simple:
82                 formatter = new Formatter(
83                         inject(new RawFormat.Builder(loader, serializer, urlBuilder).depth(0).modelDriven(), params)
84                                 .build(), params);
85                 break;
86             case aggregate:
87                 formatter = new Formatter(
88                     inject(new Aggregate.Builder(loader, serializer, urlBuilder).depth(0).modelDriven(), params)
89                         .build(), params);
90                 break;
91             case console:
92                 formatter = new Formatter(inject(new Console(), params));
93                 break;
94             case count:
95                 formatter = new Formatter(inject(new Count(), params));
96                 break;
97             case resource_with_sot:
98                 formatter = new Formatter(
99                         inject(new ResourceWithSoT.Builder(loader, serializer, urlBuilder), params).build(), params);
100                 break;
101             case changes:
102                 formatter =
103                     new Formatter(inject(new ChangesFormat(), params));
104                 break;
105             case state:
106                 formatter =
107                     new Formatter(inject(new StateFormat.Builder(loader, serializer, urlBuilder), params).build(format));
108                 break;
109             case lifecycle:
110                 formatter =
111                     new Formatter(inject(new LifecycleFormat.Builder(loader, serializer, urlBuilder), params).build(format));
112                 break;
113             default:
114                 break;
115
116         }
117
118         return formatter;
119     }
120
121     private <T> T inject(T obj, MultivaluedMap<String, String> params) throws QueryParamInjectionException {
122
123         injector.injectParams(obj, params);
124         return obj;
125     }
126
127 }