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

com.couchbase.client.core.protostellar.CoreProtostellarUtil Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (c) 2023 Couchbase, Inc.
 *
 * 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 com.couchbase.client.core.protostellar;

import com.couchbase.client.core.CoreProtostellar;
import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.api.kv.CoreDurability;
import com.couchbase.client.core.api.search.queries.CoreGeoCoordinates;
import com.couchbase.client.core.api.search.queries.CoreGeoPoint;
import com.couchbase.client.core.cnc.CbTracing;
import com.couchbase.client.core.cnc.RequestSpan;
import com.couchbase.client.core.cnc.TracingIdentifiers;
import com.couchbase.client.core.deps.com.google.protobuf.Timestamp;
import com.couchbase.client.core.deps.io.grpc.Deadline;
import com.couchbase.client.core.error.CouchbaseException;
import com.couchbase.client.core.error.FeatureNotAvailableException;
import com.couchbase.client.core.error.RequestCanceledException;
import com.couchbase.client.protostellar.kv.v1.DurabilityLevel;
import com.couchbase.client.protostellar.search.v1.LatLng;
import reactor.core.publisher.Mono;
import reactor.core.publisher.Sinks;
import reactor.util.annotation.Nullable;

import java.time.Duration;
import java.time.Instant;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;

import static com.couchbase.client.protostellar.kv.v1.DurabilityLevel.DURABILITY_LEVEL_MAJORITY;
import static com.couchbase.client.protostellar.kv.v1.DurabilityLevel.DURABILITY_LEVEL_MAJORITY_AND_PERSIST_TO_ACTIVE;
import static com.couchbase.client.protostellar.kv.v1.DurabilityLevel.DURABILITY_LEVEL_PERSIST_TO_MAJORITY;

@Stability.Internal
public class CoreProtostellarUtil {
  private CoreProtostellarUtil() {}

  public static Duration kvTimeout(Optional customTimeout, CoreProtostellar core) {
    return customTimeout.orElse(core.context().environment().timeoutConfig().kvTimeout());
  }

  public static Duration kvDurableTimeout(Optional customTimeout,
                                          CoreDurability dl,
                                          CoreProtostellar core) {
    if (customTimeout.isPresent()) {
      return customTimeout.get();
    } else if (dl.isLegacy()) {
      throw new FeatureNotAvailableException("Legacy durability is not supported with Protostellar; please use Durability instead");
    } else if (!dl.isNone()) {
      return core.context().environment().timeoutConfig().kvDurableTimeout();
    } else {
      return core.context().environment().timeoutConfig().kvTimeout();
    }
  }

  public static Duration kvDurableTimeout(Optional customTimeout,
                                          Optional dl,
                                          CoreProtostellar core) {
    if (customTimeout.isPresent()) {
      return customTimeout.get();
    } else if (dl.isPresent()) {
      return core.context().environment().timeoutConfig().kvDurableTimeout();
    } else {
      return core.context().environment().timeoutConfig().kvTimeout();
    }
  }

  public static Deadline convertTimeout(Optional customTimeout, Duration defaultTimeout) {
    if (customTimeout.isPresent()) {
      return Deadline.after(customTimeout.get().toMillis(), TimeUnit.MILLISECONDS);
    } else {
      return Deadline.after(defaultTimeout.toMillis(), TimeUnit.MILLISECONDS);
    }
  }

  public static Deadline convertTimeout(Duration timeout) {
    return Deadline.after(timeout.toMillis(), TimeUnit.MILLISECONDS);
  }

  public static Duration managementTimeout(Optional customTimeout, CoreProtostellar core) {
    return customTimeout.orElse(core.context().environment().timeoutConfig().managementTimeout());
  }

  public static void handleShutdownBlocking(CoreProtostellar core, ProtostellarRequest request) {
    if (core.endpoint().isShutdown()) {
      throw RequestCanceledException.shuttingDown(request.context());
    }
  }

  public static  boolean handleShutdownAsync(CoreProtostellar core, CompletableFuture ret, ProtostellarRequest request) {
    if (core.endpoint().isShutdown()) {
      ret.completeExceptionally(RequestCanceledException.shuttingDown(request.context()));
      return true;
    }
    return false;
  }

  public static  boolean handleShutdownReactive(Sinks.One ret, CoreProtostellar core, ProtostellarRequest request) {
    if (core.endpoint().isShutdown()) {
      ret.tryEmitError(RequestCanceledException.shuttingDown(request.context())).orThrow();
      return true;
    }
    return false;
  }

  public static  boolean handleShutdownReactive(Sinks.Many ret, CoreProtostellar core, ProtostellarRequest request) {
    if (core.endpoint().isShutdown()) {
      ret.tryEmitError(RequestCanceledException.shuttingDown(request.context())).orThrow();
      return true;
    }
    return false;
  }

  public static  @Nullable Mono handleShutdownReactive(CoreProtostellar core, ProtostellarRequest request) {
    if (core.endpoint().isShutdown()) {
      return Mono.error(RequestCanceledException.shuttingDown(request.context()));
    }
    return null;
  }

  public static DurabilityLevel convert(com.couchbase.client.core.msg.kv.DurabilityLevel dl) {
    switch (dl) {
      case MAJORITY:
        return DURABILITY_LEVEL_MAJORITY;
      case MAJORITY_AND_PERSIST_TO_ACTIVE:
        return DURABILITY_LEVEL_MAJORITY_AND_PERSIST_TO_ACTIVE;
      case PERSIST_TO_MAJORITY:
        return DURABILITY_LEVEL_PERSIST_TO_MAJORITY;
    }

    // NONE should be handled earlier, by not sending anything.
    throw new IllegalArgumentException("Unknown durability level " + dl);
  }

  public static DurabilityLevel convert(CoreDurability dl) {
    if (dl.isNone()) {
      throw new IllegalArgumentException("Durability must not be 'none' here.");
    }

    if (dl.isLegacy()) {
      throw unsupportedInProtostellar("persistTo / replicateTo");
    }

    switch (dl.levelIfSynchronous().get()) {
      case MAJORITY:
        return DURABILITY_LEVEL_MAJORITY;
      case MAJORITY_AND_PERSIST_TO_ACTIVE:
        return DURABILITY_LEVEL_MAJORITY_AND_PERSIST_TO_ACTIVE;
      case PERSIST_TO_MAJORITY:
        return DURABILITY_LEVEL_PERSIST_TO_MAJORITY;
    }

    // NONE should be handled earlier, by not sending anything.
    throw new IllegalArgumentException("Unknown durability level " + dl);
  }

  public static @Nullable Instant convertExpiry(boolean hasExpiry, Timestamp expiry) {
    if (hasExpiry) {
      return Instant.ofEpochSecond(expiry.getSeconds());
    }
    return null;
  }

  public static Timestamp toExpiryTime(Instant expiry) {
    return Timestamp.newBuilder().setSeconds(expiry.getEpochSecond()).build();
  }

  public static int toExpirySeconds(Duration expiry) {
    return Math.toIntExact(expiry.getSeconds());
  }

  public static RequestSpan createSpan(CoreProtostellar core,
                                       String spanName,
                                       CoreDurability durability,
                                       @Nullable RequestSpan parent) {
    RequestSpan span = CbTracing.newSpan(core.context().environment().requestTracer(), spanName, parent);

    if (!durability.isNone() && !durability.isLegacy()) {
      switch (durability.levelIfSynchronous().get()) {
        case MAJORITY:
          span.lowCardinalityAttribute(TracingIdentifiers.ATTR_DURABILITY, "majority");
          break;
        case MAJORITY_AND_PERSIST_TO_ACTIVE:
          span.lowCardinalityAttribute(TracingIdentifiers.ATTR_DURABILITY, "majority_and_persist_active");
          break;
        case PERSIST_TO_MAJORITY:
          span.lowCardinalityAttribute(TracingIdentifiers.ATTR_DURABILITY, "persist_majority");
          break;
      }
    }

    return span;
  }

  private static CoreGeoCoordinates requireCoordinates(CoreGeoPoint point) {
    if (!(point instanceof CoreGeoCoordinates)) {
      // requires https://couchbasecloud.atlassian.net/browse/ING-405
      throw unsupportedInProtostellar("using geohash to specify geographic points");
    }
    return (CoreGeoCoordinates) point;
  }

  public static LatLng toLatLng(CoreGeoPoint point) {
    CoreGeoCoordinates coordinates = requireCoordinates(point);
    return LatLng.newBuilder()
      .setLongitude(coordinates.lon())
      .setLatitude(coordinates.lat())
      .build();
  }

  public static RuntimeException unsupportedInProtostellar(String feature) {
    return new FeatureNotAvailableException("Feature '" + feature + "' is not supported when using couchbase2:// to connect");
  }

  // JVMCBC-1187: This and everything using it will be fixed and removed before GA.
  public static RuntimeException unsupportedCurrentlyInProtostellar() {
    return new FeatureNotAvailableException("Feature is not supported when using couchbase2:// to connect");
  }

  public static RuntimeException incompatibleProtostellar(String error) {
    return new CouchbaseException("Encountered error '" + error + "', indicating that a value is being returned from a future version of couchbase2 that this SDK does not understand.  Please update your SDK.");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy