21038feae1308cdeb0237471f349364ed3083fc7
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / object / AbstractEROWithSubobjectsParser.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.impl.object;
9
10 import com.google.common.base.Preconditions;
11 import com.google.common.primitives.UnsignedBytes;
12
13 import io.netty.buffer.ByteBuf;
14 import io.netty.buffer.ByteBufUtil;
15
16 import java.util.ArrayList;
17 import java.util.List;
18
19 import org.opendaylight.protocol.pcep.spi.EROSubobjectRegistry;
20 import org.opendaylight.protocol.pcep.spi.ObjectParser;
21 import org.opendaylight.protocol.pcep.spi.ObjectSerializer;
22 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.Subobject;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26
27 public abstract class AbstractEROWithSubobjectsParser implements ObjectParser, ObjectSerializer {
28
29     private static final Logger LOG = LoggerFactory.getLogger(AbstractEROWithSubobjectsParser.class);
30
31     private static final int HEADER_LENGTH = 2;
32
33     private final EROSubobjectRegistry subobjReg;
34
35     protected AbstractEROWithSubobjectsParser(final EROSubobjectRegistry subobjReg) {
36         this.subobjReg = Preconditions.checkNotNull(subobjReg);
37     }
38
39     protected List<Subobject> parseSubobjects(final ByteBuf buffer) throws PCEPDeserializerException {
40         // Explicit approval of empty ERO
41         Preconditions.checkArgument(buffer != null, "Array of bytes is mandatory. Can't be null.");
42         final List<Subobject> subs = new ArrayList<>();
43         while (buffer.isReadable()) {
44             boolean loose = ((buffer.getByte(buffer.readerIndex()) & (1 << 7)) != 0) ? true : false;
45             int type = (buffer.readByte() & 0xff) & ~(1 << 7);
46             int length = UnsignedBytes.toInt(buffer.readByte()) - HEADER_LENGTH;
47             if (length > buffer.readableBytes()) {
48                 throw new PCEPDeserializerException("Wrong length specified. Passed: " + length + "; Expected: <= "
49                         + buffer.readableBytes());
50             }
51             LOG.debug("Attempt to parse subobject from bytes: {}", ByteBufUtil.hexDump(buffer));
52             final Subobject sub = this.subobjReg.parseSubobject(type, buffer.slice(buffer.readerIndex(), length), loose);
53             if (sub == null) {
54                 LOG.warn("Unknown subobject type: {}. Ignoring subobject.", type);
55             } else {
56                 LOG.debug("Subobject was parsed. {}", sub);
57                 subs.add(sub);
58             }
59             buffer.readerIndex(buffer.readerIndex() + length);
60         }
61         return subs;
62     }
63
64     protected final void serializeSubobject(final List<Subobject> subobjects, final ByteBuf buffer) {
65         for (final Subobject subobject : subobjects) {
66             this.subobjReg.serializeSubobject(subobject, buffer);
67         }
68     }
69 }