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

org.smallmind.scribe.pen.AWSAppender Maven / Gradle / Ivy

/*
 * Copyright (c) 2007 through 2024 David Berkman
 *
 * This file is part of the SmallMind Code Project.
 *
 * The SmallMind Code Project is free software, you can redistribute
 * it and/or modify it under either, at your discretion...
 *
 * 1) The terms of GNU Affero General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at
 * your option) any later version.
 *
 * ...or...
 *
 * 2) The terms of the Apache License, Version 2.0.
 *
 * The SmallMind Code Project is distributed in the hope that it will
 * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License or Apache License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * and the Apache License along with the SmallMind Code Project. If not, see
 *  or .
 *
 * Additional permission under the GNU Affero GPL version 3 section 7
 * ------------------------------------------------------------------
 * If you modify this Program, or any covered work, by linking or
 * combining it with other code, such other code is not for that reason
 * alone subject to any of the requirements of the GNU Affero GPL
 * version 3.
 */
package org.smallmind.scribe.pen;

import java.util.List;
import org.smallmind.nutsnbolts.util.SnowflakeId;
import software.amazon.awssdk.services.cloudwatchlogs.CloudWatchLogsClient;
import software.amazon.awssdk.services.cloudwatchlogs.model.CreateLogStreamRequest;
import software.amazon.awssdk.services.cloudwatchlogs.model.DescribeLogStreamsRequest;
import software.amazon.awssdk.services.cloudwatchlogs.model.InputLogEvent;
import software.amazon.awssdk.services.cloudwatchlogs.model.LogStream;
import software.amazon.awssdk.services.cloudwatchlogs.model.PutLogEventsRequest;
import software.amazon.awssdk.services.cloudwatchlogs.model.PutLogEventsResponse;
import software.amazon.awssdk.services.cloudwatchlogs.model.RejectedLogEventsInfo;

public class AWSAppender extends AbstractAppender {

  private final CloudWatchLogsClient client;
  private final Formatter formatter;
  private final String groupName;
  private final String streamName;
  private String sequenceToken;

  public AWSAppender (Formatter formatter, ErrorHandler errorHandler, CloudWatchLogsClient client, String groupName, String streamName) {

    super(errorHandler);

    List describedLogStreamList;

    this.formatter = formatter;
    this.client = client;
    this.groupName = groupName;
    this.streamName = streamName;

    if (streamName == null) {
      client.createLogStream(CreateLogStreamRequest.builder().logGroupName(groupName).logStreamName(streamName = SnowflakeId.newInstance().generateHexEncoding()).build());
    }

    describedLogStreamList = client.describeLogStreams(DescribeLogStreamsRequest.builder().logGroupName(groupName).logStreamNamePrefix(streamName).build()).logStreams();
    if ((describedLogStreamList == null) || describedLogStreamList.isEmpty()) {
      throw new LoggerRuntimeException("The log stream(groupName=%s, streamName=%s) does not exist", groupName, streamName);
    } else if (describedLogStreamList.size() > 1) {
      throw new LoggerRuntimeException("The log stream(groupName=%s, streamName=%s) is not unique", groupName, streamName);
    } else {
      sequenceToken = describedLogStreamList.get(0).uploadSequenceToken();
    }
  }

  @Override
  // We must synchronize in order to serialize the sequence token, which also means this Appender must be a *singleton*
  // and the streamName must be unique to this JVM instance.
  public synchronized void handleOutput (Record record)
    throws Exception {

    InputLogEvent inputLogEvent = InputLogEvent.builder().message(formatter.format(record)).timestamp(record.getMillis()).build();
    PutLogEventsRequest putLogEventsRequest = PutLogEventsRequest.builder().logGroupName(groupName).logStreamName(streamName).sequenceToken(sequenceToken).logEvents(inputLogEvent).build();
    PutLogEventsResponse putLogEventsResponse = client.putLogEvents(putLogEventsRequest);
    RejectedLogEventsInfo rejectedLogEventsInfo;

    if ((rejectedLogEventsInfo = putLogEventsResponse.rejectedLogEventsInfo()) != null) {
      if (rejectedLogEventsInfo.expiredLogEventEndIndex() != null) {
        throw new LoggerRuntimeException("Log entry(%s) has expired", sequenceToken);
      } else if (rejectedLogEventsInfo.tooNewLogEventStartIndex() != null) {
        throw new LoggerRuntimeException("Log entry(%s) is too new", sequenceToken);
      } else if (rejectedLogEventsInfo.tooOldLogEventEndIndex() != null) {
        throw new LoggerRuntimeException("Log entry(%s) is too old", sequenceToken);
      }
    } else {
      sequenceToken = putLogEventsResponse.nextSequenceToken();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy