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

com.amazonaws.kinesisvideo.parser.examples.StreamOps Maven / Gradle / Ivy

Go to download

The Amazon Kinesis Video Streams Parser Library for Java enables Java developers to parse the streams returned by GetMedia calls to Amazon Kinesis Video.

There is a newer version: 1.2.5
Show newest version
// Generated by delombok at Tue Feb 01 19:16:53 UTC 2022
/*
Copyright 2017-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
A copy of the License is located at

   http://aws.amazon.com/apache2.0/

or in the "license" file accompanying this file.
This file 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.amazonaws.kinesisvideo.parser.examples;

import java.util.Optional;
import java.util.concurrent.TimeUnit;
import java.util.function.Predicate;
import com.amazonaws.auth.AWSCredentialsProvider;
import com.amazonaws.regions.Regions;
import com.amazonaws.services.kinesisvideo.AmazonKinesisVideo;
import com.amazonaws.services.kinesisvideo.AmazonKinesisVideoClientBuilder;
import com.amazonaws.services.kinesisvideo.model.CreateStreamRequest;
import com.amazonaws.services.kinesisvideo.model.DeleteStreamRequest;
import com.amazonaws.services.kinesisvideo.model.DescribeStreamRequest;
import com.amazonaws.services.kinesisvideo.model.ResourceNotFoundException;
import com.amazonaws.services.kinesisvideo.model.StreamInfo;
import org.apache.commons.lang3.Validate;

public class StreamOps extends KinesisVideoCommon {
    @SuppressWarnings("all")
    private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(StreamOps.class);
    private static final long SLEEP_PERIOD_MILLIS = TimeUnit.SECONDS.toMillis(3);
    private static final int DATA_RETENTION_IN_HOURS = 48;
    private final String streamName;
    final AmazonKinesisVideo amazonKinesisVideo;

    public StreamOps(Regions region, String streamName, AWSCredentialsProvider credentialsProvider) {
        super(region, credentialsProvider, streamName);
        this.streamName = streamName;
        final AmazonKinesisVideoClientBuilder builder = AmazonKinesisVideoClientBuilder.standard();
        configureClient(builder);
        this.amazonKinesisVideo = builder.build();
    }

    /**
     * If the stream exists delete it and then recreate it.
     * Otherwise just create the stream.
     */
    public void recreateStreamIfNecessary() throws InterruptedException {
        deleteStreamIfPresent();
        //create the stream.
        amazonKinesisVideo.createStream(new CreateStreamRequest().withStreamName(streamName).withDataRetentionInHours(DATA_RETENTION_IN_HOURS).withMediaType("video/h264"));
        log.info("CreateStream called for stream {}", streamName);
        //wait for stream to become active.
        final Optional createdStreamInfo = waitForStateToMatch(s -> s.isPresent() && "ACTIVE".equals(s.get().getStatus()));
        //some basic validations on the response of the create stream
        Validate.isTrue(createdStreamInfo.isPresent());
        Validate.isTrue(createdStreamInfo.get().getDataRetentionInHours() == DATA_RETENTION_IN_HOURS);
        log.info("Stream {} created ARN {}", streamName, createdStreamInfo.get().getStreamARN());
    }

    public void createStreamIfNotExist() throws InterruptedException {
        final Optional streamInfo = getStreamInfo();
        log.info("Stream {} exists {}", streamName, streamInfo.isPresent());
        if (!streamInfo.isPresent()) {
            //create the stream.
            amazonKinesisVideo.createStream(new CreateStreamRequest().withStreamName(streamName).withDataRetentionInHours(DATA_RETENTION_IN_HOURS).withMediaType("video/h264"));
            log.info("CreateStream called for stream {}", streamName);
            //wait for stream to become active.
            final Optional createdStreamInfo = waitForStateToMatch(s -> s.isPresent() && "ACTIVE".equals(s.get().getStatus()));
            //some basic validations on the response of the create stream
            Validate.isTrue(createdStreamInfo.isPresent());
            Validate.isTrue(createdStreamInfo.get().getDataRetentionInHours() == DATA_RETENTION_IN_HOURS);
            log.info("Stream {} created ARN {}", streamName, createdStreamInfo.get().getStreamARN());
        }
    }

    private void deleteStreamIfPresent() throws InterruptedException {
        final Optional streamInfo = getStreamInfo();
        log.info("Stream {} exists {}", streamName, streamInfo.isPresent());
        if (streamInfo.isPresent()) {
            //Delete the stream
            amazonKinesisVideo.deleteStream(new DeleteStreamRequest().withStreamARN(streamInfo.get().getStreamARN()));
            log.info("DeleteStream called for stream {} ARN {} ", streamName, streamInfo.get().getStreamARN());
            //Wait for stream to be deleted
            waitForStateToMatch(s -> !s.isPresent());
            log.info("Stream {} deleted", streamName);
        }
    }

    private Optional waitForStateToMatch(Predicate> statePredicate) throws InterruptedException {
        Optional streamInfo;
        do {
            streamInfo = getStreamInfo();
            if (!statePredicate.test(streamInfo)) {
                Thread.sleep(SLEEP_PERIOD_MILLIS);
            }
        } while (!statePredicate.test(streamInfo));
        return streamInfo;
    }

    private Optional getStreamInfo() {
        try {
            return Optional.ofNullable(amazonKinesisVideo.describeStream(new DescribeStreamRequest().withStreamName(streamName)).getStreamInfo());
        } catch (ResourceNotFoundException e) {
            return Optional.empty();
        }
    }


    @SuppressWarnings("all")
    public static class StreamOpsBuilder {
        @SuppressWarnings("all")
        private Regions region;
        @SuppressWarnings("all")
        private String streamName;
        @SuppressWarnings("all")
        private AWSCredentialsProvider credentialsProvider;

        @SuppressWarnings("all")
        StreamOpsBuilder() {
        }

        /**
         * @return {@code this}.
         */
        @SuppressWarnings("all")
        public StreamOps.StreamOpsBuilder region(final Regions region) {
            this.region = region;
            return this;
        }

        /**
         * @return {@code this}.
         */
        @SuppressWarnings("all")
        public StreamOps.StreamOpsBuilder streamName(final String streamName) {
            this.streamName = streamName;
            return this;
        }

        /**
         * @return {@code this}.
         */
        @SuppressWarnings("all")
        public StreamOps.StreamOpsBuilder credentialsProvider(final AWSCredentialsProvider credentialsProvider) {
            this.credentialsProvider = credentialsProvider;
            return this;
        }

        @SuppressWarnings("all")
        public StreamOps build() {
            return new StreamOps(this.region, this.streamName, this.credentialsProvider);
        }

        @Override
        @SuppressWarnings("all")
        public String toString() {
            return "StreamOps.StreamOpsBuilder(region=" + this.region + ", streamName=" + this.streamName + ", credentialsProvider=" + this.credentialsProvider + ")";
        }
    }

    @SuppressWarnings("all")
    public static StreamOps.StreamOpsBuilder builder() {
        return new StreamOps.StreamOpsBuilder();
    }

    @SuppressWarnings("all")
    public String getStreamName() {
        return this.streamName;
    }

    @SuppressWarnings("all")
    public AmazonKinesisVideo getAmazonKinesisVideo() {
        return this.amazonKinesisVideo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy