summaryrefslogtreecommitdiffstats
path: root/appc-client/client-lib/src/main/java/org/onap/appc/client/impl/protocol/UEBMessagingService.java
blob: 0a9e1a630c68bbe220cdf477facb9d307811edb1 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.client.impl.protocol;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import java.io.IOException;
import java.security.GeneralSecurityException;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Properties;
import java.util.UUID;

class UEBMessagingService implements MessagingService {

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

    private static final String DEFAULT_READ_TIMEOUT_MS = "60000";
    private static final String DEFAULT_READ_LIMIT = "1000";

    private Consumer consumer;
    private Producer producer;
    private int readLimit;

    @Override
    @SuppressWarnings("Since15")
    public void init(Properties props)
            throws IOException, GeneralSecurityException, NoSuchFieldException, IllegalAccessException {

        if (props != null) {
            String readTopic = props.getProperty(UEBPropertiesKeys.TOPIC_READ);
            String writeTopic = props.getProperty(UEBPropertiesKeys.TOPIC_WRITE);
            String cType = props.getProperty(UEBPropertiesKeys.CONTROLLER_TYPE);
            if (cType != null && cType.length()!= 0 && (!cType.equals("APPC")))
            {
                readTopic = cType + "-" + readTopic;
                writeTopic = cType + "-" + writeTopic;
            }
            String apiKey = props.getProperty(UEBPropertiesKeys.AUTH_USER);
            String apiSecret = props.getProperty(UEBPropertiesKeys.AUTH_SECRET);
            String readTimeoutString = props.getProperty(UEBPropertiesKeys.TOPIC_READ_TIMEOUT, DEFAULT_READ_TIMEOUT_MS);
            Integer readTimeout = Integer.parseInt(readTimeoutString);
            String readLimitString = props.getProperty(UEBPropertiesKeys.READ_LIMIT, DEFAULT_READ_LIMIT);
            readLimit = Integer.parseInt(readLimitString);
            //get hosts pool
            Collection<String> pool = new HashSet<>();
            String hostNames = props.getProperty(UEBPropertiesKeys.HOSTS);
            if (hostNames != null && !hostNames.isEmpty()) {
                pool.addAll(Arrays.asList(hostNames.split(",")));
            }
            //generate consumer id and group - same value for both
            String consumerName = UUID.randomUUID().toString();

            //create consumer and producer
            consumer = new ConsumerImpl(pool, readTopic, consumerName, consumerName, readTimeout, apiKey, apiSecret);
            producer = new ProducerImpl(pool, writeTopic, apiKey, apiSecret);

            //initial consumer registration
            try {
                consumer.registerForRead();
            } catch (Exception e) {
                logger.error("Message consumer failed to register client " + consumerName, e);
            }
        }
    }

    @Override
    public void send(String partition, String body) throws IOException {
        producer.post(partition, body);
    }

    @Override
    public List<String> fetch() throws IOException {
        return consumer.fetch(readLimit);
    }

    @Override
    public List<String> fetch(int limit) throws IOException {
        return consumer.fetch(limit);
    }

    @Override
    public void close() {
        consumer.close();
        producer.close();
    }

}