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

kamon.instrumentation.mongo.AsyncBatchCursorGetMoreAdvice Maven / Gradle / Ivy

There is a newer version: 2.7.5
Show newest version
/*
 * Copyright 2013-2020 The Kamon Project 
 *
 * 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 kamon.instrumentation.mongo;

import com.mongodb.MongoNamespace;
import com.mongodb.internal.async.SingleResultCallback;
import kamon.instrumentation.context.HasContext;
import kamon.trace.Span;
import kanela.agent.libs.net.bytebuddy.asm.Advice;

import java.util.List;

public class AsyncBatchCursorGetMoreAdvice {

  @Advice.OnMethodEnter
  public static  void enter(
      @Advice.This Object batchCursor,
      @Advice.FieldValue("namespace") MongoNamespace namespace,
      @Advice.Argument(value = 2, readOnly = false) SingleResultCallback callback) {

    final Span parentSpan = ((HasContext) batchCursor).context().get(Span.Key());
    final Span getMoreSpan = MongoClientInstrumentation.getMoreSpanBuilder(parentSpan, namespace).start();
    callback = spanCompletingCallback(callback, getMoreSpan);
  }

  public static  SingleResultCallback spanCompletingCallback(SingleResultCallback originalCallback, Span span) {
    return new SingleResultCallback() {

      @Override
      public void onResult(T result, Throwable t) {
        try {
          if(t == null) {
            span.finish();
          } else {
            span.fail(t).finish();
          }

        } finally {
          originalCallback.onResult(result, t);
        }
      }
    };
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy