Fix checkstyle
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / PCEPReportedRouteObjectParser.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 com.google.common.base.Preconditions;
11 import io.netty.buffer.ByteBuf;
12 import io.netty.buffer.Unpooled;
13 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
14 import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
15 import org.opendaylight.protocol.pcep.spi.RROSubobjectRegistry;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.Rro;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.reported.route.object.RroBuilder;
20
21 /**
22  * Parser for {@link Rro}.
23  */
24 public final class PCEPReportedRouteObjectParser extends AbstractRROWithSubobjectsParser {
25     public static final int CLASS = 8;
26     public static final int TYPE = 1;
27
28     public PCEPReportedRouteObjectParser(final RROSubobjectRegistry subobjReg) {
29         super(subobjReg, CLASS, TYPE);
30     }
31
32     @Override
33     public Rro parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException {
34         Preconditions.checkArgument(bytes != null && bytes.isReadable(),
35             "Array of bytes is mandatory. Can't be null or empty.");
36         final RroBuilder builder = new RroBuilder()
37                 .setIgnore(header.isIgnore())
38                 .setProcessingRule(header.isProcessingRule())
39                 .setSubobject(parseSubobjects(bytes.slice()));
40         return builder.build();
41     }
42
43     @Override
44     public void serializeObject(final Object object, final ByteBuf buffer) {
45         Preconditions.checkArgument(object instanceof Rro,
46             "Wrong instance of PCEPObject. Passed %s. Needed RroObject.", object.getClass());
47         final Rro obj = (Rro) object;
48         final ByteBuf body = Unpooled.buffer();
49         serializeSubobject(obj.getSubobject(), body);
50         ObjectUtil.formatSubobject(TYPE, CLASS, object.isProcessingRule(), object.isIgnore(), body, buffer);
51     }
52 }