mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
20.44.2013 05aed002704417713d01c11d40b637dad22fad4d
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (the "License").  You may not use this file except in compliance
 * with the License.
 *
 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
 * or http://forgerock.org/license/CDDLv1.0.html.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at legal-notices/CDDLv1_0.txt.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information:
 *      Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 *
 *
 *      Copyright 2009-2010 Sun Microsystems, Inc.
 *      Portions copyright 2011-2012 ForgeRock AS
 */
package org.forgerock.opendj.ldap;
 
import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.util.Arrays;
import java.util.logging.Level;
 
import org.forgerock.i18n.LocalizedIllegalArgumentException;
 
import com.forgerock.opendj.util.StaticUtils;
 
/**
 * An immutable sequence of bytes backed by a byte array.
 */
public final class ByteString implements ByteSequence {
 
    // Singleton empty byte string.
    private static final ByteString EMPTY = wrap(new byte[0]);
 
    /**
     * Returns an empty byte string.
     *
     * @return An empty byte string.
     */
    public static ByteString empty() {
        return EMPTY;
    }
 
    /**
     * Returns a byte string containing the big-endian encoded bytes of the
     * provided integer.
     *
     * @param i
     *            The integer to encode.
     * @return The byte string containing the big-endian encoded bytes of the
     *         provided integer.
     */
    public static ByteString valueOf(int i) {
        final byte[] bytes = new byte[4];
        for (int j = 3; j >= 0; j--) {
            bytes[j] = (byte) (i & 0xFF);
            i >>>= 8;
        }
        return wrap(bytes);
    }
 
    /**
     * Returns a byte string containing the big-endian encoded bytes of the
     * provided long.
     *
     * @param l
     *            The long to encode.
     * @return The byte string containing the big-endian encoded bytes of the
     *         provided long.
     */
    public static ByteString valueOf(long l) {
        final byte[] bytes = new byte[8];
        for (int i = 7; i >= 0; i--) {
            bytes[i] = (byte) (l & 0xFF);
            l >>>= 8;
        }
        return wrap(bytes);
    }
 
    /**
     * Returns a byte string representation of the provided object. The object
     * is converted to a byte string as follows:
     * <ul>
     * <li>if the object is an instance of {@code ByteSequence} then this method
     * is equivalent to calling {@code o.toByteString()}
     * <li>if the object is a {@code byte[]} then this method is equivalent to
     * calling {@link #valueOf(byte[])}
     * <li>if the object is a {@code char[]} then this method is equivalent to
     * calling {@link #valueOf(char[])}
     * <li>for all other types of object this method is equivalent to calling
     * {@link #valueOf(String)} with the {@code toString()} representation of
     * the provided object.
     * </ul>
     * <b>Note:</b> this method treats {@code Long} and {@code Integer} objects
     * like any other type of {@code Object}. More specifically, the following
     * invocations are not equivalent:
     * <ul>
     * <li>{@code valueOf(0)} is not equivalent to {@code valueOf((Object) 0)}
     * <li>{@code valueOf(0L)} is not equivalent to {@code valueOf((Object) 0L)}
     * </ul>
     *
     * @param o
     *            The object to use.
     * @return The byte string containing the provided object.
     */
    public static ByteString valueOf(final Object o) {
        if (o instanceof ByteSequence) {
            return ((ByteSequence) o).toByteString();
        } else if (o instanceof byte[]) {
            return valueOf((byte[]) o);
        } else if (o instanceof char[]) {
            return valueOf((char[]) o);
        } else {
            return valueOf(o.toString());
        }
    }
 
    /**
     * Returns a byte string containing the UTF-8 encoded bytes of the provided
     * string.
     *
     * @param s
     *            The string to use.
     * @return The byte string with the encoded bytes of the provided string.
     */
    public static ByteString valueOf(final String s) {
        return wrap(StaticUtils.getBytes(s));
    }
 
    /**
     * Returns a byte string containing the Base64 decoded bytes of the provided
     * string.
     *
     * @param s
     *            The string to use.
     * @return The byte string containing the Base64 decoded bytes of the
     *         provided string.
     * @throws LocalizedIllegalArgumentException
     *             If the provided string does not contain valid Base64 encoded
     *             content.
     * @see #toBase64String()
     */
    public static ByteString valueOfBase64(final String s) {
        return Base64.decode(s);
    }
 
    /**
     * Returns a byte string containing the contents of the provided byte array.
     * <p>
     * This method differs from {@link #wrap(byte[])} in that it defensively
     * copies the provided byte array.
     *
     * @param bytes
     *            The byte array to use.
     * @return A byte string containing a copy of the provided byte array.
     */
    public static ByteString valueOf(final byte[] bytes) {
        return wrap(Arrays.copyOf(bytes, bytes.length));
    }
 
    /**
     * Returns a byte string containing the UTF-8 encoded bytes of the provided
     * char array.
     *
     * @param chars
     *            The char array to use.
     * @return A byte string containing the UTF-8 encoded bytes of the provided
     *         char array.
     */
    public static ByteString valueOf(final char[] chars) {
        return wrap(StaticUtils.getBytes(chars));
    }
 
    /**
     * Returns a byte string that wraps the provided byte array.
     * <p>
     * <b>NOTE:</b> this method takes ownership of the provided byte array and,
     * therefore, the byte array MUST NOT be altered directly after this method
     * returns.
     *
     * @param bytes
     *            The byte array to wrap.
     * @return The byte string that wraps the given byte array.
     */
    public static ByteString wrap(final byte[] bytes) {
        return new ByteString(bytes, 0, bytes.length);
    }
 
    /**
     * Returns a byte string that wraps a subsequence of the provided byte
     * array.
     * <p>
     * <b>NOTE:</b> this method takes ownership of the provided byte array and,
     * therefore, the byte array MUST NOT be altered directly after this method
     * returns.
     *
     * @param bytes
     *            The byte array to wrap.
     * @param offset
     *            The offset of the byte array to be used; must be non-negative
     *            and no larger than {@code bytes.length} .
     * @param length
     *            The length of the byte array to be used; must be non-negative
     *            and no larger than {@code bytes.length - offset}.
     * @return The byte string that wraps the given byte array.
     * @throws IndexOutOfBoundsException
     *             If {@code offset} is negative or if {@code length} is
     *             negative or if {@code offset + length} is greater than
     *             {@code bytes.length}.
     */
    public static ByteString wrap(final byte[] bytes, final int offset, final int length) {
        checkArrayBounds(bytes, offset, length);
        return new ByteString(bytes, offset, length);
    }
 
    /**
     * Checks the array bounds of the provided byte array sub-sequence, throwing
     * an {@code IndexOutOfBoundsException} if they are illegal.
     *
     * @param b
     *            The byte array.
     * @param offset
     *            The offset of the byte array to be checked; must be
     *            non-negative and no larger than {@code b.length}.
     * @param length
     *            The length of the byte array to be checked; must be
     *            non-negative and no larger than {@code b.length - offset}.
     * @throws IndexOutOfBoundsException
     *             If {@code offset} is negative or if {@code length} is
     *             negative or if {@code offset + length} is greater than
     *             {@code b.length}.
     */
    static void checkArrayBounds(final byte[] b, final int offset, final int length) {
        if (offset < 0 || offset > b.length || length < 0 || offset + length > b.length
                || offset + length < 0) {
            throw new IndexOutOfBoundsException();
        }
    }
 
    /**
     * Compares two byte array sub-sequences and returns a value that indicates
     * their relative order.
     *
     * @param b1
     *            The byte array containing the first sub-sequence.
     * @param offset1
     *            The offset of the first byte array sub-sequence.
     * @param length1
     *            The length of the first byte array sub-sequence.
     * @param b2
     *            The byte array containing the second sub-sequence.
     * @param offset2
     *            The offset of the second byte array sub-sequence.
     * @param length2
     *            The length of the second byte array sub-sequence.
     * @return A negative integer if first byte array sub-sequence should come
     *         before the second byte array sub-sequence in ascending order, a
     *         positive integer if the first byte array sub-sequence should come
     *         after the byte array sub-sequence in ascending order, or zero if
     *         there is no difference between the two byte array sub-sequences
     *         with regard to ordering.
     */
    static int compareTo(final byte[] b1, final int offset1, final int length1, final byte[] b2,
            final int offset2, final int length2) {
        int count = Math.min(length1, length2);
        int i = offset1;
        int j = offset2;
        while (count-- != 0) {
            final int firstByte = 0xFF & b1[i++];
            final int secondByte = 0xFF & b2[j++];
            if (firstByte != secondByte) {
                return firstByte - secondByte;
            }
        }
        return length1 - length2;
    }
 
