aboutsummaryrefslogtreecommitdiffstats
path: root/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/main/java/org/onap/appc/messageadapter/impl/MessageAdapterImpl.java
blob: ba56da044643a41f732c52882c6d5c1751f695f0 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * ================================================================================
 * Modifications Copyright (C) 2019 Ericsson
 * =============================================================================
 * 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.appc.messageadapter.impl;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.apache.commons.lang.ObjectUtils;
import org.onap.appc.domainmodel.lcm.ResponseContext;
import org.onap.appc.domainmodel.lcm.VNFOperation;
import org.onap.appc.messageadapter.MessageAdapter;
import org.onap.appc.requesthandler.conv.Converter;
import org.onap.appc.srvcomm.messaging.MessagingConnector;

public class MessageAdapterImpl implements MessageAdapter{

    private MessagingConnector messageService;
    private String partition;

    private static final EELFLogger logger = EELFManager.getInstance().getLogger(MessageAdapterImpl.class);

    /**
     * Initialize producer client to post messages using configuration properties
     */
    @Override
    public void init() {
        logger.debug("MessageAdapterImpl - init");
        this.messageService = new MessagingConnector();
    }

    public void init(MessagingConnector connector) {
        logger.debug("MessageAdapterImpl - init");
        this.messageService = connector;
    }

    /**
     * Posts message to DMaaP. As DMaaP accepts only json messages this method first converts dmaapMessage
     * to json format and posts it to DMaaP.
     * @param asyncResponse response data on which to base a message that will be sent to DMaaP
     * (the format of the message that will be sent to DMaaP is based on the action and its YANG domainmodel).
     * @return True if message is posted successfully, else False
     */
    @Override
    public boolean post(VNFOperation operation, String rpcName, ResponseContext asyncResponse) {
        boolean success;
        if (logger.isTraceEnabled()) {
            logger.trace("Entering to post with AsyncResponse = " + ObjectUtils.toString(asyncResponse));
        }
        logger.debug("Entered MessageAdapterImpl.post()");
        String jsonMessage;
        try {
            logger.debug("Before converting Async Response");
            jsonMessage =
                    Converter.convAsyncResponseToDmaapOutgoingMessageJsonString(operation, rpcName, asyncResponse);
            if (logger.isDebugEnabled()) {
                logger.debug("DMaaP Response = " + jsonMessage);
            }
            logger.debug("Before Invoking messageService.publishMessage(): jsonMessage is::" + jsonMessage);
            success = messageService.publishMessage("appc.LCM", this.partition, jsonMessage);
            logger.debug("After Invoking messageService.publishMessage()");
        } catch (JsonProcessingException e1) {
            logger.error("Error generating Json from DMaaP message " + e1.getMessage());
            success = false;
        } catch (Exception e) {
            logger.error("Error sending message to DMaaP " + e.getMessage());
            success = false;
        }
        logger.debug("Exiting MesageAdapterImpl.post()");
        if (logger.isTraceEnabled()) {
            logger.trace("Exiting from post with (success = " + ObjectUtils.toString(success) + ")");
        }
        return success;
    }
}