modify not publish messages to DMaaP
[holmes/engine-management.git] / engine-d / src / main / java / org / onap / holmes / engine / EngineDActiveApp.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 package org.onap.holmes.engine;
17
18 import static jdk.nashorn.internal.runtime.regexp.joni.Config.log;
19
20 import io.dropwizard.setup.Environment;
21 import java.util.HashSet;
22 import java.util.Set;
23 import java.util.concurrent.Executors;
24 import java.util.concurrent.ScheduledExecutorService;
25 import java.util.concurrent.TimeUnit;
26 import lombok.extern.slf4j.Slf4j;
27 import org.onap.holmes.common.config.MicroServiceConfig;
28 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
29 import org.onap.holmes.common.exception.CorrelationException;
30 import org.onap.holmes.common.utils.MSBRegisterUtil;
31 import org.onap.holmes.engine.dcaepolling.DcaeConfigurationPolling;
32 import org.onap.holmes.engine.resources.EngineResources;
33 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
34 import org.onap.msb.sdk.discovery.entity.Node;
35
36 @Slf4j
37 public class EngineDActiveApp extends IOCApplication<EngineDAppConfig> {
38
39     public static void main(String[] args) throws Exception {
40         new EngineDActiveApp().run(args);
41     }
42
43     public void run(EngineDAppConfig configuration, Environment environment) throws Exception {
44         super.run(configuration, environment);
45
46         environment.jersey().register(new EngineResources());
47
48         ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
49         service.scheduleAtFixedRate(new DcaeConfigurationPolling("holmes-rule-mgmt"), 0,
50                 DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
51
52         try {
53             new MSBRegisterUtil().register2Msb(createMicroServiceInfo());
54         } catch (CorrelationException e) {
55             log.warn(e.getMessage(), e);
56         }
57     }
58
59     private MicroServiceInfo createMicroServiceInfo() {
60         String[] serviceAddrInfo = MicroServiceConfig.getServiceAddrInfo();
61         MicroServiceInfo msinfo = new MicroServiceInfo();
62         msinfo.setServiceName("holmes-engine-mgmt");
63         msinfo.setVersion("v1");
64         msinfo.setUrl("/api/holmes-engine-mgmt/v1");
65         msinfo.setProtocol("REST");
66         msinfo.setVisualRange("0|1");
67         Set<Node> nodes = new HashSet<>();
68         Node node = new Node();
69         node.setIp(serviceAddrInfo[0]);
70         node.setPort(serviceAddrInfo[1]);
71         nodes.add(node);
72         msinfo.setNodes(nodes);
73         return msinfo;
74     }
75 }