OPNFLWPLUG-1071 : Removal of javax.annotation.Nonnnull and replacement of javax.annot...
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / connection / OutboundQueueProviderImpl.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowplugin.impl.connection;
10
11 import com.google.common.util.concurrent.FutureCallback;
12 import java.util.function.Function;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueue;
15 import org.opendaylight.openflowplugin.api.openflow.connection.OutboundQueueProvider;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInputBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader;
19 import org.slf4j.Logger;
20 import org.slf4j.LoggerFactory;
21
22 public class OutboundQueueProviderImpl implements OutboundQueueProvider {
23     private static final Logger LOG = LoggerFactory.getLogger(OutboundQueueProviderImpl.class);
24     private final short ofVersion;
25     private volatile OutboundQueue outboundQueue;
26
27     public OutboundQueueProviderImpl(final short ofVersion) {
28         this.ofVersion = ofVersion;
29     }
30
31     @NonNull
32     @Override
33     public BarrierInput createBarrierRequest(@NonNull final Long xid) {
34         final BarrierInputBuilder biBuilder = new BarrierInputBuilder();
35         biBuilder.setVersion(ofVersion);
36         biBuilder.setXid(xid);
37         return biBuilder.build();
38
39     }
40
41     @Override
42     public synchronized void onConnectionQueueChanged(final OutboundQueue queue) {
43         if (LOG.isDebugEnabled()) {
44             LOG.debug("Replacing queue {} with {}", outboundQueue, queue);
45         }
46         outboundQueue = queue;
47         notifyAll();
48     }
49
50     @Override
51     public Long reserveEntry() {
52         for (;;) {
53             OutboundQueue queue = outboundQueue;
54             if (queue == null) {
55                 LOG.error("No queue present, failing request");
56                 return null;
57             }
58
59             final Long ret = queue.reserveEntry();
60             if (ret != null) {
61                 return ret;
62             }
63
64             LOG.debug("Reservation failed, trying to recover");
65             synchronized (this) {
66                 while (queue.equals(outboundQueue)) {
67                     LOG.debug("Queue {} is not replaced yet, going to sleep", queue);
68                     try {
69                         wait();
70                     } catch (InterruptedException e) {
71                         LOG.error("Interrupted while waiting for entry", e);
72                         return null;
73                     }
74                 }
75             }
76         }
77     }
78
79     @Override
80     public void commitEntry(final Long xid, final OfHeader message, final FutureCallback<OfHeader> callback) {
81         outboundQueue.commitEntry(xid, message, callback);
82     }
83
84     @Override
85     public void commitEntry(final Long xid, final OfHeader message, final FutureCallback<OfHeader> callback,
86             final Function<OfHeader, Boolean> isComplete) {
87         outboundQueue.commitEntry(xid, message, callback, isComplete);
88     }
89 }