c3ca5cba12b130edac35974457735bbc18320212
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / parsers / query / RelationshipQueryParser.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.parsers.query;
21
22 import com.att.eelf.configuration.EELFLogger;
23 import com.att.eelf.configuration.EELFManager;
24 import org.onap.aai.config.SpringContextAware;
25 import org.onap.aai.edges.EdgeIngestor;
26 import org.onap.aai.exceptions.AAIException;
27 import org.onap.aai.introspection.Introspector;
28 import org.onap.aai.introspection.Loader;
29 import org.onap.aai.introspection.ModelType;
30 import org.onap.aai.parsers.relationship.RelationshipToURI;
31 import org.onap.aai.parsers.uri.URIParser;
32 import org.onap.aai.query.builder.QueryBuilder;
33 import org.springframework.context.ApplicationContext;
34
35 import java.io.UnsupportedEncodingException;
36
37 /**
38  * The Class RelationshipQueryParser.
39  */
40 public class RelationshipQueryParser extends LegacyQueryParser {
41
42         private static final EELFLogger logger = EELFManager.getInstance().getLogger(RelationshipQueryParser.class);
43
44         private Introspector relationship = null;
45         
46         private ModelType modelType = null;
47         
48         private EdgeIngestor edgeRules = null;
49         
50         /**
51          * Instantiates a new relationship query parser.
52          *
53          * @param loader the loader
54          * @param queryBuilder the query builder
55          * @param obj the obj
56          * @throws UnsupportedEncodingException the unsupported encoding exception
57          * @throws AAIException the AAI exception
58          */
59         public RelationshipQueryParser(Loader loader, QueryBuilder queryBuilder, Introspector obj) throws UnsupportedEncodingException, AAIException {
60                 super(loader, queryBuilder);
61                 this.relationship = obj;
62                 this.modelType = obj.getModelType();
63                 initBeans();
64                 RelationshipToURI rToUri = new RelationshipToURI(loader, obj);
65                 this.uri = rToUri.getUri();
66                 URIParser parser = new URIParser(loader, uri);
67                 parser.parse(this);
68         }
69
70         private void initBeans() {
71                 ApplicationContext ctx = SpringContextAware.getApplicationContext();
72                 if (ctx == null) {
73                     logger.warn("Unable to retrieve the spring context");
74                 } else {
75                         EdgeIngestor ei = ctx.getBean(EdgeIngestor.class);
76                         this.edgeRules = ei;
77                 }
78         }
79
80 }