Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: net/quic/spdy_utils.cc

Issue 2009623002: SpdyUtils support coalescing multi-value headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: SpdyUtils support coalescing multi-value headers. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/quic/spdy_utils_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/spdy_utils.h" 5 #include "net/quic/spdy_utils.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 bool SpdyUtils::CopyAndValidateHeaders(const QuicHeaderList& header_list, 113 bool SpdyUtils::CopyAndValidateHeaders(const QuicHeaderList& header_list,
114 int64_t* content_length, 114 int64_t* content_length,
115 SpdyHeaderBlock* headers) { 115 SpdyHeaderBlock* headers) {
116 for (const auto& p : header_list) { 116 for (const auto& p : header_list) {
117 const string& name = p.first; 117 const string& name = p.first;
118 if (name.empty()) { 118 if (name.empty()) {
119 DVLOG(1) << "Header name must not be empty."; 119 DVLOG(1) << "Header name must not be empty.";
120 return false; 120 return false;
121 } 121 }
122 122
123 if (std::any_of(name.begin(), name.end(), base::IsAsciiUpper<char>)) {
124 DLOG(ERROR) << "Malformed header: Header name " << name
125 << " contains upper-case characters.";
126 return false;
127 }
Ryan Hamilton 2016/05/24 21:26:05 Did you mean to remove this?
dahollings 2016/05/24 22:12:16 No, we should let that happen upon revert of rever
128
129 auto iter = headers->find(name); 123 auto iter = headers->find(name);
130 if (iter == headers->end()) { 124 if (iter == headers->end()) {
131 (*headers)[name] = p.second; 125 (*headers)[name] = p.second;
132 } else if (name == "cookie") {
133 // Obeys section 8.1.2.5 in RFC 7540 for cookie reconstruction.
134 headers->ReplaceOrAppendHeader(
135 name, base::StringPrintf("%s; %s", iter->second.as_string().c_str(),
136 p.second.c_str()));
137 } else { 126 } else {
138 // This header had multiple values, so it must be reconstructed. 127 // This header had multiple values, so it must be reconstructed.
139 string value = base::StringPrintf( 128 base::StringPiece v = iter->second;
140 "%s%c%s", iter->second.as_string().c_str(), '\0', p.second.c_str()); 129 std::string s(v.data(), v.length());
Ryan Hamilton 2016/05/24 22:18:46 nit: you can just use "string" and "StringPiece" s
dahollings 2016/05/24 22:31:23 Done.
141 headers->ReplaceOrAppendHeader(name, value); 130 if (name == "cookie") {
131 // Obeys section 8.1.2.5 in RFC 7540 for cookie reconstruction.
132 s.append("; ");
133 } else {
134 base::StringPiece("\0", 1).AppendToString(&s);
135 }
136 s.append(p.second);
137 headers->ReplaceOrAppendHeader(name, s);
Ryan Hamilton 2016/05/24 21:26:05 Are you planning to make the internal version of t
dahollings 2016/05/24 22:12:16 Clarification on the bug (sorry if over-detailed):
Ryan Hamilton 2016/05/24 22:18:46 Ah, that makes sense. Should we transition the int
Biren Roy 2016/05/24 22:27:28 I think StrCat() is great, and the internal versio
Ryan Hamilton 2016/05/24 22:43:56 In general, we try to minimize the differences bet
142 } 138 }
143 } 139 }
144 140
145 if (ContainsKey(*headers, "content-length")) { 141 if (ContainsKey(*headers, "content-length")) {
146 // Check whether multiple values are consistent. 142 // Check whether multiple values are consistent.
147 StringPiece content_length_header = (*headers)["content-length"]; 143 StringPiece content_length_header = (*headers)["content-length"];
148 vector<string> values = 144 vector<string> values =
149 base::SplitString(content_length_header, base::StringPiece("\0", 1), 145 base::SplitString(content_length_header, base::StringPiece("\0", 1),
150 base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); 146 base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL);
151 for (const string& value : values) { 147 for (const string& value : values) {
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 return GURL(GetUrlFromHeaderBlock(headers)).host(); 244 return GURL(GetUrlFromHeaderBlock(headers)).host();
249 } 245 }
250 246
251 // static 247 // static
252 bool SpdyUtils::UrlIsValid(const SpdyHeaderBlock& headers) { 248 bool SpdyUtils::UrlIsValid(const SpdyHeaderBlock& headers) {
253 string url(GetUrlFromHeaderBlock(headers)); 249 string url(GetUrlFromHeaderBlock(headers));
254 return url != "" && GURL(url).is_valid(); 250 return url != "" && GURL(url).is_valid();
255 } 251 }
256 252
257 } // namespace net 253 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | net/quic/spdy_utils_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698