8e2561c7938bc4b2c497cb48eaf0234b1796a939
[org.ibex.io.git] / src / org / ibex / io / Fountain.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.io;
6
7 import java.io.*;
8 import java.net.*;
9 import java.util.*;
10 import java.util.zip.*;
11 import org.ibex.util.*;
12 import java.sql.*;
13
14 /** a source of streams */
15 public interface Fountain {
16
17     public Stream getStream();
18     public long   getLength();
19     public int    getNumLines();
20
21     public static class File implements Fountain {
22         private final java.io.File file;
23         public File(java.io.File file) { this.file = file; }
24         public Stream getStream()      { return new Stream(file); }
25         public long getLength()        { return (int)file.length(); }
26         public int getNumLines()       { return Stream.countLines(getStream()); } 
27     }
28
29     // sketchy since the bytes can be modified
30     public static class ByteArray implements Fountain {
31         private final byte[] bytes;
32         private final int off;
33         private final int len;
34         protected ByteArray(String s) {
35             try {
36                 byte[] bytes = s.getBytes("UTF-8");
37                 this.bytes = bytes;
38                 this.off = 0;
39                 this.len = bytes.length;
40             } catch (UnsupportedEncodingException e) {
41                 throw new RuntimeException(e);
42             }
43         }
44         public ByteArray(byte[] bytes)                   { this(bytes, 0, bytes.length); }
45         public ByteArray(byte[] bytes, int off, int len) { this.bytes = bytes; this.off=off; this.len=len; }
46         public Stream getStream()                        { return new Stream(bytes, off, len); }
47         public long getLength()                          { return len; }
48         public int getNumLines()                         { return Stream.countLines(getStream()); } 
49     }
50
51
52     public static class StringFountain extends ByteArray {
53         public StringFountain(String s)                  { super(s); }
54     }
55
56     public static class Concatenate implements Fountain {
57         Fountain f1, f2;
58         public Concatenate(Fountain f1, Fountain f2)     { this.f1 = f1; this.f2 = f2; }
59         public Stream getStream()                        { return f1.getStream().appendStream(f2.getStream()); }
60         public int getLength()                           { return f1.getLength()+f2.getLength(); }
61         public int getNumLines()                         { return f1.getNumLines()+f2.getNumLines(); }
62     }
63
64     //public static class LazyCachingStreamFountain implements Fountain {
65     //}
66
67 }