Merge "[AAI] Fix doc config files"
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / restcore / search / GroovyQueryBuilder.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.restcore.search;
22
23 import groovy.lang.Binding;
24 import groovy.lang.Script;
25
26 import java.util.Map;
27
28 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
29 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
30 import org.apache.tinkerpop.gremlin.structure.Vertex;
31 import org.onap.aai.query.builder.QueryBuilder;
32 import org.onap.aai.serialization.engines.QueryStyle;
33 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
34
35 /**
36  * Creates and returns a groovy shell with the
37  * configuration to statically import graph classes
38  *
39  */
40 public class GroovyQueryBuilder extends AAIAbstractGroovyShell {
41
42     public GroovyQueryBuilder() {
43         super();
44     }
45
46     /**
47      * {@inheritDoc}
48      */
49     @Override
50     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params) {
51         QueryBuilder<Vertex> builder = engine.getQueryBuilder(QueryStyle.GREMLIN_TRAVERSAL);
52
53         builder.changeLoader(getLoader());
54         Binding binding = new Binding(params);
55         binding.setVariable("builder", builder);
56         Script script = shell.parse(traversal);
57         script.setBinding(binding);
58         script.run();
59
60         return builder.getQuery();
61     }
62
63     /**
64      * @throws UnsupportedOperationException
65      */
66     @Override
67     public GraphTraversal<?, ?> executeTraversal(String traversal, Map<String, Object> params) {
68         throw new UnsupportedOperationException();
69     }
70
71     @Override
72     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params,
73             QueryStyle style, GraphTraversalSource traversalSource) {
74         QueryBuilder<Vertex> builder = engine.getQueryBuilder(style, traversalSource);
75         builder.changeLoader(getLoader());
76         Binding binding = new Binding(params);
77         binding.setVariable("builder", builder);
78         Script script = shell.parse(traversal);
79         script.setBinding(binding);
80         script.run();
81
82         return builder.getQuery();
83     }
84 }