9e849b8422d8416b93f90ada06db5cc172f09e90
[aai/champ.git] / champ-lib / champ-janus / src / main / java / org / onap / aai / champjanus / 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.champjanus.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.janusgraph.graphdb.tinkerpop.JanusGraphIoRegistry;
28 import org.apache.tinkerpop.gremlin.structure.Direction;
29 import org.apache.tinkerpop.gremlin.structure.Vertex;
30 import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONMapper;
31 import org.apache.tinkerpop.gremlin.structure.io.graphson.GraphSONWriter;
32 import org.onap.aai.champcore.FormatMapper;
33
34 import java.io.ByteArrayOutputStream;
35 import java.io.IOException;
36 import java.io.OutputStream;
37
38 public class GraphSON implements FormatMapper {
39     private final GraphSONMapper mapper;
40     private final GraphSONWriter writer;
41     protected JsonParser parser;
42
43     public GraphSON() {
44         this.mapper = GraphSONMapper.build().addRegistry(JanusGraphIoRegistry.getInstance ()).create();
45         this.writer = GraphSONWriter.build().mapper(this.mapper).create();
46         this.parser = new JsonParser();
47     }
48
49     public JsonObject formatObject(Object v) {
50         OutputStream os = new ByteArrayOutputStream();
51         String result = "";
52
53         try {
54             this.writer.writeVertex(os, (Vertex)v, Direction.BOTH);
55             result = os.toString();
56         } catch (IOException var5) {
57             var5.printStackTrace();
58         }
59
60         return this.parser.parse(result).getAsJsonObject();
61     }
62
63     public int parallelThreshold() {
64         return 50;
65     }
66 }