471a08bf995625c2d657c205a3e2fe24fcc067aa
[so.git] / asdc-controller / src / main / java / org / onap / so / asdc / ASDCControllerSingleton.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * Modifications Copyright (C) 2018 IBM.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.so.asdc;
23
24 import javax.annotation.PreDestroy;
25
26 import org.onap.so.asdc.client.ASDCConfiguration;
27 import org.onap.so.asdc.client.ASDCController;
28 import org.onap.so.asdc.client.exceptions.ASDCControllerException;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.context.annotation.Profile;
31 import org.springframework.scheduling.annotation.Scheduled;
32 import org.springframework.stereotype.Component;
33 import org.onap.so.logger.MsoLogger;
34 import java.security.SecureRandom;
35
36
37 @Component
38 @Profile("!test")
39 public class ASDCControllerSingleton {
40    
41    
42     @Autowired
43     private ASDCController asdcController;
44     private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.ASDC, ASDCControllerSingleton.class);
45   
46
47
48     @Scheduled (fixedRate = 50000)
49         public void periodicControllerTask() {
50        
51                 try {
52             int randomNumber = new SecureRandom().nextInt(Integer.MAX_VALUE);
53                         asdcController.setControllerName("mso-controller"+randomNumber);
54                         asdcController.initASDC();
55                 } catch (ASDCControllerException e) {
56                         msoLogger.error(e);
57         
58                 }
59         }
60    
61    @PreDestroy
62    private void terminate () {
63            try {
64                 asdcController.closeASDC ();
65         } catch (ASDCControllerException e) {
66                 msoLogger.error(e);
67         }
68    }
69
70 }