aboutsummaryrefslogtreecommitdiffstats
path: root/dcae-analytics-dmaap/src/main/java/org/onap/dcae/apod/analytics/dmaap/service/BaseDMaaPMRComponent.java
blob: f381b5f800323914340d55d29afe4f3ac29eb739 (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/*
 * ===============================LICENSE_START======================================
 *  dcae-analytics
 * ================================================================================
 *    Copyright © 2017 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.onap.dcae.apod.analytics.dmaap.service;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.Optional;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.util.EntityUtils;
import org.onap.dcae.apod.analytics.common.AnalyticsConstants;
import org.onap.dcae.apod.analytics.common.exception.DCAEAnalyticsRuntimeException;
import org.onap.dcae.apod.analytics.common.utils.HTTPUtils;
import org.onap.dcae.apod.analytics.dmaap.domain.config.DMaaPMRPublisherConfig;
import org.onap.dcae.apod.analytics.dmaap.domain.config.DMaaPMRSubscriberConfig;
import org.onap.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponse;
import org.onap.dcae.apod.analytics.dmaap.domain.response.DMaaPMRPublisherResponseImpl;
import org.onap.dcae.apod.analytics.dmaap.domain.response.DMaaPMRSubscriberResponse;
import org.onap.dcae.apod.analytics.dmaap.domain.response.DMaaPMRSubscriberResponseImpl;
import org.onap.dcae.apod.analytics.dmaap.service.publisher.DMaaPMRPublisherQueue;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.Charset;
import java.util.LinkedList;
import java.util.List;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import static java.lang.String.format;

/**
 * Base class for DMaaP MR Publishers and Subscriber Implementations containing various utility methods
 *
 * @author Rajiv Singla . Creation Date: 11/1/2016.
 */
public abstract class BaseDMaaPMRComponent implements DMaaPMRComponent {

    private static final Logger LOG = LoggerFactory.getLogger(BaseDMaaPMRComponent.class);

    private static final ObjectMapper objectMapper = new ObjectMapper();

    /**
     * Creates Base64 encoded Auth Header for given userName and Password
     * If either user name of password are null return absent
     *
     * @param userName username
     * @param userPassword user password
     * @return base64 encoded auth header if username or password are both non null
     */
    protected static Optional<String> getAuthHeader(@Nullable final String userName,
                                                    @Nullable final String userPassword) {
        if (userName == null || userPassword == null) {
            return Optional.absent();
        } else {
            final String auth = userName + ":" + userPassword;
            final Charset isoCharset = Charset.forName("ISO-8859-1");
            byte[] encodedAuth = Base64.encodeBase64(auth.getBytes(isoCharset));
            return Optional.of("Basic " + new String(encodedAuth, isoCharset));
        }
    }


    /**
     * Creates Publisher URI for given {@link DMaaPMRPublisherConfig}
     *
     * @param publisherConfig publisher settings
     *
     * @return DMaaP MR Publisher Topic URI that can be used to post messages to MR Topic
     */
    protected static URI createPublisherURI(final DMaaPMRPublisherConfig publisherConfig) {
        final String hostName = publisherConfig.getHostName();
        final Integer portNumber = publisherConfig.getPortNumber();
        final String getProtocol = publisherConfig.getProtocol();
        final String topicName = publisherConfig.getTopicName();
        URI publisherURI = null;
        try {
            publisherURI = new URIBuilder().setScheme(getProtocol).setHost(hostName).setPort(portNumber)
                    .setPath(AnalyticsConstants.DMAAP_URI_PATH_PREFIX + topicName).build();
        } catch (URISyntaxException e) {
            final String errorMessage = format("Error while creating publisher URI: %s", e);
            throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);
        }
        LOG.info("Created DMaaP MR Publisher URI: {}", publisherURI);
        return publisherURI;
    }


    /**
     * Creates Subscriber URI for given {@link DMaaPMRSubscriberConfig}
     *
     * @param subscriberConfig subscriber settings
     *
     * @return DMaaP MR Subscriber Topic URI that can be used to fetch messages from MR topic
     */
    protected static URI createSubscriberURI(final DMaaPMRSubscriberConfig subscriberConfig) {
        final String hostName = subscriberConfig.getHostName();
        final Integer portNumber = subscriberConfig.getPortNumber();
        final String getProtocol = subscriberConfig.getProtocol();
        final String topicName = subscriberConfig.getTopicName();
        final String consumerId = subscriberConfig.getConsumerId();
        final String consumerGroup = subscriberConfig.getConsumerGroup();
        final Integer timeoutMS = subscriberConfig.getTimeoutMS();
        final Integer messageLimit = subscriberConfig.getMessageLimit();
        URI subscriberURI = null;
        try {
            URIBuilder uriBuilder = new URIBuilder().setScheme(getProtocol).setHost(hostName).setPort(portNumber)
                    .setPath(AnalyticsConstants.DMAAP_URI_PATH_PREFIX
                            + topicName + "/"
                            + consumerGroup + "/" +
                            consumerId);
            // add query params if present
            if (timeoutMS > 0) {
                uriBuilder.addParameter(AnalyticsConstants.SUBSCRIBER_TIMEOUT_QUERY_PARAM_NAME, timeoutMS.toString());
            }
            if (messageLimit > 0) {
                uriBuilder.addParameter(AnalyticsConstants.SUBSCRIBER_MSG_LIMIT_QUERY_PARAM_NAME,
                        messageLimit.toString());
            }
            subscriberURI = uriBuilder.build();

        } catch (URISyntaxException e) {
            final String errorMessage = format("Error while creating subscriber URI: %s", e);
            throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);
        }

        LOG.info("Created DMaaP MR Subscriber URI: {}", subscriberURI);
        return subscriberURI;
    }


    /**
     *  Creates 202 (Accepted) Response code message
     *
     * @param batchQueueSize batch Queue size
     *
     * @return response with 202 message code
     */
    protected static DMaaPMRPublisherResponse createPublisherAcceptedResponse(int batchQueueSize) {
        return createPublisherResponse(HTTPUtils.HTTP_ACCEPTED_RESPONSE_CODE,
                "Accepted - Messages queued for batch publishing to MR Topic", batchQueueSize);
    }


    /**
     *  Creates 204 (No Content) Response code message
     *
     * @return response with 204 message code
     */
    protected static DMaaPMRPublisherResponse createPublisherNoContentResponse() {
        return createPublisherResponse(HTTPUtils.HTTP_NO_CONTENT_RESPONSE_CODE,
                "No Content - No Messages in batch queue for flushing to MR Topic", 0);
    }


    /**
     * Creates Publisher Response for given response code, response Message and pending Message Count
     *
     * @param responseCode HTTP Status Code
     * @param responseMessage response message
     * @param pendingMessages pending messages in batch queue
     *
     * @return DMaaP MR Publisher Response
     */
    protected static DMaaPMRPublisherResponse createPublisherResponse(int responseCode, String
            responseMessage, int pendingMessages) {
        return new DMaaPMRPublisherResponseImpl(responseCode, responseMessage, pendingMessages);
    }


    /**
     * Returns weekly consistent pending messages in batch queue
     *
     * @param publisherQueue batch queue
     * @param publisherConfig publisher settings
     *
     * @return pending messages to be published
     */
    protected static int getPendingMessages(@Nonnull final DMaaPMRPublisherQueue publisherQueue,
                                            @Nonnull final DMaaPMRPublisherConfig publisherConfig) {
        return publisherConfig.getMaxBatchSize() - publisherQueue.getBatchQueueRemainingSize();
    }


    /**
     * Creates Subscriber Response for give response Code, response Message and fetch messages
     *
     * @param responseCode response Code
     * @param responseMessage response Message
     * @param fetchedMessages fetched messages
     *
     * @return DMaaP MR Subscriber Response
     */
    protected static DMaaPMRSubscriberResponse createSubscriberResponse(int responseCode, String
            responseMessage, List<String> fetchedMessages) {
        if (fetchedMessages == null) {
            return new DMaaPMRSubscriberResponseImpl(responseCode, responseMessage);
        } else {
            return new DMaaPMRSubscriberResponseImpl(responseCode, responseMessage, fetchedMessages);
        }
    }


    /**
     * Custom response handler which extract status code and response body
     *
     * @return Pair containing Response code and response body
     */
    protected static ResponseHandler<Pair<Integer, String>> responseHandler() {
        return new ResponseHandler<Pair<Integer, String>>() {
            @Override
            public Pair<Integer, String> handleResponse(HttpResponse response) throws IOException {
                // Get Response status code
                final int status = response.getStatusLine().getStatusCode();
                final HttpEntity responseEntity = response.getEntity();
                // If response entity is not null - extract response body as string
                String responseEntityString = "";
                if (responseEntity != null) {
                    responseEntityString = EntityUtils.toString(responseEntity);
                }
                return new ImmutablePair<>(status, responseEntityString);
            }
        };
    }


    /**
     *  Adds message to Publisher recovery queue. If recovery queue is full throws an error as messages will
     *  be lost
     *
     * @param publisherQueue publisher queue
     * @param messages recoverable messages to be published to recovery queue
     */
    protected static void addMessagesToRecoveryQueue(DMaaPMRPublisherQueue publisherQueue,
                                                     List<String> messages) {
        try {
            publisherQueue.addRecoverableMessages(messages);

            LOG.debug("Messages Added to Recovery Queue. Messages Size: {}, Recovery Queue Remaining Size: {}",
                    messages.size(), publisherQueue.getBatchQueueRemainingSize());

        } catch (IllegalStateException e) {
            final String errorMessage = format("Unable to put messages in recovery queue. Messages will be lost. " +
                            "Recovery Queue might be full. Message Size: %d, Recovery Queue Remaining Capacity: %d",
                    messages.size(), publisherQueue.getRecoveryQueueRemainingSize());
            throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);
        }
    }


    /**
     * Converts List of messages to Json String Array which can be published to DMaaP MR topic.
     *
     * @param messages messages that need to parsed to Json Array representation
     * @return json string representation of message
     */
    protected static String convertToJsonString(@Nullable final List<String> messages) {
        // If messages are null or empty just return empty array
        if (messages == null || messages.isEmpty()) {
            return "[]";
        }


        List<JsonNode> jsonMessageObjectsList = new LinkedList<>();

        try {
            for (String message : messages) {
                final JsonNode jsonNode = objectMapper.readTree(message);
                jsonMessageObjectsList.add(jsonNode);
            }
            return objectMapper.writeValueAsString(jsonMessageObjectsList);
        } catch (JsonProcessingException e) {
            final String errorMessage =
                    format("Unable to convert publisher messages to Json. Messages: %s, Json Error: %s",
                            messages, e);
            throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);

        } catch (IOException e) {
            final String errorMessage =
                    format("IO Exception while converting publisher messages to Json. Messages: %s, Json Error: %s",
                            messages, e);
            throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);
        }
    }


    /**
     * Converts subscriber messages json string to List of messages. If message Json String is empty
     * or null
     *
     * @param messagesJsonString json messages String
     *
     * @return List containing DMaaP MR Messages
     */
    protected static List<String> convertJsonToStringMessages(@Nullable final String messagesJsonString) {

        final LinkedList<String> messages = new LinkedList<>();

        // If message string is not null or not empty parse json message array to List of string messages
        if (messagesJsonString != null && !messagesJsonString.trim().isEmpty()
                && !("[]").equals(messagesJsonString.trim())) {

            try {
                // get root node
                final JsonNode rootNode = objectMapper.readTree(messagesJsonString);
                // iterate over root node and parse arrays messages
                for (JsonNode jsonNode : rootNode) {
                    // if array parse it is array of messages
                    final String incomingMessageString = jsonNode.toString();
                    if (jsonNode.isArray()) {
                        final List messageList = objectMapper.readValue(incomingMessageString, List.class);
                        for (Object message : messageList) {
                            final String jsonMessageString = objectMapper.writeValueAsString(message);
                            addUnescapedJsonToMessage(messages, jsonMessageString);
                        }
                    } else {
                        // parse it as object
                        addUnescapedJsonToMessage(messages, incomingMessageString);
                    }
                }

            } catch (IOException e) {
                final String errorMessage =
                        format("Unable to convert subscriber Json String to Messages. Subscriber Response String: %s," +
                                " Json Error: %s", messagesJsonString, e);
                throw new DCAEAnalyticsRuntimeException(errorMessage, LOG, e);
            }

        }
        return messages;
    }

    /**
     * Adds unescaped Json messages to given messages list
     *
     * @param messages message list in which unescaped messages will be added
     * @param incomingMessageString incoming message string that may need to be escaped
     */
    private static void addUnescapedJsonToMessage(List<String> messages, String incomingMessageString) {
        if (incomingMessageString.startsWith("\"") && incomingMessageString.endsWith("\"")) {
            messages.add(StringEscapeUtils.unescapeJson(
                    incomingMessageString.substring(1, incomingMessageString.length() - 1)));
        } else {
            messages.add(StringEscapeUtils.unescapeJson(incomingMessageString));
        }
    }


}