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 | |
public class StringDocumentSource implements DocumentSource { |
28 | |
|
29 | |
private final String in; |
30 | |
|
31 | |
private final String contentType; |
32 | |
|
33 | |
private final String encoding; |
34 | |
|
35 | |
private final String uri; |
36 | |
|
37 | |
public StringDocumentSource(String in, String uri) { |
38 | 0 | this(in, uri, null, null); |
39 | 0 | } |
40 | |
|
41 | |
public StringDocumentSource(String in, String uri, String contentType) { |
42 | 0 | this(in, uri, contentType, null); |
43 | 0 | } |
44 | |
|
45 | 0 | public StringDocumentSource(String in, String uri, String contentType, String encoding) { |
46 | 0 | this.in = in; |
47 | 0 | this.uri = uri; |
48 | 0 | this.contentType = contentType; |
49 | 0 | this.encoding = encoding; |
50 | 0 | } |
51 | |
|
52 | |
public InputStream openInputStream() throws IOException { |
53 | 0 | if (encoding == null) { |
54 | 0 | return new ByteArrayInputStream(in.getBytes()); |
55 | |
} |
56 | 0 | return new ByteArrayInputStream(in.getBytes(encoding)); |
57 | |
} |
58 | |
|
59 | |
public long getContentLength() { |
60 | 0 | return in.length(); |
61 | |
} |
62 | |
|
63 | |
public String getDocumentURI() { |
64 | 0 | return uri; |
65 | |
} |
66 | |
|
67 | |
public String getContentType() { |
68 | 0 | return contentType; |
69 | |
} |
70 | |
|
71 | |
public boolean isLocal() { |
72 | 0 | return true; |
73 | |
} |
74 | |
|
75 | |
} |