e7f30a7f09311cedd99598b5ec1aa8a445020fcc
[holmes/rule-management.git] / rulemgt / src / main / java / org / onap / holmes / rulemgt / RuleActiveApp.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
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  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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 java.util.HashSet;
21 import java.util.Set;
22 import java.util.concurrent.Executors;
23 import java.util.concurrent.ScheduledExecutorService;
24 import java.util.concurrent.TimeUnit;
25 import lombok.extern.slf4j.Slf4j;
26 import org.onap.holmes.common.config.MicroServiceConfig;
27 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
28 import org.onap.holmes.common.exception.CorrelationException;
29 import org.onap.holmes.common.utils.MSBRegisterUtil;
30 import org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling;
31 import org.onap.holmes.rulemgt.resources.RuleMgtResources;
32 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
33 import org.onap.msb.sdk.discovery.entity.Node;
34
35 @Slf4j
36 public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
37
38     public static void main(String[] args) throws Exception {
39         new RuleActiveApp().run(args);
40     }
41
42     @Override
43     public String getName() {
44         return "Holmes Rule Management ActiveApp APP ";
45     }
46
47     @Override
48     public void run(RuleAppConfig configuration, Environment environment) throws Exception {
49         super.run(configuration, environment);
50
51         environment.jersey().register(new RuleMgtResources());
52         try {
53             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
54         } catch (CorrelationException e) {
55             log.warn(e.getMessage(), e);
56         }
57
58         ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
59         service.scheduleAtFixedRate(
60                 new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
61                 DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
62     }
63
64     private MicroServiceInfo createMicroServiceInfo() {
65         String[] serviceAddrInfo = MicroServiceConfig.getMicroServiceIpAndPort();
66         MicroServiceInfo msinfo = new MicroServiceInfo();
67         msinfo.setServiceName("holmes-rule-mgmt");
68         msinfo.setVersion("v1");
69         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
70         msinfo.setProtocol("REST");
71         msinfo.setVisualRange("0|1");
72         msinfo.setEnable_ssl(true);
73         Set<Node> nodes = new HashSet<>();
74         Node node = new Node();
75         node.setIp(serviceAddrInfo[0]);
76         node.setPort(serviceAddrInfo[1]);
77         nodes.add(node);
78         msinfo.setNodes(nodes);
79         return msinfo;
80     }
81 }