bump the version
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / dmf / mr / backends / memory / MemoryQueuePublisher.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package com.att.dmf.mr.backends.memory;
23
24 import java.io.IOException;
25 import java.util.ArrayList;
26 import java.util.List;
27
28 import org.apache.kafka.clients.producer.ProducerRecord;
29
30 import com.att.dmf.mr.backends.Publisher;
31 import com.att.dmf.mr.metabroker.Broker.TopicExistsException;
32
33
34
35 /**
36  * 
37  * @author anowarul.islam
38  *
39  */
40 public class MemoryQueuePublisher implements Publisher {
41         /**
42          * 
43          * @param q
44          * @param b
45          */
46         public MemoryQueuePublisher(MemoryQueue q, MemoryMetaBroker b) {
47                 fBroker = b;
48                 fQueue = q;
49         }
50
51         
52         /**
53          * 
54          * @param topic
55          * @param msg
56          * @throws IOException
57          */
58         @Override
59         public void sendMessage(String topic, message msg) throws IOException {
60                 if (null == fBroker.getTopic(topic)) {
61                         try {
62                                 fBroker.createTopic(topic, topic, null, 8, 3, false);
63                         } catch (TopicExistsException e) {
64                                 throw new RuntimeException(e);
65                         }
66                 }
67                 fQueue.put(topic, msg);
68         }
69
70         @Override
71         /**
72          * @param topic
73          * @param msgs
74          * @throws IOException
75          */
76
77         public void sendBatchMessageNew(String topic, ArrayList<ProducerRecord<String, String>> kms) throws IOException {
78
79         }
80
81         public void sendMessagesNew(String topic, List<? extends message> msgs) throws IOException {
82         }
83
84         public void sendMessages(String topic, List<? extends message> msgs) throws IOException {
85                 for (message m : msgs) {
86                         sendMessage(topic, m);
87                 }
88         }
89
90         private final MemoryMetaBroker fBroker;
91         private final MemoryQueue fQueue;
92 }