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

com.github.awsjavakit.eventbridge.handlers.EventHandler Maven / Gradle / Ivy

There is a newer version: 0.18.4
Show newest version
package com.github.awsjavakit.eventbridge.handlers;

import static com.github.awsjavakit.misc.exceptions.ExceptionUtils.stackTraceInSingleLine;

import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestStreamHandler;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.github.awsjavakit.eventbridge.models.AwsEventBridgeEvent;
import com.github.awsjavakit.misc.ioutils.IoUtils;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.UncheckedIOException;
import java.nio.charset.StandardCharsets;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/*
  Implemented as RequestStreamHandler because RequestHandler has problem with java.time.Instant class.
  Probably the class RequestHandler does not include the java-8-module.
 */
public abstract class EventHandler implements RequestStreamHandler {

  public static final String HANDLER_INPUT = "Handler input:\n";
  public static final String ERROR_WRITING_TO_OUTPUT_STREAM = "Error writing output to output stream. Output is: ";
  private static final Logger logger = LoggerFactory.getLogger(EventHandler.class);
  protected final ObjectMapper objectMapper;
  private final Class iclass;
    /*
      Raw class usage in order to support parameterized types when EventHandler is extended by another class.
     */

  @SuppressWarnings({"rawtypes", "unchecked"})
  protected EventHandler(Class iclass, ObjectMapper objectMapper) {
    super();
    this.iclass = (Class) iclass;
    this.objectMapper = objectMapper;
  }

  @Override
  public void handleRequest(InputStream inputStream, OutputStream outputStream, Context context) {
    String inputString = null;
    try {
      inputString = IoUtils.streamToString(inputStream);
      logger.trace(HANDLER_INPUT + inputString);
      AwsEventBridgeEvent input = parseEvent(inputString);
      O output = processInput(input.getDetail(), input, context);

      writeOutput(outputStream, output);
    } catch (Exception e) {
      handleError(e, inputString);
      throw e;
    }
  }

  protected void writeOutput(OutputStream outputStream, O output) {
    try (BufferedWriter writer = new BufferedWriter(
      new OutputStreamWriter(outputStream, StandardCharsets.UTF_8))) {
      String responseJson = objectMapper.writeValueAsString(output);
      writer.write(responseJson);
    } catch (IOException e) {
      logger.error(ERROR_WRITING_TO_OUTPUT_STREAM + output.toString());
      throw new UncheckedIOException(e);
    }

  }

  protected abstract O processInput(I input, AwsEventBridgeEvent event, Context context);

  protected AwsEventBridgeEvent parseEvent(String input) {
    return new EventParser(input, objectMapper).parse(iclass);
  }

  protected void handleError(Exception e, String inputString) {
    logger.error(stackTraceInSingleLine(e));
  }
}