org.dasein.cloud.utils.requester.streamprocessors.StreamToStringProcessor.java Source code

Java tutorial

Introduction

Here is the source code for org.dasein.cloud.utils.requester.streamprocessors.StreamToStringProcessor.java

Source

/**
 * Copyright (C) 2009-2015 Dell, Inc.
 * See annotations for authorship information
 *
 * ====================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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 org.dasein.cloud.utils.requester.streamprocessors;

import org.apache.commons.io.IOUtils;
import org.dasein.cloud.utils.requester.streamprocessors.exceptions.StreamReadException;

import javax.annotation.Nullable;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import java.lang.reflect.ParameterizedType;

/**
 * @author Vlad Munthiu
 */
public class StreamToStringProcessor extends StreamProcessor<String> {
    @Nullable
    @Override
    public String read(InputStream inputStream, Class<String> classType) throws StreamReadException {
        try {
            StringWriter stringWriter = new StringWriter();
            IOUtils.copy(inputStream, stringWriter);
            return stringWriter.toString();
        } catch (IOException ex) {
            throw new StreamReadException("Error deserializing input stream into object", tryGetString(inputStream),
                    ((ParameterizedType) classType.getClass().getGenericSuperclass()).getActualTypeArguments()[0]);
        }
    }

    @Nullable
    @Override
    public String write(String object) {
        return object;
    }
}