implementation of NodeConfigService
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / NodeConfigServiceImpl.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;
9
10 import com.google.common.util.concurrent.JdkFutureAdapters;
11 import com.google.common.util.concurrent.ListenableFuture;
12 import com.google.common.util.concurrent.SettableFuture;
13 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
14 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.NodeConfigService;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigInput;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.module.config.rev141015.SetConfigOutput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInputBuilder;
20 import org.opendaylight.yangtools.yang.common.RpcResult;
21 import java.util.concurrent.Future;
22
23 /**
24  * @author joe
25  */
26 // TODO: implement this
27 public class NodeConfigServiceImpl extends CommonService implements NodeConfigService {
28
29
30     @Override
31     public Future<RpcResult<SetConfigOutput>> setConfig(final SetConfigInput input) {
32         final RequestContext requestContext = rpcContext.createRequestContext();
33         final SettableFuture<RpcResult<SetConfigOutput>> result = rpcContext.storeOrFail(requestContext);
34         if (!result.isDone()) {
35             SetConfigInputBuilder builder = new SetConfigInputBuilder();
36             SwitchConfigFlag flag = SwitchConfigFlag.valueOf(input.getFlag());
37             final Xid xid = deviceContext.getNextXid();
38             builder.setXid(xid.getValue());
39             builder.setFlags(flag);
40             builder.setMissSendLen(input.getMissSearchLength());
41             builder.setVersion(version);
42             ListenableFuture<RpcResult<Void>> futureResultFromOfLib = JdkFutureAdapters.listenInPoolThread(deviceContext.getPrimaryConnectionContext().getConnectionAdapter().setConfig(builder.build()));
43             RpcResultConvertor<SetConfigOutput> rpcResultConvertor = new RpcResultConvertor<>(requestContext);
44             rpcResultConvertor.processResultFromOfJava(futureResultFromOfLib, getWaitTime());
45         } else {
46             requestContext.close();
47         }
48         return result;
49     }
50 }