48d4ba8ce4c5c7fe7257b45637c4a5aa833baf29
[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 package org.onap.aai.restcore.search;
21
22 import groovy.lang.Binding;
23 import groovy.lang.Script;
24 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
25 import org.apache.tinkerpop.gremlin.structure.Vertex;
26 import org.onap.aai.config.SpringContextAware;
27 import org.onap.aai.introspection.Loader;
28 import org.onap.aai.introspection.LoaderFactory;
29 import org.onap.aai.introspection.ModelType;
30 import org.onap.aai.query.builder.QueryBuilder;
31 import org.onap.aai.serialization.engines.QueryStyle;
32 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
33 import org.onap.aai.setup.SchemaVersions;
34
35 import java.util.Map;
36
37 /**
38  * Creates and returns a groovy shell with the
39  * configuration to statically import graph classes
40  *
41  */
42 public class GroovyQueryBuilder extends AAIAbstractGroovyShell {
43
44         public GroovyQueryBuilder() {
45                 super();
46         }
47
48         /**
49          * {@inheritDoc}
50          */
51         @Override
52         public String executeTraversal (TransactionalGraphEngine engine, String traversal, Map<String, Object> params) {
53                 QueryBuilder<Vertex> builder = engine.getQueryBuilder(QueryStyle.GREMLIN_TRAVERSAL);
54                 SchemaVersions schemaVersions = SpringContextAware.getBean(SchemaVersions.class);
55                 Loader loader = SpringContextAware.getBean(LoaderFactory.class).createLoaderForVersion(ModelType.MOXY,  schemaVersions.getDefaultVersion());
56
57                 builder.changeLoader(loader);
58                 Binding binding = new Binding(params);
59                 binding.setVariable("builder", builder);
60                 Script script = shell.parse(traversal);
61                 script.setBinding(binding);
62                 script.run();
63
64                 return builder.getQuery();
65         }
66
67         /**
68          * @throws UnsupportedOperationException
69          */
70         @Override
71         public GraphTraversal<?, ?> executeTraversal(String traversal, Map<String, Object> params) {
72                 throw new UnsupportedOperationException();
73         }
74 }