File: DocumentLoader.h

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (298 lines) | stat: -rw-r--r-- 10,055 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
 * Copyright (C) 2011 Google Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1.  Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 * 2.  Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
 *     its contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef DocumentLoader_h
#define DocumentLoader_h

#include "core/CoreExport.h"
#include "core/dom/ViewportDescription.h"
#include "core/dom/WeakIdentifierMap.h"
#include "core/fetch/ClientHintsPreferences.h"
#include "core/fetch/RawResource.h"
#include "core/fetch/ResourceLoaderOptions.h"
#include "core/fetch/SubstituteData.h"
#include "core/frame/FrameTypes.h"
#include "core/frame/csp/ContentSecurityPolicy.h"
#include "core/loader/DocumentLoadTiming.h"
#include "core/loader/DocumentWriter.h"
#include "core/loader/FrameLoaderTypes.h"
#include "core/loader/LinkLoader.h"
#include "core/loader/NavigationPolicy.h"
#include "platform/SharedBuffer.h"
#include "platform/network/ResourceError.h"
#include "platform/network/ResourceRequest.h"
#include "platform/network/ResourceResponse.h"
#include "public/platform/WebLoadingBehaviorFlag.h"
#include "wtf/HashSet.h"
#include "wtf/RefPtr.h"
#include <memory>

