bf94b9c6a0351add44ccf7bd29aa74273f2d8d31
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / messagerouter / msgrtr / nsa / cambria / 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.messagerouter.msgrtr.nsa.cambria.backends.memory;
23
24 import java.io.IOException;
25 import java.util.ArrayList;
26 import java.util.List;
27
28 import org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.backends.Publisher;
29 import org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.metabroker.Broker.TopicExistsException;
30
31 import kafka.producer.KeyedMessage;
32
33 /**
34  * 
35  * @author author
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          * sendBatchMessages
51          * 
52          * @param topic
53          * @param kms
54          */
55         public void sendBatchMessage(String topic, ArrayList<KeyedMessage<String, String>> kms) throws IOException {
56         }
57         
58         /**
59          * 
60          * @param topic
61          * @param msg
62          * @throws IOException
63          */
64         @Override
65         public void sendMessage(String topic, message msg) throws IOException {
66                 if (null == fBroker.getTopic(topic)) {
67                         try {
68                                 fBroker.createTopic(topic, topic, null, 8, 3, false);
69                         } catch (TopicExistsException e) {
70                                 throw new RuntimeException(e);
71                         }
72                 }
73                 fQueue.put(topic, msg);
74         }
75
76         @Override
77         /**
78          * @param topic
79          * @param msgs
80          * @throws IOException
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 }