Containerization feature of SO
[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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.asdc;
22
23 import javax.annotation.PreDestroy;
24
25 import org.onap.so.asdc.client.ASDCController;
26 import org.onap.so.asdc.client.exceptions.ASDCControllerException;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.context.annotation.Profile;
29 import org.springframework.scheduling.annotation.Scheduled;
30 import org.springframework.stereotype.Component;
31
32 import java.security.SecureRandom;
33
34 @Component
35 @Profile("!test")
36 public class ASDCControllerSingleton {
37    
38    
39     @Autowired
40     private ASDCController asdcController;    
41   
42
43
44     @Scheduled (fixedRate = 50000)
45         public void periodicControllerTask() {
46        
47                 try {
48             int randomNumber = new SecureRandom().nextInt(Integer.MAX_VALUE);
49                         asdcController.setControllerName("mso-controller"+randomNumber);
50                         asdcController.initASDC();
51                 } catch (ASDCControllerException e) {
52                         // TODO Auto-generated catch block
53                         e.printStackTrace();
54                 }
55         }
56    
57    @PreDestroy
58    private void terminate () {
59            try {
60                 asdcController.closeASDC ();
61         } catch (ASDCControllerException e) {
62                 // TODO Auto-generated catch block
63                 e.printStackTrace();
64         }
65    }
66
67 }