namespace blink {

class ApplicationCacheHost;
class ResourceFetcher;
class DocumentInit;
class LocalFrame;
class FrameLoader;
class FrameLoaderClient;
class ResourceTimingInfo;
class WebDocumentSubresourceFilter;
struct ViewportDescriptionWrapper;

class CORE_EXPORT DocumentLoader
    : public GarbageCollectedFinalized<DocumentLoader>,
      private RawResourceClient {
  USING_GARBAGE_COLLECTED_MIXIN(DocumentLoader);

 public:
  static DocumentLoader* create(LocalFrame* frame,
                                const ResourceRequest& request,
                                const SubstituteData& data,
                                ClientRedirectPolicy clientRedirectPolicy) {
    DCHECK(frame);

    return new DocumentLoader(frame, request, data, clientRedirectPolicy);
  }
  ~DocumentLoader() override;

  LocalFrame* frame() const { return m_frame; }

  ResourceTimingInfo* getNavigationTimingInfo() const;

  virtual void detachFromFrame();

  unsigned long mainResourceIdentifier() const;

  void replaceDocumentWhileExecutingJavaScriptURL(const DocumentInit&,
                                                  const String& source);

  const AtomicString& mimeType() const;

  const ResourceRequest& originalRequest() const;

  const ResourceRequest& getRequest() const;

  ResourceFetcher* fetcher() const { return m_fetcher.get(); }

  void setSubresourceFilter(std::unique_ptr<WebDocumentSubresourceFilter>);
  WebDocumentSubresourceFilter* subresourceFilter() const {
    return m_subresourceFilter.get();
  }

  const SubstituteData& substituteData() const { return m_substituteData; }

  const KURL& url() const;
  const KURL& unreachableURL() const;
  const KURL& urlForHistory() const;

  const AtomicString& responseMIMEType() const;

  void didChangePerformanceTiming();
  void didObserveLoadingBehavior(WebLoadingBehaviorFlag);
  void updateForSameDocumentNavigation(const KURL&,
                                       SameDocumentNavigationSource);
  const ResourceResponse& response() const { return m_response; }
  bool isClientRedirect() const { return m_isClientRedirect; }
  void setIsClientRedirect(bool isClientRedirect) {
    m_isClientRedirect = isClientRedirect;
  }
  bool replacesCurrentHistoryItem() const {
    return m_replacesCurrentHistoryItem;
  }
  void setReplacesCurrentHistoryItem(bool replacesCurrentHistoryItem) {
    m_replacesCurrentHistoryItem = replacesCurrentHistoryItem;
  }

  bool isCommittedButEmpty() const {
    return m_state >= Committed && !m_dataReceived;
  }

  void setSentDidFinishLoad() { m_state = SentDidFinishLoad; }
  bool sentDidFinishLoad() const { return m_state == SentDidFinishLoad; }

  NavigationType getNavigationType() const { return m_navigationType; }
  void setNavigationType(NavigationType navigationType) {
    m_navigationType = navigationType;
  }

  void startLoadingMainResource();

  DocumentLoadTiming& timing() { return m_documentLoadTiming; }
  const DocumentLoadTiming& timing() const { return m_documentLoadTiming; }

  ApplicationCacheHost* applicationCacheHost() const {
    return m_applicationCacheHost.get();
  }

  void clearRedirectChain();
  void appendRedirect(const KURL&);

  ContentSecurityPolicy* releaseContentSecurityPolicy() {
    return m_contentSecurityPolicy.release();
  }

  ClientHintsPreferences& clientHintsPreferences() {
    return m_clientHintsPreferences;
  }

  struct InitialScrollState {
    DISALLOW_NEW();
    InitialScrollState()
        : wasScrolledByUser(false), didRestoreFromHistory(false) {}

    bool wasScrolledByUser;
    bool didRestoreFromHistory;
  };
  InitialScrollState& initialScrollState() { return m_initialScrollState; }

  void setWasBlockedAfterCSP() { m_wasBlockedAfterCSP = true; }
  bool wasBlockedAfterCSP() { return m_wasBlockedAfterCSP; }

  void dispatchLinkHeaderPreloads(ViewportDescriptionWrapper*,
                                  LinkLoader::MediaPreloadPolicy);

  Resource* startPreload(Resource::Type, FetchRequest&);

  DECLARE_VIRTUAL_TRACE();

 protected:
  DocumentLoader(LocalFrame*,
                 const ResourceRequest&,
                 const SubstituteData&,
                 ClientRedirectPolicy);

  void didRedirect(const KURL& oldURL, const KURL& newURL);

  Vector<KURL> m_redirectChain;

 private:
  static DocumentWriter* createWriterFor(const DocumentInit&,
                                         const AtomicString& mimeType,
                                         const AtomicString& encoding,
                                         bool dispatchWindowObjectAvailable,
                                         ParserSynchronizationPolicy,
                                         const KURL& overridingURL = KURL());

  void ensureWriter(const AtomicString& mimeType,
                    const KURL& overridingURL = KURL());
  void endWriting();

  // Use these method only where it's guaranteed that |m_frame| hasn't been
  // cleared.
  FrameLoader& frameLoader() const;
  FrameLoaderClient& frameLoaderClient() const;

  void commitIfReady();
  void commitData(const char* bytes, size_t length);
  void clearMainResourceHandle();

  bool maybeCreateArchive();

  void finishedLoading(double finishTime);
  void cancelLoadAfterCSPDenied(const ResourceResponse&);

  // RawResourceClient implementation
  bool redirectReceived(Resource*,
                        const ResourceRequest&,
                        const ResourceResponse&) final;
  void responseReceived(Resource*,
                        const ResourceResponse&,
                        std::unique_ptr<WebDataConsumerHandle>) final;
  void dataReceived(Resource*, const char* data, size_t length) final;

  // ResourceClient implementation
  void notifyFinished(Resource*) final;
  String debugName() const override { return "DocumentLoader"; }

  void processData(const char* data, size_t length);

  bool maybeLoadEmpty();

  bool isRedirectAfterPost(const ResourceRequest&, const ResourceResponse&);

  bool shouldContinueForResponse() const;

  Member<LocalFrame> m_frame;
  Member<ResourceFetcher> m_fetcher;
  std::unique_ptr<WebDocumentSubresourceFilter> m_subresourceFilter;

  Member<RawResource> m_mainResource;

  Member<DocumentWriter> m_writer;

  // A reference to actual request used to create the data source.
  // The only part of this request that should change is the url, and
  // that only in the case of a same-document navigation.
  ResourceRequest m_originalRequest;

  SubstituteData m_substituteData;

  // The 'working' request. It may be mutated
  // several times from the original request to include additional
  // headers, cookie information, canonicalization and redirects.
  ResourceRequest m_request;

  ResourceResponse m_response;

  bool m_isClientRedirect;
  bool m_replacesCurrentHistoryItem;
  bool m_dataReceived;

  NavigationType m_navigationType;

  DocumentLoadTiming m_documentLoadTiming;

  double m_timeOfLastDataReceived;

  Member<ApplicationCacheHost> m_applicationCacheHost;

  Member<ContentSecurityPolicy> m_contentSecurityPolicy;
  ClientHintsPreferences m_clientHintsPreferences;
  InitialScrollState m_initialScrollState;

  bool m_wasBlockedAfterCSP;

  enum State {
    NotStarted,
    Provisional,
    Committed,
    SentDidFinishLoad
  };
  State m_state;

  // Used to protect against reentrancy into dataReceived().
  bool m_inDataReceived;
  RefPtr<SharedBuffer> m_dataBuffer;
};

DECLARE_WEAK_IDENTIFIER_MAP(DocumentLoader);

}  // namespace blink

#endif  // DocumentLoader_h