org.opendaylight.protocol.bgp.parser.spi.AttributeRegistry Maven / Gradle / Ivy
The newest version!
/*
* 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.bgp.parser.spi;
import io.netty.buffer.ByteBuf;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.protocol.bgp.parser.BGPDocumentedException;
import org.opendaylight.protocol.bgp.parser.BGPError;
import org.opendaylight.protocol.bgp.parser.BGPParsingException;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev200120.path.attributes.Attributes;
/**
* Attribute serializer/deserializer registry, exposing the capability to parse BGP attributes as a whole.
*/
@NonNullByDefault
public interface AttributeRegistry {
/**
* Parse BGP Attribute from buffer.
*
* @param buffer Input buffer.
* @param constraints Peer specific constraint.
* @return Decoded BGP Attribute.
* @throws BGPDocumentedException when an unrecoverable error occurs, which is documented via {@link BGPError}
* @throws BGPParsingException when a general unrecoverable parsing error occurs
*/
ParsedAttributes parseAttributes(ByteBuf buffer, @Nullable PeerSpecificParserConstraint constraints)
throws BGPDocumentedException, BGPParsingException;
/**
* Serialize BGP Attribute to buffer.
*
* @param attribute Input BGP Attribute.
* @param byteAggregator Output buffer.
*/
void serializeAttribute(Attributes attribute, ByteBuf byteAggregator);
}