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
|
/*
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.io.IOException;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UncheckedIOException;
import java.nio.channels.FileChannel;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.function.ToLongBiFunction;
import static java.nio.file.StandardOpenOption.*;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
/*
* @test
* @bug 8293502
* @requires (os.family == "linux")
* @summary Ensure that copying from a file in /proc works
* @run testng/othervm CopyProcFile
*/
public class CopyProcFile {
static final String SOURCE = "/proc/version";
static final String BUFFERED_COPY = "bufferedCopy";
static final String TARGET = "target";
static final int BUF_SIZE = 8192;
static long theSize;
// copy src to dst via Java buffers
static long bufferedCopy(String src, String dst) throws IOException {
try (InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst)) {
byte[] b = new byte[BUF_SIZE];
long total = 0;
int n;
while ((n = in.read(b)) > 0) {
out.write(b, 0, n);
total += n;
}
return total;
}
}
// copy src to dst using Files::copy
static long copy(String src, String dst) {
try {
Path target = Files.copy(Path.of(src), Path.of(dst));
return Files.size(target);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
// copy src to dst using InputStream::transferTo
static long transferToIO(String src, String dst) {
try (InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst)) {
return in.transferTo(out);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
// copy src to dst using FileChannel::transferTo
static long transferToNIO(String src, String dst) {
try (FileChannel fci = FileChannel.open(Path.of(src), READ);
FileChannel fco = FileChannel.open(Path.of(dst), CREATE_NEW, WRITE);) {
return fci.transferTo(0, Long.MAX_VALUE, fco);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
// copy src to dst using FileChannel::transferFrom
static long transferFrom(String src, String dst) {
try (FileChannel fci = FileChannel.open(Path.of(src), READ);
FileChannel fco = FileChannel.open(Path.of(dst), CREATE_NEW, WRITE);) {
return fco.transferFrom(fci, 0, Long.MAX_VALUE);
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
@BeforeTest(alwaysRun=true)
public void createBufferedCopy() throws IOException {
System.out.printf("Using source file \"%s\"%n", SOURCE);
try {
theSize = bufferedCopy(SOURCE, BUFFERED_COPY);
System.out.printf("Copied %d bytes from %s%n", theSize, SOURCE);
} catch (IOException e) {
try {
Files.delete(Path.of(BUFFERED_COPY));
} catch (IOException ignore) {}
throw e;
}
if (Files.mismatch(Path.of(BUFFERED_COPY), Path.of(SOURCE)) != -1) {
throw new RuntimeException("Copy does not match source");
}
}
@AfterTest(alwaysRun=true)
public void deleteBufferedCopy() {
try {
Files.delete(Path.of(BUFFERED_COPY));
} catch (IOException ignore) {}
}
static class FHolder {
ToLongBiFunction<String,String> f;
FHolder(ToLongBiFunction<String,String> f) {
this.f = f;
}
long apply(String src, String dst) {
return f.applyAsLong(src, dst);
}
}
@DataProvider
static Object[][] functions() throws IOException {
List<Object[]> funcs = new ArrayList<>();
funcs.add(new Object[] {new FHolder((s, d) -> copy(s, d))});
funcs.add(new Object[] {new FHolder((s, d) -> transferToIO(s, d))});
funcs.add(new Object[] {new FHolder((s, d) -> transferToNIO(s, d))});
funcs.add(new Object[] {new FHolder((s, d) -> transferFrom(s, d))});
return funcs.toArray(Object[][]::new);
}
@Test(dataProvider = "functions")
public static void testCopyAndTransfer(FHolder f) throws IOException {
try {
long size = f.apply(SOURCE, TARGET);
if (size != theSize) {
throw new RuntimeException("Size: expected " + theSize +
"; actual: " + size);
}
long mismatch = Files.mismatch(Path.of(BUFFERED_COPY),
Path.of(TARGET));
if (mismatch != -1) {
throw new RuntimeException("Target does not match copy");
}
} finally {
try {
Files.delete(Path.of(TARGET));
} catch (IOException ignore) {}
}
}
}
|