/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.protocol.pcep.parser.object; import static com.google.common.base.Preconditions.checkArgument; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import org.opendaylight.protocol.pcep.PCEPDeserializerException; import org.opendaylight.protocol.pcep.spi.ObjectUtil; import org.opendaylight.protocol.pcep.spi.XROSubobjectRegistry; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.Xro; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.Xro.Flags; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.exclude.route.object.XroBuilder; /** * Parser for {@link Xro}. */ public final class PCEPExcludeRouteObjectParser extends AbstractXROWithSubobjectsParser { private static final int CLASS = 17; private static final int TYPE = 1; private static final int FLAGS_OFFSET = 3; public PCEPExcludeRouteObjectParser(final XROSubobjectRegistry registry) { super(registry, CLASS, TYPE); } @Override public Xro parseObject(final ObjectHeader header, final ByteBuf bytes) throws PCEPDeserializerException { checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty."); bytes.skipBytes(FLAGS_OFFSET); return new XroBuilder() .setIgnore(header.getIgnore()) .setProcessingRule(header.getProcessingRule()) .setFlags(new Flags(bytes.readBoolean())) .setSubobject(parseSubobjects(bytes.slice())) .build(); } @Override public void serializeObject(final Object object, final ByteBuf buffer) { checkArgument(object instanceof Xro, "Wrong instance of PCEPObject. Passed %s. Needed XroObject.", object.getClass()); final Xro obj = (Xro) object; final ByteBuf body = Unpooled.buffer(); body.writeZero(FLAGS_OFFSET); final Flags flags = obj.getFlags(); body.writeBoolean(flags != null && Boolean.TRUE.equals(flags.getFail())); serializeSubobject(obj.getSubobject(), body); ObjectUtil.formatSubobject(TYPE, CLASS, object.getProcessingRule(), object.getIgnore(), body, buffer); } }