    /**
     * Indicates whether two byte array sub-sequences are equal. In order for
     * them to be considered equal, they must contain the same bytes in the same
     * order.
     *
     * @param b1
     *            The byte array containing the first sub-sequence.
     * @param offset1
     *            The offset of the first byte array sub-sequence.
     * @param length1
     *            The length of the first byte array sub-sequence.
     * @param b2
     *            The byte array containing the second sub-sequence.
     * @param offset2
     *            The offset of the second byte array sub-sequence.
     * @param length2
     *            The length of the second byte array sub-sequence.
     * @return {@code true} if the two byte array sub-sequences have the same
     *         content, or {@code false} if not.
     */
    static boolean equals(final byte[] b1, final int offset1, final int length1, final byte[] b2,
            final int offset2, final int length2) {
        if (length1 != length2) {
            return false;
        }
 
        int i = offset1;
        int j = offset2;
        int count = length1;
        while (count-- != 0) {
            if (b1[i++] != b2[j++]) {
                return false;
            }
        }
 
        return true;
    }
 
    /**
     * Returns a hash code for the provided byte array sub-sequence.
     *
     * @param b
     *            The byte array.
     * @param offset
     *            The offset of the byte array sub-sequence.
     * @param length
     *            The length of the byte array sub-sequence.
     * @return A hash code for the provided byte array sub-sequence.
     */
    static int hashCode(final byte[] b, final int offset, final int length) {
        int hashCode = 1;
        int i = offset;
        int count = length;
        while (count-- != 0) {
            hashCode = 31 * hashCode + b[i++];
        }
        return hashCode;
    }
 
    /**
     * Returns the UTF-8 decoded string representation of the provided byte
     * array sub-sequence. If UTF-8 decoding fails, the platform's default
     * encoding will be used.
     *
     * @param b
     *            The byte array.
     * @param offset
     *            The offset of the byte array sub-sequence.
     * @param length
     *            The length of the byte array sub-sequence.
     * @return The string representation of the byte array sub-sequence.
     */
    static String toString(final byte[] b, final int offset, final int length) {
        String stringValue;
        try {
            stringValue = new String(b, offset, length, "UTF-8");
        } catch (final Exception e) {
            if (StaticUtils.DEBUG_LOG.isLoggable(Level.WARNING)) {
                StaticUtils.DEBUG_LOG.warning("Unable to decode ByteString "
                        + "bytes as UTF-8 string: " + e.toString());
            }
 
            stringValue = new String(b, offset, length);
        }
 
        return stringValue;
    }
 
    // These are package private so that compression and crypto
    // functionality may directly access the fields.
 
    // The buffer where data is stored.
    final byte[] buffer;
 
    // The number of bytes to expose from the buffer.
    final int length;
 
    // The start index of the range of bytes to expose through this byte
    // string.
    final int offset;
 
    /**
     * Creates a new byte string that wraps a subsequence of the provided byte
     * array.
     * <p>
     * <b>NOTE:</b> this method takes ownership of the provided byte array and,
     * therefore, the byte array MUST NOT be altered directly after this method
     * returns.
     *
     * @param b
     *            The byte array to wrap.
     * @param offset
     *            The offset of the byte array to be used; must be non-negative
     *            and no larger than {@code b.length} .
     * @param length
     *            The length of the byte array to be used; must be non-negative
     *            and no larger than {@code b.length - offset}.
     */
    private ByteString(final byte[] b, final int offset, final int length) {
        this.buffer = b;
        this.offset = offset;
        this.length = length;
    }
 
    /**
     * Returns a {@link ByteSequenceReader} which can be used to incrementally
     * read and decode data from this byte string.
     *
     * @return The {@link ByteSequenceReader} which can be used to incrementally
     *         read and decode data from this byte string.
     */
    public ByteSequenceReader asReader() {
        return new ByteSequenceReader(this);
    }
 
    /**
     * {@inheritDoc}
     */
    public byte byteAt(final int index) {
        if (index >= length || index < 0) {
            throw new IndexOutOfBoundsException();
        }
        return buffer[offset + index];
    }
 
    /**
     * {@inheritDoc}
     */
    public int compareTo(final byte[] bytes, final int offset, final int length) {
        checkArrayBounds(bytes, offset, length);
        return compareTo(this.buffer, this.offset, this.length, bytes, offset, length);
    }
 
    /**
     * {@inheritDoc}
     */
    public int compareTo(final ByteSequence o) {
        if (this == o) {
            return 0;
        }
        return -o.compareTo(buffer, offset, length);
    }
 
    /**
     * {@inheritDoc}
     */
    public byte[] copyTo(final byte[] bytes) {
        copyTo(bytes, 0);
        return bytes;
    }
 
    /**
     * {@inheritDoc}
     */
    public byte[] copyTo(final byte[] bytes, final int offset) {
        if (offset < 0) {
            throw new IndexOutOfBoundsException();
        }
        System.arraycopy(buffer, this.offset, bytes, offset, Math
                .min(length, bytes.length - offset));
        return bytes;
    }
 
    /**
     * {@inheritDoc}
     */
    public ByteStringBuilder copyTo(final ByteStringBuilder builder) {
        builder.append(buffer, offset, length);
        return builder;
    }
 
    /**
     * {@inheritDoc}
     */
    public OutputStream copyTo(final OutputStream stream) throws IOException {
        stream.write(buffer, offset, length);
        return stream;
    }
 
    /**
     * {@inheritDoc}
     */
    public boolean equals(final byte[] bytes, final int offset, final int length) {
        checkArrayBounds(bytes, offset, length);
        return equals(this.buffer, this.offset, this.length, bytes, offset, length);
    }
 
    /**
     * Indicates whether the provided object is equal to this byte string. In
     * order for it to be considered equal, the provided object must be a byte
     * sequence containing the same bytes in the same order.
     *
     * @param o
     *            The object for which to make the determination.
     * @return {@code true} if the provided object is a byte sequence whose
     *         content is equal to that of this byte string, or {@code false} if
     *         not.
     */
    @Override
    public boolean equals(final Object o) {
        if (this == o) {
            return true;
        } else if (o instanceof ByteSequence) {
            final ByteSequence other = (ByteSequence) o;
            return other.equals(buffer, offset, length);
        } else {
            return false;
        }
    }
 
    /**
     * Returns a hash code for this byte string. It will be the sum of all of
     * the bytes contained in the byte string.
     *
     * @return A hash code for this byte string.
     */
    @Override
    public int hashCode() {
        return hashCode(buffer, offset, length);
    }
 
    /**
     * {@inheritDoc}
     */
    public int length() {
        return length;
    }
 
    /**
     * {@inheritDoc}
     */
    public ByteString subSequence(final int start, final int end) {
        if (start < 0 || start > end || end > length) {
            throw new IndexOutOfBoundsException();
        }
        return new ByteString(buffer, offset + start, end - start);
    }
 
    /**
     * {@inheritDoc}
     */
    public String toBase64String() {
        return Base64.encode(this);
    }
 
    /**
     * {@inheritDoc}
     */
    public byte[] toByteArray() {
        return copyTo(new byte[length]);
    }
 
    /**
     * {@inheritDoc}
     */
    public ByteString toByteString() {
        return this;
    }
 
    /**
     * Returns the UTF-8 decoded char array representation of this byte
     * sequence.
     *
     * @return The UTF-8 decoded char array representation of this byte
     *         sequence.
     */
    public char[] toCharArray() {
        Charset utf8 = Charset.forName("UTF-8");
        CharBuffer charBuffer = utf8.decode(ByteBuffer.wrap(buffer, offset, length));
        char[] chars = new char[charBuffer.remaining()];
        charBuffer.get(chars);
        return chars;
    }
 
    /**
     * Returns the integer value represented by the first four bytes of this
     * byte string in big-endian order.
     *
     * @return The integer value represented by the first four bytes of this
     *         byte string in big-endian order.
     * @throws IndexOutOfBoundsException
     *             If this byte string has less than four bytes.
     */
    public int toInt() {
        if (length < 4) {
            throw new IndexOutOfBoundsException();
        }
 
        int v = 0;
        for (int i = 0; i < 4; i++) {
            v <<= 8;
            v |= buffer[offset + i] & 0xFF;
        }
        return v;
    }
 
    /**
     * Returns the long value represented by the first eight bytes of this byte
     * string in big-endian order.
     *
     * @return The long value represented by the first eight bytes of this byte
     *         string in big-endian order.
     * @throws IndexOutOfBoundsException
     *             If this byte string has less than eight bytes.
     */
    public long toLong() {
        if (length < 8) {
            throw new IndexOutOfBoundsException();
        }
 
        long v = 0;
        for (int i = 0; i < 8; i++) {
            v <<= 8;
            v |= buffer[offset + i] & 0xFF;
        }
        return v;
    }
 
    /**
     * {@inheritDoc}
     */
    @Override
    public String toString() {
        return toString(buffer, offset, length);
    }
}