e36bd530fa1f8d354db143f91c30116ad64588c8
[aai/champ.git] / champ-lib / champ-titan / src / main / java / org / onap / aai / champtitan / graph / impl / GraphSON.java
1 /**
2  * ============LICENSE_START==========================================
3  * org.onap.aai
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ===================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.champtitan.graph.impl;
23
24 import com.google.gson.JsonObject;
25 import com.google.gson.JsonParser;
26 import com.thinkaurelius.titan.graphdb.tinkerpop.TitanIoRegistry;
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 import org.onap.aai.champcore.FormatMapper;
32
33 import java.io.ByteArrayOutputStream;
34 import java.io.IOException;
35 import java.io.OutputStream;
36
37 public class GraphSON implements FormatMapper {
38     private final GraphSONMapper mapper;
39     private final GraphSONWriter writer;
40     protected JsonParser parser;
41
42     public GraphSON() {
43         this.mapper = GraphSONMapper.build().addRegistry(TitanIoRegistry.INSTANCE).create();
44         this.writer = GraphSONWriter.build().mapper(this.mapper).create();
45         this.parser = new JsonParser();
46     }
47
48     public JsonObject formatObject(Object v) {
49         OutputStream os = new ByteArrayOutputStream();
50         String result = "";
51
52         try {
53             this.writer.writeVertex(os, (Vertex)v, Direction.BOTH);
54             result = os.toString();
55         } catch (IOException var5) {
56             var5.printStackTrace();
57         }
58
59         return this.parser.parse(result).getAsJsonObject();
60     }
61
62     public int parallelThreshold() {
63         return 50;
64     }
65
66 }