Implementation of PacketProcessingService
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / services / PacketProcessingServiceImpl.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.base.Function;
11 import org.opendaylight.openflowplugin.api.openflow.device.Xid;
12 import java.math.BigInteger;
13 import java.util.concurrent.Future;
14 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.PacketOutConvertor;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PacketOutInput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.ConnectionCookie;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.PacketProcessingService;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.TransmitPacketInput;
19 import org.opendaylight.yangtools.yang.common.RpcResult;
20
21 public class PacketProcessingServiceImpl extends CommonService implements PacketProcessingService {
22
23     @Override
24     public Future<RpcResult<Void>> transmitPacket(final TransmitPacketInput input) {
25
26         return handleServiceCall(PRIMARY_CONNECTION, new Function<DataCrate<Void>, Future<RpcResult<Void>>>() {
27
28             @Override
29             public Future<RpcResult<Void>> apply(DataCrate<Void> data) {
30                 final Xid xid = deviceContext.getNextXid();
31                 data.getRequestContext().setXid(xid);
32                 final PacketOutInput message = PacketOutConvertor.toPacketOutInput(input, version, xid.getValue(),
33                         datapathId);
34
35                 BigInteger connectionID = PRIMARY_CONNECTION;
36                 final ConnectionCookie connectionCookie = input.getConnectionCookie();
37                 if (connectionCookie != null && connectionCookie.getValue() != null) {
38                     connectionID = BigInteger.valueOf(connectionCookie.getValue());
39                 }
40
41                 return provideConnectionAdapter(connectionID).packetOut(message);
42             }
43         });
44
45     }
46 }