FileDocCategorySizeDatePackage
CMSTypedStream.javaAPI DocBouncy Castle Crypto API 1.41 (Java 1.5)2350Wed Oct 01 10:55:28 BST 2008org.bouncycastle.cms

CMSTypedStream.java

package org.bouncycastle.cms;

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

import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;

public class CMSTypedStream
{
    private static final int BUF_SIZ = 32 * 1024;
    
    private final String      _oid;
    private final InputStream _in;
    private final int         _bufSize;
    
    public CMSTypedStream(
        InputStream in)
    {
        this(PKCSObjectIdentifiers.data.getId(), in, BUF_SIZ);
    }
    
    public CMSTypedStream(
         String oid,
         InputStream in)
    {
        this(oid, in, BUF_SIZ);
    }
    
    public CMSTypedStream(
        String      oid,
        InputStream in,
        int         bufSize)
    {
        _oid = oid;
        _bufSize = bufSize;
        _in = new FullReaderStream(in, bufSize);
    }

    public String getContentType()
    {
        return _oid;
    }
    
    public InputStream getContentStream()
    {
        return _in;
    }

    public void drain() 
        throws IOException
    {
        byte[] buf = new byte[_bufSize];
        
        while ((_in.read(buf, 0, buf.length) > 0))
        {
            // keep going...
        }
        
        _in.close();
    }
    
    private class FullReaderStream
        extends InputStream
    {
        InputStream _stream;
        
        FullReaderStream(
            InputStream in,
            int         bufSize)
        {
            _stream = new BufferedInputStream(in, bufSize);
        }
        
        public int read() 
            throws IOException
        {
            return _stream.read();
        }
        
        public int read(
            byte[] buf,
            int    off,
            int    len) 
            throws IOException
        {
            int    rd = 0;
            int    total = 0;
            
            while (len != 0 && (rd = _stream.read(buf, off, len)) > 0)
            {
                off += rd;
                len -= rd;
                total += rd;
            }
            
            if (total > 0)
            {
                return total;
            }
            else
            {
                return -1;
            }
        }
        
        public void close() 
            throws IOException
        {
            _stream.close();
        }
    }
}