Mass-migrate to use EffectiveModelContext
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / NormalizedAnydata.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. 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.yangtools.yang.data.api.schema;
9
10 import com.google.common.annotations.Beta;
11 import java.io.IOException;
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.opendaylight.yangtools.concepts.Immutable;
14 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
15 import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeWriter;
16 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
17 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContextProvider;
18
19 /**
20  * The contents of an {@code anydata} node in a normalized format. This representation acts as a schema-bound bridge
21  * between the various (mostly parser-based) representations. Implementations of this interface are usually created
22  * from an instance of {@link NormalizableAnydata}.
23  *
24  * <p>
25  * Note this interface does not have an equality contract and implementations are expected to default to identity
26  * equality (or in Valhalla-speak: be plain data).
27  */
28 @Beta
29 @NonNullByDefault
30 public interface NormalizedAnydata extends Immutable, EffectiveModelContextProvider {
31
32     DataSchemaNode getContextNode();
33
34     NormalizedNode<?, ?> getData();
35
36     default void writeTo(final NormalizedNodeStreamWriter writer) throws IOException {
37         writeTo(writer, true);
38     }
39
40     default void writeTo(final NormalizedNodeStreamWriter writer, final boolean orderKeyLeaves) throws IOException {
41         NormalizedNodeWriter.forStreamWriter(writer, orderKeyLeaves).write(getData()).flush();
42     }
43 }