File: ByteAlphabet.java

package info (click to toggle)
derby 10.14.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 78,896 kB
  • sloc: java: 691,930; sql: 42,686; xml: 20,511; sh: 3,373; sed: 96; makefile: 60
file content (215 lines) | stat: -rw-r--r-- 6,964 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/*

   Derby - Class org.apache.derbyTesting.functionTests.util.streams.ByteAlphabet

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to you under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */

package org.apache.derbyTesting.functionTests.util.streams;

import java.io.UnsupportedEncodingException;

/**
 * A looping alphabet, returning bytes in a specified encoding.
 *
 * The alphabet loops over a list of bytes representing characters. The
 * alphabet-object is used by looping stream, which in turn is used for testing
 * methods requiring streaming inputs.
 *
 * The following alphabets have been defined:
 * <ul><li><em>Modern latin, lowercase</em> ; letters a - z (26)
 *     <li><em>Norwegian/Danish, lowercase</em> ; letters a - z, plus three
 *         additional letters (29)
 *     <li><em>Tamil</em> ; 46 Tamil letters from UNICODE U0B80
 *     <li><em>CJK subset</em> ; 12 letter from UNICODE CJK U4E00
 * </ul>
 */
public class ByteAlphabet {

    /** The name of the alphabet. */
    private final String name;
    /** The encoding used to represent characters as bytes. */
    private final String encoding;
    /** The bytes representing the characters in the alphabet. */
    private final byte[] bytes;
    /** The number of characters in the alphabet. */
    private final int charCount;
    /** The number of byes in the alphabet. */
    private final int byteCount;
    /** Offset into the byte array. */
    private int boff = 0;

    /**
     * Create an alphabet returning bytes representing the lowercase letters
     * a-z in the "US-ASCII" encoding.
     */
    public static ByteAlphabet modernLatinLowercase() {
        return new ByteAlphabet("Modern latin lowercase, US-ASCII",
                            CharAlphabet.MODERNLATINLOWER,
                            "US-ASCII");
    }

    /**
     * Create an alphabet returning bytes representing the 29 lowercase
     * letters in the Norwegian/Danish alphabet in the "ISO-8859-1" encoding.
     */
    public static ByteAlphabet norwegianLowercase() {
        return new ByteAlphabet("Norwegian/Danish lowercase, ISO-8859-1",
                        CharAlphabet.NO_DK_LOWER,
                        "ISO-8859-1");
    }

    /**
     * Create an alphabet returning bytes representing a subset of the Tamil
     * alphabet in the UTF-8 encoding.
     */
    public static ByteAlphabet tamilUTF8() {
        return new ByteAlphabet("Tamil, UTF-8",
                        CharAlphabet.TAMIL,
                        "UTF8");
    }

    /**
     * Create an alphabet returning bytes representing a subset of the Tamil
     * alphabet in the UTF-16BE encoding.
     */
    public static ByteAlphabet tamilUTF16BE() {
        return new ByteAlphabet("Tamil, UTF-16BE",
                        CharAlphabet.TAMIL,
                        "UTF-16BE");
    }

    /**
     * Create an alphabet returning bytes representing a subset of the CJK
     * alphabet in the UTF-8 encoding.
     */
    public static ByteAlphabet cjkSubsetUTF8() {
        return new ByteAlphabet("CJK subset, UTF-8",
                        CharAlphabet.CJKSUBSET,
                        "UTF8");
    }

    /**
     * Create an alphabet returning bytes representing a subset of the CJK
     * alphabet in the UTF-16BE encoding.
     */
    public static ByteAlphabet cjkSubsetUTF16BE() {
        return new ByteAlphabet("CJK subset, UTF-16BE",
                        CharAlphabet.CJKSUBSET,
                        "UTF-16BE");
    }

    /**
     * Create an alphabet that consists of a single byte.
     */
    public static ByteAlphabet singleByte(byte b) {
        return new ByteAlphabet(
                "Single byte: " + b,
                new char[] { (char) (b & 0xff) },
                "US-ASCII");
    }

    /**
     * Create an alphabet with the given name, the given characters and using
     * the specified encoding to represent the characters as bytes.
     *
     * @param name the name of the alphabet
     * @param chars the characters in the alphabet
     * @param encoding the encoding to use to represent characters as bytes
     */
    private ByteAlphabet(String name, char[] chars, String encoding) {
        this.name = name;
        this.encoding = encoding;
        this.charCount = chars.length;
        String tmpStr = new String(chars);
        byte[] tmpBytes;
        try {
            tmpBytes = tmpStr.getBytes(encoding);
        } catch (UnsupportedEncodingException uee) {
            // We are nasty and ignore this...
            tmpBytes = new byte[] {0};
        }
        this.bytes = tmpBytes;
        this.byteCount = tmpBytes.length;
    }

    /**
     * Return the name of the alphabet.
     */
    public String getName() {
        return this.name;
    }

    /**
     * Return the encoding used to represent characters as bytes.
     */
    public String getEncoding() {
        return this.encoding;
    }

    /**
     * Return the number of characters in the alphabet.
     */
    public int charCount() {
        return charCount;
    }

    /**
     * Return the number of bytes in the alphabet.
     *
     * The number of bytes in the alphabet is noramlly different from the
     * number of characters in the alphabet, but it depends on the
     * characters in the alphabet and encoding used to represent them as
     * bytes.
     */
    public int byteCount() {
        return byteCount;
    }

    /**
     * Return the next byte in the alphabet.
     */
    public byte nextByte() {
        if (boff >= byteCount) {
            boff = 0;
        }
        return bytes[boff++];
    }

    /**
     * Reset the alphabet, the next byte returned is the first byte in the
     * alphabet, which might not be a complete character.
     */
    public void reset() {
        boff = 0;
    }

    /**
     * Compute the next byte to read after reading the specified number
     * of bytes.
     *
     * Besides from returning the index, the internal state of
     * the alphabet is updated.
     *
     * @param bytesRead the number of bytes read
     * @return the index of the next byte
     */
    public int nextByteToRead(int bytesRead) {
        boff = (boff + (bytesRead % byteCount)) % byteCount;
        return boff;
    }
} // End class ByteAlphabet