ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/http2/Http2OutputBuffer.java

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

      
    
Rootfs path

      
    
Size
2527 (2.5 KB)
MD5
60be689fa9fc3c0f0c6c8f571e900ff8
SHA1
3ff5d4b5fb1fe55579dcd3ac784ede54019eecc0
SHA256
b987cb6ce2fdc37218e705e48881c48e0e71a04e738292a631b355417ced917a
SHA512

      
    
SHA1_git
4ad93a37c89f18cc52614bf524137903514e624b
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Http2OutputBuffer.java | 2.5 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.coyote.http2; import java.io.IOException; import java.nio.ByteBuffer; import org.apache.coyote.Response; import org.apache.coyote.http11.HttpOutputBuffer; import org.apache.coyote.http11.OutputFilter; import org.apache.coyote.http2.Stream.StreamOutputBuffer; public class Http2OutputBuffer implements HttpOutputBuffer { private final Response coyoteResponse; private HttpOutputBuffer next; /** * Add a filter at the start of the existing processing chain. Subsequent calls to the {@link HttpOutputBuffer} * methods of this object will be passed to the filter. If appropriate, the filter will then call the same method on * the next HttpOutputBuffer in the chain until the call reaches the StreamOutputBuffer. * * @param filter The filter to add to the start of the processing chain */ public void addFilter(OutputFilter filter) { filter.setBuffer(next); next = filter; } public Http2OutputBuffer(Response coyoteResponse, StreamOutputBuffer streamOutputBuffer) { this.coyoteResponse = coyoteResponse; this.next = streamOutputBuffer; } @Override public int doWrite(ByteBuffer chunk) throws IOException { if (!coyoteResponse.isCommitted()) { coyoteResponse.commit(); } return next.doWrite(chunk); } @Override public long getBytesWritten() { return next.getBytesWritten(); } @Override public void end() throws IOException { next.end(); } @Override public void flush() throws IOException { next.flush(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
40.89
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