Add ReusableImmutableNormalizedNodeStreamWriter
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / ReusableImmutableNormalizedNodeStreamWriter.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.impl.schema;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
15
16 /**
17  * A reusable variant of {@link ImmutableNormalizedNodeStreamWriter}. It can be reset into its base state and used for
18  * multiple streaming sessions.
19  */
20 @Beta
21 public final class ReusableImmutableNormalizedNodeStreamWriter extends ImmutableNormalizedNodeStreamWriter {
22     private final NormalizedNodeResultBuilder builder;
23
24     private ReusableImmutableNormalizedNodeStreamWriter(final NormalizedNodeResultBuilder builder) {
25         super(builder);
26         this.builder = requireNonNull(builder);
27     }
28
29     public static @NonNull ReusableImmutableNormalizedNodeStreamWriter create() {
30         return new ReusableImmutableNormalizedNodeStreamWriter(new NormalizedNodeResultBuilder());
31     }
32
33     public void reset() {
34         builder.result().reset();
35         reset(builder);
36     }
37
38     public NormalizedNode<?, ?> getResult() {
39         return builder.result().getResult();
40     }
41 }