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

matthew_swift
30.27.2009 902747f3618c2ba285058670ee6d0cf57e51c34e
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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
/*
 * 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
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE
 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
 * 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
 * trunk/opends/resource/legal-notices/OpenDS.LICENSE.  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 Sun Microsystems, Inc.
 */
package org.opends.sdk.util;
 
 
 
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.util.logging.Level;
 
 
 
/**
 * A mutable sequence of bytes backed by a byte array.
 */
public final class ByteStringBuilder implements ByteSequence
{
 
  /**
   * A sub-sequence of the parent byte string builder. The sub-sequence
   * will be robust against all updates to the byte string builder
   * except for invocations of the method {@code clear()}.
   */
  private final class SubSequence implements ByteSequence
  {
 
    // The length of the sub-sequence.
    private final int subLength;
 
    // The offset of the sub-sequence.
    private final int subOffset;
 
 
 
    /**
     * Creates a new sub-sequence.
     * 
     * @param offset
     *          The offset of the sub-sequence.
     * @param length
     *          The length of the sub-sequence.
     */
    private SubSequence(int offset, int length)
    {
      this.subOffset = offset;
      this.subLength = length;
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public ByteSequenceReader asReader()
    {
      return new ByteSequenceReader(this);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public byte byteAt(int index) throws IndexOutOfBoundsException
    {
      if (index >= subLength || index < 0)
      {
        throw new IndexOutOfBoundsException();
      }
 
      // Protect against reallocation: use builder's buffer.
      return buffer[subOffset + index];
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public int compareTo(byte[] b, int offset, int length)
        throws IndexOutOfBoundsException
    {
      ByteString.checkArrayBounds(b, offset, length);
 
      // Protect against reallocation: use builder's buffer.
      return ByteString.compareTo(buffer, subOffset, subLength, b,
          offset, length);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public int compareTo(ByteSequence o)
    {
      if (this == o)
      {
        return 0;
      }
 
      // Protect against reallocation: use builder's buffer.
      return -o.compareTo(buffer, subOffset, subLength);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public byte[] copyTo(byte[] b)
    {
      copyTo(b, 0);
      return b;
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public byte[] copyTo(byte[] b, int offset)
        throws IndexOutOfBoundsException
    {
      if (offset < 0)
      {
        throw new IndexOutOfBoundsException();
      }
 
      // Protect against reallocation: use builder's buffer.
      System.arraycopy(buffer, subOffset, b, offset, Math.min(
          subLength, b.length - offset));
      return b;
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public ByteStringBuilder copyTo(ByteStringBuilder builder)
    {
      // Protect against reallocation: use builder's buffer.
      return builder.append(buffer, subOffset, subLength);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public OutputStream copyTo(OutputStream stream) throws IOException
    {
      // Protect against reallocation: use builder's buffer.
      stream.write(buffer, subOffset, subLength);
      return stream;
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public boolean equals(byte[] b, int offset, int length)
        throws IndexOutOfBoundsException
    {
      ByteString.checkArrayBounds(b, offset, length);
 
      // Protect against reallocation: use builder's buffer.
      return ByteString.equals(buffer, subOffset, subLength, b, offset,
          length);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    @Override
    public boolean equals(Object o)
    {
      if (this == o)
      {
        return true;
      }
      else if (o instanceof ByteSequence)
      {
        final ByteSequence other = (ByteSequence) o;
 
        // Protect against reallocation: use builder's buffer.
        return other.equals(buffer, subOffset, subLength);
      }
      else
      {
        return false;
      }
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    @Override
    public int hashCode()
    {
      // Protect against reallocation: use builder's buffer.
      return ByteString.hashCode(buffer, subOffset, subLength);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public int length()
    {
      return subLength;
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public ByteSequence subSequence(int start, int end)
        throws IndexOutOfBoundsException
    {
      if (start < 0 || start > end || end > subLength)
      {
        throw new IndexOutOfBoundsException();
      }
 
      return new SubSequence(subOffset + start, end - start);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public byte[] toByteArray()
    {
      return copyTo(new byte[subLength]);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    public ByteString toByteString()
    {
      // Protect against reallocation: use builder's buffer.
      final byte[] b = new byte[subLength];
      System.arraycopy(buffer, subOffset, b, 0, subLength);
      return ByteString.wrap(b);
    }
 
 
 
    /**
     * {@inheritDoc}
     */
    @Override
    public String toString()
    {
      // Protect against reallocation: use builder's buffer.
      return ByteString.toString(buffer, subOffset, subLength);
    }
  }
 
  // These are package private so that compression and crypto
  // functionality may directly access the fields.
 
  // The buffer where data is stored.
  byte[] buffer;
 
  // The number of bytes to expose from the buffer.
  int length;
 
 
 
  /**
   * Creates a new byte string builder with an initial capacity of 32
   * bytes.
   */
  public ByteStringBuilder()
  {
    // Initially create a 32 byte buffer.
    this(32);
  }
 
 
 
  /**
   * Creates a new byte string builder with the specified initial
   * capacity.
   * 
   * @param capacity
   *          The initial capacity.
   * @throws IllegalArgumentException
   *           If the {@code capacity} is negative.
   */
  public ByteStringBuilder(int capacity)
      throws IllegalArgumentException
  {
    if (capacity < 0)
    {
      throw new IllegalArgumentException();
    }
 
    this.buffer = new byte[capacity];
    this.length = 0;
  }
 
 
 
  /**
   * Appends the provided byte to this byte string builder.
   * 
   * @param b
   *          The byte to be appended to this byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(byte b)
  {
    ensureAdditionalCapacity(1);
    buffer[length++] = b;
    return this;
  }
 
 
 
  /**
   * Appends the provided byte array to this byte string builder.
   * <p>
   * An invocation of the form:
   * 
   * <pre>
   * src.append(b)
   * </pre>
   * 
   * Behaves in exactly the same way as the invocation:
   * 
   * <pre>
   * src.append(b, 0, b.length);
   * </pre>
   * 
   * @param b
   *          The byte array to be appended to this byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(byte[] b)
  {
    return append(b, 0, b.length);
  }
 
 
 
  /**
   * Appends the provided byte array to this byte string builder.
   * 
   * @param b
   *          The byte array to be appended to this byte string builder.
   * @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}.
   * @return This byte string builder.
   * @throws IndexOutOfBoundsException
   *           If {@code offset} is negative or if {@code length} is
   *           negative or if {@code offset + length} is greater than
   *           {@code b.length}.
   */
  public ByteStringBuilder append(byte[] b, int offset, int length)
      throws IndexOutOfBoundsException
  {
    ByteString.checkArrayBounds(b, offset, length);
 
    if (length != 0)
    {
      ensureAdditionalCapacity(length);
      System.arraycopy(b, offset, buffer, this.length, length);
      this.length += length;
    }
 
    return this;
  }
 
 
 
  /**
   * Appends the provided {@code ByteBuffer} to this byte string
   * builder.
   * 
   * @param buffer
   *          The byte buffer to be appended to this byte string
   *          builder.
   * @param length
   *          The number of bytes to be appended from {@code buffer}.
   * @return This byte string builder.
   * @throws IndexOutOfBoundsException
   *           If {@code length} is less than zero or greater than
   *           {@code buffer.remaining()}.
   */
  public ByteStringBuilder append(ByteBuffer buffer, int length)
      throws IndexOutOfBoundsException
  {
    if (length < 0 || length > buffer.remaining())
    {
      throw new IndexOutOfBoundsException();
    }
 
    if (length != 0)
    {
      ensureAdditionalCapacity(length);
      buffer.get(this.buffer, this.length, length);
      this.length += length;
    }
 
    return this;
  }
 
 
 
  /**
   * Appends the provided {@link ByteSequence} to this byte string
   * builder.
   * 
   * @param bytes
   *          The byte sequence to be appended to this byte string
   *          builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(ByteSequence bytes)
  {
    return bytes.copyTo(this);
  }
 
 
 
  /**
   * Appends the provided {@link ByteSequenceReader} to this byte string
   * builder.
   * 
   * @param reader
   *          The byte sequence reader to be appended to this byte
   *          string builder.
   * @param length
   *          The number of bytes to be appended from {@code reader}.
   * @return This byte string builder.
   * @throws IndexOutOfBoundsException
   *           If {@code length} is less than zero or greater than
   *           {@code reader.remaining()}.
   */
  public ByteStringBuilder append(ByteSequenceReader reader, int length)
      throws IndexOutOfBoundsException
  {
    if (length < 0 || length > reader.remaining())
    {
      throw new IndexOutOfBoundsException();
    }
 
    if (length != 0)
    {
      ensureAdditionalCapacity(length);
      reader.get(buffer, this.length, length);
      this.length += length;
    }
 
    return this;
  }
 
 
 
  /**
   * Appends the provided {@code InputStream} to this byte string
   * builder.
   * 
   * @param stream
   *          The input stream to be appended to this byte string
   *          builder.
   * @param length
   *          The maximum number of bytes to be appended from {@code
   *          buffer}.
   * @return The number of bytes read from the input stream, or {@code
   *         -1} if the end of the input stream has been reached.
   * @throws IndexOutOfBoundsException
   *           If {@code length} is less than zero.
   * @throws IOException
   *           If an I/O error occurs.
   */
  public int append(InputStream stream, int length)
      throws IndexOutOfBoundsException, IOException
  {
    if (length < 0)
    {
      throw new IndexOutOfBoundsException();
    }
 
    ensureAdditionalCapacity(length);
    final int bytesRead = stream.read(buffer, this.length, length);
    if (bytesRead > 0)
    {
      this.length += bytesRead;
    }
 
    return bytesRead;
  }
 
 
 
  /**
   * Appends the big-endian encoded bytes of the provided integer to
   * this byte string builder.
   * 
   * @param i
   *          The integer whose big-endian encoding is to be appended to
   *          this byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(int i)
  {
    ensureAdditionalCapacity(4);
    for (int j = length + 3; j >= length; j--)
    {
      buffer[j] = (byte) (i & 0xFF);
      i >>>= 8;
    }
    length += 4;
    return this;
  }
 
 
 
  /**
   * Appends the big-endian encoded bytes of the provided long to this
   * byte string builder.
   * 
   * @param l
   *          The long whose big-endian encoding is to be appended to
   *          this byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(long l)
  {
    ensureAdditionalCapacity(8);
    for (int i = length + 7; i >= length; i--)
    {
      buffer[i] = (byte) (l & 0xFF);
      l >>>= 8;
    }
    length += 8;
    return this;
  }
 
 
 
  /**
   * Appends the big-endian encoded bytes of the provided short to this
   * byte string builder.
   * 
   * @param i
   *          The short whose big-endian encoding is to be appended to
   *          this byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(short i)
  {
    ensureAdditionalCapacity(2);
    for (int j = length + 1; j >= length; j--)
    {
      buffer[j] = (byte) (i & 0xFF);
      i >>>= 8;
    }
    length += 2;
    return this;
  }
 
 
 
  /**
   * Appends the UTF-8 encoded bytes of the provided string to this byte
   * string builder.
   * 
   * @param s
   *          The string whose UTF-8 encoding is to be appended to this
   *          byte string builder.
   * @return This byte string builder.
   */
  public ByteStringBuilder append(String s)
  {
    if (s == null)
    {
      return this;
    }
 
    // Assume that each char is 1 byte
    final int len = s.length();
    ensureAdditionalCapacity(len);
 
    for (int i = 0; i < len; i++)
    {
      final char c = s.charAt(i);
      final byte b = (byte) (c & 0x0000007F);
 
      if (c == b)
      {
        buffer[this.length + i] = b;
      }
      else
      {
        // There is a multi-byte char. Defer to JDK
        try
        {
          return append(s.getBytes("UTF-8"));
        }
        catch (final Exception e)
        {
          if (StaticUtils.DEBUG_LOG.isLoggable(Level.WARNING))
          {
            StaticUtils.DEBUG_LOG.warning("Unable to encode String "
                + "to UTF-8 bytes: " + e.toString());
          }
 
          return append(s.getBytes());
        }
      }
    }
 
    // The 1 byte char assumption was correct
    this.length += len;
    return this;
  }
 
 
 
  /**
   * Appends the ASN.1 BER length encoding representation of the
   * provided integer to this byte string builder.
   * 
   * @param length
   *          The value to encode using the BER length encoding rules.
   * @return This byte string builder.
   */
  public ByteStringBuilder appendBERLength(int length)
  {
    if ((length & 0x0000007F) == length)
    {
      ensureAdditionalCapacity(1);
 
      buffer[this.length++] = (byte) (length & 0xFF);
    }
    else if ((length & 0x000000FF) == length)
    {
      ensureAdditionalCapacity(2);
 
      buffer[this.length++] = (byte) 0x81;
      buffer[this.length++] = (byte) (length & 0xFF);
    }
    else if ((length & 0x0000FFFF) == length)
    {
      ensureAdditionalCapacity(3);
 
      buffer[this.length++] = (byte) 0x82;
      buffer[this.length++] = (byte) (length >> 8 & 0xFF);
      buffer[this.length++] = (byte) (length & 0xFF);
    }
    else if ((length & 0x00FFFFFF) == length)
    {
      ensureAdditionalCapacity(4);
 
      buffer[this.length++] = (byte) 0x83;
      buffer[this.length++] = (byte) (length >> 16 & 0xFF);
      buffer[this.length++] = (byte) (length >> 8 & 0xFF);
      buffer[this.length++] = (byte) (length & 0xFF);
    }
    else
    {
      ensureAdditionalCapacity(5);
 
      buffer[this.length++] = (byte) 0x84;
      buffer[this.length++] = (byte) (length >> 24 & 0xFF);
      buffer[this.length++] = (byte) (length >> 16 & 0xFF);
      buffer[this.length++] = (byte) (length >> 8 & 0xFF);
      buffer[this.length++] = (byte) (length & 0xFF);
    }
    return this;
  }
 
 
 
  /**
   * Returns a {@link ByteSequenceReader} which can be used to
   * incrementally read and decode data from this byte string builder.
   * <p>
   * <b>NOTE:</b> all concurrent updates to this byte string builder are
   * supported with the exception of {@link #clear()}. Any invocations
   * of {@link #clear()} must be accompanied by a subsequent call to
   * {@code ByteSequenceReader.rewind()}.
   * 
   * @return The {@link ByteSequenceReader} which can be used to
   *         incrementally read and decode data from this byte string
   *         builder.
   * @see #clear()
   */
  public ByteSequenceReader asReader()
  {
    return new ByteSequenceReader(this);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public byte byteAt(int index) throws IndexOutOfBoundsException
  {
    if (index >= length || index < 0)
    {
      throw new IndexOutOfBoundsException();
    }
    return buffer[index];
  }
 
 
 
  /**
   * Sets the length of this byte string builder to zero.
   * <p>
   * <b>NOTE:</b> if this method is called, then {@code
   * ByteSequenceReader.rewind()} must also be called on any associated
   * byte sequence readers in order for them to remain valid.
   * 
   * @return This byte string builder.
   * @see #asReader()
   */
  public ByteStringBuilder clear()
  {
    length = 0;
    return this;
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public int compareTo(byte[] b, int offset, int length)
      throws IndexOutOfBoundsException
  {
    ByteString.checkArrayBounds(b, offset, length);
    return ByteString.compareTo(this.buffer, 0, this.length, b, offset,
        length);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public int compareTo(ByteSequence o)
  {
    if (this == o)
    {
      return 0;
    }
    return -o.compareTo(buffer, 0, length);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public byte[] copyTo(byte[] b)
  {
    copyTo(b, 0);
    return b;
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public byte[] copyTo(byte[] b, int offset)
      throws IndexOutOfBoundsException
  {
    if (offset < 0)
    {
      throw new IndexOutOfBoundsException();
    }
    System.arraycopy(buffer, 0, b, offset, Math.min(length, b.length
        - offset));
    return b;
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public ByteStringBuilder copyTo(ByteStringBuilder builder)
  {
    builder.append(buffer, 0, length);
    return builder;
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public OutputStream copyTo(OutputStream stream) throws IOException
  {
    stream.write(buffer, 0, length);
    return stream;
  }
 
 
 
  /**
   * Ensures that the specified number of additional bytes will fit in
   * this byte string builder and resizes it if necessary.
   * 
   * @param size
   *          The number of additional bytes.
   * @return This byte string builder.
   */
  public ByteStringBuilder ensureAdditionalCapacity(int size)
  {
    final int newCount = this.length + size;
    if (newCount > buffer.length)
    {
      final byte[] newbuffer =
          new byte[Math.max(buffer.length << 1, newCount)];
      System.arraycopy(buffer, 0, newbuffer, 0, buffer.length);
      buffer = newbuffer;
    }
    return this;
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public boolean equals(byte[] b, int offset, int length)
      throws IndexOutOfBoundsException
  {
    ByteString.checkArrayBounds(b, offset, length);
    return ByteString.equals(this.buffer, 0, this.length, b, offset,
        length);
  }
 
 
 
  /**
   * Indicates whether the provided object is equal to this byte string
   * builder. 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 builder,
   *         or {@code false} if not.
   */
  @Override
  public boolean equals(Object o)
  {
    if (this == o)
    {
      return true;
    }
    else if (o instanceof ByteSequence)
    {
      final ByteSequence other = (ByteSequence) o;
      return other.equals(buffer, 0, length);
    }
    else
    {
      return false;
    }
  }
 
 
 
  /**
   * Returns the byte array that backs this byte string builder.
   * Modifications to this byte string builder's content may cause the
   * returned array's content to be modified, and vice versa.
   * <p>
   * Note that the length of the returned array is only guaranteed to be
   * the same as the length of this byte string builder immediately
   * after a call to {@link #trimToSize()}.
   * <p>
   * In addition, subsequent modifications to this byte string builder
   * may cause the backing byte array to be reallocated thus decoupling
   * the returned byte array from this byte string builder.
   * 
   * @return The byte array that backs this byte string builder.
   */
  public byte[] getBackingArray()
  {
    return buffer;
  }
 
 
 
  /**
   * Returns a hash code for this byte string builder. It will be the
   * sum of all of the bytes contained in the byte string builder.
   * <p>
   * <b>NOTE:</b> subsequent changes to this byte string builder will
   * invalidate the returned hash code.
   * 
   * @return A hash code for this byte string builder.
   */
  @Override
  public int hashCode()
  {
    return ByteString.hashCode(buffer, 0, length);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public int length()
  {
    return length;
  }
 
 
 
  /**
   * Sets the length of this byte string builder.
   * <p>
   * If the <code>newLength</code> argument is less than the current
   * length, the length is changed to the specified length.
   * <p>
   * If the <code>newLength</code> argument is greater than or equal to
   * the current length, then the capacity is increased and sufficient
   * null bytes are appended so that length becomes the
   * <code>newLength</code> argument.
   * <p>
   * The <code>newLength</code> argument must be greater than or equal
   * to <code>0</code>.
   * 
   * @param newLength
   *          The new length.
   * @return This byte string builder.
   * @throws IndexOutOfBoundsException
   *           If the <code>newLength</code> argument is negative.
   */
  public ByteStringBuilder setLength(int newLength)
  {
    if (newLength < 0)
    {
      throw new IndexOutOfBoundsException("Negative newLength: "
          + newLength);
    }
 
    if (newLength > length)
    {
      ensureAdditionalCapacity(newLength - length);
 
      // Pad with zeros.
      for (int i = length; i < newLength; i++)
      {
        buffer[i] = 0;
      }
    }
    length = newLength;
 
    return this;
  }
 
 
 
  /**
   * Returns a new byte sequence that is a subsequence of this byte
   * sequence.
   * <p>
   * The subsequence starts with the byte value at the specified {@code
   * start} index and ends with the byte value at index {@code end - 1}.
   * The length (in bytes) of the returned sequence is {@code end -
   * start}, so if {@code start == end} then an empty sequence is
   * returned.
   * <p>
   * <b>NOTE:</b> the returned sub-sequence will be robust against all
   * updates to the byte string builder except for invocations of the
   * method {@link #clear()}. If a permanent immutable byte sequence is
   * required then callers should invoke {@code toByteString()} on the
   * returned byte sequence.
   * 
   * @param start
   *          The start index, inclusive.
   * @param end
   *          The end index, exclusive.
   * @return The newly created byte subsequence.
   * @throws IndexOutOfBoundsException
   *           If {@code start} or {@code end} are negative, if {@code
   *           end} is greater than {@code length()}, or if {@code
   *           start} is greater than {@code end}.
   */
  public ByteSequence subSequence(int start, int end)
      throws IndexOutOfBoundsException
  {
    if (start < 0 || start > end || end > length)
    {
      throw new IndexOutOfBoundsException();
    }
 
    return new SubSequence(start, end - start);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  public byte[] toByteArray()
  {
    return copyTo(new byte[length]);
  }
 
 
 
  /**
   * Returns the {@link ByteString} representation of this byte string
   * builder. Subsequent changes to this byte string builder will not
   * modify the returned {@link ByteString}.
   * 
   * @return The {@link ByteString} representation of this byte
   *         sequence.
   */
  public ByteString toByteString()
  {
    final byte[] b = new byte[length];
    System.arraycopy(buffer, 0, b, 0, length);
    return ByteString.wrap(b);
  }
 
 
 
  /**
   * {@inheritDoc}
   */
  @Override
  public String toString()
  {
    return ByteString.toString(buffer, 0, length);
  }
 
 
 
  /**
   * Attempts to reduce storage used for this byte string builder. If
   * the buffer is larger than necessary to hold its current sequence of
   * bytes, then it may be resized to become more space efficient.
   * 
   * @return This byte string builder.
   */
  public ByteStringBuilder trimToSize()
  {
    if (buffer.length > length)
    {
      final byte[] newBuffer = new byte[length];
      System.arraycopy(buffer, 0, newBuffer, 0, length);
      buffer = newBuffer;
    }
    return this;
  }
}