ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/coyote/http11/upgrade/UpgradeServletInputStream.java

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

      
    
Rootfs path

      
    
Size
8014 (7.8 KB)
MD5
077d24e2773f033a102f79438602d1eb
SHA1
e642e7071b5ae0d61010d8b572d261c3219c6eab
SHA256
124696f91be5cca17e52d6abfba2afff869f49b2204dc68d761c691441b69984
SHA512

      
    
SHA1_git
90b8563cee75a27fa3290f78a7be6919f6d6209c
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
UpgradeServletInputStream.java | 7.8 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.http11.upgrade; import java.io.IOException; import jakarta.servlet.ReadListener; import jakarta.servlet.ServletInputStream; import org.apache.coyote.Request; import org.apache.juli.logging.Log; import org.apache.juli.logging.LogFactory; import org.apache.tomcat.util.ExceptionUtils; import org.apache.tomcat.util.net.DispatchType; import org.apache.tomcat.util.net.SocketWrapperBase; import org.apache.tomcat.util.res.StringManager; public class UpgradeServletInputStream extends ServletInputStream { private static final Log log = LogFactory.getLog(UpgradeServletInputStream.class); private static final StringManager sm = StringManager.getManager(UpgradeServletInputStream.class); private final UpgradeProcessorBase processor; private final SocketWrapperBase<?> socketWrapper; private final UpgradeInfo upgradeInfo; private volatile boolean closed = false; private volatile boolean eof = false; // Start in blocking-mode private volatile Boolean ready = Boolean.TRUE; private volatile ReadListener listener = null; public UpgradeServletInputStream(UpgradeProcessorBase processor, SocketWrapperBase<?> socketWrapper, UpgradeInfo upgradeInfo) { this.processor = processor; this.socketWrapper = socketWrapper; this.upgradeInfo = upgradeInfo; } @Override public final boolean isFinished() { if (listener == null) { throw new IllegalStateException(sm.getString("upgrade.sis.isFinished.ise")); } return eof; } @Override public final boolean isReady() { if (listener == null) { throw new IllegalStateException(sm.getString("upgrade.sis.isReady.ise")); } if (eof || closed) { return false; } // If we already know the current state, return it. if (ready != null) { return ready.booleanValue(); } try { ready = Boolean.valueOf(socketWrapper.isReadyForRead()); } catch (IOException ioe) { onError(ioe); } return ready.booleanValue(); } @Override public final void setReadListener(ReadListener listener) { if (listener == null) { throw new IllegalArgumentException(sm.getString("upgrade.sis.readListener.null")); } if (this.listener != null) { throw new IllegalArgumentException(sm.getString("upgrade.sis.readListener.set")); } if (closed) { throw new IllegalStateException(sm.getString("upgrade.sis.read.closed")); } this.listener = listener; // Container is responsible for first call to onDataAvailable(). Request request = processor.getRequest(); if (request != null && request.isRequestThread()) { processor.addDispatch(DispatchType.NON_BLOCKING_READ); } else { socketWrapper.registerReadInterest(); } // Switching to non-blocking. Don't know if data is available. ready = null; } @Override public final int read() throws IOException { preReadChecks(); return readInternal(); } @Override public final int readLine(byte[] b, int off, int len) throws IOException { preReadChecks(); if (len <= 0) { return 0; } int count = 0, c; while ((c = readInternal()) != -1) { b[off++] = (byte) c; count++; if (c == ' ' || count == len) { break; } } if (count > 0) { upgradeInfo.addBytesReceived(count); return count; } else { return -1; } } @Override public final int read(byte[] b, int off, int len) throws IOException { preReadChecks(); try { int result = socketWrapper.read(listener == null, b, off, len); if (result == -1) { eof = true; } else { upgradeInfo.addBytesReceived(result); } return result; } catch (IOException ioe) { close(); throw ioe; } } @Override public void close() throws IOException { eof = true; closed = true; } private void preReadChecks() { if (listener != null && (ready == null || !ready.booleanValue())) { throw new IllegalStateException(sm.getString("upgrade.sis.read.ise")); } if (closed) { throw new IllegalStateException(sm.getString("upgrade.sis.read.closed")); } // No longer know if data is available ready = null; } private int readInternal() throws IOException { // Single byte reads for non-blocking need special handling so all // single byte reads run through this method. byte[] b = new byte[1]; int result; try { result = socketWrapper.read(listener == null, b, 0, 1); } catch (IOException ioe) { close(); throw ioe; } if (result == 0) { return -1; } else if (result == -1) { eof = true; return -1; } else { upgradeInfo.addBytesReceived(1); return b[0] & 0xFF; } } final void onDataAvailable() { try { if (listener == null || !socketWrapper.isReadyForRead()) { return; } } catch (IOException ioe) { onError(ioe); } ready = Boolean.TRUE; ClassLoader oldCL = processor.getUpgradeToken().contextBind().bind(null); try { if (!eof) { listener.onDataAvailable(); } if (eof) { listener.onAllDataRead(); } } catch (Throwable t) { ExceptionUtils.handleThrowable(t); onError(t); } finally { processor.getUpgradeToken().contextBind().unbind(oldCL); } } private void onError(Throwable t) { if (listener == null) { return; } ClassLoader oldCL = processor.getUpgradeToken().contextBind().bind(null); try { listener.onError(t); } catch (Throwable t2) { ExceptionUtils.handleThrowable(t2); log.warn(sm.getString("upgrade.sis.onErrorFail"), t2); } finally { processor.getUpgradeToken().contextBind().unbind(oldCL); } try { close(); } catch (IOException ioe) { if (log.isDebugEnabled()) { log.debug(sm.getString("upgrade.sis.errorCloseFail"), ioe); } } ready = Boolean.FALSE; } final boolean isClosed() { return closed; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
16.17
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