@@ -541,9 +541,9 @@ public void force(boolean metaData) throws IOException {
541
541
}
542
542
543
543
// Assume at first that the underlying kernel supports sendfile();
544
- // set this to true if we find out later that it doesn't
544
+ // set this to false if we find out later that it doesn't
545
545
//
546
- private static volatile boolean transferToNotSupported ;
546
+ private static volatile boolean transferSupported = true ;
547
547
548
548
// Assume that the underlying kernel sendfile() will work if the target
549
549
// fd is a pipe; set this to false if we find out later that it doesn't
@@ -587,7 +587,7 @@ private long transferToDirectlyInternal(long position, int icount,
587
587
}
588
588
if (n == IOStatus .UNSUPPORTED ) {
589
589
// Don't bother trying again
590
- transferToNotSupported = true ;
590
+ transferSupported = false ;
591
591
return IOStatus .UNSUPPORTED ;
592
592
}
593
593
return IOStatus .normalize (n );
@@ -601,7 +601,7 @@ private long transferToDirectly(long position, int icount,
601
601
WritableByteChannel target )
602
602
throws IOException
603
603
{
604
- if (transferToNotSupported )
604
+ if (! transferSupported )
605
605
return IOStatus .UNSUPPORTED ;
606
606
607
607
FileDescriptor targetFD = null ;
@@ -646,9 +646,8 @@ private long transferToDirectly(long position, int icount,
646
646
}
647
647
648
648
// Size threshold above which to use a mapped buffer;
649
- // transferToArbitraryChannel() and transferFromArbitraryChannel()
650
- // are faster for smaller transfers
651
- private static final long MAPPED_TRANSFER_THRESHOLD = 16L *1024L ;
649
+ // transferToArbitraryChannel() is faster for smaller transfers
650
+ private static final long TRUSTED_TRANSFER_THRESHOLD = 16L *1024L ;
652
651
653
652
// Maximum size to map when using a mapped buffer
654
653
private static final long MAPPED_TRANSFER_SIZE = 8L *1024L *1024L ;
@@ -657,7 +656,7 @@ private long transferToTrustedChannel(long position, long count,
657
656
WritableByteChannel target )
658
657
throws IOException
659
658
{
660
- if (count < MAPPED_TRANSFER_THRESHOLD )
659
+ if (count < TRUSTED_TRANSFER_THRESHOLD )
661
660
return IOStatus .UNSUPPORTED_CASE ;
662
661
663
662
boolean isSelChImpl = (target instanceof SelChImpl );
@@ -782,66 +781,12 @@ public long transferTo(long position, long count,
782
781
return transferToArbitraryChannel (position , count , target );
783
782
}
784
783
785
- // Assume at first that the underlying kernel supports copy_file_range();
786
- // set this to true if we find out later that it doesn't
787
- //
788
- private static volatile boolean transferFromNotSupported ;
789
-
790
- private long transferFromDirectlyInternal (FileDescriptor srcFD ,
791
- long position , long count )
792
- throws IOException
793
- {
794
- long n = -1 ;
795
- int ti = -1 ;
796
- try {
797
- beginBlocking ();
798
- ti = threads .add ();
799
- if (!isOpen ())
800
- return -1 ;
801
- do {
802
- long comp = Blocker .begin ();
803
- try {
804
- n = transferFrom0 (srcFD , fd , position , count );
805
- } finally {
806
- Blocker .end (comp );
807
- }
808
- } while ((n == IOStatus .INTERRUPTED ) && isOpen ());
809
- if (n == IOStatus .UNSUPPORTED ) {
810
- // Don't bother trying again
811
- transferFromNotSupported = true ;
812
- return IOStatus .UNSUPPORTED ;
813
- }
814
- return IOStatus .normalize (n );
815
- } finally {
816
- threads .remove (ti );
817
- end (n > -1 );
818
- }
819
- }
820
-
821
- private long transferFromDirectly (FileChannelImpl src ,
822
- long position , long count )
823
- throws IOException
824
- {
825
- if (!src .readable )
826
- throw new NonReadableChannelException ();
827
- if (transferFromNotSupported )
828
- return IOStatus .UNSUPPORTED ;
829
- FileDescriptor srcFD = src .fd ;
830
- if (srcFD == null )
831
- return IOStatus .UNSUPPORTED_CASE ;
832
-
833
- return transferFromDirectlyInternal (srcFD , position , count );
834
- }
835
-
836
784
private long transferFromFileChannel (FileChannelImpl src ,
837
785
long position , long count )
838
786
throws IOException
839
787
{
840
788
if (!src .readable )
841
789
throw new NonReadableChannelException ();
842
- if (count < MAPPED_TRANSFER_THRESHOLD )
843
- return IOStatus .UNSUPPORTED_CASE ;
844
-
845
790
synchronized (src .positionLock ) {
846
791
long pos = src .position ();
847
792
long max = Math .min (count , src .size () - pos );
@@ -931,10 +876,8 @@ public long transferFrom(ReadableByteChannel src,
931
876
return 0 ;
932
877
933
878
if (src instanceof FileChannelImpl fci ) {
934
- long n ;
935
- if ((n = transferFromDirectly (fci , position , count )) >= 0 )
936
- return n ;
937
- if ((n = transferFromFileChannel (fci , position , count )) >= 0 )
879
+ long n = transferFromFileChannel (fci , position , count );
880
+ if (n >= 0 )
938
881
return n ;
939
882
}
940
883
@@ -1568,10 +1511,6 @@ private native long map0(int prot, long position, long length, boolean isSync)
1568
1511
private static native long transferTo0 (FileDescriptor src , long position ,
1569
1512
long count , FileDescriptor dst );
1570
1513
1571
- private static native long transferFrom0 (FileDescriptor src ,
1572
- FileDescriptor dst ,
1573
- long position , long count );
1574
-
1575
1514
// Retrieves the maximum size of a transfer
1576
1515
private static native int maxDirectTransferSize0 ();
1577
1516
0 commit comments