summaryrefslogtreecommitdiffstats
path: root/dcaedt_be/src/main/java/org/onap/sdc/dcae/composition/controller/health/HealthPoller.java
blob: 609480dd152527f26c81f14919cc4b8acbe12173 (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
95
96
97
package org.onap.sdc.dcae.composition.controller.health;

import java.net.URI;
import java.util.Collections;

import org.onap.sdc.common.onaplog.OnapLoggerDebug;
import org.onap.sdc.common.onaplog.OnapLoggerError;
import org.onap.sdc.common.onaplog.Enums.LogLevel;
import org.onap.sdc.dcae.composition.restmodels.health.ComponentsInfo;
import org.onap.sdc.dcae.catalog.commons.Future;
import org.onap.sdc.dcae.catalog.commons.Http;
import org.onap.sdc.dcae.composition.util.DcaeBeConstants;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;

import com.google.gson.Gson;

@Configuration
@EnableAsync
@EnableScheduling
@ConfigurationProperties(prefix="blueprinter")
public class HealthPoller {
	private URI	hcuri;
	private String hcretrynum;
	private Gson gson;
	
	private OnapLoggerError errLogger = OnapLoggerError.getInstance();
	private OnapLoggerDebug debugLogger = OnapLoggerDebug.getInstance();

	@Autowired
	private ToscaLabHealthState toscaLabHealthState;
	
	public HealthPoller() {
		super();
		gson = new Gson();
	}

	@Scheduled(fixedDelayString="${healthpoller.fixedDelay}")
	public void pollToscaLabHealth() {
		ComponentsInfo toscaLabHealthRes = null;
		ResponseEntity<String> healthRes = null;
		try {
			for(int i=0; i<Integer.valueOf(hcretrynum); i++){ // 3 tries
				healthRes = sendHealthCheck();
				debugLogger.log(LogLevel.DEBUG, this.getClass().getName(), "Try #{}: {}", i, healthRes);
				if(healthRes.getStatusCode()==HttpStatus.OK){
					String result = (String) healthRes.getBody();
					toscaLabHealthRes = gson.fromJson(result, ComponentsInfo.class);
					break;
				}
			}
		} catch (Exception e) {
			toscaLabHealthRes = getNegativeHealth(e.getMessage());
		}
		if(toscaLabHealthRes == null){
			toscaLabHealthRes = getNegativeHealth(healthRes.getBody() + "-" + healthRes.getStatusCode());
		}
		toscaLabHealthState.setToscaLabHealthResponse(toscaLabHealthRes);
	}

	private ComponentsInfo getNegativeHealth(String msg) {
		ComponentsInfo toscaLabHealthRes = new ComponentsInfo();
		String description = "DCAE-D BE failed while trying to fetch Tosca_Lab healthcheck. Exception: " +msg;
		toscaLabHealthRes.setDescription(description);
		toscaLabHealthRes.setHealthCheckComponent(DcaeBeConstants.Health.TOSCA_LAB);
		toscaLabHealthRes.setHealthCheckStatus(DcaeBeConstants.Health.DOWN);
		errLogger.log(LogLevel.ERROR, this.getClass().getName(), description);
		return toscaLabHealthRes;
	}
	
	public ResponseEntity<String> sendHealthCheck() {
		HttpHeaders headers = new HttpHeaders();
		headers.setContentType(MediaType.APPLICATION_JSON);
		headers.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
		HttpEntity<String> entity = new HttpEntity<String>(headers);
		return Http.exchangeSync(hcuri.toString(), HttpMethod.GET, entity, String.class, 5000);
	}

	public void setHcuri(URI hcuri) {
		this.hcuri = hcuri;
	}

	public void setHcretrynum(String hcretrynum) {
		this.hcretrynum = hcretrynum;
	}
	
}