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

org.jclouds.io.InputSuppliers Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
/**
 * Licensed to jclouds, Inc. (jclouds) under one or more
 * contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  jclouds licenses this file
 * to you 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.jclouds.io;

import static com.google.common.base.Preconditions.checkNotNull;

import java.io.IOException;
import java.io.InputStream;

import org.jclouds.encryption.internal.Base64;

import com.google.common.annotations.Beta;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Charsets;
import com.google.common.io.ByteStreams;
import com.google.common.io.InputSupplier;

/**
 * functions related to or replacing those in {@link com.google.common.io.InputSupplier}
 * 
 * @author Adrian Cole
 */
@Beta
public class InputSuppliers {
   /**
    * base64 encodes bytes from the supplied supplier as they are read.
    */
   public static Base64InputSupplier base64Encoder(InputSupplier supplier) throws IOException {
      return new Base64InputSupplier(supplier, Base64.ENCODE + Base64.DONT_BREAK_LINES);
   }

   /**
    * base64 decodes bytes from the supplied supplier as they are read.
    */
   public static Base64InputSupplier base64Decoder(InputSupplier supplier) throws IOException {
      return new Base64InputSupplier(supplier, Base64.DECODE);
   }

   @VisibleForTesting
   static class Base64InputSupplier implements InputSupplier {

      private final InputSupplier delegate;
      private final int mode;

      Base64InputSupplier(InputSupplier inputSupplier, int mode) {
         this.delegate = checkNotNull(inputSupplier, "delegate");
         this.mode = mode;
      }

      @Override
      public InputStream getInput() throws IOException {
         return new Base64.InputStream(delegate.getInput(), mode);
      }

   }

   public static InputSupplier of(final InputStream in) {
      checkNotNull(in, "in");
      return new InputSupplier() {

         @Override
         public InputStream getInput() throws IOException {
            return in;
         }

      };
   }

   public static InputSupplier of(byte[] in) {
      return ByteStreams.newInputStreamSupplier(checkNotNull(in, "in"));
   }

   public static InputSupplier of(String in) {
      return of(checkNotNull(in, "in").getBytes(Charsets.UTF_8));
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy