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

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

/*
 * Copyright 2016, gRPC Authors All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

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

import static nl.topicus.jdbc.shaded.com.google.common.base.Preconditions.checkNotNull;

import nl.topicus.jdbc.shaded.com.google.common.annotations.VisibleForTesting;
import nl.topicus.jdbc.shaded.io.grpc.CallOptions;
import nl.topicus.jdbc.shaded.io.grpc.ClientStreamTracer;
import nl.topicus.jdbc.shaded.io.grpc.Context;
import nl.topicus.jdbc.shaded.io.grpc.Metadata;
import nl.topicus.jdbc.shaded.io.grpc.ServerCall;
import nl.topicus.jdbc.shaded.io.grpc.ServerStreamTracer;
import nl.topicus.jdbc.shaded.io.grpc.Status;
import nl.topicus.jdbc.shaded.io.grpc.StreamTracer;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import nl.topicus.jdbc.shaded.javax.annotation.concurrent.ThreadSafe;

/**
 * The stats and tracing information for a stream.
 */
@ThreadSafe
public final class StatsTraceContext {
  public static final StatsTraceContext NOOP = new StatsTraceContext(new StreamTracer[0]);

  private final StreamTracer[] tracers;
  private final AtomicBoolean closed = new AtomicBoolean(false);

  /**
   * Factory method for the client-side.
   */
  public static StatsTraceContext newClientContext(CallOptions callOptions, Metadata headers) {
    List factories = callOptions.getStreamTracerFactories();
    if (factories.isEmpty()) {
      return NOOP;
    }
    // This array will be iterated multiple times per RPC. Use primitive array instead of Collection
    // so that for-each doesn't create an Iterator every time.
    StreamTracer[] tracers = new StreamTracer[factories.size()];
    for (int i = 0; i < tracers.length; i++) {
      tracers[i] = factories.get(i).newClientStreamTracer(callOptions, headers);
    }
    return new StatsTraceContext(tracers);
  }

  /**
   * Factory method for the server-side.
   */
  public static StatsTraceContext newServerContext(
      List factories, String fullMethodName, Metadata headers) {
    if (factories.isEmpty()) {
      return NOOP;
    }
    StreamTracer[] tracers = new StreamTracer[factories.size()];
    for (int i = 0; i < tracers.length; i++) {
      tracers[i] = factories.get(i).newServerStreamTracer(fullMethodName, headers);
    }
    return new StatsTraceContext(tracers);
  }

  @VisibleForTesting
  StatsTraceContext(StreamTracer[] tracers) {
    this.tracers = tracers;
  }

  /**
   * Returns a copy of the tracer list.
   */
  @VisibleForTesting
  public List getTracersForTest() {
    return new ArrayList(Arrays.asList(tracers));
  }

  /**
   * See {@link ClientStreamTracer#outboundHeaders}.  For client-side only.
   *
   * 

Transport-specific, thus should be called by transport implementations. */ public void clientOutboundHeaders() { for (StreamTracer tracer : tracers) { ((ClientStreamTracer) tracer).outboundHeaders(); } } /** * See {@link ClientStreamTracer#inboundHeaders}. For client-side only. * *

Called from abstract stream implementations. */ public void clientInboundHeaders() { for (StreamTracer tracer : tracers) { ((ClientStreamTracer) tracer).inboundHeaders(); } } /** * See {@link ServerStreamTracer#filterContext}. For server-side only. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.ServerImpl}. */ public Context serverFilterContext(Context context) { Context ctx = checkNotNull(context, "context"); for (StreamTracer tracer : tracers) { ctx = ((ServerStreamTracer) tracer).filterContext(ctx); checkNotNull(ctx, "%s returns null context", tracer); } return ctx; } /** * See {@link ServerStreamTracer#serverCallStarted}. For server-side only. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.ServerImpl}. */ public void serverCallStarted(ServerCall call) { for (StreamTracer tracer : tracers) { ((ServerStreamTracer) tracer).serverCallStarted(call); } } /** * See {@link StreamTracer#streamClosed}. This may be called multiple times, and only the first * value will be taken. * *

Called from abstract stream implementations. */ public void streamClosed(Status status) { if (closed.compareAndSet(false, true)) { for (StreamTracer tracer : tracers) { tracer.streamClosed(status); } } } /** * See {@link StreamTracer#outboundMessage(int)}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.Framer}. */ @SuppressWarnings("deprecation") public void outboundMessage(int seqNo) { for (StreamTracer tracer : tracers) { tracer.outboundMessage(seqNo); tracer.outboundMessage(); } } /** * See {@link StreamTracer#inboundMessage(int)}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.MessageDeframer}. */ @SuppressWarnings("deprecation") public void inboundMessage(int seqNo) { for (StreamTracer tracer : tracers) { tracer.inboundMessage(seqNo); tracer.inboundMessage(); } } /** * See {@link StreamTracer#outboundMessageSent}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.Framer}. */ public void outboundMessageSent(int seqNo, long optionalWireSize, long optionalUncompressedSize) { for (StreamTracer tracer : tracers) { tracer.outboundMessageSent(seqNo, optionalWireSize, optionalUncompressedSize); } } /** * See {@link StreamTracer#inboundMessageRead}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.MessageDeframer}. */ public void inboundMessageRead(int seqNo, long optionalWireSize, long optionalUncompressedSize) { for (StreamTracer tracer : tracers) { tracer.inboundMessageRead(seqNo, optionalWireSize, optionalUncompressedSize); } } /** * See {@link StreamTracer#outboundUncompressedSize}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.Framer}. */ public void outboundUncompressedSize(long bytes) { for (StreamTracer tracer : tracers) { tracer.outboundUncompressedSize(bytes); } } /** * See {@link StreamTracer#outboundWireSize}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.Framer}. */ public void outboundWireSize(long bytes) { for (StreamTracer tracer : tracers) { tracer.outboundWireSize(bytes); } } /** * See {@link StreamTracer#inboundUncompressedSize}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.MessageDeframer}. */ public void inboundUncompressedSize(long bytes) { for (StreamTracer tracer : tracers) { tracer.inboundUncompressedSize(bytes); } } /** * See {@link StreamTracer#inboundWireSize}. * *

Called from {@link nl.topicus.jdbc.shaded.io.grpc.internal.MessageDeframer}. */ public void inboundWireSize(long bytes) { for (StreamTracer tracer : tracers) { tracer.inboundWireSize(bytes); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy