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

Unified Diff: utils/pub/curl_client.dart

Issue 11348309: Keep around a copy of the http.Request that triggered each Response. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« pkg/http/lib/src/response.dart ('K') | « pkg/http/test/mock_client_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/curl_client.dart
diff --git a/utils/pub/curl_client.dart b/utils/pub/curl_client.dart
index 1ea7b099650a19118bfe1923ea00b735237a5686..71b4701eea672a758076e301fb69357e67fc576a 100644
--- a/utils/pub/curl_client.dart
+++ b/utils/pub/curl_client.dart
@@ -45,7 +45,7 @@ class CurlClient extends http.BaseClient {
return _waitForHeaders(process, expectBody: request.method != "HEAD");
}).chain((_) => new File(headerFile).readAsLines())
- .transform((lines) => _buildResponse(process, lines));
+ .transform((lines) => _buildResponse(request, process, lines));
});
}
@@ -170,7 +170,8 @@ class CurlClient extends http.BaseClient {
/// Returns a [http.StreamedResponse] from the response data printed by the
/// `curl` [process]. [lines] are the headers that `curl` wrote to a file.
- http.StreamedResponse _buildResponse(Process process, List<String> lines) {
+ http.StreamedResponse _buildResponse(
+ http.BaseRequest request, Process process, List<String> lines) {
// When curl follows redirects, it prints the redirect headers as well as
// the headers of the final request. Each block is separated by a blank
// line. We just care about the last block. There is one trailing empty
@@ -200,6 +201,7 @@ class CurlClient extends http.BaseClient {
}
return new http.StreamedResponse(responseStream, status, contentLength,
+ request: request,
headers: headers,
isRedirect: isRedirect,
reasonPhrase: reasonPhrase);
« pkg/http/lib/src/response.dart ('K') | « pkg/http/test/mock_client_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698