blob: 1c4c1dd04fcf1064ed81346b3d9a9b2cef42859a [file] [log] [blame]
[email protected]691aa2f2013-05-28 22:52:041// Copyright (c) 2013 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#include "content/public/renderer/history_item_serialization.h"
6
[email protected]1a852ab2013-06-25 03:10:247#include "content/common/page_state_serialization.h"
[email protected]691aa2f2013-05-28 22:52:048#include "content/public/common/page_state.h"
[email protected]1a852ab2013-06-25 03:10:249#include "third_party/WebKit/public/platform/WebHTTPBody.h"
10#include "third_party/WebKit/public/platform/WebPoint.h"
11#include "third_party/WebKit/public/platform/WebString.h"
12#include "third_party/WebKit/public/platform/WebVector.h"
13#include "third_party/WebKit/public/web/WebHistoryItem.h"
14#include "third_party/WebKit/public/web/WebSerializedScriptValue.h"
15
[email protected]180ef242013-11-07 06:50:4616using blink::WebHTTPBody;
17using blink::WebHistoryItem;
18using blink::WebSerializedScriptValue;
19using blink::WebString;
20using blink::WebVector;
[email protected]691aa2f2013-05-28 22:52:0421
22namespace content {
[email protected]1a852ab2013-06-25 03:10:2423namespace {
[email protected]691aa2f2013-05-28 22:52:0424
[email protected]1a852ab2013-06-25 03:10:2425void ToNullableString16Vector(const WebVector<WebString>& input,
26 std::vector<base::NullableString16>* output) {
27 output->reserve(input.size());
28 for (size_t i = 0; i < input.size(); ++i)
29 output->push_back(input[i]);
[email protected]691aa2f2013-05-28 22:52:0430}
31
[email protected]1a852ab2013-06-25 03:10:2432void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input,
33 ExplodedHttpBodyElement* output) {
34 switch (input.type) {
35 case WebHTTPBody::Element::TypeData:
36 output->data.assign(input.data.data(), input.data.size());
37 break;
38 case WebHTTPBody::Element::TypeFile:
39 output->file_path = input.filePath;
40 output->file_start = input.fileStart;
41 output->file_length = input.fileLength;
42 output->file_modification_time = input.modificationTime;
43 break;
[email protected]05ffe5c2013-09-10 18:29:3444 case WebHTTPBody::Element::TypeFileSystemURL:
[email protected]2d681912013-09-24 04:59:5545 output->filesystem_url = input.fileSystemURL;
[email protected]1a852ab2013-06-25 03:10:2446 output->file_start = input.fileStart;
47 output->file_length = input.fileLength;
48 output->file_modification_time = input.modificationTime;
49 break;
50 case WebHTTPBody::Element::TypeBlob:
[email protected]2d681912013-09-24 04:59:5551 output->blob_uuid = input.blobUUID.utf8();
[email protected]1a852ab2013-06-25 03:10:2452 break;
53 }
54}
55
56void AppendHTTPBodyElement(const ExplodedHttpBodyElement& element,
57 WebHTTPBody* http_body) {
58 switch (element.type) {
59 case WebHTTPBody::Element::TypeData:
60 http_body->appendData(element.data);
61 break;
62 case WebHTTPBody::Element::TypeFile:
63 http_body->appendFileRange(
64 element.file_path,
65 element.file_start,
66 element.file_length,
67 element.file_modification_time);
68 break;
[email protected]05ffe5c2013-09-10 18:29:3469 case WebHTTPBody::Element::TypeFileSystemURL:
[email protected]2d681912013-09-24 04:59:5570 http_body->appendFileSystemURLRange(
[email protected]84388892013-09-07 04:20:1871 element.filesystem_url,
[email protected]1a852ab2013-06-25 03:10:2472 element.file_start,
73 element.file_length,
74 element.file_modification_time);
75 break;
76 case WebHTTPBody::Element::TypeBlob:
[email protected]2d681912013-09-24 04:59:5577 http_body->appendBlob(WebString::fromUTF8(element.blob_uuid));
[email protected]1a852ab2013-06-25 03:10:2478 break;
79 }
80}
81
82bool RecursivelyGenerateFrameState(const WebHistoryItem& item,
83 ExplodedFrameState* state) {
84 state->url_string = item.urlString();
85 state->original_url_string = item.originalURLString();
86 state->referrer = item.referrer();
[email protected]bd2979f2014-01-30 13:30:0487 state->referrer_policy = item.referrerPolicy();
[email protected]1a852ab2013-06-25 03:10:2488 state->target = item.target();
[email protected]1a852ab2013-06-25 03:10:2489 if (!item.stateObject().isNull())
90 state->state_object = item.stateObject().toString();
91 state->scroll_offset = item.scrollOffset();
92 state->item_sequence_number = item.itemSequenceNumber();
93 state->document_sequence_number =
94 item.documentSequenceNumber();
[email protected]804c8a5d2013-11-05 01:03:5695 state->target_frame_id = item.targetFrameID();
[email protected]1a852ab2013-06-25 03:10:2496 state->page_scale_factor = item.pageScaleFactor();
[email protected]1a852ab2013-06-25 03:10:2497 ToNullableString16Vector(item.documentState(), &state->document_state);
98
99 state->http_body.http_content_type = item.httpContentType();
100 const WebHTTPBody& http_body = item.httpBody();
101 if (!(state->http_body.is_null = http_body.isNull())) {
102 state->http_body.identifier = http_body.identifier();
103 state->http_body.elements.resize(http_body.elementCount());
104 for (size_t i = 0; i < http_body.elementCount(); ++i) {
105 WebHTTPBody::Element element;
106 http_body.elementAt(i, element);
107 ToExplodedHttpBodyElement(element, &state->http_body.elements[i]);
108 }
109 state->http_body.contains_passwords = http_body.containsPasswordData();
110 }
111
112 const WebVector<WebHistoryItem>& children = item.children();
113 state->children.resize(children.size());
114 for (size_t i = 0; i < children.size(); ++i) {
115 if (!RecursivelyGenerateFrameState(children[i], &state->children[i]))
116 return false;
117 }
118
119 return true;
120}
121
122bool RecursivelyGenerateHistoryItem(const ExplodedFrameState& state,
123 WebHistoryItem* item) {
124 item->setURLString(state.url_string);
125 item->setOriginalURLString(state.original_url_string);
[email protected]bd2979f2014-01-30 13:30:04126 item->setReferrer(state.referrer, state.referrer_policy);
[email protected]1a852ab2013-06-25 03:10:24127 item->setTarget(state.target);
[email protected]1a852ab2013-06-25 03:10:24128 if (!state.state_object.is_null()) {
129 item->setStateObject(
130 WebSerializedScriptValue::fromString(state.state_object));
131 }
132 item->setDocumentState(state.document_state);
133 item->setScrollOffset(state.scroll_offset);
[email protected]1a852ab2013-06-25 03:10:24134 item->setPageScaleFactor(state.page_scale_factor);
[email protected]1a852ab2013-06-25 03:10:24135
136 // These values are generated at WebHistoryItem construction time, and we
137 // only want to override those new values with old values if the old values
138 // are defined. A value of 0 means undefined in this context.
139 if (state.item_sequence_number)
140 item->setItemSequenceNumber(state.item_sequence_number);
141 if (state.document_sequence_number)
142 item->setDocumentSequenceNumber(state.document_sequence_number);
143
[email protected]804c8a5d2013-11-05 01:03:56144 item->setTargetFrameID(state.target_frame_id);
145
[email protected]1a852ab2013-06-25 03:10:24146 item->setHTTPContentType(state.http_body.http_content_type);
147 if (!state.http_body.is_null) {
148 WebHTTPBody http_body;
149 http_body.initialize();
150 http_body.setIdentifier(state.http_body.identifier);
151 for (size_t i = 0; i < state.http_body.elements.size(); ++i)
152 AppendHTTPBodyElement(state.http_body.elements[i], &http_body);
153 item->setHTTPBody(http_body);
154 }
155
156 for (size_t i = 0; i < state.children.size(); ++i) {
157 WebHistoryItem child_item;
158 child_item.initialize();
159 if (!RecursivelyGenerateHistoryItem(state.children[i], &child_item))
160 return false;
161 item->appendToChildren(child_item);
162 }
163
164 return true;
165}
166
167} // namespace
168
169PageState HistoryItemToPageState(const WebHistoryItem& item) {
170 ExplodedPageState state;
171 ToNullableString16Vector(item.getReferencedFilePaths(),
172 &state.referenced_files);
173
174 if (!RecursivelyGenerateFrameState(item, &state.top))
175 return PageState();
176
177 std::string encoded_data;
178 if (!EncodePageState(state, &encoded_data))
179 return PageState();
180
181 return PageState::CreateFromEncodedData(encoded_data);
182}
183
184WebHistoryItem PageStateToHistoryItem(const PageState& page_state) {
185 ExplodedPageState state;
186 if (!DecodePageState(page_state.ToEncodedData(), &state))
187 return WebHistoryItem();
188
189 WebHistoryItem item;
190 item.initialize();
191 if (!RecursivelyGenerateHistoryItem(state.top, &item))
192 return WebHistoryItem();
193
194 return item;
[email protected]691aa2f2013-05-28 22:52:04195}
196
197} // namespace content