Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / filter / ElasticSearchSynchronizerFilter.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.synchronizer.filter;
24
25 import java.io.IOException;
26 import java.net.InetAddress;
27 import java.net.UnknownHostException;
28
29 import javax.servlet.Filter;
30 import javax.servlet.FilterChain;
31 import javax.servlet.FilterConfig;
32 import javax.servlet.ServletException;
33 import javax.servlet.ServletRequest;
34 import javax.servlet.ServletResponse;
35
36 import org.onap.aai.sparky.config.oxm.OxmModelLoader;
37 import org.onap.aai.sparky.logging.AaiUiMsgs;
38 import org.onap.aai.sparky.synchronizer.SyncHelper;
39 import org.onap.aai.sparky.util.NodeUtils;
40 import org.onap.aai.cl.api.Logger;
41 import org.onap.aai.cl.eelf.LoggerFactory;
42 import org.onap.aai.cl.mdc.MdcContext;
43
44 /*
45  * This is a wire-frame for an experiment to get the jetty filter-lifecyle initialization method to
46  * setup a scheduled thread executor with an ElasticSearchSynchronization task, which (I'm hoping)
47  * will allow us to do periodic ES <=> AAI synchronization.
48  * 
49  * Alternatively, if the embedded java approach doesn't work we could try instead to do a
50  * System.exec( "perl refreshElasticSearchInstance.pl"). We have two options, I'm hoping the
51  * embedded options will work for us.
52  */
53
54 /**
55  * The Class ElasticSearchSynchronizerFilter.
56  */
57 public class ElasticSearchSynchronizerFilter implements Filter {
58
59   private static final Logger LOG = LoggerFactory.getInstance().getLogger(ElasticSearchSynchronizerFilter.class);
60
61   private SyncHelper syncHelper;
62
63   /* (non-Javadoc)
64    * @see javax.servlet.Filter#destroy()
65    */
66   @Override
67   public void destroy() {
68
69     if (syncHelper != null) {
70       syncHelper.shutdown();
71     }
72   }
73
74   /* (non-Javadoc)
75    * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
76    */
77   @Override
78   public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
79       throws IOException, ServletException {
80
81     /*
82      * However, we will setup the filtermap with a url that should never get it, so we shouldn't
83      * ever be in here.
84      */
85
86     chain.doFilter(request, response);
87   }
88
89   /* (non-Javadoc)
90    * @see javax.servlet.Filter#init(javax.servlet.FilterConfig)
91    */
92   @Override
93   public void init(FilterConfig filterConfig) throws ServletException {
94         String txnID = NodeUtils.getRandomTxnId();
95         MdcContext.initialize(txnID, "ElasticSearchSynchronizerFilter", "", "Init", "");
96             
97         LOG.debug(AaiUiMsgs.DEBUG_GENERIC, "init()");
98
99     try {
100       new SyncHelper(OxmModelLoader.getInstance());
101     } catch (Exception exc) {
102       throw new ServletException("Caught an exception while initializing filter", exc);
103     }
104
105   }
106
107 }