add init log filter and modify rulemgt.yml
[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.EnumSet;
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 javax.servlet.DispatcherType;
27 import lombok.extern.slf4j.Slf4j;
28 import org.onap.holmes.common.config.MicroServiceConfig;
29 import org.onap.holmes.common.dropwizard.ioc.bundle.IOCApplication;
30 import org.onap.holmes.common.exception.CorrelationException;
31 import org.onap.holmes.common.utils.MSBRegisterUtil;
32 import org.onap.holmes.common.utils.transactionid.TransactionIdFilter;
33 import org.onap.holmes.rulemgt.dcae.DcaeConfigurationPolling;
34 import org.onap.holmes.rulemgt.resources.RuleMgtResources;
35 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
36 import org.onap.msb.sdk.discovery.entity.Node;
37
38 @Slf4j
39 public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
40
41     public static void main(String[] args) throws Exception {
42         new RuleActiveApp().run(args);
43     }
44
45     @Override
46     public String getName() {
47         return "Holmes Rule Management ActiveApp APP ";
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         ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
62         service.scheduleAtFixedRate(
63                 new DcaeConfigurationPolling(MicroServiceConfig.getEnv(MicroServiceConfig.HOSTNAME)), 0,
64                 DcaeConfigurationPolling.POLLING_PERIOD, TimeUnit.MILLISECONDS);
65         environment.servlets().addFilter("customFilter",new TransactionIdFilter()).addMappingForUrlPatterns(EnumSet
66                 .allOf(DispatcherType.class),true,"/*");
67     }
68
69     private MicroServiceInfo createMicroServiceInfo() {
70         String[] serviceAddrInfo = MicroServiceConfig.getMicroServiceIpAndPort();
71         MicroServiceInfo msinfo = new MicroServiceInfo();
72         msinfo.setServiceName("holmes-rule-mgmt");
73         msinfo.setVersion("v1");
74         msinfo.setUrl("/api/holmes-rule-mgmt/v1");
75         msinfo.setProtocol("REST");
76         msinfo.setVisualRange("0|1");
77         msinfo.setEnable_ssl(true);
78         Set<Node> nodes = new HashSet<>();
79         Node node = new Node();
80         node.setIp(serviceAddrInfo[0]);
81         node.setPort(serviceAddrInfo[1]);
82         nodes.add(node);
83         msinfo.setNodes(nodes);
84         return msinfo;
85     }
86 }