summaryrefslogtreecommitdiffstats
path: root/appc-client/client-lib/src/main/java/org/openecomp/appc/client/impl/protocol/ConsumerImpl.java
blob: 913f80f449b6b1d06bb36a53ca8330479d9ee2a3 (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
/*-
 * ============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.nsa.cambria.client.CambriaClientBuilders.ConsumerBuilder;
import com.att.nsa.cambria.client.CambriaConsumer;

import java.io.IOException;
import java.lang.reflect.Field;
import java.net.MalformedURLException;
import java.security.GeneralSecurityException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

class ConsumerImpl implements Consumer {

    private static final int DEFAULT_LIMIT = 1000;

    private Collection<String> hosts;
    private String topic;
    private String group;
    private String groupId;
    private int timeout;

    private String authKey;
    private String authSecret;

    private CambriaConsumer consumer = null;

    /**
     * constructor
     * @param urls
     * @param topicName
     * @param consumerName
     * @param consumerId
     * @param timeout
     */
    public ConsumerImpl(Collection<String> urls, String topicName, String consumerName, String consumerId, Integer timeout, String apiKey, String apiSecret) throws MalformedURLException, GeneralSecurityException, NoSuchFieldException, IllegalAccessException {
        this.hosts = urls;
        this.topic = topicName;
        this.group = consumerName;
        this.groupId = consumerId;
        this.authKey = apiKey;
        this.authSecret = apiSecret;
        this.timeout = timeout;
        consumer = getConsumer();
    }


    public List<String> fetch() throws IOException {

        return fetch(DEFAULT_LIMIT);
    }

    public List<String> fetch(int limit) throws IOException {

        List<String> out = new ArrayList<String>();
        try {
            for(String msg : consumer.fetch(timeout,limit)){
                out.add(msg);
            }
        } catch (IOException e) {
            throw e;
        }
        return out;
    }

    public void registerForRead() throws IOException {

        int waitForRegisteration = 1; //return from fetch after 1ms, no need to read any messages
        consumer.fetch(waitForRegisteration, 1);
    }

    /**
     * init cambria consumer
     * @return CambriaConsumer
     */
    private CambriaConsumer getConsumer() throws MalformedURLException, GeneralSecurityException, NoSuchFieldException, IllegalAccessException {

        ConsumerBuilder builder = new ConsumerBuilder();

        builder.usingHosts(hosts).onTopic(topic).knownAs(group, groupId);
        builder.withSocketTimeout(timeout + 5000).waitAtServer(timeout);
        builder.receivingAtMost(DEFAULT_LIMIT);

        // Add credentials if provided
        if (authKey != null && authSecret != null) {

            Field apiKeyField = ConsumerBuilder.class.getDeclaredField("fApiKey");
            apiKeyField.setAccessible(true);
            apiKeyField.set(builder, "");
            builder.authenticatedBy(authKey, authSecret);
        }

        return builder.build();
    }

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