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

com.adgear.anoa.read.ProtobufDecoders Maven / Gradle / Ivy

package com.adgear.anoa.read;

import com.google.protobuf.InvalidProtocolBufferException;
import com.google.protobuf.Message;
import com.google.protobuf.MessageLite;
import com.google.protobuf.Parser;

import com.adgear.anoa.Anoa;
import com.adgear.anoa.AnoaHandler;
import com.adgear.anoa.AnoaReflectionUtils;
import com.fasterxml.jackson.core.JsonParser;

import java.io.UncheckedIOException;
import java.util.function.Function;

/**
 * Utility class for generating functions for deserializing Protobuf records. Unless specified
 * otherwise, the functions should not be deemed thread-safe.
 */
final public class ProtobufDecoders {

  private ProtobufDecoders() {
  }

  /**
   * @param recordClass Protobuf record class object
   * @param          Protobuf record type
   * @return A thread-safe function which deserializes a Protobuf record from its binary encoding.
   */
  static public  Function binary(
      Class recordClass) {
    Parser parser = AnoaReflectionUtils.getProtobufParser(recordClass);
    return (byte[] bytes) -> {
      try {
        return parser.parsePartialFrom(bytes);
      } catch (InvalidProtocolBufferException e) {
        throw new UncheckedIOException(e);
      }
    };
  }

  /**
   * @param recordClass Protobuf record class object
   * @param          Protobuf record type
   * @return A thread-safe function which deserializes a Protobuf record from its binary encoding.
   * The lambda will raise an exception whenever a required field is missing.
   */
  @Deprecated
  static public  Function binaryStrict(
      Class recordClass) {
    Parser parser = AnoaReflectionUtils.getProtobufParser(recordClass);
    return (byte[] bytes) -> {
      try {
        return parser.parseFrom(bytes);
      } catch (InvalidProtocolBufferException e) {
        throw new UncheckedIOException(e);
      }
    };
  }

  /**
   * @param anoaHandler {@code AnoaHandler} instance to use for exception handling
   * @param recordClass Protobuf record class object
   * @param          Protobuf record type
   * @param          Metadata type
   * @return A function which deserializes a Protobuf record from its binary encoding.
   */
  static public  Function, Anoa> binary(
      AnoaHandler anoaHandler,
      Class recordClass) {
    Parser parser = AnoaReflectionUtils.getProtobufParser(recordClass);
    return anoaHandler.functionChecked(parser::parsePartialFrom);
  }

  /**
   * @param anoaHandler {@code AnoaHandler} instance to use for exception handling
   * @param recordClass Protobuf record class object
   * @param          Protobuf record type
   * @param          Metadata type
   * @return A function which deserializes a Protobuf record from its binary encoding.
   */
  @Deprecated
  static public  Function, Anoa> binaryStrict(
      AnoaHandler anoaHandler,
      Class recordClass) {
    Parser parser = AnoaReflectionUtils.getProtobufParser(recordClass);
    return anoaHandler.functionChecked(parser::parseFrom);
  }

  /**
   * @param recordClass Protobuf record class object
   * @param 

Jackson JsonParser type * @param Protobuf record type * @return A function which reads a Protobuf record from a JsonParser, in its 'natural' encoding. */ static public

Function jackson( Class recordClass) { return new ProtobufReader<>(recordClass).decoder(); } /** * @param recordClass Protobuf record class object * @param

Jackson JsonParser type * @param Protobuf record type * @return A function which reads a Protobuf record from a JsonParser, in its 'natural' encoding, * with strictest possible type checking. */ static public

Function jacksonStrict( Class recordClass) { return new ProtobufReader<>(recordClass).decoderStrict(); } /** * @param anoaHandler {@code AnoaHandler} instance to use for exception handling * @param recordClass Protobuf record class object * @param

Jackson JsonParser type * @param Protobuf record type * @param Metadata type * @return A function which reads a Protobuf record from a JsonParser, in its 'natural' encoding. */ static public

Function, Anoa> jackson( AnoaHandler anoaHandler, Class recordClass) { return new ProtobufReader<>(recordClass).decoder(anoaHandler); } /** * @param anoaHandler {@code AnoaHandler} instance to use for exception handling * @param recordClass Protobuf record class object * @param

Jackson JsonParser type * @param Protobuf record type * @param Metadata type * @return A function which reads a Protobuf record from a JsonParser, in its 'natural' encoding, * with strictest possible type checking. */ static public

Function, Anoa> jacksonStrict( AnoaHandler anoaHandler, Class recordClass) { return new ProtobufReader<>(recordClass).decoderStrict(anoaHandler); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy