All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.restconf.server.api.OperationInputBody Maven / Gradle / Ivy

There is a newer version: 8.0.2
Show newest version
/*
 * Copyright (c) 2023 PANTHEON.tech, s.r.o. 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.restconf.server.api;

import java.io.IOException;
import java.io.InputStream;
import java.io.PushbackInputStream;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.restconf.server.api.DatabindPath.OperationPath;
import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
import org.opendaylight.yangtools.yang.data.api.schema.stream.NormalizedNodeStreamWriter;
import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNormalizedNodeStreamWriter;
import org.opendaylight.yangtools.yang.data.impl.schema.NormalizationResultHolder;
import org.opendaylight.yangtools.yang.data.spi.node.ImmutableNodes;

/**
 * Access to an {code rpc}'s or an {@code action}'s input.
 */
public abstract sealed class OperationInputBody extends RequestBody
        permits JsonOperationInputBody, XmlOperationInputBody {
    OperationInputBody(final InputStream inputStream) {
        super(inputStream);
    }

    /**
     * Stream the {@code input} into a {@link NormalizedNodeStreamWriter}.
     *
     * @param path The {@link OperationPath} of the operation invocation
     * @return The document body, or an empty container node
     * @throws IOException when an I/O error occurs
     */
    public @NonNull ContainerNode toContainerNode(final @NonNull OperationPath path) throws IOException {
        try (var is = new PushbackInputStream(consume())) {
            final var firstByte = is.read();
            if (firstByte == -1) {
                return ImmutableNodes.newContainerBuilder()
                    .withNodeIdentifier(new NodeIdentifier(path.inputStatement().argument()))
                    .build();
            }
            is.unread(firstByte);

            final var holder = new NormalizationResultHolder();
            try (var streamWriter = ImmutableNormalizedNodeStreamWriter.from(holder)) {
                streamTo(path, is, streamWriter);
            }
            return (ContainerNode) holder.getResult().data();
        }
    }

    abstract void streamTo(@NonNull OperationPath path, @NonNull InputStream inputStream,
        @NonNull NormalizedNodeStreamWriter writer) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy