Clean pcep/base-parser code
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / subobject / Type1LabelParser.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.subobject;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11 import static org.opendaylight.protocol.util.ByteBufWriteUtil.writeUnsignedInt;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.Unpooled;
15 import org.opendaylight.protocol.pcep.spi.LabelParser;
16 import org.opendaylight.protocol.pcep.spi.LabelSerializer;
17 import org.opendaylight.protocol.pcep.spi.LabelUtil;
18 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
19 import org.opendaylight.protocol.util.ByteBufUtils;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.label.subobject.LabelType;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.label.subobject.label.type.Type1LabelCase;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.label.subobject.label.type.Type1LabelCaseBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.label.subobject.label.type.type1.label._case.Type1Label;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev150820.label.subobject.label.type.type1.label._case.Type1LabelBuilder;
25
26 /**
27  * Parser for {@link Type1LabelCase}.
28  */
29 public class Type1LabelParser implements LabelParser, LabelSerializer {
30
31     public static final int CTYPE = 1;
32
33     public static final int LABEL_LENGTH = 4;
34
35     @Override
36     public LabelType parseLabel(final ByteBuf buffer) throws PCEPDeserializerException {
37         checkArgument(buffer != null && buffer.isReadable(), "Array of bytes is mandatory. Cannot be null or empty.");
38         if (buffer.readableBytes() != LABEL_LENGTH) {
39             throw new PCEPDeserializerException("Wrong length of array of bytes. Passed: " + buffer.readableBytes()
40                 + "; Expected: " + LABEL_LENGTH + ".");
41         }
42         return new Type1LabelCaseBuilder()
43                 .setType1Label(new Type1LabelBuilder().setType1Label(ByteBufUtils.readUint32(buffer)).build())
44                 .build();
45     }
46
47     @Override
48     public void serializeLabel(final boolean unidirectional, final boolean global, final LabelType subobject,
49             final ByteBuf buffer) {
50         checkArgument(subobject instanceof Type1LabelCase,
51             "Unknown Label Subobject instance. Passed {}. Needed Type1LabelCase.", subobject.getClass());
52         final ByteBuf body = Unpooled.buffer(LABEL_LENGTH);
53         final Type1Label type1Label = ((Type1LabelCase) subobject).getType1Label();
54         checkArgument(type1Label != null, "Type1Label is mandatory.");
55         writeUnsignedInt(type1Label.getType1Label(), body);
56         LabelUtil.formatLabel(CTYPE, unidirectional, global, body, buffer);
57     }
58 }