aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/catalog/impl/DmaapProducer.java
blob: 40bea7b79c98761bb1d205967bacf72686359942 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.openecomp.sdc.be.catalog.impl;

import com.att.nsa.mr.client.MRBatchingPublisher;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.openecomp.sdc.be.catalog.api.IMessageQueueHandlerProducer;
import org.openecomp.sdc.be.catalog.api.IStatus;
import org.openecomp.sdc.be.catalog.api.ITypeMessage;
import org.openecomp.sdc.be.catalog.enums.ResultStatusEnum;
import org.openecomp.sdc.be.components.distribution.engine.DmaapClientFactory;
import org.openecomp.sdc.be.config.ConfigurationManager;
import org.openecomp.sdc.be.config.DmaapProducerConfiguration;
import org.openecomp.sdc.common.log.enums.StatusCode;
import org.openecomp.sdc.common.log.wrappers.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

@Component
public class DmaapProducer implements IMessageQueueHandlerProducer {
	private static final Logger LOG = Logger.getLogger(DmaapProducer.class.getName());
	private static final Logger metricLog = Logger.getLogger(DmaapProducer.class.getName());

	@Autowired
	private DmaapClientFactory dmaapClientFactory;
	private ConfigurationManager configurationManager = ConfigurationManager.getConfigurationManager();
	private MRBatchingPublisher publisher;
	@Autowired
	private DmaapProducerHealth dmaapHealth;

	public MRBatchingPublisher getPublisher() {
		return publisher;
	}

	@Override
	public IStatus pushMessage(ITypeMessage message) {
		try {
			DmaapProducerConfiguration producerConfiguration = configurationManager.getConfiguration()
					.getDmaapProducerConfiguration();
			if (!producerConfiguration.getActive()) {
				LOG.info(
						"[Microservice DMAAP] producer is disabled [re-enable in configuration->isActive],message not sent.");
				dmaapHealth.report(false);
				return IStatus.getServiceDisabled();
			}
			if (publisher == null) {
				IStatus initStatus = init();
				if (initStatus.getResultStatus() != ResultStatusEnum.SUCCESS) {

					return initStatus;
				}
			}
			ObjectMapper mapper = new ObjectMapper();
			String jsonInString = mapper.writeValueAsString(message);
			if (publisher != null) {
			    LOG.info("before send message . response {}", jsonInString);

				LOG.invoke("Dmaap Producer", "DmaapProducer-pushMessage", DmaapProducer.class.getName(), message.toString());

				int pendingMsg = publisher.send(jsonInString);
				LOG.info("sent message . response {}", pendingMsg);
				LOG.invokeReturn(producerConfiguration.getConsumerId(), "Dmaap Producer", StatusCode.COMPLETE.getStatusCodeEnum(), "DmaapProducer-pushMessage",message.toString(), pendingMsg );

			}

			
			
			dmaapHealth.report(true);
		} catch (Exception e) {
			LOG.error("Failed to send message . Exception {}", e.getMessage());
			return IStatus.getFailStatus();
		}

		return IStatus.getSuccessStatus();
	}

	@PostConstruct
	@Override
	public IStatus init() {
		LOG.debug("MessageQueueHandlerProducer:: Start initializing");
		DmaapProducerConfiguration configuration = configurationManager.getConfiguration()
				.getDmaapProducerConfiguration();
		if (configuration.getActive()) {
			try {
				publisher = dmaapClientFactory.createProducer(configuration);
				if (publisher == null) {
					LOG.error("Failed to connect to topic ");
					dmaapHealth.report(false);
					return IStatus.getFailStatus();
				}

			} catch (Exception e) {
				LOG.error("Failed to connect to topic . Exeption {}", e.getMessage());
				dmaapHealth.report(false);
				return IStatus.getFailStatus();
			}
			dmaapHealth.report(true);
			return IStatus.getSuccessStatus();
		}
		LOG.info("[Microservice DMAAP] producer is disabled [re-enable in configuration->isActive],message not sent.");
		dmaapHealth.report(false);
		return IStatus.getServiceDisabled();
	}

	@PreDestroy
	public void shutdown() {
		LOG.debug("DmaapProducer::shutdown...");
		try {
			if (publisher != null) {
				publisher.close();
			}
		} catch (Exception e) {
			LOG.error("Failed to close  messageQ . Exeption {}", e.getMessage());

		}

	}

}