/* * Copyright (c) 2014 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.yangtools.yang.binding; /** * Event Stream Writer for Binding Representation * * *

Emmiting Event Stream

* * * *

Implementation notes

This interface is not intended to be * implemented by users of generated Binding DTOs but to be used by utilities, * which needs to emit NormalizedNode model from Binding DTOs. *

* This interface is intended as API definition of facade for real Event / * Stream Writer, without explicitly requiring stream writer and related * interfaces to be imported by all generated Binding DTOs. *

* Existence of this interface in base Java Binding package is required to * support runtime generation of users of this interface in OSGI and OSGI-like * environment, since this package is only package which is imported by all * generated Binding DTOs and wired in OSGI. * * */ public interface BindingStreamEventWriter { /** * Methods in this interface allow users to hint the underlying * implementation about the sizing of container-like constructurs * (leafLists, containers, etc.). These hints may be taken into account by a * particular implementation to improve performance, but clients are not * required to provide hints. This constant should be used by clients who * either do not have the sizing information, or do not wish to divulge it * (for whatever reasons). Implementations are free to ignore these hints * completely, but if they do use them, they are expected to be resilient in * face of missing and mismatched hints, which is to say the user can * specify startLeafSet(..., 1) and then call leafNode() 15 times. *

* The acceptable hint values are non-negative integers and this constant, * all other values will result, based on implementation preference, in the * hint being completely ignored or IllegalArgumentException being thrown. */ public final int UNKNOWN_SIZE = -1; /** * * Emits a leaf node event with supplied value. * * @param localName * name of node as defined in schema, namespace and revision are * derived from parent node. * @param value * Value of leaf node. * @throws IllegalArgumentException * If emitted leaf node has invalid value in current context or * was emitted multiple times. * @throws IllegalStateException * If node was emitted inside map, * choice unkeyed list node. */ void leafNode(String localName, Object value) throws IllegalArgumentException; /** * * Emits a start of leaf set (leaf-list). *

* Emits start of leaf set, during writing leaf set event, only * {@link #leafSetEntryNode(Object)} calls are valid. Leaf set event is * finished by calling {@link #endNode()}. * * @param localName * name of node as defined in schema, namespace and revision are * derived from parent node. * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalArgumentException * If emitted leaf node is invalid in current context or was * emitted multiple times. * @throws IllegalStateException * If node was emitted inside map, * choice unkeyed list node. */ void startLeafSet(String localName, int childSizeHint) throws IllegalArgumentException; /** * Emits a leaf set entry node * * @param value * Value of leaf set entry node. * @throws IllegalArgumentException * If emitted leaf node has invalid value. * @throws IllegalStateException * If node was emitted outside leaf set node. */ void leafSetEntryNode(Object value) throws IllegalArgumentException; /** * * Emits start of new container. * *

* End of container event is emitted by invoking {@link #endNode()}. * *

* Valid sub-events are: *

* * @param container * name of node as defined in schema, namespace and revision are * derived from parent node. * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalArgumentException * If emitted node is invalid in current context or was emitted * multiple times. * @throws IllegalStateException * If node was emitted inside map, * choice unkeyed list node. */ void startContainerNode(Class container, int childSizeHint) throws IllegalArgumentException; /** * * Emits start of unkeyed list node event. * *

* End of unkeyed list event is emitted by invoking {@link #endNode()}. * Valid subevents is only {@link #startUnkeyedListItem()}. All other * methods will throw {@link IllegalArgumentException}. * * @param localName * name of node as defined in schema, namespace and revision are * derived from parent node. * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalArgumentException * If emitted node is invalid in current context or was emitted * multiple times. * @throws IllegalStateException * If node was emitted inside map, * choice unkeyed list node. */ void startUnkeyedList(Class localName, int childSizeHint) throws IllegalArgumentException; /** * Emits start of new unkeyed list item. * *

* Unkeyed list item event is finished by invoking {@link #endNode()}. Valid * sub-events are: *

* Valid sub-events are: * *

* * * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalStateException * If node was emitted outside unkeyed list node. */ void startUnkeyedListItem(int childSizeHint) throws IllegalStateException; /** * * Emits start of map node event. * *

* End of map node event is emitted by invoking {@link #endNode()}. Valid * subevents is only {@link #startMapEntryNode(Identifier, int)}. All other methods will * throw {@link IllegalArgumentException}. * * @param mapEntryType * Class of list item, which has defined key. * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalArgumentException * @throws IllegalStateException * If node was emitted inside map, * choice unkeyed list node. */ > void startMapNode(Class mapEntryType, int childSizeHint) throws IllegalArgumentException; /** * * Emits start of map entry. * *

* End of map entry event is emitted by invoking {@link #endNode()}. * *

* Valid sub-events are: * <

* Valid sub-events are: *

* * @param keyValues * Key of map entry node * @param childSizeHint * Non-negative count of expected direct child nodes or * {@link #UNKNOWN_SIZE} if count is unknown. This is only hint * and should not fail writing of child events, if there are more * events than count. * @throws IllegalArgumentException * If key contains incorrect value. * @throws IllegalStateException * If node was emitted outside map entry node. */ void startMapEntryNode(Identifier keyValues, int childSizeHint) throws IllegalArgumentException; /** * Emits start of choice node. * *

* Valid sub-event in {@link #startCase(QName, int)}, which selects case * which should be written. *