/* * Decompiled with CFR 0.152. * * Could not load the following classes: * org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement */ package okio; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.Socket; import java.net.SocketTimeoutException; import java.nio.file.Files; import java.nio.file.OpenOption; import java.nio.file.Path; import java.util.logging.Level; import java.util.logging.Logger; import okio.AsyncTimeout; import okio.Buffer; import okio.BufferedSink; import okio.BufferedSource; import okio.RealBufferedSink; import okio.RealBufferedSource; import okio.Segment; import okio.SegmentPool; import okio.Sink; import okio.Source; import okio.Timeout; import okio.Util; import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement; public final class Okio { private static final Logger logger = Logger.getLogger(Okio.class.getName()); private Okio() { } public static BufferedSource buffer(Source source) { if (source == null) { throw new IllegalArgumentException("source == null"); } return new RealBufferedSource(source); } public static BufferedSink buffer(Sink sink) { if (sink == null) { throw new IllegalArgumentException("sink == null"); } return new RealBufferedSink(sink); } public static Sink sink(OutputStream out) { return Okio.sink(out, new Timeout()); } private static Sink sink(final OutputStream out, final Timeout timeout) { if (out == null) { throw new IllegalArgumentException("out == null"); } if (timeout == null) { throw new IllegalArgumentException("timeout == null"); } return new Sink(){ @Override public void write(Buffer source, long byteCount) throws IOException { Util.checkOffsetAndCount(source.size, 0L, byteCount); while (byteCount > 0L) { timeout.throwIfReached(); Segment head = source.head; int toCopy = (int)Math.min(byteCount, (long)(head.limit - head.pos)); out.write(head.data, head.pos, toCopy); head.pos += toCopy; byteCount -= (long)toCopy; source.size -= (long)toCopy; if (head.pos != head.limit) continue; source.head = head.pop(); SegmentPool.recycle(head); } } @Override public void flush() throws IOException { out.flush(); } @Override public void close() throws IOException { out.close(); } @Override public Timeout timeout() { return timeout; } public String toString() { return "sink(" + out + ")"; } }; } public static Sink sink(Socket socket) throws IOException { if (socket == null) { throw new IllegalArgumentException("socket == null"); } AsyncTimeout timeout = Okio.timeout(socket); Sink sink = Okio.sink(socket.getOutputStream(), timeout); return timeout.sink(sink); } public static Source source(InputStream in) { return Okio.source(in, new Timeout()); } private static Source source(final InputStream in, final Timeout timeout) { if (in == null) { throw new IllegalArgumentException("in == null"); } if (timeout == null) { throw new IllegalArgumentException("timeout == null"); } return new Source(){ @Override public long read(Buffer sink, long byteCount) throws IOException { if (byteCount < 0L) { throw new IllegalArgumentException("byteCount < 0: " + byteCount); } if (byteCount == 0L) { return 0L; } timeout.throwIfReached(); Segment tail = sink.writableSegment(1); int maxToCopy = (int)Math.min(byteCount, (long)(2048 - tail.limit)); int bytesRead = in.read(tail.data, tail.limit, maxToCopy); if (bytesRead == -1) { return -1L; } tail.limit += bytesRead; sink.size += (long)bytesRead; return bytesRead; } @Override public void close() throws IOException { in.close(); } @Override public Timeout timeout() { return timeout; } public String toString() { return "source(" + in + ")"; } }; } public static Source source(File file) throws FileNotFoundException { if (file == null) { throw new IllegalArgumentException("file == null"); } return Okio.source(new FileInputStream(file)); } @IgnoreJRERequirement public static Source source(Path path, OpenOption ... options) throws IOException { if (path == null) { throw new IllegalArgumentException("path == null"); } return Okio.source(Files.newInputStream(path, options)); } public static Sink sink(File file) throws FileNotFoundException { if (file == null) { throw new IllegalArgumentException("file == null"); } return Okio.sink(new FileOutputStream(file)); } public static Sink appendingSink(File file) throws FileNotFoundException { if (file == null) { throw new IllegalArgumentException("file == null"); } return Okio.sink(new FileOutputStream(file, true)); } @IgnoreJRERequirement public static Sink sink(Path path, OpenOption ... options) throws IOException { if (path == null) { throw new IllegalArgumentException("path == null"); } return Okio.sink(Files.newOutputStream(path, options)); } public static Source source(Socket socket) throws IOException { if (socket == null) { throw new IllegalArgumentException("socket == null"); } AsyncTimeout timeout = Okio.timeout(socket); Source source = Okio.source(socket.getInputStream(), timeout); return timeout.source(source); } private static AsyncTimeout timeout(final Socket socket) { return new AsyncTimeout(){ @Override protected IOException newTimeoutException(IOException cause) { SocketTimeoutException ioe = new SocketTimeoutException("timeout"); if (cause != null) { ioe.initCause(cause); } return ioe; } @Override protected void timedOut() { try { socket.close(); } catch (Exception e) { logger.log(Level.WARNING, "Failed to close timed out socket " + socket, e); } catch (AssertionError e) { if (((Throwable)((Object)e)).getCause() != null && ((Throwable)((Object)e)).getMessage() != null && ((Throwable)((Object)e)).getMessage().contains("getsockname failed")) { logger.log(Level.WARNING, "Failed to close timed out socket " + socket, (Throwable)((Object)e)); } throw e; } } }; } }