ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/net/WriteBuffer.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/net/WriteBuffer.java
Status
scanned
Type
file
Name
WriteBuffer.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
5024 (4.9 KB)
MD5
3dff73bcd935e9f9ad628fc0708b9224
SHA1
667cc22ad0035cbc6eb59e790e4275f7406abf80
SHA256
8c09de7fbca5e435df7b4efb6aca0ece542198a8bfa20df4b28da85a512cdf7b
SHA512

      
    
SHA1_git
484ca725b0a89344658d51ee629b1a219badf292
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
WriteBuffer.java | 4.9 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.tomcat.util.net; import java.io.IOException; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.concurrent.LinkedBlockingDeque; import org.apache.tomcat.util.buf.ByteBufferHolder; /** * Provides an expandable set of buffers for writes. Non-blocking writes can be of any size and may not be able to be * written immediately or wholly contained in the buffer used to perform the writes to the next layer. This class * provides a buffering capability to allow such writes to return immediately and also allows for the user provided * buffers to be re-used / recycled as required. */ public class WriteBuffer { private final int bufferSize; private final LinkedBlockingDeque<ByteBufferHolder> buffers = new LinkedBlockingDeque<>(); public WriteBuffer(int bufferSize) { this.bufferSize = bufferSize; } void clear() { buffers.clear(); } void add(byte[] buf, int offset, int length) { ByteBufferHolder holder = getByteBufferHolder(length); holder.getBuf().put(buf, offset, length); } public void add(ByteBuffer from) { ByteBufferHolder holder = getByteBufferHolder(from.remaining()); holder.getBuf().put(from); } private ByteBufferHolder getByteBufferHolder(int capacity) { ByteBufferHolder holder = buffers.peekLast(); if (holder == null || holder.isFlipped() || holder.getBuf().remaining() < capacity) { ByteBuffer buffer = ByteBuffer.allocate(Math.max(bufferSize, capacity)); holder = new ByteBufferHolder(buffer, false); buffers.add(holder); } return holder; } public boolean isEmpty() { return buffers.isEmpty(); } /** * Create an array of ByteBuffers from the current WriteBuffer, prefixing that array with the provided ByteBuffers. * * @param prefixes The additional ByteBuffers to add to the start of the array * * @return an array of ByteBuffers from the current WriteBuffer prefixed by the provided ByteBuffers */ ByteBuffer[] toArray(ByteBuffer... prefixes) { List<ByteBuffer> result = new ArrayList<>(); for (ByteBuffer prefix : prefixes) { if (prefix.hasRemaining()) { result.add(prefix); } } for (ByteBufferHolder buffer : buffers) { buffer.flip(); result.add(buffer.getBuf()); } buffers.clear(); return result.toArray(new ByteBuffer[0]); } boolean write(SocketWrapperBase<?> socketWrapper, boolean blocking) throws IOException { Iterator<ByteBufferHolder> bufIter = buffers.iterator(); boolean dataLeft = false; while (!dataLeft && bufIter.hasNext()) { ByteBufferHolder buffer = bufIter.next(); buffer.flip(); if (blocking) { socketWrapper.writeBlocking(buffer.getBuf()); } else { socketWrapper.writeNonBlockingInternal(buffer.getBuf()); } if (buffer.getBuf().remaining() == 0) { bufIter.remove(); } else { dataLeft = true; } } return dataLeft; } public boolean write(Sink sink, boolean blocking) throws IOException { Iterator<ByteBufferHolder> bufIter = buffers.iterator(); boolean dataLeft = false; while (!dataLeft && bufIter.hasNext()) { ByteBufferHolder buffer = bufIter.next(); buffer.flip(); dataLeft = sink.writeFromBuffer(buffer.getBuf(), blocking); if (!dataLeft) { bufIter.remove(); } } return dataLeft; } /** * Interface implemented by clients of the WriteBuffer to enable data to be written back out from the buffer. */ public interface Sink { boolean writeFromBuffer(ByteBuffer buffer, boolean block) throws IOException; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
22.97
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9