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
|
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
|
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
|
/**
* @brief Reads a uint16_t from the stream which is encoded in big endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint16_t from the stream in native endianess
* @return A uint16_t from the stream in big endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint16_t)readBigEndianInt16;
/**
* @brief Reads a uint32_t from the stream which is encoded in big endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint32_t from the stream in the native endianess
* @return A uint32_t from the stream in big endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint32_t)readBigEndianInt32;
/**
* @brief Reads a uint64_t from the stream which is encoded in big endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint64_t from the stream in the native endianess
* @return A uint64_t from the stream in big endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint64_t)readBigEndianInt64;
/**
* @brief Reads a float from the stream which is encoded in big endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A float from the stream in the native endianess
* @return A float from the stream in big endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (float)readBigEndianFloat;
/**
* @brief Reads a double from the stream which is encoded in big endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A double from the stream in the native endianess
* @return A double from the stream in big endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (double)readBigEndianDouble;
/**
* @brief Reads a uint16_t from the stream which is encoded in little endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint16_t from the stream in native endianess
* @return A uint16_t from the stream in little endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint16_t)readLittleEndianInt16;
/**
* @brief Reads a uint32_t from the stream which is encoded in little endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint32_t from the stream in the native endianess
* @return A uint32_t from the stream in little endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint32_t)readLittleEndianInt32;
/**
* @brief Reads a uint64_t from the stream which is encoded in little endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A uint64_t from the stream in the native endianess
* @return A uint64_t from the stream in little endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (uint64_t)readLittleEndianInt64;
/**
* @brief Reads a float from the stream which is encoded in little endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A float from the stream in the native endianess
* @return A float from the stream in little endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (float)readLittleEndianFloat;
/**
* @brief Reads a double from the stream which is encoded in little endian.
*
* @warning Only call this when you know that enough data is available!
* Otherwise you will get an exception!
*
* @return A double from the stream in the native endianess
* @return A double from the stream in little endian
* @throw OFReadFailedException Reading failed
* @throw OFTruncatedDataException The end of the stream was reached before
* reading enough bytes
* @throw OFNotOpenException The stream is not open
*/
- (double)readLittleEndianDouble;
|
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
|
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
|
-
+
-
+
-
+
-
+
|
- (nullable OFString *)tryReadLineWithEncoding: (OFStringEncoding)encoding;
/**
* @brief Reads until the specified string or `\0` is found or the end of
* stream occurs.
*
* @param delimiter The delimiter
* @return The line that was read, autoreleased, or `nil` if the end of the
* @return The string that was read, autoreleased, or `nil` if the end of the
* stream has been reached.
* @throw OFReadFailedException Reading failed
* @throw OFInvalidEncodingException The string read from the stream has
* invalid encoding
* @throw OFNotOpenException The stream is not open
*/
- (nullable OFString *)readUntilDelimiter: (OFString *)delimiter;
/**
* @brief Reads until the specified string or `\0` is found or the end of
* stream occurs.
*
* @param delimiter The delimiter
* @param encoding The encoding used by the stream
* @return The line that was read, autoreleased, or `nil` if the end of the
* @return The string that was read, autoreleased, or `nil` if the end of the
* stream has been reached.
* @throw OFReadFailedException Reading failed
* @throw OFInvalidEncodingException The string read from the stream has
* invalid encoding
* @throw OFNotOpenException The stream is not open
*/
- (nullable OFString *)readUntilDelimiter: (OFString *)delimiter
encoding: (OFStringEncoding)encoding;
/**
* @brief Tries to reads until the specified string or `\0` is found or the end
* of stream (see @ref readUntilDelimiter:) and returns `nil` if not
* enough data has been received yet.
*
* @param delimiter The delimiter
* @return The line that was read, autoreleased, or `nil` if the end of the
* @return The string that was read, autoreleased, or `nil` if the end of the
* stream has been reached.
* @throw OFReadFailedException Reading failed
* @throw OFInvalidEncodingException The string read from the stream has
* invalid encoding
* @throw OFNotOpenException The stream is not open
*/
- (nullable OFString *)tryReadUntilDelimiter: (OFString *)delimiter;
/**
* @brief Tries to read until the specified string or `\0` is found or the end
* of stream occurs (see @ref readUntilDelimiter:encoding:) and returns
* `nil` if not enough data has been received yet.
*
* @param delimiter The delimiter
* @param encoding The encoding used by the stream
* @return The line that was read, autoreleased, or `nil` if the end of the
* @return The string that was read, autoreleased, or `nil` if the end of the
* stream has been reached.
* @throw OFReadFailedException Reading failed
* @throw OFInvalidEncodingException The string read from the stream has
* invalid encoding
* @throw OFNotOpenException The stream is not open
*/
- (nullable OFString *)tryReadUntilDelimiter: (OFString *)delimiter
|