ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/catalina/util/ParameterMap.java

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

      
    
Rootfs path

      
    
Size
7627 (7.4 KB)
MD5
463f1ccdec33731dcf73c7347c38610c
SHA1
df46974cb477a47fc95ee764b56709e252f7d083
SHA256
06a2d1b32342e4c49bf3089037aa9ee69b0c6ef49881976794aac982a8c15d2a
SHA512

      
    
SHA1_git
89fb98021605d9737984e3469aa77e762b0b26e8
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ParameterMap.java | 7.4 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.catalina.util; import java.io.Serial; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; import java.util.Set; import org.apache.tomcat.util.res.StringManager; /** * Implementation of <strong>java.util.Map</strong> that includes a <code>locked</code> property. This class can be used * to safely expose Catalina internal parameter map objects to user classes without having to clone them in order to * avoid modifications. When first created, a <code>ParameterMap</code> instance is not locked. * * @param <K> The type of Key * @param <V> The type of Value */ public final class ParameterMap<K, V> implements Map<K,V>, Serializable { @Serial private static final long serialVersionUID = 2L; private final Map<K,V> delegatedMap; private final Map<K,V> unmodifiableDelegatedMap; /** * Construct a new, empty map with the default initial capacity and load factor. */ public ParameterMap() { delegatedMap = new LinkedHashMap<>(); unmodifiableDelegatedMap = Collections.unmodifiableMap(delegatedMap); } /** * Construct a new, empty map with the specified initial capacity and default load factor. * * @param initialCapacity The initial capacity of this map */ public ParameterMap(int initialCapacity) { delegatedMap = new LinkedHashMap<>(initialCapacity); unmodifiableDelegatedMap = Collections.unmodifiableMap(delegatedMap); } /** * Construct a new, empty map with the specified initial capacity and load factor. * * @param initialCapacity The initial capacity of this map * @param loadFactor The load factor of this map */ public ParameterMap(int initialCapacity, float loadFactor) { delegatedMap = new LinkedHashMap<>(initialCapacity, loadFactor); unmodifiableDelegatedMap = Collections.unmodifiableMap(delegatedMap); } /** * Construct a new map with the same mappings as the given map. * * @param map Map whose contents are duplicated in the new map */ public ParameterMap(Map<K,V> map) { // Unroll loop for performance - https://bz.apache.org/bugzilla/show_bug.cgi?id=69820 int mapSize = map.size(); delegatedMap = new LinkedHashMap<>((int) (mapSize * 1.5)); for (Map.Entry<K,V> entry : map.entrySet()) { delegatedMap.put(entry.getKey(), entry.getValue()); } unmodifiableDelegatedMap = Collections.unmodifiableMap(delegatedMap); } /** * Optimised constructor for ParameterMap. * * @see "https://bz.apache.org/bugzilla/show_bug.cgi?id=69285" * * @param map Map whose contents are duplicated in the new map */ public ParameterMap(ParameterMap<K,V> map) { // Unroll loop for performance - https://bz.apache.org/bugzilla/show_bug.cgi?id=69820 int mapSize = map.size(); delegatedMap = new LinkedHashMap<>((int) (mapSize * 1.5)); for (Map.Entry<K,V> entry : map.entrySet()) { delegatedMap.put(entry.getKey(), entry.getValue()); } unmodifiableDelegatedMap = Collections.unmodifiableMap(delegatedMap); } /** * The current lock state of this parameter map. */ private boolean locked = false; /** * @return the locked state of this parameter map. */ public boolean isLocked() { return locked; } /** * Set the locked state of this parameter map. * * @param locked The new locked state */ public void setLocked(boolean locked) { this.locked = locked; } /** * The string manager for this package. */ private static final StringManager sm = StringManager.getManager("org.apache.catalina.util"); /** * {@inheritDoc} * * @exception IllegalStateException if this map is currently locked */ @Override public void clear() { checkLocked(); delegatedMap.clear(); } /** * {@inheritDoc} * * @exception IllegalStateException if this map is currently locked */ @Override public V put(K key, V value) { checkLocked(); return delegatedMap.put(key, value); } /** * {@inheritDoc} * * @exception IllegalStateException if this map is currently locked */ @Override public void putAll(Map<? extends K,? extends V> map) { checkLocked(); delegatedMap.putAll(map); } /** * {@inheritDoc} * * @exception IllegalStateException if this map is currently locked */ @Override public V remove(Object key) { checkLocked(); return delegatedMap.remove(key); } private void checkLocked() { if (locked) { throw new IllegalStateException(sm.getString("parameterMap.locked")); } } @Override public int size() { return delegatedMap.size(); } @Override public boolean isEmpty() { return delegatedMap.isEmpty(); } @Override public boolean containsKey(Object key) { return delegatedMap.containsKey(key); } @Override public boolean containsValue(Object value) { return delegatedMap.containsValue(value); } @Override public V get(Object key) { return delegatedMap.get(key); } /** * {@inheritDoc} * <p> * Returns an <strong>unmodifiable</strong> {@link Set} view of the keys contained in this map if it is locked. */ @Override public Set<K> keySet() { if (locked) { return unmodifiableDelegatedMap.keySet(); } return delegatedMap.keySet(); } /** * {@inheritDoc} * <p> * Returns an <strong>unmodifiable</strong> {@link Collection} view of the values contained in this map if it is * locked. */ @Override public Collection<V> values() { if (locked) { return unmodifiableDelegatedMap.values(); } return delegatedMap.values(); } /** * {@inheritDoc} * <p> * Returns an <strong>unmodifiable</strong> {@link Set} view of the mappings contained in this map if it is locked. */ @Override public Set<Map.Entry<K,V>> entrySet() { if (locked) { return unmodifiableDelegatedMap.entrySet(); } return delegatedMap.entrySet(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
14.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
https://bz.apache.org/bugzilla/show_bug.cgi?id=69820 85 85
https://bz.apache.org/bugzilla/show_bug.cgi?id=69285 98 98