Promote MessageRegistry to pcep-api
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / end / points / PCEPEndPointsIpv4ObjectParser.java
1 /*
2  * Copyright (c) 2013 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.pcep.parser.object.end.points;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11
12 import io.netty.buffer.ByteBuf;
13 import io.netty.buffer.Unpooled;
14 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
15 import org.opendaylight.protocol.pcep.spi.CommonObjectParser;
16 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
17 import org.opendaylight.protocol.pcep.spi.PCEPErrors;
18 import org.opendaylight.protocol.pcep.spi.UnknownObject;
19 import org.opendaylight.protocol.util.Ipv4Util;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints.address.family.Ipv4CaseBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints.address.family.ipv4._case.Ipv4;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints.address.family.ipv4._case.Ipv4Builder;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints.object.EndpointsObj;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints.object.EndpointsObjBuilder;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 /**
31  * Parser for IPv4 {@link EndpointsObj}.
32  */
33 public class PCEPEndPointsIpv4ObjectParser extends CommonObjectParser {
34
35     private static final int CLASS = 4;
36     private static final int TYPE = 1;
37     private static final Logger LOG = LoggerFactory.getLogger(PCEPEndPointsIpv4ObjectParser.class);
38
39     public PCEPEndPointsIpv4ObjectParser() {
40         super(CLASS, TYPE);
41     }
42
43     public static void serializeObject(
44         final Boolean processing,
45         final Boolean ignore,
46         final Ipv4 ipv4,
47         final ByteBuf buffer) {
48         final ByteBuf body = Unpooled.buffer(Ipv4Util.IP4_LENGTH + Ipv4Util.IP4_LENGTH);
49         checkArgument(ipv4.getSourceIpv4Address() != null, "SourceIpv4Address is mandatory.");
50         Ipv4Util.writeIpv4Address(ipv4.getSourceIpv4Address(), body);
51         checkArgument(ipv4.getDestinationIpv4Address() != null, "DestinationIpv4Address is mandatory.");
52         Ipv4Util.writeIpv4Address(ipv4.getDestinationIpv4Address(), body);
53         ObjectUtil.formatSubobject(TYPE, CLASS, processing, ignore, body, buffer);
54     }
55
56     @Override
57     public Object parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
58         checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
59         final EndpointsObjBuilder builder = new EndpointsObjBuilder();
60         if (!header.getProcessingRule()) {
61             LOG.debug("Processed bit not set on Endpoints OBJECT, ignoring it.");
62             return new UnknownObject(PCEPErrors.P_FLAG_NOT_SET, builder.build());
63         }
64         if (bytes.readableBytes() != Ipv4Util.IP4_LENGTH * 2) {
65             throw new PCEPDeserializerException("Wrong length of array of bytes.");
66         }
67         final Ipv4Builder ipv4bldr = new Ipv4Builder()
68                 .setSourceIpv4Address(Ipv4Util.addressForByteBuf(bytes))
69                 .setDestinationIpv4Address(Ipv4Util.addressForByteBuf(bytes));
70         builder.setIgnore(header.getIgnore())
71                 .setProcessingRule(header.getProcessingRule())
72                 .setAddressFamily(new Ipv4CaseBuilder().setIpv4(ipv4bldr.build()).build());
73         return builder.build();
74     }
75 }