Enhancements for the aai-common library
[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.config.SpringContextAware;
32 import org.onap.aai.introspection.Loader;
33 import org.onap.aai.introspection.LoaderFactory;
34 import org.onap.aai.introspection.ModelType;
35 import org.onap.aai.query.builder.QueryBuilder;
36 import org.onap.aai.serialization.engines.QueryStyle;
37 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
38 import org.onap.aai.setup.SchemaVersions;
39
40 /**
41  * Creates and returns a groovy shell with the
42  * configuration to statically import graph classes
43  *
44  */
45 public class GroovyQueryBuilder extends AAIAbstractGroovyShell {
46
47     public GroovyQueryBuilder() {
48         super();
49     }
50
51     /**
52      * {@inheritDoc}
53      */
54     @Override
55     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params) {
56         QueryBuilder<Vertex> builder = engine.getQueryBuilder(QueryStyle.GREMLIN_TRAVERSAL);
57
58         builder.changeLoader(getLoader());
59         Binding binding = new Binding(params);
60         binding.setVariable("builder", builder);
61         Script script = shell.parse(traversal);
62         script.setBinding(binding);
63         script.run();
64
65         return builder.getQuery();
66     }
67
68     /**
69      * @throws UnsupportedOperationException
70      */
71     @Override
72     public GraphTraversal<?, ?> executeTraversal(String traversal, Map<String, Object> params) {
73         throw new UnsupportedOperationException();
74     }
75
76     @Override
77     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params, QueryStyle style, GraphTraversalSource traversalSource) {
78         QueryBuilder<Vertex> builder = engine.getQueryBuilder(style, traversalSource);
79         builder.changeLoader(getLoader());
80         Binding binding = new Binding(params);
81         binding.setVariable("builder", builder);
82         Script script = shell.parse(traversal);
83         script.setBinding(binding);
84         script.run();
85
86         return builder.getQuery();
87     }
88 }