summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/SfcDriver.java
blob: 57e50a520377ce0f5e390290a016c27ed53a565c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
 * Copyright 2016 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.sfc;

import com.fasterxml.jackson.annotation.JsonInclude;
import io.dropwizard.Application;
import io.dropwizard.assets.AssetsBundle;
import io.dropwizard.server.SimpleServerFactory;
import io.dropwizard.setup.Bootstrap;
import io.dropwizard.setup.Environment;
import io.swagger.jaxrs.config.BeanConfig;
import io.swagger.jaxrs.listing.ApiListingResource;
import org.onap.sfc.utils.SfcConst;
import org.onap.sfc.health.ConsoleHealthCheck;
import org.onap.sfc.resources.DriverResource;
import org.onap.sfc.service.ConfigInfo;
import org.onap.sfc.resources.MsbServiceRegister;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class SfcDriver extends Application<SfcDriverConfig> {

    private static final Logger LOGGER = LoggerFactory.getLogger(SfcDriver.class);

    public static void main(String[] args) throws Exception {
        new SfcDriver().run(args);
    }

    @Override
    public String getName() {
        return SfcConst.SERVICE_NAME;
    }

    @Override
    public void initialize(Bootstrap<SfcDriverConfig> bootstrap) {
        bootstrap.addBundle(new AssetsBundle("/iui", "/", "index.html", "iui"));
        bootstrap.addBundle(new AssetsBundle("/api-doc", "/api-doc", "index.html", "api-doc"));
    }

    @Override
    public void run(SfcDriverConfig configuration,
                    Environment environment) {
        final DriverResource driverResource = new DriverResource();
        final ConsoleHealthCheck healthCheck =
                new ConsoleHealthCheck(configuration.getTemplate());
        environment.healthChecks().register("template", healthCheck);
        environment.jersey().register(driverResource);
        ConfigInfo.setConfig(configuration);

        registerService();
        initSwaggerConfig(environment, configuration);
    }


    private void initSwaggerConfig(Environment environment, SfcDriverConfig configuration) {
        environment.jersey().register(new ApiListingResource());
        environment.getObjectMapper().setSerializationInclusion(JsonInclude.Include.NON_NULL);

        BeanConfig config = new BeanConfig();
        config.setTitle(" Console Service rest API");
        config.setVersion("1.0.0");
        config.setResourcePackage("org.openo.sfc.resources");
        //swagger rest api basepath
        SimpleServerFactory simpleServerFactory = (SimpleServerFactory) configuration.getServerFactory();
        String basePath = simpleServerFactory.getApplicationContextPath();

        basePath = basePath.endsWith("/") ? basePath : (new StringBuilder()).append(basePath).append('/').toString();
        basePath = basePath + "service";
        LOGGER.info("getApplicationContextPath: " + basePath);
        config.setBasePath(basePath);
        config.setScan(true);
    }

    private void registerService()
    {
        Thread msbRegisterThread = new Thread(new MsbServiceRegister());
        msbRegisterThread.setName("Register Service 2 MSB");
        msbRegisterThread.start();
    }

}