All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.http.server.reactive.NettyHeadersAdapter Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2022 the original author or authors.
 *
 * 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
 *
 *      https://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.springframework.http.server.reactive;

import java.util.AbstractSet;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import io.netty.handler.codec.http.HttpHeaders;

import org.springframework.lang.Nullable;
import org.springframework.util.CollectionUtils;
import org.springframework.util.MultiValueMap;

/**
 * {@code MultiValueMap} implementation for wrapping Netty HTTP headers.
 *
 * 

There is a duplicate of this class in the client package! * * @author Brian Clozel * @since 5.1.1 */ final class NettyHeadersAdapter implements MultiValueMap { private final HttpHeaders headers; NettyHeadersAdapter(HttpHeaders headers) { this.headers = headers; } @Override @Nullable public String getFirst(String key) { return this.headers.get(key); } @Override public void add(String key, @Nullable String value) { if (value != null) { this.headers.add(key, value); } } @Override public void addAll(String key, List values) { this.headers.add(key, values); } @Override public void addAll(MultiValueMap values) { values.forEach(this.headers::add); } @Override public void set(String key, @Nullable String value) { if (value != null) { this.headers.set(key, value); } } @Override public void setAll(Map values) { values.forEach(this.headers::set); } @Override public Map toSingleValueMap() { Map singleValueMap = CollectionUtils.newLinkedHashMap(this.headers.size()); this.headers.entries() .forEach(entry -> { if (!singleValueMap.containsKey(entry.getKey())) { singleValueMap.put(entry.getKey(), entry.getValue()); } }); return singleValueMap; } @Override public int size() { return this.headers.names().size(); } @Override public boolean isEmpty() { return this.headers.isEmpty(); } @Override public boolean containsKey(Object key) { return (key instanceof String headerName && this.headers.contains(headerName)); } @Override public boolean containsValue(Object value) { return (value instanceof String && this.headers.entries().stream() .anyMatch(entry -> value.equals(entry.getValue()))); } @Override @Nullable public List get(Object key) { if (containsKey(key)) { return this.headers.getAll((String) key); } return null; } @Nullable @Override public List put(String key, @Nullable List value) { List previousValues = this.headers.getAll(key); this.headers.set(key, value); return previousValues; } @Nullable @Override public List remove(Object key) { if (key instanceof String headerName) { List previousValues = this.headers.getAll(headerName); this.headers.remove(headerName); return previousValues; } return null; } @Override public void putAll(Map> map) { map.forEach(this.headers::set); } @Override public void clear() { this.headers.clear(); } @Override public Set keySet() { return new HeaderNames(); } @Override public Collection> values() { return this.headers.names().stream() .map(this.headers::getAll).toList(); } @Override public Set>> entrySet() { return new AbstractSet<>() { @Override public Iterator>> iterator() { return new EntryIterator(); } @Override public int size() { return headers.size(); } }; } @Override public String toString() { return org.springframework.http.HttpHeaders.formatHeaders(this); } private class EntryIterator implements Iterator>> { private final Iterator names = headers.names().iterator(); @Override public boolean hasNext() { return this.names.hasNext(); } @Override public Entry> next() { return new HeaderEntry(this.names.next()); } } private class HeaderEntry implements Entry> { private final String key; HeaderEntry(String key) { this.key = key; } @Override public String getKey() { return this.key; } @Override public List getValue() { return headers.getAll(this.key); } @Override public List setValue(List value) { List previousValues = headers.getAll(this.key); headers.set(this.key, value); return previousValues; } } private class HeaderNames extends AbstractSet { @Override public Iterator iterator() { return new HeaderNamesIterator(headers.names().iterator()); } @Override public int size() { return headers.names().size(); } } private final class HeaderNamesIterator implements Iterator { private final Iterator iterator; @Nullable private String currentName; private HeaderNamesIterator(Iterator iterator) { this.iterator = iterator; } @Override public boolean hasNext() { return this.iterator.hasNext(); } @Override public String next() { this.currentName = this.iterator.next(); return this.currentName; } @Override public void remove() { if (this.currentName == null) { throw new IllegalStateException("No current Header in iterator"); } if (!headers.contains(this.currentName)) { throw new IllegalStateException("Header not present: " + this.currentName); } headers.remove(this.currentName); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy