Fix findbugs violations in openflowplugin-impl
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / sal / SalGroupServiceImpl.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.services.sal;
9
10 import com.google.common.util.concurrent.FutureCallback;
11 import com.google.common.util.concurrent.Futures;
12 import com.google.common.util.concurrent.ListenableFuture;
13 import com.google.common.util.concurrent.MoreExecutors;
14 import java.util.concurrent.Future;
15 import javax.annotation.Nonnull;
16 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
17 import org.opendaylight.openflowplugin.api.openflow.device.RequestContextStack;
18 import org.opendaylight.openflowplugin.impl.services.multilayer.MultiLayerGroupService;
19 import org.opendaylight.openflowplugin.impl.services.singlelayer.SingleLayerGroupService;
20 import org.opendaylight.openflowplugin.impl.util.ErrorUtil;
21 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.ConvertorExecutor;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.AddGroupInput;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.AddGroupOutput;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.RemoveGroupInput;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.RemoveGroupOutput;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.SalGroupService;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.UpdateGroupInput;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.service.rev130918.UpdateGroupOutput;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.group.types.rev131018.Group;
30 import org.opendaylight.yangtools.yang.common.RpcResult;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33
34 public class SalGroupServiceImpl implements SalGroupService {
35     private static final Logger LOG = LoggerFactory.getLogger(SalGroupServiceImpl.class);
36     private final MultiLayerGroupService<AddGroupInput, AddGroupOutput> addGroup;
37     private final MultiLayerGroupService<Group, UpdateGroupOutput> updateGroup;
38     private final MultiLayerGroupService<RemoveGroupInput, RemoveGroupOutput> removeGroup;
39     private final SingleLayerGroupService<AddGroupOutput> addGroupMessage;
40     private final SingleLayerGroupService<UpdateGroupOutput> updateGroupMessage;
41     private final SingleLayerGroupService<RemoveGroupOutput> removeGroupMessage;
42
43     private final DeviceContext deviceContext;
44
45     public SalGroupServiceImpl(final RequestContextStack requestContextStack,
46                                final DeviceContext deviceContext,
47                                final ConvertorExecutor convertorExecutor) {
48         this.deviceContext = deviceContext;
49         addGroup = new MultiLayerGroupService<>(requestContextStack,
50                                                 deviceContext,
51                                                 AddGroupOutput.class,
52                                                 convertorExecutor);
53
54         updateGroup = new MultiLayerGroupService<>(requestContextStack,
55                                                    deviceContext,
56                                                    UpdateGroupOutput.class,
57                                                    convertorExecutor);
58
59         removeGroup = new MultiLayerGroupService<>(requestContextStack,
60                                                    deviceContext,
61                                                    RemoveGroupOutput.class,
62                                                    convertorExecutor);
63
64         addGroupMessage = new SingleLayerGroupService<>(requestContextStack, deviceContext, AddGroupOutput.class);
65         updateGroupMessage = new SingleLayerGroupService<>(requestContextStack, deviceContext, UpdateGroupOutput.class);
66         removeGroupMessage = new SingleLayerGroupService<>(requestContextStack, deviceContext, RemoveGroupOutput.class);
67     }
68
69     @Override
70     public Future<RpcResult<AddGroupOutput>> addGroup(final AddGroupInput input) {
71         final ListenableFuture<RpcResult<AddGroupOutput>> resultFuture =
72             addGroupMessage.canUseSingleLayerSerialization()
73             ? addGroupMessage.handleServiceCall(input)
74             : addGroup.handleServiceCall(input);
75
76         Futures.addCallback(resultFuture, new FutureCallback<RpcResult<AddGroupOutput>>() {
77             @Override
78             public void onSuccess(@Nonnull RpcResult<AddGroupOutput> result) {
79                 if (result.isSuccessful()) {
80                     if (LOG.isDebugEnabled()) {
81                         LOG.debug("Group add with id={} finished without error", input.getGroupId().getValue());
82                     }
83                     deviceContext.getDeviceGroupRegistry().store(input.getGroupId());
84                 } else {
85                     if (LOG.isDebugEnabled()) {
86                         LOG.debug("Group add with id={} failed, errors={}", input.getGroupId().getValue(),
87                             ErrorUtil.errorsToString(result.getErrors()));
88                     }
89                 }
90             }
91
92             @Override
93             public void onFailure(Throwable throwable) {
94                 LOG.warn("Service call for adding group={} failed, reason: {}",
95                           input.getGroupId().getValue(),
96                           throwable);
97             }
98         }, MoreExecutors.directExecutor());
99         return resultFuture;
100     }
101
102
103     @Override
104     public Future<RpcResult<UpdateGroupOutput>> updateGroup(final UpdateGroupInput input) {
105         final ListenableFuture<RpcResult<UpdateGroupOutput>> resultFuture =
106             updateGroupMessage.canUseSingleLayerSerialization()
107             ? updateGroupMessage.handleServiceCall(input.getUpdatedGroup())
108             : updateGroup.handleServiceCall(input.getUpdatedGroup());
109
110         Futures.addCallback(resultFuture, new FutureCallback<RpcResult<UpdateGroupOutput>>() {
111             @Override
112             public void onSuccess(@Nonnull RpcResult<UpdateGroupOutput> result) {
113                 if (result.isSuccessful()) {
114                     if (LOG.isDebugEnabled()) {
115                         LOG.debug("Group update with original id={} finished without error",
116                             input.getOriginalGroup().getGroupId().getValue());
117                     }
118                 } else {
119                     LOG.warn("Group update with original id={} failed, errors={}",
120                         input.getOriginalGroup().getGroupId(), ErrorUtil.errorsToString(result.getErrors()));
121                     LOG.debug("Group input={}", input.getUpdatedGroup());
122                 }
123             }
124
125             @Override
126             public void onFailure(Throwable throwable) {
127                 LOG.warn("Service call for updating group={} failed, reason: {}",
128                         input.getOriginalGroup().getGroupId(), throwable);
129             }
130         }, MoreExecutors.directExecutor());
131         return resultFuture;
132     }
133
134     @Override
135     public Future<RpcResult<RemoveGroupOutput>> removeGroup(final RemoveGroupInput input) {
136         final ListenableFuture<RpcResult<RemoveGroupOutput>> resultFuture =
137             removeGroupMessage.canUseSingleLayerSerialization()
138             ? removeGroupMessage.handleServiceCall(input)
139             : removeGroup.handleServiceCall(input);
140
141         Futures.addCallback(resultFuture, new FutureCallback<RpcResult<RemoveGroupOutput>>() {
142             @Override
143             public void onSuccess(@Nonnull RpcResult<RemoveGroupOutput> result) {
144                 if (result.isSuccessful()) {
145                     if (LOG.isDebugEnabled()) {
146                         LOG.debug("Group remove with id={} finished without error", input.getGroupId().getValue());
147                     }
148                     removeGroup.getDeviceRegistry().getDeviceGroupRegistry().addMark(input.getGroupId());
149                 } else {
150                     LOG.warn("Group remove with id={} failed, errors={}", input.getGroupId().getValue(),
151                         ErrorUtil.errorsToString(result.getErrors()));
152                     LOG.debug("Group input={}", input);
153                 }
154             }
155
156             @Override
157             public void onFailure(Throwable throwable) {
158                 LOG.warn("Service call for removing group={} failed, reason: {}",
159                         input.getGroupId().getValue(), throwable);
160             }
161         }, MoreExecutors.directExecutor());
162         return resultFuture;
163     }
164
165 }