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

io.scalecube.services.discovery.ClusterMetadataDecoder Maven / Gradle / Ivy

There is a newer version: 2.11.3.rc9
Show newest version
package io.scalecube.services.discovery;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import io.scalecube.services.ServiceEndpoint;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import reactor.core.Exceptions;

public class ClusterMetadataDecoder {

  private static final Logger LOGGER = LoggerFactory.getLogger(ClusterMetadataDecoder.class);

  private static final ObjectMapper objectMapper = newObjectMapper();

  private static ObjectMapper newObjectMapper() {
    ObjectMapper objectMapper = new ObjectMapper();
    objectMapper.setVisibility(
        objectMapper
            .getSerializationConfig()
            .getDefaultVisibilityChecker()
            .withFieldVisibility(JsonAutoDetect.Visibility.ANY)
            .withGetterVisibility(JsonAutoDetect.Visibility.NONE)
            .withSetterVisibility(JsonAutoDetect.Visibility.NONE)
            .withCreatorVisibility(JsonAutoDetect.Visibility.NONE));
    objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
    return objectMapper;
  }

  /**
   * Decodes metadata into {@link ServiceEndpoint}.
   *
   * @param metadata - raw metadata to decode from.
   * @return decoded {@link ServiceEndpoint}. In case of deserialization error returns {@code null}
   */
  public static ServiceEndpoint decodeMetadata(String metadata) {
    try {
      return objectMapper.readValue(metadata, ServiceEndpoint.class);
    } catch (IOException e) {
      LOGGER.error("Can read metadata: " + e, e);
      return null;
    }
  }

  /**
   * Encodes {@link ServiceEndpoint} into raw String.
   *
   * @param serviceEndpoint - service endpoint to encode.
   * @return encoded {@link ServiceEndpoint}. In case of deserialization error throws {@link
   *     IOException}
   */
  public static String encodeMetadata(ServiceEndpoint serviceEndpoint) {
    try {
      return objectMapper.writeValueAsString(serviceEndpoint);
    } catch (IOException e) {
      LOGGER.error("Can write metadata: " + e, e);
      throw Exceptions.propagate(e);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy