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

com.couchbase.client.core.endpoint.EndpointContext Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
/*
 * Copyright (c) 2018 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.endpoint;

import com.couchbase.client.core.CoreContext;
import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.diagnostics.AuthenticationStatus;
import com.couchbase.client.core.service.ServiceType;
import com.couchbase.client.core.util.HostAndPort;

import java.util.Map;
import java.util.Optional;

import static com.couchbase.client.core.logging.RedactableArgument.redactMeta;
import static com.couchbase.client.core.logging.RedactableArgument.redactSystem;
import static java.util.Objects.requireNonNull;

public class EndpointContext extends CoreContext {

  /**
   * The hostname of this endpoint.
   */
  private final HostAndPort remoteSocket;

  private final Optional localSocket;

  /**
   * The circuit breaker used for this endpoint.
   */
  private final CircuitBreaker circuitBreaker;

  /**
   * The service type of this endpoint.
   */
  private final ServiceType serviceType;

  private final Optional bucket;

  private final Optional channelId;

  private volatile AuthenticationStatus authenticationStatus = AuthenticationStatus.UNKNOWN;

  /**
   * Helper method to duplicate the endpoint context (useful for extension).
   *
   * @param ctx the context to copy from.
   */
  public EndpointContext(final EndpointContext ctx) {
    this(ctx, ctx.remoteSocket, ctx.circuitBreaker, ctx.serviceType, ctx.localSocket, ctx.bucket, ctx.channelId);
  }

  /**
   * Creates a new {@link EndpointContext}.
   */
  public EndpointContext(CoreContext ctx, HostAndPort remoteSocket,
                         CircuitBreaker circuitBreaker, ServiceType serviceType,
                         Optional localSocket, Optional bucket, Optional channelId) {
    super(ctx.core(), ctx.id(), ctx.environment(), ctx.authenticator());
    this.remoteSocket = remoteSocket;
    this.circuitBreaker = circuitBreaker;
    this.serviceType = serviceType;
    this.bucket = bucket;
    this.localSocket = localSocket;
    this.channelId = channelId;
  }

  @Stability.Internal
  public void authenticationStatus(AuthenticationStatus authenticationStatus) {
    this.authenticationStatus = requireNonNull(authenticationStatus);
  }

  @Override
  public void injectExportableParams(final Map input) {
    super.injectExportableParams(input);
    input.put("remote", redactSystem(remoteSocket()));
    localSocket.ifPresent(s -> input.put("local", redactSystem(s)));
    if (circuitBreaker != null) {
      input.put("circuitBreaker", circuitBreaker.state().toString());
    }
    input.put("type", serviceType);
    bucket.ifPresent(b -> input.put("bucket", redactMeta(b)));
    channelId.ifPresent(i -> input.put("channelId", i));
  }

  public CircuitBreaker circuitBreaker() {
    return circuitBreaker;
  }

  public Optional localSocket() {
    return localSocket;
  }

  public HostAndPort remoteSocket() {
    return remoteSocket;
  }

  public ServiceType serviceType() {
    return serviceType;
  }

  public Optional bucket() {
    return bucket;
  }

  public Optional channelId() {
    return channelId;
  }

  @Stability.Internal
  public AuthenticationStatus authenticationStatus() {
    return authenticationStatus;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy