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