Bug 6133 - and more improvements
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / role / RoleContextImpl.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 package org.opendaylight.openflowplugin.impl.role;
9
10 import com.google.common.base.Preconditions;
11 import java.util.concurrent.Semaphore;
12 import java.util.concurrent.TimeUnit;
13 import javax.annotation.Nonnull;
14 import javax.annotation.Nullable;
15 import org.opendaylight.controller.md.sal.common.api.clustering.CandidateAlreadyRegisteredException;
16 import org.opendaylight.controller.md.sal.common.api.clustering.Entity;
17 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipCandidateRegistration;
18 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipService;
19 import org.opendaylight.openflowplugin.api.openflow.device.DeviceInfo;
20 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
21 import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleConductor;
22 import org.opendaylight.openflowplugin.api.openflow.role.RoleContext;
23 import org.opendaylight.openflowplugin.impl.rpc.AbstractRequestContext;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.role.service.rev150727.SalRoleService;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 /**
29  * Role context hold information about entity ownership registration,
30  * register and unregister candidate (main and tx)
31  */
32 class RoleContextImpl implements RoleContext {
33
34     private static final Logger LOG = LoggerFactory.getLogger(RoleContextImpl.class);
35     private static final int TIMEOUT = 12;
36
37     private final DeviceInfo deviceInfo;
38     private final EntityOwnershipService entityOwnershipService;
39     private volatile EntityOwnershipCandidateRegistration entityOwnershipCandidateRegistration = null;
40     private volatile EntityOwnershipCandidateRegistration txEntityOwnershipCandidateRegistration = null;
41
42     private final Entity entity;
43     private final Entity txEntity;
44
45     private SalRoleService salRoleService = null;
46
47     private final Semaphore roleChangeGuard = new Semaphore(1, true);
48
49     private final LifecycleConductor conductor;
50     private volatile CONTEXT_STATE contextState;
51
52     RoleContextImpl(final DeviceInfo deviceInfo, final EntityOwnershipService entityOwnershipService, final Entity entity, final Entity txEntity, final LifecycleConductor lifecycleConductor) {
53         this.entityOwnershipService = entityOwnershipService;
54         this.entity = entity;
55         this.txEntity = txEntity;
56         this.deviceInfo = deviceInfo;
57         this.conductor = lifecycleConductor;
58         contextState = CONTEXT_STATE.INITIALIZATION;
59     }
60
61     @Override
62     public boolean initialization() {
63         LOG.info("Initialization main candidate for node {}", deviceInfo.getNodeId());
64         contextState = CONTEXT_STATE.WORKING;
65         return registerCandidate(this.entity);
66     }
67
68     @Override
69     public void unregisterAllCandidates() {
70         LOG.info("Role context closed, unregistering all candidates for ownership for node {}", deviceInfo.getNodeId());
71         if (isMainCandidateRegistered()) {
72             unregisterCandidate(this.entity);
73         }
74         if (isTxCandidateRegistered()) {
75             unregisterCandidate(this.txEntity);
76         }
77     }
78
79     @Nullable
80     @Override
81     public <T> RequestContext<T> createRequestContext() {
82         return new AbstractRequestContext<T>(conductor.reserveXidForDeviceMessage(deviceInfo)) {
83             @Override
84             public void close() {
85             }
86         };
87     }
88
89     @Override
90     public void setSalRoleService(@Nonnull final SalRoleService salRoleService) {
91         Preconditions.checkNotNull(salRoleService);
92         this.salRoleService = salRoleService;
93     }
94
95     @Override
96     public SalRoleService getSalRoleService() {
97         return this.salRoleService;
98     }
99
100     @Override
101     public Entity getEntity() {
102         return this.entity;
103     }
104
105     @Override
106     public Entity getTxEntity() {
107         return this.txEntity;
108     }
109
110     @Override
111     public DeviceInfo getDeviceInfo() {
112         return deviceInfo;
113     }
114
115     @Override
116     public boolean isMainCandidateRegistered() {
117         return entityOwnershipCandidateRegistration != null;
118     }
119
120     @Override
121     public boolean isTxCandidateRegistered() {
122         return txEntityOwnershipCandidateRegistration != null;
123     }
124
125     @Override
126     public boolean registerCandidate(final Entity entity_) {
127         boolean permit = false;
128         try {
129             permit = roleChangeGuard.tryAcquire(TIMEOUT, TimeUnit.SECONDS);
130             if(permit) {
131                 LOG.debug("Register candidate for entity {}", entity_);
132                 if (entity_.equals(this.entity)) {
133                     entityOwnershipCandidateRegistration = entityOwnershipService.registerCandidate(entity_);
134                 } else {
135                     txEntityOwnershipCandidateRegistration = entityOwnershipService.registerCandidate(entity_);
136                 }
137             } else {
138                 return false;
139             }
140         } catch (final CandidateAlreadyRegisteredException e) {
141             LOG.warn("Candidate for entity {} is already registered.", entity_.getType());
142             return false;
143         } catch (final InterruptedException e) {
144             LOG.warn("Cannot acquire semaphore for register entity {} candidate.", entity_.getType());
145             return false;
146         } finally {
147             if (permit) {
148                 roleChangeGuard.release();
149             }
150         }
151         return true;
152     }
153
154     @Override
155     public boolean unregisterCandidate(final Entity entity_) {
156         boolean permit = false;
157         try {
158             permit = roleChangeGuard.tryAcquire(TIMEOUT, TimeUnit.SECONDS);
159             if(permit) {
160                 if (entity_.equals(this.entity)) {
161                     if (entityOwnershipCandidateRegistration != null) {
162                         LOG.debug("Unregister candidate for entity {}", entity_);
163                         entityOwnershipCandidateRegistration.close();
164                         entityOwnershipCandidateRegistration = null;
165                     }
166                 } else {
167                     if (txEntityOwnershipCandidateRegistration != null) {
168                         LOG.debug("Unregister candidate for tx entity {}", entity_);
169                         txEntityOwnershipCandidateRegistration.close();
170                         txEntityOwnershipCandidateRegistration = null;
171                     }
172                 }
173             } else {
174                 return false;
175             }
176         } catch (final InterruptedException e) {
177             LOG.warn("Cannot acquire semaphore for unregister entity {} candidate.", entity_.getType());
178             return false;
179         } finally {
180             if (permit) {
181                 roleChangeGuard.release();
182             }
183         }
184         return true;
185     }
186
187     @Override
188     public void close() {
189         contextState = CONTEXT_STATE.TERMINATION;
190         unregisterAllCandidates();
191     }
192
193     public boolean isMaster(){
194         return (txEntityOwnershipCandidateRegistration != null && entityOwnershipCandidateRegistration != null);
195     }
196
197     @Override
198     public CONTEXT_STATE getState() {
199         return contextState;
200     }
201
202     @Override
203     public void setState(CONTEXT_STATE contextState) {
204         this.contextState = contextState;
205     }
206 }