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

Side by Side Diff: content/child/multipart_response_delegate.h

Issue 1710733002: Move multipart resource handling to core/fetch (2/2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@multipart-cleanup
Patch Set: Created 4 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // A delegate class of WebURLLoaderImpl that handles multipart/x-mixed-replace
6 // data. We special case multipart/x-mixed-replace because WebCore expects a
7 // separate didReceiveResponse for each new message part.
8 //
9 // Most of the logic and edge case handling are based on the Mozilla's
10 // implementation in netwerk/streamconv/converters/nsMultiMixedConv.cpp.
11 // This seems like a derivative work, so here's the original license:
12
13 /* ***** BEGIN LICENSE BLOCK *****
14 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
15 *
16 * The contents of this file are subject to the Mozilla Public License Version
17 * 1.1 (the "License"); you may not use this file except in compliance with
18 * the License. You may obtain a copy of the License at
19 * http://www.mozilla.org/MPL/
20 *
21 * Software distributed under the License is distributed on an "AS IS" basis,
22 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
23 * for the specific language governing rights and limitations under the
24 * License.
25 *
26 * The Original Code is mozilla.org code.
27 *
28 * The Initial Developer of the Original Code is
29 * Netscape Communications Corporation.
30 * Portions created by the Initial Developer are Copyright (C) 1998
31 * the Initial Developer. All Rights Reserved.
32 *
33 * Contributor(s):
34 *
35 * Alternatively, the contents of this file may be used under the terms of
36 * either the GNU General Public License Version 2 or later (the "GPL"), or
37 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
38 * in which case the provisions of the GPL or the LGPL are applicable instead
39 * of those above. If you wish to allow use of your version of this file only
40 * under the terms of either the GPL or the LGPL, and not to allow others to
41 * use your version of this file under the terms of the MPL, indicate your
42 * decision by deleting the provisions above and replace them with the notice
43 * and other provisions required by the GPL or the LGPL. If you do not delete
44 * the provisions above, a recipient may use your version of this file under
45 * the terms of any one of the MPL, the GPL or the LGPL.
46 *
47 * ***** END LICENSE BLOCK ***** */
48
49 #ifndef CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
50 #define CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
51
52 #include <string>
53
54 #include <stddef.h>
55
56 #include <stdint.h>
57
58 #include "base/macros.h"
59 #include "content/common/content_export.h"
60 #include "third_party/WebKit/public/platform/WebURLResponse.h"
61
62 namespace blink {
63 class WebURLLoader;
64 class WebURLLoaderClient;
65 }
66
67 namespace content {
68
69 class CONTENT_EXPORT MultipartResponseDelegate {
70 public:
71 MultipartResponseDelegate(blink::WebURLLoaderClient* client,
72 blink::WebURLLoader* loader,
73 const blink::WebURLResponse& response,
74 const std::string& boundary);
75
76 // Passed through from ResourceHandleInternal
77 void OnReceivedData(const char* data, int data_len, int encoded_data_length);
78 void OnCompletedRequest();
79
80 // The request has been canceled, so stop making calls to the client.
81 void Cancel() {
82 client_ = NULL;
83 loader_ = NULL;
84 }
85
86 private:
87 friend class MultipartResponseDelegateTester; // For unittests.
88
89 // Pointers to the client and associated loader so we can make callbacks as
90 // we parse pieces of data.
91 blink::WebURLLoaderClient* client_;
92 blink::WebURLLoader* loader_;
93
94 // The original resource response for this request. We use this as a
95 // starting point for each parts response.
96 blink::WebURLResponse original_response_;
97
98 // Checks to see if data[pos] character is a line break; handles crlf, lflf,
99 // lf, or cr. Returns the number of characters to skip over (0, 1 or 2).
100 int PushOverLine(const std::string& data, size_t pos);
101
102 // Tries to parse http headers from the start of data_. Returns true if it
103 // succeeds and sends a didReceiveResponse to m_client. Returns false if
104 // the header is incomplete (in which case we just wait for more data).
105 bool ParseHeaders();
106
107 // Find the next boundary in data_. Returns std::string::npos if there's no
108 // full token.
109 size_t FindBoundary();
110
111 // Transferred data size accumulated between client callbacks.
112 int encoded_data_length_;
113
114 // A temporary buffer to hold data between reads for multipart data that
115 // gets split in the middle of a header.
116 std::string data_;
117
118 // Multipart boundary token
119 std::string boundary_;
120
121 // true until we get our first on received data call
122 bool first_received_data_;
123
124 // true if we're truncated in the middle of a header
125 bool processing_headers_;
126
127 // true when we're done sending information. At that point, we stop
128 // processing AddData requests.
129 bool stop_sending_;
130
131 // true after we've sent our first response to the WebURLLoaderClient.
132 bool has_sent_first_response_;
133
134 DISALLOW_COPY_AND_ASSIGN(MultipartResponseDelegate);
135 };
136
137 } // namespace content
138
139 #endif // CONTENT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
OLDNEW
« no previous file with comments | « components/page_load_metrics/renderer/metrics_render_frame_observer.cc ('k') | content/child/multipart_response_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698