Upgrade spring-boot to 2.7.X in model-loader
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / service / SdcConnectionJob.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.service;
22
23 import java.util.Timer;
24 import java.util.TimerTask;
25 import org.onap.aai.cl.api.Logger;
26 import org.onap.aai.cl.eelf.LoggerFactory;
27 import org.onap.aai.modelloader.config.ModelLoaderConfig;
28 import org.onap.aai.modelloader.notification.EventCallback;
29 import org.onap.sdc.api.IDistributionClient;
30 import org.onap.sdc.api.results.IDistributionClientResult;
31 import org.onap.sdc.utils.DistributionActionResultEnum;
32
33 public class SdcConnectionJob extends TimerTask {
34     private static final Logger logger = LoggerFactory.getInstance().getLogger(SdcConnectionJob.class.getName());
35
36     private final IDistributionClient client;
37     private final ModelLoaderConfig config;
38     private final EventCallback callback;
39     private final Timer timer;
40
41     public SdcConnectionJob(IDistributionClient client, ModelLoaderConfig config, EventCallback callback, Timer timer) {
42         this.client = client;
43         this.timer = timer;
44         this.callback = callback;
45         this.config = config;
46     }
47
48     @Override
49     public void run() {
50         if (!config.getASDCConnectionDisabled()) {
51             final IDistributionClientResult initResult = client.init(config, callback);
52             if (initResult.getDistributionActionResult() == DistributionActionResultEnum.SUCCESS) {
53                 startClient();
54             } else {
55                 logConnectionError("Failed to initialize", initResult);
56             }
57         }
58     }
59
60     private void startClient() {
61         final IDistributionClientResult startResult = client.start();
62         if (startResult.getDistributionActionResult() == DistributionActionResultEnum.SUCCESS) {
63             timer.cancel();
64             logger.info(ModelLoaderMsgs.INITIALIZING, "Connection to SDC established");
65         } else {
66             logConnectionError("Failed to start", startResult);
67         }
68     }
69
70     private void logConnectionError(String msgPrefix, IDistributionClientResult result) {
71         final String errorMsg = msgPrefix + " distribution client: " + result.getDistributionMessageResult();
72         logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
73     }
74 }