modify dace polling and loopControlName
[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         ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
52         service.scheduleAtFixedRate(new DcaeConfigurationPolling("holmes-rule-mgmt"), 0,
53                 DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
54
55         environment.jersey().register(new RuleMgtResources());
56         try {
57             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
58         } catch (CorrelationException e) {
59             log.warn(e.getMessage(), e);
60         }
61     }
62
63     private MicroServiceInfo createMicroServiceInfo() {
64         String[] serviceAddrInfo = MicroServiceConfig.getServiceAddrInfo();
65         MicroServiceInfo msinfo = new MicroServiceInfo();
66         msinfo.setServiceName("holmes-rule-mgmt");
67         msinfo.setVersion("v1");
68         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
69         msinfo.setProtocol("REST");
70         msinfo.setVisualRange("0|1");
71         Set<Node> nodes = new HashSet<>();
72         Node node = new Node();
73         node.setIp(serviceAddrInfo[0]);
74         node.setPort(serviceAddrInfo[1]);
75         nodes.add(node);
76         msinfo.setNodes(nodes);
77         return msinfo;
78     }
79 }