Update license files, sonar plugin and fix tests
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / serialization / queryformats / GraphSON.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 java.io.ByteArrayOutputStream;
24 import java.io.IOException;
25 import java.io.OutputStream;
26
27 import org.apache.tinkerpop.gremlin.structure.Direction;
28 import org.apache.tinkerpop.gremlin.structure.Vertex;
29 import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONMapper;
30 import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter;
31
32 import com.google.gson.JsonObject;
33 import com.google.gson.JsonParser;
34 import com.thinkaurelius.titan.graphdb.tinkerpop.TitanIoRegistry;
35
36 public class GraphSON implements FormatMapper {
37
38         private final GraphSONMapper mapper = GraphSONMapper.build().addRegistry(TitanIoRegistry.INSTANCE).create();
39         private final GraphSONWriter writer = GraphSONWriter.build().mapper(mapper).create();
40         protected JsonParser parser = new JsonParser();
41         
42         @Override
43         public JsonObject formatObject(Object v) {
44                 OutputStream os = new ByteArrayOutputStream();
45                 String result = "";
46                 try {
47                         writer.writeVertex(os, (Vertex)v, Direction.BOTH);
48                         
49                         result = os.toString();
50                 } catch (IOException e) {
51                         // TODO Auto-generated catch block
52                         e.printStackTrace();
53                 }
54                 
55                 return parser.parse(result).getAsJsonObject();
56                 
57         }
58         
59         @Override
60         public int parallelThreshold() {
61                 return 50;
62         }
63 }