1 // Copyright (c) 2011 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.
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.
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:
13 /* ***** BEGIN LICENSE BLOCK *****
14 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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
26 * The Original Code is mozilla.org code.
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.
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.
47 * ***** END LICENSE BLOCK ***** */
49 #ifndef WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
50 #define WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_
54 #include "base/basictypes.h"
55 #include "third_party/WebKit/public/platform/WebURLResponse.h"
56 #include "webkit/child/webkit_child_export.h"
60 class WebURLLoaderClient
;
63 namespace webkit_glue
{
65 // Used by unit tests to access private members.
66 class MultipartResponseDelegateTester
;
68 class WEBKIT_CHILD_EXPORT MultipartResponseDelegate
{
70 MultipartResponseDelegate(blink::WebURLLoaderClient
* client
,
71 blink::WebURLLoader
* loader
,
72 const blink::WebURLResponse
& response
,
73 const std::string
& boundary
);
75 // Passed through from ResourceHandleInternal
76 void OnReceivedData(const char* data
, int data_len
, int encoded_data_length
);
77 void OnCompletedRequest();
79 // The request has been canceled, so stop making calls to the client.
85 // Returns the multi part boundary string from the Content-type header
87 // Returns true on success.
88 static bool ReadMultipartBoundary(const blink::WebURLResponse
& response
,
89 std::string
* multipart_boundary
);
91 // Returns the lower and higher content ranges from an individual multipart
92 // in a multipart response.
93 // Returns true on success.
94 static bool ReadContentRanges(
95 const blink::WebURLResponse
& response
,
96 int64
* content_range_lower_bound
,
97 int64
* content_range_upper_bound
,
98 int64
* content_range_instance_size
);
101 friend class MultipartResponseDelegateTester
; // For unittests.
103 // Pointers to the client and associated loader so we can make callbacks as
104 // we parse pieces of data.
105 blink::WebURLLoaderClient
* client_
;
106 blink::WebURLLoader
* loader_
;
108 // The original resource response for this request. We use this as a
109 // starting point for each parts response.
110 blink::WebURLResponse original_response_
;
112 // Checks to see if data[pos] character is a line break; handles crlf, lflf,
113 // lf, or cr. Returns the number of characters to skip over (0, 1 or 2).
114 int PushOverLine(const std::string
& data
, size_t pos
);
116 // Tries to parse http headers from the start of data_. Returns true if it
117 // succeeds and sends a didReceiveResponse to m_client. Returns false if
118 // the header is incomplete (in which case we just wait for more data).
121 // Find the next boundary in data_. Returns std::string::npos if there's no
123 size_t FindBoundary();
125 // Transferred data size accumulated between client callbacks.
126 int encoded_data_length_
;
128 // A temporary buffer to hold data between reads for multipart data that
129 // gets split in the middle of a header.
132 // Multipart boundary token
133 std::string boundary_
;
135 // true until we get our first on received data call
136 bool first_received_data_
;
138 // true if we're truncated in the middle of a header
139 bool processing_headers_
;
141 // true when we're done sending information. At that point, we stop
142 // processing AddData requests.
145 // true after we've sent our first response to the WebURLLoaderClient.
146 bool has_sent_first_response_
;
148 DISALLOW_COPY_AND_ASSIGN(MultipartResponseDelegate
);
151 } // namespace webkit_glue
153 #endif // WEBKIT_CHILD_MULTIPART_RESPONSE_DELEGATE_H_