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

com.amazonaws.services.elastictranscoder.model.transform.CreateJobRequestMarshaller Maven / Gradle / Ivy

/*
 * Copyright 2010-2014 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.services.elastictranscoder.model.transform;

import static com.amazonaws.util.StringUtils.UTF8;
import static com.amazonaws.util.StringUtils.COMMA_SEPARATOR;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.OutputStreamWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.List;
import java.util.regex.Pattern;

import com.amazonaws.AmazonClientException;
import com.amazonaws.Request;
import com.amazonaws.DefaultRequest;
import com.amazonaws.http.HttpMethodName;
import com.amazonaws.services.elastictranscoder.model.*;
import com.amazonaws.transform.Marshaller;
import com.amazonaws.util.BinaryUtils;
import com.amazonaws.util.StringUtils;
import com.amazonaws.util.StringInputStream;
import com.amazonaws.util.json.*;

/**
 * Create Job Request Marshaller
 */
public class CreateJobRequestMarshaller implements Marshaller, CreateJobRequest> {

    private static final String RESOURCE_PATH_TEMPLATE;
    private static final Map STATIC_QUERY_PARAMS;
    private static final Map DYNAMIC_QUERY_PARAMS;
    static {
        String path = "2012-09-25/jobs";
        Map staticMap = new HashMap();
        Map dynamicMap = new HashMap();

        int index = path.indexOf("?");
        if (index != -1) {
            String queryString = path.substring(index + 1);
            path = path.substring(0, index);

            for (String s : queryString.split("[;&]")) {
                index = s.indexOf("=");
                if (index != -1) {
                    String name = s.substring(0, index);
                    String value = s.substring(index + 1);

                    if (value.startsWith("{") && value.endsWith("}")) {
                        dynamicMap.put(value.substring(1, value.length() - 1), name);
                    } else {
                        staticMap.put(name, value);
                    }
                }
            }
        }

        RESOURCE_PATH_TEMPLATE = path;
        STATIC_QUERY_PARAMS = Collections.unmodifiableMap(staticMap);
        DYNAMIC_QUERY_PARAMS = Collections.unmodifiableMap(dynamicMap);
    }

