-
Notifications
You must be signed in to change notification settings - Fork 34
/
JBBPOut.java
1314 lines (1227 loc) · 42.2 KB
/
JBBPOut.java
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
/*
* Copyright 2017 Igor Maznitsa.
*
* Licensed 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 com.igormaznitsa.jbbp.io;
import static com.igormaznitsa.jbbp.utils.JBBPUtils.assertNotNull;
import com.igormaznitsa.jbbp.exceptions.JBBPIOException;
import com.igormaznitsa.jbbp.mapper.Bin;
import com.igormaznitsa.jbbp.mapper.BinFieldFilter;
import com.igormaznitsa.jbbp.mapper.JBBPMapper;
import com.igormaznitsa.jbbp.model.JBBPFieldShort;
import com.igormaznitsa.jbbp.utils.BinAnnotationWrapper;
import com.igormaznitsa.jbbp.utils.JBBPUtils;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.Field;
/**
* The Class implements some kind of DSL to form binary blocks. The Class is not
* a thread-safe one.
*
* @since 1.0
*/
public class JBBPOut extends AbstractMappedClassFieldObserver {
/**
* The Default byte outOrder.
*/
public static final JBBPByteOrder DEFAULT_BYTE_ORDER = JBBPByteOrder.BIG_ENDIAN;
/**
* The Default bit outOrder.
*/
public static final JBBPBitOrder DEFAULT_BIT_ORDER = JBBPBitOrder.LSB0;
/**
* The Bit outOrder for operations.
*/
private final JBBPBitOrder bitOrder;
/**
* The Bit stream for operations.
*/
private final JBBPBitOutputStream outStream;
/**
* If the DSL session was started for an external byte array output stream
* then it will be saved into the variable.
*/
private final ByteArrayOutputStream originalByteArrayOutStream;
/**
* Flag shows that all commands must be skipped till the End.
*/
private boolean processCommands = true;
/**
* The Byte outOrder for operations of multibyte value output.
*/
private JBBPByteOrder byteOrder;
/**
* The Flags show that the processing has been ended.
*/
private boolean ended;
/**
* The Constructor.
*
* @param outStream the output stream for the session, it must not be null.
* @param byteOrder the byte outOrder for the session, it must not be null.
* @param bitOrder the bit outOrder for the session, it must not be null
* @throws IllegalArgumentException if defined a bit stream which parameters
* incompatible with defined ones
*/
private JBBPOut(final OutputStream outStream, final JBBPByteOrder byteOrder,
final JBBPBitOrder bitOrder) {
assertNotNull(outStream, "Out stream must not be null");
assertNotNull(byteOrder, "Byte order must not be null");
assertNotNull(bitOrder, "Bit order must not be null");
this.outStream = outStream instanceof JBBPBitOutputStream ? (JBBPBitOutputStream) outStream :
new JBBPBitOutputStream(outStream, bitOrder);
this.bitOrder = this.outStream.getBitOrder();
if (this.bitOrder != bitOrder) {
throw new IllegalArgumentException(
"Detected JBBPBitOutputStream as argument with already defined different bit order [" +
this.bitOrder + ']');
}
this.byteOrder = byteOrder;
if (outStream instanceof ByteArrayOutputStream) {
this.originalByteArrayOutStream = (ByteArrayOutputStream) outStream;
} else {
this.originalByteArrayOutStream = null;
}
}
/**
* Start a DSL session for defined both byte outOrder and bit outOrder parameters.
*
* @param byteOrder the byte outOrder to be used for the session
* @param bitOrder the bit outOrder to be used for the session
* @return the new DSL session generated with the parameters and inside byte
* array stream.
*/
public static JBBPOut BeginBin(final JBBPByteOrder byteOrder, final JBBPBitOrder bitOrder) {
return new JBBPOut(new ByteArrayOutputStream(), byteOrder, bitOrder);
}
/**
* Start a DSL session for a defined stream with defined parameters.
*
* @param out the defined stream
* @param byteOrder the byte outOrder for the session
* @param bitOrder the bit outOrder for the session
* @return the new DSL session generated for the stream with parameters
*/
public static JBBPOut BeginBin(final OutputStream out, final JBBPByteOrder byteOrder,
final JBBPBitOrder bitOrder) {
return new JBBPOut(out, byteOrder, bitOrder);
}
/**
* Start a DSL session for default parameters and inside byte array stream.
*
* @return the new DSL session generated with the default parameters and
* inside byte array stream.
*/
public static JBBPOut BeginBin() {
return new JBBPOut(new ByteArrayOutputStream(), DEFAULT_BYTE_ORDER, DEFAULT_BIT_ORDER);
}
/**
* Start a DSL session for default parameters and inside byte array stream
* with defined start size.
*
* @param initialSize the start size of inside buffer of the byte array output
* stream, must be positive
* @return the new DSL session generated with the default parameters and
* inside byte array stream.
*/
public static JBBPOut BeginBin(final int initialSize) {
return new JBBPOut(new ByteArrayOutputStream(initialSize), DEFAULT_BYTE_ORDER,
DEFAULT_BIT_ORDER);
}
/**
* Start a DSL session for a defined output stream and default parameters.
*
* @param out an output stream to write session data, must not be null.
* @return the new DSL session generated for the default parameters and the
* output stream.
*/
public static JBBPOut BeginBin(final OutputStream out) {
return new JBBPOut(out, DEFAULT_BYTE_ORDER, DEFAULT_BIT_ORDER);
}
/**
* Start a DSL session for default bit outOrder and defined byte outOrder. It will
* be using inside byte array stream.
*
* @param byteOrder the byte outOrder for the session, it must not be null.
* @return the new DSL session
*/
public static JBBPOut BeginBin(final JBBPByteOrder byteOrder) {
return new JBBPOut(new ByteArrayOutputStream(), byteOrder, DEFAULT_BIT_ORDER);
}
/**
* Start a DSL session for default byte outOrder and defined bite outOrder. It will
* be using inside byte array stream.
*
* @param bitOrder the bite outOrder for the session, it must not be null.
* @return the new DSL session
*/
public static JBBPOut BeginBin(final JBBPBitOrder bitOrder) {
return new JBBPOut(new ByteArrayOutputStream(), DEFAULT_BYTE_ORDER, bitOrder);
}
/**
* Inside wrapper of not null assertion with text for arrays.
*
* @param array an object to be checked for null.
*/
private static void assertArrayNotNull(final Object array) {
assertNotNull(array, "Array must not be null");
}
/**
* Inside wrapper of not null assertion with text for strings.
*
* @param str an object to be checked for null.
*/
private static void assertStringNotNull(final String str) {
assertNotNull(str, "String must not be null");
}
/**
* Align the current stream for 1 byte. If there are any bites inside bit
* cache then they will be saved and the stream will be positioning to the
* next byte. It works relative to the byte output counter.
*
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see JBBPOut#ResetCounter()
*/
public JBBPOut Align() throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.align(0);
}
return this;
}
/**
* Align number of bytes in the stream to the value. It works relative to the
* byte output counter.
*
* @param value the byte border to align the stream.
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see JBBPOut#ResetCounter()
*/
public JBBPOut Align(final int value) throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.align(value);
}
return this;
}
/**
* Skip number of bytes in the stream, zero bytes will be written and also
* will be aligned inside bit cache even if the value is 0.
*
* @param numberOfBytes the number of bytes to be skipped
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @throws IllegalArgumentException it will be thrown if the value is negative
* one
*/
public JBBPOut Skip(int numberOfBytes) throws IOException {
assertNotEnded();
if (this.processCommands) {
if (numberOfBytes < 0) {
throw new IllegalArgumentException("Value is negative");
}
this.Align();
while (numberOfBytes > 0) {
this.outStream.write(0);
numberOfBytes--;
}
}
return this;
}
/**
* Define the byte outOrder for next session operations.
*
* @param value the byte outOrder to be used in next operations, must not be null
* @return the DSL session
*/
public JBBPOut ByteOrder(final JBBPByteOrder value) {
assertNotEnded();
assertNotNull(value, "Byte order must not be null");
if (this.processCommands) {
this.byteOrder = value;
}
return this;
}
/**
* Write a bit into the session.
*
* @param value true if the bit is 1, 0 otherwise
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bit(final boolean value) throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.writeBits(value ? 1 : 0, JBBPBitNumber.BITS_1);
}
return this;
}
/**
* Write the lowest bit from a byte value.
*
* @param value the byte value which lowest bit will be written into the
* stream
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bit(final byte value) throws IOException {
assertNotEnded();
if (this.processCommands) {
this._writeBits(JBBPBitNumber.BITS_1, value);
}
return this;
}
/**
* Write the lowest bits of bytes from an array.
*
* @param value a byte array, lowest bit of each byte will be saved as a bit
* into the output stream, it must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bit(final byte[] value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final byte b : value) {
this._writeBits(JBBPBitNumber.BITS_1, b);
}
}
return this;
}
/**
* Write the lowest bits of integers from an array.
*
* @param value an integer array, lowest bit of each integer value will be
* saved as a bit into the output stream, it must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bit(final int... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final int b : value) {
this._writeBits(JBBPBitNumber.BITS_1, b);
}
}
return this;
}
/**
* Write bits represented as boolean flags into the output stream.
*
* @param value a boolean array which values will be saved into the output
* stream as bits, true is a bit on, false is bit off. It must not be null
* @return the DSL session.
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bit(final boolean... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final boolean b : value) {
this._writeBits(JBBPBitNumber.BITS_1, b ? 1 : 0);
}
}
return this;
}
/**
* Inside auxiliary method to write bits into output stream without check of
* the session end
*
* @param numberOfBits number of bits from value to save, it must not be null
* @param value the value which bits must be saved
* @throws IOException it will be thrown for transport errors
*/
private void _writeBits(final JBBPBitNumber numberOfBits, final int value) throws IOException {
this.outStream.writeBits(value, numberOfBits);
}
/**
* Write bits from a value into the output stream
*
* @param numberOfBits the number of bits to be saved
* @param value the value which bits must be saved
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bits(final JBBPBitNumber numberOfBits, final int value) throws IOException {
assertNotEnded();
assertNotNull(numberOfBits, "Number of bits must not be null");
if (this.processCommands) {
_writeBits(numberOfBits, value);
}
return this;
}
/**
* Write bits of each integer value from an array into the output stream.
*
* @param numberOfBits the number of bits to be saved
* @param value an integer array which elements will be used as sources of
* bits, it must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bits(final JBBPBitNumber numberOfBits, final int... value) throws IOException {
assertNotEnded();
assertNotNull(value, "Array must not be null");
if (this.processCommands) {
for (final int v : value) {
_writeBits(numberOfBits, v);
}
}
return this;
}
/**
* Write bits of each byte value from an array into the output stream.
*
* @param numberOfBits the number of bits to be saved
* @param value a byte array which elements will be used as sources of bits,
* it must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bits(final JBBPBitNumber numberOfBits, final byte[] value) throws IOException {
assertNotEnded();
assertNotNull(value, "Array must not be null");
if (this.processCommands) {
for (final byte b : value) {
_writeBits(numberOfBits, b);
}
}
return this;
}
/**
* Inside auxiliary speed version of byte writing method
*
* @param value a byte to write into session stream
* @throws IOException it will be thrown for transport errors
*/
private void _writeByte(final int value) throws IOException {
this.outStream.write(value);
}
/**
* Write the lower byte of an integer value into the session stream.
*
* @param value an integer value which byte should be written into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Byte(final int value) throws IOException {
assertNotEnded();
if (this.processCommands) {
_writeByte(value);
}
return this;
}
/**
* Write the lower byte of an integer value into the session stream.
*
* @param value an integer array which values will be byte sources to write
* their lower byte into the stream
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Byte(final int... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final int v : value) {
_writeByte(v);
}
}
return this;
}
/**
* Write a byte array into the session stream.
*
* @param value a byte array to be written
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Byte(final byte[] value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
this.outStream.write(value);
}
return this;
}
/**
* Write String chars trimmed to bytes, only the lower 8 bit will be saved per
* char code.
*
* @param str a String which chars should be trimmed to bytes and saved
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Byte(final String str) throws IOException {
assertNotEnded();
assertStringNotNull(str);
if (this.processCommands) {
for (int i = 0; i < str.length(); i++) {
this.outStream.write(str.charAt(i));
}
}
return this;
}
/**
* Write String chars trimmed to bytes, only the lower 8 bit will be saved per
* char code.
*
* @param str a String which chars should be trimmed to bytes and saved
* @param bitOrder the bit outOrder to save bytes
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @since 1.1
*/
public JBBPOut Byte(final String str, final JBBPBitOrder bitOrder) throws IOException {
assertNotEnded();
assertStringNotNull(str);
if (this.processCommands) {
for (int i = 0; i < str.length(); i++) {
byte value = (byte) str.charAt(i);
if (bitOrder == JBBPBitOrder.MSB0) {
value = JBBPUtils.reverseBitsInByte(value);
}
this.outStream.write(value);
}
}
return this;
}
/**
* Write chars of a String as encoded Utf8 byte array. There will not be aby information about string length.
*
* @param str a String which bytes should be written as Utf8, must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Utf8(final String str) throws IOException {
assertNotEnded();
assertStringNotNull(str);
if (this.processCommands) {
this.outStream.write(JBBPUtils.strToUtf8(str));
}
return this;
}
/**
* Write string into output stream with length information.
* <b>the byte order in saved char data will be BIG_ENDIAN</b>
*
* @param str string to be written, it can be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see JBBPBitOutputStream#writeString(String, JBBPByteOrder)
* @since 1.4.0
*/
public JBBPOut String(String str) throws IOException {
this.outStream.writeString(str, this.byteOrder);
return this;
}
/**
* Write string array as sequence of strings with information about string length.
* <b>the byte order in saved char data will be BIG_ENDIAN</b>
*
* @param strings array of strings, must not be null but can contain null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see JBBPBitOutputStream#writeString(String, JBBPByteOrder)
* @since 1.4.0
*/
public JBBPOut Strings(final String... strings) throws IOException {
for (final String s : strings) {
this.String(s);
}
return this;
}
/**
* Write a boolean value into the session stream as a byte.
*
* @param value a boolean value to be written, true is 1, false is 0
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bool(final boolean value) throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.write(value ? 1 : 0);
}
return this;
}
/**
* Write a boolean value into the session stream as a byte.
*
* @param value a boolean value to be written, true is 1, false is 0
* @param bitOrder bit outOrder for saving data
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @since 1.1
*/
public JBBPOut Bool(final boolean value, final JBBPBitOrder bitOrder) throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.write(value ? bitOrder == JBBPBitOrder.MSB0 ? 0x80 : 1 : 0);
}
return this;
}
/**
* Write boolean values from an array into the session stream as bytes.
*
* @param value a boolean array to be saved as bytes, true is 1, false is 0.
* It must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Bool(final boolean... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final boolean b : value) {
this.outStream.write(b ? 1 : 0);
}
}
return this;
}
/**
* Inside auxiliary method to write a short value into the session stream
*
* @param value a value to be written
* @throws IOException it will be thrown for transport errors
*/
private void _writeShort(final int value) throws IOException {
this.outStream.writeShort(value, this.byteOrder);
}
/**
* Write lower pair of bytes of an integer value into the session stream as a
* short value.
*
* @param value an integer value which lower pair of bytes will be written
* into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Short(final int value) throws IOException {
assertNotEnded();
if (this.processCommands) {
_writeShort(value);
}
return this;
}
/**
* Write codes of chars as 16 bit values into the stream.
*
* @param str the string which chars will be written, must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @since 1.1
*/
public JBBPOut Short(final String str) throws IOException {
assertNotEnded();
if (this.processCommands) {
for (int i = 0; i < str.length(); i++) {
_writeShort(str.charAt(i));
}
}
return this;
}
/**
* Write codes of chars as 16 bit values into the stream.
*
* @param str the string which chars will be written, must not be null
* @param bitOrder the bit outOrder
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @since 1.1
*/
public JBBPOut Short(final String str, final JBBPBitOrder bitOrder) throws IOException {
assertNotEnded();
if (this.processCommands) {
final boolean msb0 = bitOrder == JBBPBitOrder.MSB0;
for (int i = 0; i < str.length(); i++) {
short value = (short) str.charAt(i);
if (msb0) {
value = (short) JBBPFieldShort.reverseBits(value);
}
_writeShort(value);
}
}
return this;
}
/**
* Write short values from an array
*
* @param value a short value array which values should be written into, it
* must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Short(final short[] value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final short v : value) {
this._writeShort(v);
}
}
return this;
}
/**
* Write short values from a char array
*
* @param value a char array which values should be written into, it
* must not be null
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @since 1.3
*/
public JBBPOut Short(final char[] value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final char v : value) {
this._writeShort(v);
}
}
return this;
}
/**
* Write lower pair of bytes of each integer value from an integer array into
* the session stream as a short value.
*
* @param value an integer array which values will be written into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Short(final int... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final int v : value) {
this._writeShort(v);
}
}
return this;
}
/**
* Inside auxiliary method to write an integer value into the session stream
* without extra checking.
*
* @param value an integer value to be written into
* @throws IOException it will be thrown for transport errors
*/
private void _writeInt(final int value) throws IOException {
this.outStream.writeInt(value, this.byteOrder);
}
/**
* Write an integer value into the session stream.
*
* @param value an integer value to be written into
* @return the DSl session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Int(final int value) throws IOException {
assertNotEnded();
if (this.processCommands) {
_writeInt(value);
}
return this;
}
/**
* Write each integer value from an integer array into the session stream.
*
* @param value an integer array which values should be written into
* @return the DSl session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Int(final int... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final int v : value) {
_writeInt(v);
}
}
return this;
}
@Override
protected void onFieldUInt(final Object obj, final Field field, final Bin annotation,
final int value) {
final JBBPByteOrder old = this.byteOrder;
try {
this.byteOrder = annotation.byteOrder();
this.UInt(value);
} catch (IOException ex) {
throw new JBBPIOException("Can't write unsigned int value", ex);
} finally {
this.byteOrder = old;
}
}
/**
* Write a float value array as integer bits into the stream.
*
* @param value a float array which values will be written into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see Float#floatToIntBits(float)
* @since 1.4.0
*/
public JBBPOut Float(final float... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final float f : value) {
_writeFloat(f);
}
}
return this;
}
/**
* Inside auxiliary method to write a long value into the session stream
* without checking.
*
* @param value a long value to be written into
* @throws IOException it will be thrown for transport errors
*/
private void _writeLong(final long value) throws IOException {
this.outStream.writeLong(value, this.byteOrder);
}
/**
* Inside auxiliary method to write a double value into the session stream
* without checking.
*
* @param value a double value to be written into
* @throws IOException it will be thrown for transport errors
* @since 1.4.0
*/
private void _writeDouble(final double value) throws IOException {
this.outStream.writeDouble(value, this.byteOrder);
}
/**
* Inside auxiliary method to write a float value into the session stream
* without checking.
*
* @param value a float value to be written into
* @throws IOException it will be thrown for transport errors
* @since 1.4.0
*/
private void _writeFloat(final float value) throws IOException {
this.outStream.writeFloat(value, this.byteOrder);
}
/**
* Write a long value into the session stream.
*
* @param value a long value to be written into
* @return the DSL session
* @throws IOException it will b e thrown for transport errors
*/
public JBBPOut Long(final long value) throws IOException {
assertNotEnded();
if (this.processCommands) {
_writeLong(value);
}
return this;
}
/**
* Write a double value array as long bits into the stream.
*
* @param value a double array which values will be written into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
* @see Double#doubleToLongBits(double)
* @since 1.4.0
*/
public JBBPOut Double(final double... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final double d : value) {
_writeDouble(d);
}
}
return this;
}
/**
* Reset the byte counter and the inside bit buffer of the output stream. it
* is useful to align command because the command makes alignment for
* the counter.
*
* @return the DSL context
* @see JBBPOut#Align()
* @see JBBPOut#Align(int)
*/
public JBBPOut ResetCounter() {
assertNotEnded();
if (this.processCommands) {
this.outStream.resetCounter();
}
return this;
}
/**
* Write each long value from a long value array into the session stream.
*
* @param value a long value array which values will be written into
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Long(final long... value) throws IOException {
assertNotEnded();
assertArrayNotNull(value);
if (this.processCommands) {
for (final long l : value) {
_writeLong(l);
}
}
return this;
}
/**
* Output data externally.
*
* @param processor a processor which will get the stream to write data, must
* not be null
* @param args optional arguments to be provided to the processor
* @return the DSL context
* @throws IOException it will be thrown for transport errors
* @throws NullPointerException it will be thrown for null as a processor
*/
public JBBPOut Var(final JBBPOutVarProcessor processor, final Object... args) throws IOException {
assertNotEnded();
assertNotNull(processor, "Var processor must not be null");
if (this.processCommands) {
this.processCommands = processor.processVarOut(this, this.outStream, args);
}
return this;
}
/**
* Flush inside buffers into the stream. Be careful with bit operations
* because the operation will flush the inside bit buffer.
*
* @return the DSL session
* @throws IOException it will be thrown for transport errors
*/
public JBBPOut Flush() throws IOException {
assertNotEnded();
if (this.processCommands) {
this.outStream.flush();
}
return this;
}
/**
* Flush the stream and end the session.
*
* @return if the session output stream is based on a byte array output stream
* then the stream will be returned, null otherwise
* @throws IOException it will be thrown for transport errors.
*/
public ByteArrayOutputStream End() throws IOException {
assertNotEnded();
this.ended = true;
this.outStream.flush();
return this.originalByteArrayOutStream;
}
/**
* get the current byte counter value for the underlying stream. it has