summaryrefslogtreecommitdiffstats
path: root/appc-client/client-lib/src/main/java/org/openecomp/appc/client/impl/protocol/UEBMessagingService.java
blob: df51861b8ab0c8db9024279448ee1627593cca9c (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
/*-
 * ============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.*;

class UEBMessagingService implements MessagingService {

    private Consumer consumer;
    private Producer producer;

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

    private int readLimit;

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

    @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 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>();
            String hostNames = props.getProperty(UEBPropertiesKeys.HOSTS);
            if (hostNames != null && !hostNames.isEmpty()) {
                for (String name : hostNames.split(",")) {
                    pool.add(name);
                }
            }

            //generate consumer id and group - same value for both
            String consumerName = UUID.randomUUID().toString();
            String consumerID = consumerName;

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

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

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

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

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

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

}