Bug 5503 - remove package cyclic dependency in BGP-FS
[bgpcep.git] / bgp / flowspec / src / main / java / org / opendaylight / protocol / bgp / flowspec / FSDestinationPortHandler.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.protocol.bgp.flowspec;
9
10 import com.google.common.base.Preconditions;
11 import io.netty.buffer.ByteBuf;
12 import java.util.ArrayList;
13 import java.util.List;
14 import org.opendaylight.protocol.bgp.flowspec.handlers.AbstractOperandParser;
15 import org.opendaylight.protocol.bgp.flowspec.handlers.FlowspecTypeParser;
16 import org.opendaylight.protocol.bgp.flowspec.handlers.FlowspecTypeSerializer;
17 import org.opendaylight.protocol.bgp.flowspec.handlers.NumericOneByteOperandParser;
18 import org.opendaylight.protocol.bgp.flowspec.handlers.NumericTwoByteOperandParser;
19 import org.opendaylight.protocol.util.ByteArray;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.NumericOperand;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.destination.flowspec.FlowspecType;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.destination.flowspec.flowspec.type.DestinationPortCase;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.destination.flowspec.flowspec.type.DestinationPortCaseBuilder;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.destination.flowspec.flowspec.type.destination.port._case.DestinationPorts;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.destination.flowspec.flowspec.type.destination.port._case.DestinationPortsBuilder;
26
27 public final class FSDestinationPortHandler implements FlowspecTypeParser, FlowspecTypeSerializer {
28     public static final int DESTINATION_PORT_VALUE = 5;
29
30     @Override
31     public void serializeType(FlowspecType fsType, ByteBuf output) {
32         Preconditions.checkArgument(fsType instanceof DestinationPortCase, "DestinationPortCase class is mandatory!");
33         output.writeByte(DESTINATION_PORT_VALUE);
34         NumericTwoByteOperandParser.INSTANCE.serialize(((DestinationPortCase) fsType).getDestinationPorts(), output);
35     }
36
37     @Override
38     public FlowspecType parseType(ByteBuf buffer) {
39         Preconditions.checkNotNull(buffer, "input buffer is null, missing data to parse.");
40         return new DestinationPortCaseBuilder().setDestinationPorts(parseDestinationPort(buffer)).build();
41     }
42
43     private static List<DestinationPorts> parseDestinationPort(final ByteBuf nlri) {
44         final List<DestinationPorts> ports = new ArrayList<>();
45         boolean end = false;
46         // we can do this as all fields will be rewritten in the cycle
47         final DestinationPortsBuilder builder = new DestinationPortsBuilder();
48         while (!end) {
49             final byte b = nlri.readByte();
50             final NumericOperand op = NumericOneByteOperandParser.INSTANCE.parse(b);
51             builder.setOp(op);
52             final short length = AbstractOperandParser.parseLength(b);
53             builder.setValue(ByteArray.bytesToInt(ByteArray.readBytes(nlri, length)));
54             end = op.isEndOfList();
55             ports.add(builder.build());
56         }
57         return ports;
58     }
59 }