com.aspectran.web.activity.request.RequestAttributeMap Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2022 The Aspectran Project
*
* Licensed 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 com.aspectran.web.activity.request;
import com.aspectran.core.lang.NonNull;
import com.aspectran.core.lang.Nullable;
import jakarta.servlet.http.HttpServletRequest;
import java.util.AbstractMap;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
/**
* Wrapper class for getting attributes from HttpServletRequest.
*
* Created: 2018. 9. 15.
*
* @since 5.2.0
*/
public class RequestAttributeMap implements Map {
private final HttpServletRequest request;
public RequestAttributeMap(HttpServletRequest request) {
this.request = request;
}
@Override
public int size() {
return Collections.list(request.getAttributeNames()).size();
}
@Override
public boolean isEmpty() {
return !request.getAttributeNames().hasMoreElements();
}
@Override
public boolean containsKey(Object key) {
return (request.getAttribute((String)key) != null);
}
@Override
public boolean containsValue(Object value) {
Enumeration names = request.getAttributeNames();
while (names.hasMoreElements()) {
String name = names.nextElement();
Object object = request.getAttribute(name);
if (Objects.equals(value, object)) {
return true;
}
}
return false;
}
@Override
public Object get(Object key) {
return request.getAttribute((String)key);
}
@Override
public Object put(String name, Object value) {
Object old = request.getAttribute(name);
request.setAttribute(name, value);
return old;
}
@Override
public Object remove(Object key) {
Object old = request.getAttribute((String)key);
request.removeAttribute((String)key);
return old;
}
@Override
public void putAll(@Nullable Map extends String, ?> map) {
if (map != null) {
for (Entry extends String, ?> entry : map.entrySet()) {
request.setAttribute(entry.getKey(), entry.getValue());
}
}
}
@Override
public void clear() {
for (String name : Collections.list(request.getAttributeNames())) {
request.removeAttribute(name);
}
}
@Override
@NonNull
public Set keySet() {
return new HashSet<>(Collections.list(request.getAttributeNames()));
}
@Override
@NonNull
public Collection