ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/parser/ContentRange.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/http/parser/ContentRange.java
Status
scanned
Type
file
Name
ContentRange.java
Extension
.java
Programming language
Java
Mime type
text/x-Algol68
File type
Algol 68 source, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3856 (3.8 KB)
MD5
47d1c9fecb929ea10b81465b7c2a7915
SHA1
fdde1a47015d0e00e7015d4af4528dfb2510fc5d
SHA256
7bb9c2826fe841ee12555608e9394650e677f75b236c4019e15f9842284f301a
SHA512

      
    
SHA1_git
e034e1cf72c21209a4ad6c618e2fc99161ab90e2
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ContentRange.java | 3.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.tomcat.util.http.parser; import java.io.IOException; import java.io.StringReader; import java.util.Locale; public class ContentRange { private final String units; private final long start; private final long end; private final long length; public ContentRange(String units, long start, long end, long length) { // Units are lower case (RFC 9110, section 14.1) if (units == null) { this.units = null; } else { this.units = units.toLowerCase(Locale.ENGLISH); } this.start = start; this.end = end; this.length = length; } /** * @return rangeUnits in lower case. */ public String getUnits() { return units; } public long getStart() { return start; } public long getEnd() { return end; } public long getLength() { return length; } /** * Parses a Content-Range header from an HTTP header. * * @param input a reader over the header text * * @return the range parsed from the input, or null if not valid * * @throws IOException if there was a problem reading the input */ public static ContentRange parse(StringReader input) throws IOException { // Units (required) String units = HttpParser.readToken(input); if (units == null || units.isEmpty()) { return null; } // Must be followed by SP. Parser is lenient and accepts any LWS here. // No need for explicit check as something must have terminated the // token and if that something was anything other than LWS the following // call to readLong() will fail. // Start long start = HttpParser.readLong(input); // Must be followed by '-' if (HttpParser.skipConstant(input, "-") == SkipResult.NOT_FOUND) { return null; } // End long end = HttpParser.readLong(input); // Must be followed by '/' if (HttpParser.skipConstant(input, "/") == SkipResult.NOT_FOUND) { return null; } // Length long length = HttpParser.readLong(input); // Doesn't matter what we look for, result should be EOF SkipResult skipResult = HttpParser.skipConstant(input, "X"); if (skipResult != SkipResult.EOF) { // Invalid range return null; } ContentRange contentRange = new ContentRange(units, start, end, length); if (!contentRange.isValid()) { // Invalid content range return null; } return contentRange; } /** * @return <code>true</code> if the content range is valid, per RFC 9110 section 14.4 */ public boolean isValid() { return start >= 0 && end >= start && length > end; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
27.42
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