Updated to Java 11
[holmes/rule-management.git] / rulemgt / src / main / java / org / onap / holmes / rulemgt / RuleActiveApp.java
1 /**
2  * Copyright 2017-2018 ZTE Corporation.
3  * <p>
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * <p>
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * <p>
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.holmes.rulemgt;
18
19 import io.dropwizard.setup.Environment;
20 import org.onap.holmes.common.config.MicroServiceConfig;
21 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
22 import org.onap.holmes.common.exception.CorrelationException;
23 import org.onap.holmes.common.utils.HttpsUtils;
24 import org.onap.holmes.common.utils.MSBRegisterUtil;
25 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
26 import org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling;
27 import org.onap.holmes.rulemgt.msb.MsbQuery;
28 import org.onap.holmes.rulemgt.resources.RuleMgtResources;
29 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
30 import org.onap.msb.sdk.discovery.entity.Node;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33
34 import javax.servlet.DispatcherType;
35 import java.util.EnumSet;
36 import java.util.HashSet;
37 import java.util.Set;
38 import java.util.concurrent.Executors;
39 import java.util.concurrent.ScheduledExecutorService;
40 import java.util.concurrent.TimeUnit;
41
42 public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
43
44     private Logger log = LoggerFactory.getLogger(RuleActiveApp.class);
45
46     public static void main(String[] args) throws Exception {
47         new RuleActiveApp().run(args);
48     }
49
50     @Override
51     public void run(RuleAppConfig configuration, Environment environment) throws Exception {
52         super.run(configuration, environment);
53
54         environment.jersey().register(new RuleMgtResources());
55         try {
56             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
57         } catch (CorrelationException e) {
58             log.warn(e.getMessage(), e);
59         }
60
61         if (!"1".equals(System.getenv("TESTING"))) {
62             ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
63             service.scheduleAtFixedRate(
64                     new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
65                     DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
66         }
67
68         environment.servlets().addFilter("customFilter", new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
69                 .allOf(DispatcherType.class), true, "/*");
70
71         new MsbQuery().startTimer();
72     }
73
74     private MicroServiceInfo createMicroServiceInfo() {
75         String msbAddrTemplate = (HttpsUtils.isHttpsEnabled() ? "https" : "http")
76                 + "://%s:%s/api/holmes-rule-mgmt/v1/healthcheck";
77         String[] serviceAddrInfo = MicroServiceConfig.getMicroServiceIpAndPort();
78         MicroServiceInfo msinfo = new MicroServiceInfo();
79         msinfo.setServiceName("holmes-rule-mgmt");
80         msinfo.setVersion("v1");
81         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
82         msinfo.setProtocol("REST");
83         msinfo.setVisualRange("0|1");
84         msinfo.setEnable_ssl(HttpsUtils.isHttpsEnabled());
85         Set<Node> nodes = new HashSet<>();
86         Node node = new Node();
87         node.setIp(serviceAddrInfo[0]);
88         node.setPort("9101");
89         node.setCheckType("HTTP");
90         node.setCheckUrl(String.format(msbAddrTemplate, serviceAddrInfo[0], "9101"));
91         node.setCheckTimeOut("60s");
92         node.setCheckInterval("60s");
93         nodes.add(node);
94         msinfo.setNodes(nodes);
95         return msinfo;
96     }
97 }
98