File: HTMLPreloadScanner.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 (206 lines) | stat: -rw-r--r-- 6,800 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
/*
 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
 * Copyright (C) 2010 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.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 INC. OR
 * 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 HTMLPreloadScanner_h
#define HTMLPreloadScanner_h

#include "core/CoreExport.h"
#include "core/css/MediaValuesCached.h"
#include "core/dom/ViewportDescription.h"
#include "core/html/parser/CSSPreloadScanner.h"
#include "core/html/parser/CompactHTMLToken.h"
#include "core/html/parser/HTMLToken.h"
#include "core/html/parser/PreloadRequest.h"
#include "platform/text/SegmentedString.h"
#include "wtf/PtrUtil.h"
#include "wtf/Vector.h"
#include <memory>

namespace blink {

typedef size_t TokenPreloadScannerCheckpoint;

class HTMLParserOptions;
class HTMLTokenizer;
class SegmentedString;

struct ViewportDescriptionWrapper {
  ViewportDescription description;
  bool set;
  ViewportDescriptionWrapper() : set(false) {}
};

struct CORE_EXPORT CachedDocumentParameters {
  USING_FAST_MALLOC(CachedDocumentParameters);

 public:
  static std::unique_ptr<CachedDocumentParameters> create(Document* document) {
    return WTF::wrapUnique(new CachedDocumentParameters(document));
  }

  static std::unique_ptr<CachedDocumentParameters> create() {
    return WTF::wrapUnique(new CachedDocumentParameters);
  }

  bool doHtmlPreloadScanning;
  bool doDocumentWritePreloadScanning;
  Length defaultViewportMinWidth;
  bool viewportMetaZeroValuesQuirk;
  bool viewportMetaEnabled;
  ReferrerPolicy referrerPolicy;

 private:
  explicit CachedDocumentParameters(Document*);
  CachedDocumentParameters() = default;
};

class TokenPreloadScanner {
  WTF_MAKE_NONCOPYABLE(TokenPreloadScanner);
  USING_FAST_MALLOC(TokenPreloadScanner);

 public:
  TokenPreloadScanner(const KURL& documentURL,
                      std::unique_ptr<CachedDocumentParameters>,
                      const MediaValuesCached::MediaValuesCachedData&);
  ~TokenPreloadScanner();

  void scan(const HTMLToken&,
            const SegmentedString&,
            PreloadRequestStream& requests,
            ViewportDescriptionWrapper*,
            bool* isCSPMetaTag);
  void scan(const CompactHTMLToken&,
            const SegmentedString&,
            PreloadRequestStream& requests,
            ViewportDescriptionWrapper*,
            bool* isCSPMetaTag,
            bool* likelyDocumentWriteScript);

  void setPredictedBaseElementURL(const KURL& url) {
    m_predictedBaseElementURL = url;
  }

  // A TokenPreloadScannerCheckpoint is valid until the next call to rewindTo,
  // at which point all outstanding checkpoints are invalidated.
  TokenPreloadScannerCheckpoint createCheckpoint();
  void rewindTo(TokenPreloadScannerCheckpoint);

 private:
  class StartTagScanner;

  bool shouldEvaluateForDocumentWrite(const String& source);
  bool shouldEvaluateForDocumentWrite(const HTMLToken::DataVector& source) {
    return false;
  }

  template <typename Token>
  inline void scanCommon(const Token&,
                         const SegmentedString&,
                         PreloadRequestStream& requests,
                         ViewportDescriptionWrapper*,
                         bool* isCSPMetaTag,
                         bool* likelyDocumentWriteScript);

  template <typename Token>
  void updatePredictedBaseURL(const Token&);

  struct Checkpoint {
    Checkpoint(const KURL& predictedBaseElementURL,
               bool inStyle,
               bool inScript,
               size_t templateCount)
        : predictedBaseElementURL(predictedBaseElementURL),
          inStyle(inStyle),
          inScript(inScript),
          templateCount(templateCount) {}

    KURL predictedBaseElementURL;
    bool inStyle;
    bool inScript;
    size_t templateCount;
  };

  struct PictureData {
    PictureData() : sourceSize(0.0), sourceSizeSet(false), picked(false) {}
    String sourceURL;
    float sourceSize;
    bool sourceSizeSet;
    bool picked;
  };

  CSSPreloadScanner m_cssScanner;
  const KURL m_documentURL;
  KURL m_predictedBaseElementURL;
  bool m_inStyle;
  bool m_inPicture;
  bool m_inScript;
  PictureData m_pictureData;
  size_t m_templateCount;
  std::unique_ptr<CachedDocumentParameters> m_documentParameters;
  Persistent<MediaValuesCached> m_mediaValues;
  ClientHintsPreferences m_clientHintsPreferences;

  bool m_didRewind = false;

  Vector<Checkpoint> m_checkpoints;
};

class CORE_EXPORT HTMLPreloadScanner {
  WTF_MAKE_NONCOPYABLE(HTMLPreloadScanner);
  USING_FAST_MALLOC(HTMLPreloadScanner);

 public:
  static std::unique_ptr<HTMLPreloadScanner> create(
      const HTMLParserOptions& options,
      const KURL& documentURL,
      std::unique_ptr<CachedDocumentParameters> documentParameters,
      const MediaValuesCached::MediaValuesCachedData& mediaValuesCachedData) {
    return WTF::wrapUnique(new HTMLPreloadScanner(options, documentURL,
                                                  std::move(documentParameters),
                                                  mediaValuesCachedData));
  }

  ~HTMLPreloadScanner();

  void appendToEnd(const SegmentedString&);
  PreloadRequestStream scan(const KURL& documentBaseElementURL,
                            ViewportDescriptionWrapper*);

 private:
  HTMLPreloadScanner(const HTMLParserOptions&,
                     const KURL& documentURL,
                     std::unique_ptr<CachedDocumentParameters>,
                     const MediaValuesCached::MediaValuesCachedData&);

  TokenPreloadScanner m_scanner;
  SegmentedString m_source;
  HTMLToken m_token;
  std::unique_ptr<HTMLTokenizer> m_tokenizer;
};

}  // namespace blink

#endif