Repaired an NPE
[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
21 import java.util.EnumSet;
22 import java.util.HashSet;
23 import java.util.Set;
24 import java.util.concurrent.Executors;
25 import java.util.concurrent.ScheduledExecutorService;
26 import java.util.concurrent.TimeUnit;
27 import javax.servlet.DispatcherType;
28
29 import lombok.extern.slf4j.Slf4j;
30 import org.onap.holmes.common.config.MicroServiceConfig;
31 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
32 import org.onap.holmes.common.exception.CorrelationException;
33 import org.onap.holmes.common.utils.MSBRegisterUtil;
34 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
35 import org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling;
36 import org.onap.holmes.rulemgt.msb.MsbQuery;
37 import org.onap.holmes.rulemgt.resources.RuleMgtResources;
38 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
39 import org.onap.msb.sdk.discovery.entity.Node;
40
41 @Slf4j
42 public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
43
44     public static void main(String[] args) throws Exception {
45         new RuleActiveApp().run(args);
46     }
47
48     @Override
49     public String getName() {
50         return "Holmes Rule Management ActiveApp APP ";
51     }
52
53     @Override
54     public void run(RuleAppConfig configuration, Environment environment) throws Exception {
55         super.run(configuration, environment);
56
57         environment.jersey().register(new RuleMgtResources());
58         try {
59             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
60         } catch (CorrelationException e) {
61             log.warn(e.getMessage(), e);
62         }
63
64         if (!"1".equals(System.getenv("TESTING"))) {
65             ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
66             service.scheduleAtFixedRate(
67                     new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
68                     DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
69         }
70
71         environment.servlets().addFilter("customFilter", new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
72                 .allOf(DispatcherType.class), true, "/*");
73
74         new MsbQuery().startTimer();
75     }
76
77     private MicroServiceInfo createMicroServiceInfo() {
78         String[] serviceAddrInfo = MicroServiceConfig.getMicroServiceIpAndPort();
79         MicroServiceInfo msinfo = new MicroServiceInfo();
80         msinfo.setServiceName("holmes-rule-mgmt");
81         msinfo.setVersion("v1");
82         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
83         msinfo.setProtocol("REST");
84         msinfo.setVisualRange("0|1");
85         msinfo.setEnable_ssl(true);
86         Set<Node> nodes = new HashSet<>();
87         Node node = new Node();
88         node.setIp(serviceAddrInfo[0]);
89         node.setPort(serviceAddrInfo[1]);
90         node.setCheckType("HTTP");
91         node.setCheckUrl(String.format("https://%s:%s/api/holmes-rule-mgmt/v1/healthcheck", serviceAddrInfo[0], "9101"));
92         node.setCheckTimeOut("60s");
93         node.setCheckInterval("60s");
94         nodes.add(node);
95         msinfo.setNodes(nodes);
96         return msinfo;
97     }
98 }