Initial commit with all the necessary files
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / serialization / queryformats / PathedURL.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.serialization.queryformats;
22
23 import org.apache.tinkerpop.gremlin.structure.Vertex;
24
25 import org.openecomp.aai.db.props.AAIProperties;
26 import org.openecomp.aai.exceptions.AAIException;
27 import org.openecomp.aai.introspection.Introspector;
28 import org.openecomp.aai.introspection.Loader;
29 import org.openecomp.aai.introspection.exceptions.AAIUnknownObjectException;
30 import org.openecomp.aai.serialization.queryformats.exceptions.AAIFormatVertexException;
31 import org.openecomp.aai.serialization.queryformats.utils.UrlBuilder;
32 import com.google.gson.JsonObject;
33 import com.google.gson.JsonParser;
34
35 public final class PathedURL implements FormatMapper {
36
37         private final UrlBuilder urlBuilder;
38         private final JsonParser parser;
39         private final Loader loader;
40         
41         public PathedURL (Loader loader, UrlBuilder urlBuilder) throws AAIException {
42                 this.urlBuilder = urlBuilder;
43                 this.parser = new JsonParser();
44                 this.loader = loader;
45         }
46
47         @Override
48         public int parallelThreshold() {
49                 return 20;
50         }
51
52         @Override
53         public JsonObject formatObject(Object input) throws AAIFormatVertexException {
54                 Vertex v = (Vertex)input;
55                 try {
56                         final Introspector searchResult = this.loader.introspectorFromName("result-data");
57
58                         searchResult.setValue("resource-type", v.value(AAIProperties.NODE_TYPE));
59
60                         searchResult.setValue("resource-link", this.urlBuilder.pathed(v));
61                         final String json = searchResult.marshal(false);
62                         return this.parser.parse(json).getAsJsonObject();
63
64                 } catch (AAIUnknownObjectException e) {
65                         throw new RuntimeException("Fatal error - result-data does not exist!", e);
66                 }
67
68         }
69
70 }