-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Optimize HTTP headers parsing #1977
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
/* | ||
* Copyright 2002-2018 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 | ||
* | ||
* 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.springframework.http; | ||
|
||
import java.util.AbstractMap; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
import java.util.stream.Collectors; | ||
|
||
import org.springframework.lang.Nullable; | ||
import org.springframework.util.MultiValueMap; | ||
|
||
/** | ||
* {@code HttpHeaders} object that can only be read, not written to. | ||
* | ||
* @author Brian Clozel | ||
* @since 5.1 | ||
*/ | ||
class ReadOnlyHttpHeaders extends HttpHeaders { | ||
|
||
private static final long serialVersionUID = -8578554704772377436L; | ||
|
||
@Nullable | ||
private MediaType cachedContentType; | ||
|
||
ReadOnlyHttpHeaders(HttpHeaders headers) { | ||
super(headers.headers); | ||
} | ||
|
||
@Override | ||
public MediaType getContentType() { | ||
if (this.cachedContentType != null) { | ||
return this.cachedContentType; | ||
} | ||
else { | ||
MediaType contentType = super.getContentType(); | ||
this.cachedContentType = contentType; | ||
return contentType; | ||
} | ||
} | ||
|
||
@Override | ||
public List<String> get(Object key) { | ||
List<String> values = this.headers.get(key); | ||
if (values != null) { | ||
return Collections.unmodifiableList(values); | ||
} | ||
return values; | ||
} | ||
|
||
@Override | ||
public void add(String headerName, @Nullable String headerValue) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void addAll(String key, List<? extends String> values) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void addAll(MultiValueMap<String, String> values) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void set(String headerName, @Nullable String headerValue) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void setAll(Map<String, String> values) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Map<String, String> toSingleValueMap() { | ||
return Collections.unmodifiableMap(this.headers.toSingleValueMap()); | ||
} | ||
|
||
@Override | ||
public Set<String> keySet() { | ||
return Collections.unmodifiableSet(this.headers.keySet()); | ||
} | ||
|
||
@Override | ||
public List<String> put(String key, List<String> value) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public List<String> remove(Object key) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void putAll(Map<? extends String, ? extends List<String>> map) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void clear() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Collection<List<String>> values() { | ||
return Collections.unmodifiableCollection(this.headers.values()); | ||
} | ||
|
||
@Override | ||
public Set<Entry<String, List<String>>> entrySet() { | ||
return Collections.unmodifiableSet(this.headers.entrySet().stream() | ||
.map(AbstractMap.SimpleImmutableEntry::new) | ||
.collect(Collectors.toSet())); | ||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,6 +153,9 @@ public List<String> get(Object key) { | |
Assert.isInstanceOf(String.class, key, "Key must be a String-based header name"); | ||
|
||
Collection<String> values1 = servletResponse.getHeaders((String) key); | ||
if (headersWritten) { | ||
return new ArrayList<>(values1); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. without that change, I'm seeing duplicate response headers because both the native servlet response ones and the ones held by Spring's servlet response are added. Once the response is committed and headers written, reading headers from both yields duplicates. I think this is a bug uncovered by other changes in this PR. |
||
} | ||
boolean isEmpty1 = CollectionUtils.isEmpty(values1); | ||
|
||
List<String> values2 = super.get(key); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If
ReadOnlyHttpHeaders
is a wrapper aroundHttpHeaders
, couldn't we check here ifheaders.headers
is an instance ofHttpHeaders
and if so return it directly?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In that case,
headers.headers
is itself aMultiValueMap
. @poutsma and I changedReadOnlyHttpHeaders
so that it extends HttpHeaders (and callssuper(MultiValueMap)
) to avoid issues on theequals
contract.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok I see.