DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.git] / src / main / java / org / onap / dmaap / 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 org.onap.dmaap.dmf.mr.backends.memory;
23
24 import org.apache.kafka.clients.producer.ProducerRecord;
25 import org.onap.dmaap.dmf.mr.backends.Publisher;
26 import org.onap.dmaap.dmf.mr.metabroker.Broker.TopicExistsException;
27
28 import java.io.IOException;
29 import java.util.ArrayList;
30 import java.util.List;
31
32
33 /**
34  * 
35  * @author anowarul.islam
36  *
37  */
38 public class MemoryQueuePublisher implements Publisher {
39         /**
40          * 
41          * @param q
42          * @param b
43          */
44         public MemoryQueuePublisher(MemoryQueue q, MemoryMetaBroker b) {
45                 fBroker = b;
46                 fQueue = q;
47         }
48
49         
50         /**
51          * 
52          * @param topic
53          * @param msg
54          * @throws IOException
55          */
56         @Override
57         public void sendMessage(String topic, message msg) throws IOException {
58                 if (null == fBroker.getTopic(topic)) {
59                         try {
60                                 fBroker.createTopic(topic, topic, null, 8, 3, false);
61                         } catch (TopicExistsException e) {
62                                 throw new RuntimeException(e);
63                         }
64                 }
65                 fQueue.put(topic, msg);
66         }
67
68         @Override
69         /**
70          * @param topic
71          * @param msgs
72          * @throws IOException
73          */
74
75         public void sendBatchMessageNew(String topic, ArrayList<ProducerRecord<String, String>> kms) throws IOException {
76
77         }
78
79         public void sendMessagesNew(String topic, List<? extends message> msgs) throws IOException {
80         }
81
82         public void sendMessages(String topic, List<? extends message> msgs) throws IOException {
83                 for (message m : msgs) {
84                         sendMessage(topic, m);
85                 }
86         }
87
88         private final MemoryMetaBroker fBroker;
89         private final MemoryQueue fQueue;
90 }