5e2ee5d605468173f09bf835a89e7569e12f8811
[portal/sdk.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalsdk.core.onboarding.ueb;
39
40 import java.util.Map;
41 import java.util.concurrent.ConcurrentHashMap;
42 import java.util.concurrent.LinkedBlockingQueue;
43
44 import org.apache.commons.logging.Log;
45 import org.apache.commons.logging.LogFactory;
46
47 /**
48  * A thin wrapper around ConcurrentHashMap that stores a queue for each
49  * Requester that is waiting for a Reply. When a reply is received that has a
50  * matching msgId, that requesters queue is populated with the reply message.
51  * 
52  * Primarily for the UebManager to track requests while it waits for responses.
53  */
54 public class WaitingRequestersQueueList {
55         
56         private final Log logger = LogFactory.getLog(getClass());
57
58         private final Map<String, LinkedBlockingQueue<UebMsg>> map;
59
60         public WaitingRequestersQueueList() {
61                 map = new ConcurrentHashMap<>();
62         }
63
64         public void addQueueToMap(String msgId, LinkedBlockingQueue<UebMsg> queue) {
65                 this.map.put(msgId, queue);
66         }
67
68         public void addMsg(String msgId, UebMsg message) {
69                 LinkedBlockingQueue<UebMsg> queue = this.map.get(msgId);
70                 if (queue != null) {
71                         queue.add(message);
72                 } else {
73                         logger.warn("Did not find entry in WaitingRequestersQueueList for msgId " + msgId);
74                 }
75         }
76
77         public void removeQueueFromMap(String msgId) {
78                 this.map.remove(msgId);
79         }
80
81         @Override
82         public String toString() {
83                 StringBuilder sb = new StringBuilder();
84                 sb.append("Map contains " + this.map.size() + " Publishers.");
85                 for (Map.Entry<String, LinkedBlockingQueue<UebMsg>> entry : this.map.entrySet()) {
86                         sb.append("Entry msgId, " + entry.getKey() + " queue " + entry.getValue());
87                 }
88                 return sb.toString();
89         }
90
91 }