Trying to track down why Mime4J now longer parses complex nested messages correctly.
[mime4j.git] / src / main / java / org / apache / james / mime4j / BufferingInputStream.java
blob62034b4b37ef3227e190a44a62259ab8f944d52b
1 /****************************************************************
2 * Licensed to the Apache Software Foundation (ASF) under one *
3 * or more contributor license agreements. See the NOTICE file *
4 * distributed with this work for additional information *
5 * regarding copyright ownership. The ASF licenses this file *
6 * to you under the Apache License, Version 2.0 (the *
7 * "License"); you may not use this file except in compliance *
8 * with the License. You may obtain a copy of the License at *
9 * *
10 * http://www.apache.org/licenses/LICENSE-2.0 *
11 * *
12 * Unless required by applicable law or agreed to in writing, *
13 * software distributed under the License is distributed on an *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
15 * KIND, either express or implied. See the License for the *
16 * specific language governing permissions and limitations *
17 * under the License. *
18 ****************************************************************/
20 package org.apache.james.mime4j;
22 import java.io.IOException;
23 import java.io.InputStream;
25 /**
26 * Implementation of {@link InputStream} backed by an {@link InputBuffer} instance.
28 public class BufferingInputStream extends InputStream {
30 private final InputBuffer buffer;
32 public BufferingInputStream(final InputBuffer buffer) {
33 super();
34 this.buffer = buffer;
37 public void close() throws IOException {
38 this.buffer.closeStream();
41 public boolean markSupported() {
42 return false;
45 public int read() throws IOException {
46 return this.buffer.read();
49 public int read(byte[] b, int off, int len) throws IOException {
50 return this.buffer.read(b, off, len);