aboutsummaryrefslogtreecommitdiffstats
path: root/aai-traversal/src/main/java/org/onap/aai/rest/search/GenericQueryProcessor.java
blob: 56b748c320d315defca97613d616ea8bb135e71f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.aai.rest.search;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import org.apache.tinkerpop.gremlin.process.traversal.P;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.__;
import org.apache.tinkerpop.gremlin.structure.Graph;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.javatuples.Pair;
import org.onap.aai.exceptions.AAIException;
import org.onap.aai.query.builder.MissingOptionalParameter;
import org.onap.aai.rest.dsl.DslQueryProcessor;
import org.onap.aai.restcore.search.GroovyQueryBuilder;
import org.onap.aai.restcore.util.URITools;
import org.onap.aai.serialization.engines.TransactionalGraphEngine;
import org.onap.aai.serialization.queryformats.SubGraphStyle;

import javax.ws.rs.core.MultivaluedHashMap;
import javax.ws.rs.core.MultivaluedMap;
import java.io.FileNotFoundException;
import java.net.URI;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public abstract class GenericQueryProcessor {

	private static EELFLogger LOGGER = EELFManager.getInstance().getLogger(GenericQueryProcessor.class);

	protected final Optional<URI> uri;
	protected final MultivaluedMap<String, String> queryParams;
	protected final Optional<Collection<Vertex>> vertices;
	protected static Pattern p = Pattern.compile("query/(.*+)");
	protected Optional<String> gremlin;
	protected final TransactionalGraphEngine dbEngine;
	protected GremlinServerSingleton gremlinServerSingleton;
	protected GroovyQueryBuilder groovyQueryBuilder = new GroovyQueryBuilder();
	protected final boolean isGremlin;
	protected Optional<DslQueryProcessor> dslQueryProcessorOptional;
	/* dsl parameters to store dsl query and to check
	 * if this is a DSL request
	 */
	protected Optional<String> dsl;
	protected final boolean isDsl ;

	protected GenericQueryProcessor(Builder builder) {
		this.uri = builder.getUri();
		this.dbEngine = builder.getDbEngine();
		this.vertices = builder.getVertices();
		this.gremlin = builder.getGremlin();
		this.isGremlin = builder.isGremlin();
		this.dsl = builder.getDsl();
		this.isDsl = builder.isDsl();
		this.gremlinServerSingleton = builder.getGremlinServerSingleton();
		this.dslQueryProcessorOptional = builder.getDslQueryProcessor();
		
		if (uri.isPresent()) {
			queryParams = URITools.getQueryMap(uri.get());
		} else {
			queryParams = new MultivaluedHashMap<>();
		}
	}
	
	protected abstract GraphTraversal<?,?> runQuery(String query, Map<String, Object> params);
	
	protected List<Object> processSubGraph(SubGraphStyle style, GraphTraversal<?,?> g) {
		final List<Object> resultVertices = new Vector<>();
		g.store("y");
		
		if (SubGraphStyle.prune.equals(style) || SubGraphStyle.star.equals(style)) {
			g.barrier().bothE();
			if (SubGraphStyle.prune.equals(style)) {
				g.where(__.otherV().where(P.within("y")));
			}
			g.dedup().subgraph("subGraph").cap("subGraph").map(x -> (Graph)x.get()).next().traversal().V().forEachRemaining(x -> {
				resultVertices.add(x);
			});
		} else {
			resultVertices.addAll(g.toList());
		}
		return resultVertices;
	}
	
	public List<Object> execute(SubGraphStyle style) throws FileNotFoundException, AAIException {
		final List<Object> resultVertices;

		Pair<String, Map<String, Object>> tuple = this.createQuery();
		String query = tuple.getValue0();
		Map<String, Object> params = tuple.getValue1();

		if (query.equals("") && (vertices.isPresent() && vertices.get().isEmpty())) {
			//nothing to do, just exit
			return new ArrayList<>();
		}
		GraphTraversal<?,?> g = this.runQuery(query, params);
		
		resultVertices = this.processSubGraph(style, g);
		
		return resultVertices;
	}
	
	protected Pair<String, Map<String, Object>> createQuery() throws AAIException {
		Map<String, Object> params = new HashMap<>();
		String query = "";
		 if (this.isGremlin) {
			query = gremlin.get();
			
		}else if (this.isDsl) {
			String dslUserQuery = dsl.get();
			 if(dslQueryProcessorOptional.isPresent()){
				 String dslQuery = dslQueryProcessorOptional.get().parseAaiQuery(dslUserQuery);
				 query = groovyQueryBuilder.executeTraversal(dbEngine, dslQuery, params);
				 String startPrefix = "g.V()";
				 query = startPrefix + query;
			 }
			 LOGGER.debug("Converted to gremlin query\n {}", query);
		}else {
			Matcher m = p.matcher(uri.get().getPath());
			String queryName = "";
			List<String> optionalParameters = Collections.emptyList();
			if (m.find()) {
				queryName = m.group(1);
				CustomQueryConfig queryConfig = gremlinServerSingleton.getCustomQueryConfig(queryName);
				if ( queryConfig != null ) {
					query = queryConfig.getQuery();
					optionalParameters = queryConfig.getQueryOptionalProperties();
				}
			}
			
			for (String key : queryParams.keySet()) {
				params.put(key, queryParams.getFirst(key));
				if ( optionalParameters.contains(key) ){
					optionalParameters.remove(key);
				}
			}
			
			if (!optionalParameters.isEmpty()){
				MissingOptionalParameter missingParameter = MissingOptionalParameter.getInstance();
				for ( String key : optionalParameters ) {
					params.put(key, missingParameter);
				}
			}
			
			if (vertices.isPresent() && !vertices.get().isEmpty()) {

				// Get the vertices and convert them into object array
				// The reason for this was .V() takes in an array of objects
				// not a list of objects so that needs to be converted
                // Also instead of statically creating the list which is a bad practice
				// We are binding the array dynamically to the groovy processor correctly
				// This will fix the memory issue of the method size too big
				// as statically creating a list string and passing is not appropriate

				Object [] startVertices = vertices.get().toArray();

				params.put("startVertexes", startVertices);

				if (query == null) {
					query = "";
				} else {
					query = groovyQueryBuilder.executeTraversal(dbEngine, query, params);
				}

				String startPrefix = "g.V(startVertexes)";

				if (!"".equals(query)) {
					query = startPrefix + query;
				} else {
					query = startPrefix;
				}

				// Getting all the vertices and logging them is not reasonable
				// As it could have performance impacts so doing a check here
				// to see if the logger is trace so only print the start vertexes
				// otherwise we would like to see what the gremlin query that was converted
                // So to check if the output matches the desired behavior
				// This way if to enable deeper logging, just changing logback would work
				if(LOGGER.isTraceEnabled()){
					String readQuery = query.replaceAll("startVertexes",
							Arrays.toString(startVertices).replaceAll("[^0-9,]", ""));
					LOGGER.trace("Converted to gremlin query including the start vertices \n {}", readQuery);
				}
				else if(LOGGER.isDebugEnabled()){
					LOGGER.debug("Converted to gremlin query without the start vertices \n {}", query);
				}
			} else {
				throw new AAIException("AAI_6148");
			}
			
		}
		
		return new Pair<>(query, params);
	}
	
	public static class Builder {

		private final TransactionalGraphEngine dbEngine;
		private Optional<URI> uri = Optional.empty();
		private Optional<String> gremlin = Optional.empty();
		private boolean isGremlin = false;
		private Optional<Collection<Vertex>> vertices = Optional.empty();
		private QueryProcessorType processorType = QueryProcessorType.GREMLIN_SERVER;
		
		private Optional<String> dsl = Optional.empty();
		private boolean isDsl = false;
		private DslQueryProcessor dslQueryProcessor;
		private GremlinServerSingleton gremlinServerSingleton;
		private Optional<String> nodeType = Optional.empty();
		private boolean isNodeTypeQuery = false;
		protected  MultivaluedMap<String, String> uriParams; 
		
		public Builder(TransactionalGraphEngine dbEngine, GremlinServerSingleton gremlinServerSingleton) {
			this.dbEngine = dbEngine;
			this.gremlinServerSingleton = gremlinServerSingleton;
		}
		
		public Builder queryFrom(URI uri) {
			this.uri = Optional.of(uri);
			this.isGremlin = false;
			return this;
		}
		
		public Builder startFrom(Collection<Vertex> vertices) {
			this.vertices = Optional.of(vertices);
			return this;
		}
		
		public Builder queryFrom( String query, String queryType) {
			
			if(queryType.equals("gremlin")){
				this.gremlin = Optional.of(query);
				this.isGremlin = true;
			}
			if(queryType.equals("dsl")){
				this.dsl = Optional.of(query);
				this.isDsl = true;
			}
			if(queryType.equals("nodeQuery")){
				this.nodeType = Optional.of(query);
				this.isNodeTypeQuery = true;
			}
			return this;
		}
		
		public Builder uriParams(MultivaluedMap<String, String> uriParams) {
			this.uriParams = uriParams;
			return this;
		}
		
		public Builder processWith(QueryProcessorType type) {
			this.processorType = type;
			return this;
		}

		public Builder queryProcessor(DslQueryProcessor dslQueryProcessor){
			this.dslQueryProcessor = dslQueryProcessor;
			return this;
		}

		public Optional<DslQueryProcessor> getDslQueryProcessor(){
			return Optional.ofNullable(this.dslQueryProcessor);
		}
		public TransactionalGraphEngine getDbEngine() {
			return dbEngine;
		}

		public Optional<URI> getUri() {
			return uri;
		}

		public Optional<String> getGremlin() {
			return gremlin;
		}

		public boolean isGremlin() {
			return isGremlin;
		}
		
		public Optional<String> getDsl() {
			return dsl;
		}

		public boolean isDsl() {
			return isDsl;
		}

		public Optional<Collection<Vertex>> getVertices() {
			return vertices;
		}
		
		public QueryProcessorType getProcessorType() {
			return processorType;
		}

		public GremlinServerSingleton getGremlinServerSingleton(){
			return gremlinServerSingleton;
		}

		public Optional<String> getNodeType() {
			return nodeType;
		}
		
		public boolean isNodeTypeQuery() {
			return isNodeTypeQuery;
		}
		
		public GenericQueryProcessor create() {
			if (isNodeTypeQuery()) {
				return new NodeQueryProcessor(this);
			}
			return new GroovyShellImpl(this);
		}
		
	}
}