Move pcep base parser Activator to its own bundle
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / PCEPNotificationObjectParser.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;
9
10 import static org.opendaylight.protocol.util.ByteBufWriteUtil.writeUnsignedByte;
11
12 import com.google.common.base.Preconditions;
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.Unpooled;
15 import java.util.List;
16 import org.opendaylight.protocol.pcep.spi.AbstractObjectWithTlvsParser;
17 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
18 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
19 import org.opendaylight.protocol.pcep.spi.TlvRegistry;
20 import org.opendaylight.protocol.pcep.spi.VendorInformationTlvRegistry;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Object;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.ObjectHeader;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Tlv;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.CNotification;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.CNotificationBuilder;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.c.notification.Tlvs;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.notification.object.c.notification.TlvsBuilder;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.overload.duration.tlv.OverloadDuration;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.vendor.information.tlvs.VendorInformationTlv;
30
31 /**
32  * Parser for {@link CNotification}
33  */
34 public class PCEPNotificationObjectParser extends AbstractObjectWithTlvsParser<CNotificationBuilder> {
35
36     public static final int CLASS = 12;
37
38     public static final int TYPE = 1;
39
40     /*
41      * offsets of fields
42      */
43     private static final int NT_F_OFFSET = 2;
44
45     public PCEPNotificationObjectParser(final TlvRegistry tlvReg, final VendorInformationTlvRegistry viTlvReg) {
46         super(tlvReg, viTlvReg);
47     }
48
49     @Override
50     public CNotification parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
51         Preconditions.checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
52         final CNotificationBuilder builder = new CNotificationBuilder();
53         builder.setIgnore(header.isIgnore());
54         builder.setProcessingRule(header.isProcessingRule());
55         bytes.skipBytes(NT_F_OFFSET);
56         builder.setType(bytes.readUnsignedByte());
57         builder.setValue(bytes.readUnsignedByte());
58         parseTlvs(builder, bytes.slice());
59         return builder.build();
60     }
61
62     @Override
63     public void addTlv(final CNotificationBuilder builder, final Tlv tlv) {
64         if (tlv instanceof OverloadDuration && builder.getType() == 2 && builder.getValue() == 1) {
65             builder.setTlvs(new TlvsBuilder().setOverloadDuration((OverloadDuration) tlv).build());
66         }
67     }
68
69     @Override
70     public void serializeObject(final Object object, final ByteBuf buffer) {
71         Preconditions.checkArgument(object instanceof CNotification, "Wrong instance of PCEPObject. Passed %s. Needed CNotificationObject.", object.getClass());
72         final CNotification notObj = (CNotification) object;
73         final ByteBuf body = Unpooled.buffer();
74         body.writeZero(NT_F_OFFSET);
75         Preconditions.checkArgument(notObj.getType() != null, "Type is mandatory.");
76         writeUnsignedByte(notObj.getType(), body);
77         Preconditions.checkArgument(notObj.getValue() != null, "Value is mandatory.");
78         writeUnsignedByte(notObj.getValue(), body);
79         serializeTlvs(notObj.getTlvs(), body);
80         ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
81     }
82
83     public void serializeTlvs(final Tlvs tlvs, final ByteBuf body) {
84         if (tlvs == null) {
85             return;
86         }
87         if (tlvs.getOverloadDuration() != null) {
88             serializeTlv(tlvs.getOverloadDuration(), body);
89         }
90         serializeVendorInformationTlvs(tlvs.getVendorInformationTlv(), body);
91     }
92
93     @Override
94     protected final void addVendorInformationTlvs(final CNotificationBuilder builder, final List<VendorInformationTlv> tlvs) {
95         if (!tlvs.isEmpty()) {
96             builder.setTlvs(new TlvsBuilder(builder.getTlvs()).setVendorInformationTlv(tlvs).build());
97         }
98     }
99 }