    public Request marshall(CreateJobRequest createJobRequest) {
        if (createJobRequest == null) {
            throw new AmazonClientException("Invalid argument passed to marshall(...)");
        }

        Request request = new DefaultRequest(createJobRequest, "AmazonElasticTranscoder");
        String target = "EtsCustomerService.CreateJob";
        request.addHeader("X-Amz-Target", target);

        request.setHttpMethod(HttpMethodName.POST);
        String uriResourcePath = RESOURCE_PATH_TEMPLATE;

        request.setResourcePath(uriResourcePath.replaceAll("//", "/"));

        for (Map.Entry entry : STATIC_QUERY_PARAMS.entrySet()) {
            request.addParameter(entry.getKey(), entry.getValue());
        }

        try {
          StringWriter stringWriter = new StringWriter();
          JSONWriter jsonWriter = new JSONWriter(stringWriter);

          jsonWriter.object();
          
            if (createJobRequest.getPipelineId() != null) {
                jsonWriter.key("PipelineId").value(createJobRequest.getPipelineId());
            }
            JobInput input = createJobRequest.getInput();
            if (input != null) {

                jsonWriter.key("Input");
                jsonWriter.object();

                if (input.getKey() != null) {
                    jsonWriter.key("Key").value(input.getKey());
                }
                if (input.getFrameRate() != null) {
                    jsonWriter.key("FrameRate").value(input.getFrameRate());
                }
                if (input.getResolution() != null) {
                    jsonWriter.key("Resolution").value(input.getResolution());
                }
                if (input.getAspectRatio() != null) {
                    jsonWriter.key("AspectRatio").value(input.getAspectRatio());
                }
                if (input.getInterlaced() != null) {
                    jsonWriter.key("Interlaced").value(input.getInterlaced());
                }
                if (input.getContainer() != null) {
                    jsonWriter.key("Container").value(input.getContainer());
                }
                jsonWriter.endObject();
            }
            CreateJobOutput output = createJobRequest.getOutput();
            if (output != null) {

                jsonWriter.key("Output");
                jsonWriter.object();

                if (output.getKey() != null) {
                    jsonWriter.key("Key").value(output.getKey());
                }
                if (output.getThumbnailPattern() != null) {
                    jsonWriter.key("ThumbnailPattern").value(output.getThumbnailPattern());
                }
                if (output.getRotate() != null) {
                    jsonWriter.key("Rotate").value(output.getRotate());
                }
                if (output.getPresetId() != null) {
                    jsonWriter.key("PresetId").value(output.getPresetId());
                }
                if (output.getSegmentDuration() != null) {
                    jsonWriter.key("SegmentDuration").value(output.getSegmentDuration());
                }

                com.amazonaws.internal.ListWithAutoConstructFlag watermarksList = (com.amazonaws.internal.ListWithAutoConstructFlag)(output.getWatermarks());
                if (watermarksList != null && !(watermarksList.isAutoConstruct() && watermarksList.isEmpty())) {

                    jsonWriter.key("Watermarks");
                    jsonWriter.array();

                    for (JobWatermark watermarksListValue : watermarksList) {
                        if (watermarksListValue != null) {
                            jsonWriter.object();
                            if (watermarksListValue.getPresetWatermarkId() != null) {
                                jsonWriter.key("PresetWatermarkId").value(watermarksListValue.getPresetWatermarkId());
                            }
                            if (watermarksListValue.getInputKey() != null) {
                                jsonWriter.key("InputKey").value(watermarksListValue.getInputKey());
                            }
                            jsonWriter.endObject();
                        }
                    }
                    jsonWriter.endArray();
                }
                JobAlbumArt albumArt = output.getAlbumArt();
                if (albumArt != null) {

                    jsonWriter.key("AlbumArt");
                    jsonWriter.object();

                    if (albumArt.getMergePolicy() != null) {
                        jsonWriter.key("MergePolicy").value(albumArt.getMergePolicy());
                    }

                    com.amazonaws.internal.ListWithAutoConstructFlag artworkList = (com.amazonaws.internal.ListWithAutoConstructFlag)(albumArt.getArtwork());
                    if (artworkList != null && !(artworkList.isAutoConstruct() && artworkList.isEmpty())) {

                        jsonWriter.key("Artwork");
                        jsonWriter.array();

                        for (Artwork artworkListValue : artworkList) {
                            if (artworkListValue != null) {
                                jsonWriter.object();
                                if (artworkListValue.getInputKey() != null) {
                                    jsonWriter.key("InputKey").value(artworkListValue.getInputKey());
                                }
                                if (artworkListValue.getMaxWidth() != null) {
                                    jsonWriter.key("MaxWidth").value(artworkListValue.getMaxWidth());
                                }
                                if (artworkListValue.getMaxHeight() != null) {
                                    jsonWriter.key("MaxHeight").value(artworkListValue.getMaxHeight());
                                }
                                if (artworkListValue.getSizingPolicy() != null) {
                                    jsonWriter.key("SizingPolicy").value(artworkListValue.getSizingPolicy());
                                }
                                if (artworkListValue.getPaddingPolicy() != null) {
                                    jsonWriter.key("PaddingPolicy").value(artworkListValue.getPaddingPolicy());
                                }
                                if (artworkListValue.getAlbumArtFormat() != null) {
                                    jsonWriter.key("AlbumArtFormat").value(artworkListValue.getAlbumArtFormat());
                                }
                                jsonWriter.endObject();
                            }
                        }
                        jsonWriter.endArray();
                    }
                    jsonWriter.endObject();
                }

                com.amazonaws.internal.ListWithAutoConstructFlag compositionList = (com.amazonaws.internal.ListWithAutoConstructFlag)(output.getComposition());
                if (compositionList != null && !(compositionList.isAutoConstruct() && compositionList.isEmpty())) {

                    jsonWriter.key("Composition");
                    jsonWriter.array();

                    for (Clip compositionListValue : compositionList) {
                        if (compositionListValue != null) {
                            jsonWriter.object();
                            TimeSpan timeSpan = compositionListValue.getTimeSpan();
                            if (timeSpan != null) {

                                jsonWriter.key("TimeSpan");
                                jsonWriter.object();

                                if (timeSpan.getStartTime() != null) {
                                    jsonWriter.key("StartTime").value(timeSpan.getStartTime());
                                }
                                if (timeSpan.getDuration() != null) {
                                    jsonWriter.key("Duration").value(timeSpan.getDuration());
                                }
                                jsonWriter.endObject();
                            }
                            jsonWriter.endObject();
                        }
                    }
                    jsonWriter.endArray();
                }
                Captions captions = output.getCaptions();
                if (captions != null) {

                    jsonWriter.key("Captions");
                    jsonWriter.object();

                    if (captions.getMergePolicy() != null) {
                        jsonWriter.key("MergePolicy").value(captions.getMergePolicy());
                    }

                    com.amazonaws.internal.ListWithAutoConstructFlag captionSourcesList = (com.amazonaws.internal.ListWithAutoConstructFlag)(captions.getCaptionSources());
                    if (captionSourcesList != null && !(captionSourcesList.isAutoConstruct() && captionSourcesList.isEmpty())) {

                        jsonWriter.key("CaptionSources");
                        jsonWriter.array();

                        for (CaptionSource captionSourcesListValue : captionSourcesList) {
                            if (captionSourcesListValue != null) {
                                jsonWriter.object();
                                if (captionSourcesListValue.getKey() != null) {
                                    jsonWriter.key("Key").value(captionSourcesListValue.getKey());
                                }
                                if (captionSourcesListValue.getLanguage() != null) {
                                    jsonWriter.key("Language").value(captionSourcesListValue.getLanguage());
                                }
                                if (captionSourcesListValue.getTimeOffset() != null) {
                                    jsonWriter.key("TimeOffset").value(captionSourcesListValue.getTimeOffset());
                                }
                                if (captionSourcesListValue.getLabel() != null) {
                                    jsonWriter.key("Label").value(captionSourcesListValue.getLabel());
                                }
                                jsonWriter.endObject();
                            }
                        }
                        jsonWriter.endArray();
                    }

                    com.amazonaws.internal.ListWithAutoConstructFlag captionFormatsList = (com.amazonaws.internal.ListWithAutoConstructFlag)(captions.getCaptionFormats());
                    if (captionFormatsList != null && !(captionFormatsList.isAutoConstruct() && captionFormatsList.isEmpty())) {

                        jsonWriter.key("CaptionFormats");
                        jsonWriter.array();

                        for (CaptionFormat captionFormatsListValue : captionFormatsList) {
                            if (captionFormatsListValue != null) {
                                jsonWriter.object();
                                if (captionFormatsListValue.getFormat() != null) {
                                    jsonWriter.key("Format").value(captionFormatsListValue.getFormat());
                                }
                                if (captionFormatsListValue.getPattern() != null) {
                                    jsonWriter.key("Pattern").value(captionFormatsListValue.getPattern());
                                }
                                jsonWriter.endObject();
                            }
                        }
                        jsonWriter.endArray();
                    }
                    jsonWriter.endObject();
                }
                jsonWriter.endObject();
            }

            com.amazonaws.internal.ListWithAutoConstructFlag outputsList = (com.amazonaws.internal.ListWithAutoConstructFlag)(createJobRequest.getOutputs());
            if (outputsList != null && !(outputsList.isAutoConstruct() && outputsList.isEmpty())) {

                jsonWriter.key("Outputs");
                jsonWriter.array();

                for (CreateJobOutput outputsListValue : outputsList) {
                    if (outputsListValue != null) {
                        jsonWriter.object();
                        if (outputsListValue.getKey() != null) {
                            jsonWriter.key("Key").value(outputsListValue.getKey());
                        }
                        if (outputsListValue.getThumbnailPattern() != null) {
                            jsonWriter.key("ThumbnailPattern").value(outputsListValue.getThumbnailPattern());
                        }
                        if (outputsListValue.getRotate() != null) {
                            jsonWriter.key("Rotate").value(outputsListValue.getRotate());
                        }
                        if (outputsListValue.getPresetId() != null) {
                            jsonWriter.key("PresetId").value(outputsListValue.getPresetId());
                        }
                        if (outputsListValue.getSegmentDuration() != null) {
                            jsonWriter.key("SegmentDuration").value(outputsListValue.getSegmentDuration());
                        }

                        com.amazonaws.internal.ListWithAutoConstructFlag watermarksList = (com.amazonaws.internal.ListWithAutoConstructFlag)(outputsListValue.getWatermarks());
                        if (watermarksList != null && !(watermarksList.isAutoConstruct() && watermarksList.isEmpty())) {

                            jsonWriter.key("Watermarks");
                            jsonWriter.array();

                            for (JobWatermark watermarksListValue : watermarksList) {
                                if (watermarksListValue != null) {
                                    jsonWriter.object();
                                    if (watermarksListValue.getPresetWatermarkId() != null) {
                                        jsonWriter.key("PresetWatermarkId").value(watermarksListValue.getPresetWatermarkId());
                                    }
                                    if (watermarksListValue.getInputKey() != null) {
                                        jsonWriter.key("InputKey").value(watermarksListValue.getInputKey());
                                    }
                                    jsonWriter.endObject();
                                }
                            }
                            jsonWriter.endArray();
                        }
                        JobAlbumArt albumArt = outputsListValue.getAlbumArt();
                        if (albumArt != null) {

                            jsonWriter.key("AlbumArt");
                            jsonWriter.object();

                            if (albumArt.getMergePolicy() != null) {
                                jsonWriter.key("MergePolicy").value(albumArt.getMergePolicy());
                            }

                            com.amazonaws.internal.ListWithAutoConstructFlag artworkList = (com.amazonaws.internal.ListWithAutoConstructFlag)(albumArt.getArtwork());
                            if (artworkList != null && !(artworkList.isAutoConstruct() && artworkList.isEmpty())) {

                                jsonWriter.key("Artwork");
                                jsonWriter.array();

                                for (Artwork artworkListValue : artworkList) {
                                    if (artworkListValue != null) {
                                        jsonWriter.object();
                                        if (artworkListValue.getInputKey() != null) {
                                            jsonWriter.key("InputKey").value(artworkListValue.getInputKey());
                                        }
                                        if (artworkListValue.getMaxWidth() != null) {
                                            jsonWriter.key("MaxWidth").value(artworkListValue.getMaxWidth());
                                        }
                                        if (artworkListValue.getMaxHeight() != null) {
                                            jsonWriter.key("MaxHeight").value(artworkListValue.getMaxHeight());
                                        }
                                        if (artworkListValue.getSizingPolicy() != null) {
                                            jsonWriter.key("SizingPolicy").value(artworkListValue.getSizingPolicy());
                                        }
                                        if (artworkListValue.getPaddingPolicy() != null) {
                                            jsonWriter.key("PaddingPolicy").value(artworkListValue.getPaddingPolicy());
                                        }
                                        if (artworkListValue.getAlbumArtFormat() != null) {
                                            jsonWriter.key("AlbumArtFormat").value(artworkListValue.getAlbumArtFormat());
                                        }
                                        jsonWriter.endObject();
                                    }
                                }
                                jsonWriter.endArray();
                            }
                            jsonWriter.endObject();
                        }

                        com.amazonaws.internal.ListWithAutoConstructFlag compositionList = (com.amazonaws.internal.ListWithAutoConstructFlag)(outputsListValue.getComposition());
                        if (compositionList != null && !(compositionList.isAutoConstruct() && compositionList.isEmpty())) {

                            jsonWriter.key("Composition");
                            jsonWriter.array();

                            for (Clip compositionListValue : compositionList) {
                                if (compositionListValue != null) {
                                    jsonWriter.object();
                                    TimeSpan timeSpan = compositionListValue.getTimeSpan();
                                    if (timeSpan != null) {

                                        jsonWriter.key("TimeSpan");
                                        jsonWriter.object();

                                        if (timeSpan.getStartTime() != null) {
                                            jsonWriter.key("StartTime").value(timeSpan.getStartTime());
                                        }
                                        if (timeSpan.getDuration() != null) {
                                            jsonWriter.key("Duration").value(timeSpan.getDuration());
                                        }
                                        jsonWriter.endObject();
                                    }
                                    jsonWriter.endObject();
                                }
                            }
                            jsonWriter.endArray();
                        }
                        Captions captions = outputsListValue.getCaptions();
                        if (captions != null) {

                            jsonWriter.key("Captions");
                            jsonWriter.object();

                            if (captions.getMergePolicy() != null) {
                                jsonWriter.key("MergePolicy").value(captions.getMergePolicy());
                            }

                            com.amazonaws.internal.ListWithAutoConstructFlag captionSourcesList = (com.amazonaws.internal.ListWithAutoConstructFlag)(captions.getCaptionSources());
                            if (captionSourcesList != null && !(captionSourcesList.isAutoConstruct() && captionSourcesList.isEmpty())) {

                                jsonWriter.key("CaptionSources");
                                jsonWriter.array();

                                for (CaptionSource captionSourcesListValue : captionSourcesList) {
                                    if (captionSourcesListValue != null) {
                                        jsonWriter.object();
                                        if (captionSourcesListValue.getKey() != null) {
                                            jsonWriter.key("Key").value(captionSourcesListValue.getKey());
                                        }
                                        if (captionSourcesListValue.getLanguage() != null) {
                                            jsonWriter.key("Language").value(captionSourcesListValue.getLanguage());
                                        }
                                        if (captionSourcesListValue.getTimeOffset() != null) {
                                            jsonWriter.key("TimeOffset").value(captionSourcesListValue.getTimeOffset());
                                        }
                                        if (captionSourcesListValue.getLabel() != null) {
                                            jsonWriter.key("Label").value(captionSourcesListValue.getLabel());
                                        }
                                        jsonWriter.endObject();
                                    }
                                }
                                jsonWriter.endArray();
                            }

                            com.amazonaws.internal.ListWithAutoConstructFlag captionFormatsList = (com.amazonaws.internal.ListWithAutoConstructFlag)(captions.getCaptionFormats());
                            if (captionFormatsList != null && !(captionFormatsList.isAutoConstruct() && captionFormatsList.isEmpty())) {

                                jsonWriter.key("CaptionFormats");
                                jsonWriter.array();

                                for (CaptionFormat captionFormatsListValue : captionFormatsList) {
                                    if (captionFormatsListValue != null) {
                                        jsonWriter.object();
                                        if (captionFormatsListValue.getFormat() != null) {
                                            jsonWriter.key("Format").value(captionFormatsListValue.getFormat());
                                        }
                                        if (captionFormatsListValue.getPattern() != null) {
                                            jsonWriter.key("Pattern").value(captionFormatsListValue.getPattern());
                                        }
                                        jsonWriter.endObject();
                                    }
                                }
                                jsonWriter.endArray();
                            }
                            jsonWriter.endObject();
                        }
                        jsonWriter.endObject();
                    }
                }
                jsonWriter.endArray();
            }
            if (createJobRequest.getOutputKeyPrefix() != null) {
                jsonWriter.key("OutputKeyPrefix").value(createJobRequest.getOutputKeyPrefix());
            }

            com.amazonaws.internal.ListWithAutoConstructFlag playlistsList = (com.amazonaws.internal.ListWithAutoConstructFlag)(createJobRequest.getPlaylists());
            if (playlistsList != null && !(playlistsList.isAutoConstruct() && playlistsList.isEmpty())) {

                jsonWriter.key("Playlists");
                jsonWriter.array();

                for (CreateJobPlaylist playlistsListValue : playlistsList) {
                    if (playlistsListValue != null) {
                        jsonWriter.object();
                        if (playlistsListValue.getName() != null) {
                            jsonWriter.key("Name").value(playlistsListValue.getName());
                        }
                        if (playlistsListValue.getFormat() != null) {
                            jsonWriter.key("Format").value(playlistsListValue.getFormat());
                        }

                        com.amazonaws.internal.ListWithAutoConstructFlag outputKeysList = (com.amazonaws.internal.ListWithAutoConstructFlag)(playlistsListValue.getOutputKeys());
                        if (outputKeysList != null && !(outputKeysList.isAutoConstruct() && outputKeysList.isEmpty())) {

                            jsonWriter.key("OutputKeys");
                            jsonWriter.array();

                            for (String outputKeysListValue : outputKeysList) {
                                if (outputKeysListValue != null) {
                                    jsonWriter.value(outputKeysListValue);
                                }
                            }
                            jsonWriter.endArray();
                        }
                        jsonWriter.endObject();
                    }
                }
                jsonWriter.endArray();
            }

          jsonWriter.endObject();

          String snippet = stringWriter.toString();
          byte[] content = snippet.getBytes(UTF8);
          request.setContent(new StringInputStream(snippet));
          request.addHeader("Content-Length", Integer.toString(content.length));
          request.addHeader("Content-Type", "application/x-amz-json-1.0");
        } catch(Throwable t) {
          throw new AmazonClientException("Unable to marshall request to JSON: " + t.getMessage(), t);
        }

        return request;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy