| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
package org.apache.any23.source; |
| 19 | |
|
| 20 | |
import java.io.ByteArrayInputStream; |
| 21 | |
import java.io.IOException; |
| 22 | |
import java.io.InputStream; |
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
public class ByteArrayDocumentSource implements DocumentSource { |
| 29 | |
|
| 30 | |
private final byte[] bytes; |
| 31 | |
|
| 32 | |
private final String documentURI; |
| 33 | |
|
| 34 | |
private final String contentType; |
| 35 | |
|
| 36 | 0 | public ByteArrayDocumentSource(byte[] bytes, String documentURI, String contentType) { |
| 37 | 0 | this.bytes = bytes; |
| 38 | 0 | this.documentURI = documentURI; |
| 39 | 0 | this.contentType = contentType; |
| 40 | 0 | } |
| 41 | |
|
| 42 | |
public ByteArrayDocumentSource(InputStream inputStream, String documentURI, String contentType) |
| 43 | |
throws IOException { |
| 44 | 0 | this(MemCopyFactory.toByteArray(inputStream), documentURI, contentType); |
| 45 | 0 | } |
| 46 | |
|
| 47 | |
public InputStream openInputStream() throws IOException { |
| 48 | 0 | return new ByteArrayInputStream(bytes); |
| 49 | |
} |
| 50 | |
|
| 51 | |
public long getContentLength() { |
| 52 | 0 | return bytes.length; |
| 53 | |
} |
| 54 | |
|
| 55 | |
public String getDocumentURI() { |
| 56 | 0 | return documentURI; |
| 57 | |
} |
| 58 | |
|
| 59 | |
public String getContentType() { |
| 60 | 0 | return contentType; |
| 61 | |
} |
| 62 | |
|
| 63 | |
public boolean isLocal() { |
| 64 | 0 | return true; |
| 65 | |
} |
| 66 | |
|
| 67 | |
} |