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

nl.topicus.jdbc.shaded.io.grpc.internal.AbstractServerStream Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
/*
 * Copyright 2014, Google Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *    * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *    * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *
 *    * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package nl.topicus.jdbc.shaded.io.grpc.internal;

import nl.topicus.jdbc.shaded.com.google.nl.topicus.jdbc.shaded.com.on.base.Preconditions;
import nl.topicus.jdbc.shaded.io.grpc.Attributes;
import nl.topicus.jdbc.shaded.io.grpc.Metadata;
import nl.topicus.jdbc.shaded.io.grpc.Status;
import nl.topicus.jdbc.shaded.javax.annotation.Nullable;

/**
 * Abstract base class for {@link ServerStream} implementations. Extending classes only need to
 * implement {@link #transportState()} and {@link #abstractServerStreamSink()}. Must only be called
 * from the sending application thread.
 */
public abstract class AbstractServerStream extends AbstractStream2
    implements ServerStream, MessageFramer.Sink {
  /**
   * A sink for outbound operations, separated from the stream simply to avoid name
   * collisions/confusion. Only called from application thread.
   */
  protected interface Sink {
    /**
     * Sends response headers to the remote end point.
     *
     * @param headers the headers to be sent to client.
     */
    void writeHeaders(Metadata headers);

    /**
     * Sends an outbound frame to the remote end point.
     *
     * @param frame a buffer containing the chunk of data to be sent.
     * @param flush {@code true} if more data may not be arriving soon
     */
    void writeFrame(@Nullable WritableBuffer frame, boolean flush);

    /**
     * Sends trailers to the remote end point. This call implies end of stream.
     *
     * @param trailers metadata to be sent to the end point
     * @param headersSent {@code true} if response headers have already been sent.
     */
    void writeTrailers(Metadata trailers, boolean headersSent);

    /**
     * Requests up to the given number of messages from the call to be delivered. This should end up
     * triggering {@link TransportState#requestMessagesFromDeframer(int)} on the transport thread.
     */
    void request(int numMessages);

    /**
     * Tears down the stream, typically in the event of a timeout. This method may be called
     * multiple times and from any thread.
     *
     * 

This is a clone of {@link ServerStream#cancel(Status)}. */ void cancel(Status status); } private final MessageFramer framer; private final StatsTraceContext statsTraceCtx; private boolean outboundClosed; private boolean headersSent; protected AbstractServerStream(WritableBufferAllocator bufferAllocator, StatsTraceContext statsTraceCtx) { this.statsTraceCtx = Preconditions.checkNotNull(statsTraceCtx, "statsTraceCtx"); framer = new MessageFramer(this, bufferAllocator, statsTraceCtx); } @Override protected abstract TransportState transportState(); /** * Sink for transport to be called to perform outbound operations. Each stream must have its own * unique sink. */ protected abstract Sink abstractServerStreamSink(); @Override protected final MessageFramer framer() { return framer; } @Override public final void request(int numMessages) { abstractServerStreamSink().request(numMessages); } @Override public final void writeHeaders(Metadata headers) { Preconditions.checkNotNull(headers, "headers"); headersSent = true; abstractServerStreamSink().writeHeaders(headers); } @Override public final void deliverFrame(WritableBuffer frame, boolean endOfStream, boolean flush) { // Since endOfStream is triggered by the sending of trailers, avoid flush here and just flush // after the trailers. abstractServerStreamSink().writeFrame(frame, endOfStream ? false : flush); } @Override public final void close(Status status, Metadata trailers) { Preconditions.checkNotNull(status, "status"); Preconditions.checkNotNull(trailers, "trailers"); if (!outboundClosed) { outboundClosed = true; statsTraceCtx.streamClosed(status); endOfMessages(); addStatusToTrailers(trailers, status); abstractServerStreamSink().writeTrailers(trailers, headersSent); } } private void addStatusToTrailers(Metadata trailers, Status status) { trailers.discardAll(Status.CODE_KEY); trailers.discardAll(Status.MESSAGE_KEY); trailers.put(Status.CODE_KEY, status); if (status.getDescription() != null) { trailers.put(Status.MESSAGE_KEY, status.getDescription()); } } @Override public final void cancel(Status status) { abstractServerStreamSink().cancel(status); } @Override public final boolean isReady() { return super.isReady(); } @Override public Attributes getAttributes() { return Attributes.EMPTY; } @Override public String getAuthority() { return null; } @Override public final void setListener(ServerStreamListener serverStreamListener) { transportState().setListener(serverStreamListener); } @Override public StatsTraceContext statsTraceContext() { return statsTraceCtx; } /** This should only called from the transport thread. */ protected abstract static class TransportState extends AbstractStream2.TransportState { /** Whether listener.closed() has been called. */ private boolean listenerClosed; private ServerStreamListener listener; private final StatsTraceContext statsTraceCtx; protected TransportState(int maxMessageSize, StatsTraceContext statsTraceCtx) { super(maxMessageSize, statsTraceCtx); this.statsTraceCtx = Preconditions.checkNotNull(statsTraceCtx, "statsTraceCtx"); } /** * Sets the listener to receive notifications. Must be called in the context of the transport * thread. */ public final void setListener(ServerStreamListener listener) { Preconditions.checkState(this.listener == null, "setListener should be called only once"); this.listener = Preconditions.checkNotNull(listener, "listener"); } @Override public final void onStreamAllocated() { super.onStreamAllocated(); } @Override public void deliveryStalled() {} @Override public void endOfStream() { closeDeframer(); listener().halfClosed(); } @Override protected ServerStreamListener listener() { return listener; } /** * Called in the transport thread to process the content of an inbound DATA frame from the * client. * * @param frame the inbound HTTP/2 DATA frame. If this buffer is not used immediately, it must * be retained. * @param endOfStream {@code true} if no more data will be received on the stream. */ public void inboundDataReceived(ReadableBuffer frame, boolean endOfStream) { // Deframe the message. If a failure occurs, deframeFailed will be called. deframe(frame, endOfStream); } /** * Notifies failure to the listener of the stream. The transport is responsible for notifying * the client of the failure independent of this method. * *

Unlike {@link #close(Status, Metadata)}, this method is only called from the * transport. The transport should use this method instead of {@code close(Status)} for internal * errors to prevent exposing unexpected states and exceptions to the application. * * @param status the error status. Must not be {@link Status#OK}. */ public final void transportReportStatus(Status status) { Preconditions.checkArgument(!status.isOk(), "status must not be OK"); closeListener(status); } /** * Indicates the stream is considered nl.topicus.jdbc.shaded.com.letely closed and there is no further opportunity for * error. It calls the listener's {@code closed()} if it was not already done by {@link * #transportReportStatus}. */ public void nl.topicus.jdbc.shaded.com.lete() { closeListener(Status.OK); } /** * Closes the listener if not previously closed and frees resources. */ private void closeListener(Status newStatus) { if (!listenerClosed) { // If status is OK, close() is guaranteed to be called which should decide the final status if (!newStatus.isOk()) { statsTraceCtx.streamClosed(newStatus); } listenerClosed = true; onStreamDeallocated(); closeDeframer(); listener().closed(newStatus); } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy