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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
|
/*
* Copyright (C) 2009, 2010, 2011, 2012 Research In Motion Limited. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#include "FrameLoaderClientBlackBerry.h"
#include "AboutData.h"
#include "AutofillManager.h"
#include "BackForwardController.h"
#include "BackingStoreClient.h"
#include "BackingStore_p.h"
#include "BlobStream.h"
#include "CredentialManager.h"
#include "CredentialTransformData.h"
#include "DumpRenderTreeClient.h"
#include "FrameLoadRequest.h"
#include "FrameNetworkingContextBlackBerry.h"
#include "FrameView.h"
#include "HTMLHeadElement.h"
#include "HTMLLinkElement.h"
#include "HTMLMediaElement.h"
#include "HTMLMetaElement.h"
#include "HTMLNames.h"
#include "HTMLPlugInElement.h"
#include "HTTPParsers.h"
#include "HistoryController.h"
#include "HistoryItem.h"
#include "IconDatabase.h"
#include "Image.h"
#include "InputHandler.h"
#include "MIMETypeRegistry.h"
#include "NetworkManager.h"
#include "NodeList.h"
#include "PNGImageEncoder.h"
#include "Page.h"
#include "PluginDatabase.h"
#include "PluginView.h"
#include "ProgressTracker.h"
#include "ResourceBuffer.h"
#include "ScopePointer.h"
#include "SelectionHandler.h"
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
#include "Settings.h"
#endif
#include "SharedBuffer.h"
#include "TextEncoding.h"
#include "TouchEventHandler.h"
#include "WebPageClient.h"
#include <BlackBerryPlatformExecutableMessage.h>
#include <BlackBerryPlatformLog.h>
#include <BlackBerryPlatformMessageClient.h>
#include <BlackBerryPlatformScreen.h>
#include <BlackBerryPlatformStringBuilder.h>
#include <JavaScriptCore/APICast.h>
#include <TiledImage.h>
#include <network/DataStream.h>
#include <network/FilterStream.h>
#include <network/NetworkRequest.h>
#include <wtf/text/Base64.h>
using WTF::String;
using namespace WebCore;
using namespace BlackBerry::WebKit;
using BlackBerry::Platform::NetworkRequest;
// This was copied from file "WebKit/Source/WebKit/mac/Misc/WebKitErrors.h".
enum {
WebKitErrorCannotShowMIMEType = 100,
WebKitErrorCannotShowURL = 101,
WebKitErrorFrameLoadInterruptedByPolicyChange = 102,
WebKitErrorCannotUseRestrictedPort = 103,
WebKitErrorCannotFindPlugIn = 200,
WebKitErrorCannotLoadPlugIn = 201,
WebKitErrorJavaUnavailable = 202,
WebKitErrorPluginWillHandleLoad = 203
};
namespace WebCore {
FrameLoaderClientBlackBerry::FrameLoaderClientBlackBerry()
: m_frame(0)
, m_webPagePrivate(0)
, m_sentReadyToRender(false)
, m_pendingFragmentScrollPolicyFunction(0)
, m_loadingErrorPage(false)
, m_clientRedirectIsPending(false)
, m_childFrameCreationSuppressed(false)
, m_pluginView(0)
, m_hasSentResponseToPlugin(false)
, m_cancelLoadOnNextData(false)
, m_wasProvisionalLoadTriggeredByUserGesture(true) // To avoid affecting the first load.
{
}
FrameLoaderClientBlackBerry::~FrameLoaderClientBlackBerry()
{
}
int FrameLoaderClientBlackBerry::playerId() const
{
return m_webPagePrivate ? m_webPagePrivate->playerID() : 0;
}
bool FrameLoaderClientBlackBerry::cookiesEnabled() const
{
return m_webPagePrivate->m_webSettings->areCookiesEnabled();
}
void FrameLoaderClientBlackBerry::dispatchDidChangeLocationWithinPage()
{
if (!isMainFrame())
return;
String url = m_frame->document()->url().string();
String token = m_frame->loader()->documentLoader()->request().token();
m_webPagePrivate->m_client->notifyLoadToAnchor(url.characters(), url.length(), token.characters(), token.length());
}
void FrameLoaderClientBlackBerry::dispatchDidPushStateWithinPage()
{
// FIXME: As a workaround we abuse anchor navigation to achieve history push. See PR #119779 for more details.
dispatchDidChangeLocationWithinPage();
}
void FrameLoaderClientBlackBerry::dispatchDidReplaceStateWithinPage()
{
// FIXME: As a workaround we abuse anchor navigation to achieve history replace. See PR #119779 for more details.
dispatchDidChangeLocationWithinPage();
}
void FrameLoaderClientBlackBerry::dispatchDidPopStateWithinPage()
{
// Not needed.
}
void FrameLoaderClientBlackBerry::dispatchDidCancelClientRedirect()
{
m_clientRedirectIsPending = false;
}
void FrameLoaderClientBlackBerry::dispatchWillPerformClientRedirect(const KURL&, double, double)
{
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didDispatchWillPerformClientRedirect();
m_clientRedirectIsPending = true;
}
void FrameLoaderClientBlackBerry::dispatchDecidePolicyForResponse(FramePolicyFunction function, const ResourceResponse& response, const ResourceRequest& request)
{
// FIXME: What should we do for HTTP status code 204 and 205 and "application/zip"?
PolicyAction policy = PolicyIgnore;
if (contentDispositionType(response.httpHeaderField("Content-Disposition")) == ContentDispositionAttachment
|| request.forceDownload())
policy = PolicyDownload;
else if (canShowMIMEType(response.mimeType()))
policy = PolicyUse;
else if (ResourceRequest::TargetIsMainFrame == request.targetType() && m_webPagePrivate->m_client->downloadAllowed(request.url().string()))
policy = PolicyDownload;
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didDecidePolicyForResponse(response);
(m_frame->loader()->policyChecker()->*function)(policy);
}
void FrameLoaderClientBlackBerry::dispatchDecidePolicyForNavigationAction(FramePolicyFunction function, const NavigationAction& action, const ResourceRequest& request, PassRefPtr<FormState>)
{
PolicyAction decision = PolicyIgnore;
const KURL& url = request.url();
if (!url.isNull()) {
// Fragment scrolls on the same page should always be handled internally.
// (Only count as a fragment scroll if we are scrolling to a #fragment url, not back to the top, and reloading
// the same url is not a fragment scroll even if it has a #fragment.)
const KURL& currentUrl = m_frame->document()->url();
bool isFragmentScroll = url.hasFragmentIdentifier() && url != currentUrl && equalIgnoringFragmentIdentifier(currentUrl, url);
decision = decidePolicyForExternalLoad(request, isFragmentScroll);
// Let the client have a chance to say whether this navigation should be ignored or not.
NetworkRequest platformRequest;
request.initializePlatformRequest(platformRequest, cookiesEnabled());
if (!platformRequest.getUrlRef().empty()) { // Some invalid URLs will result in empty URL in platformRequest
if (platformRequest.getTargetType() == NetworkRequest::TargetIsUnknown)
platformRequest.setTargetType(isMainFrame() ? NetworkRequest::TargetIsMainFrame : NetworkRequest::TargetIsSubframe);
if (!m_webPagePrivate->m_client->acceptNavigationRequest(platformRequest, BlackBerry::Platform::NavigationType(action.type()))) {
decision = PolicyIgnore;
if (isMainFrame()) {
if (action.type() == NavigationTypeFormSubmitted || action.type() == NavigationTypeFormResubmitted)
m_frame->loader()->resetMultipleFormSubmissionProtection();
if (action.type() == NavigationTypeLinkClicked && url.hasFragmentIdentifier()) {
ResourceRequest emptyRequest;
m_frame->loader()->activeDocumentLoader()->setLastCheckedRequest(emptyRequest);
}
}
}
}
}
// If we abort here, dispatchDidCancelClientRedirect will not be called.
// So call it by hand.
if (decision == PolicyIgnore)
dispatchDidCancelClientRedirect();
if (m_webPagePrivate->m_dumpRenderTree) {
m_webPagePrivate->m_dumpRenderTree->didDecidePolicyForNavigationAction(action, request, m_frame);
if (m_webPagePrivate->m_dumpRenderTree->policyDelegateEnabled())
decision = m_webPagePrivate->m_dumpRenderTree->policyDelegateIsPermissive() ? PolicyUse : PolicyIgnore;
}
(m_frame->loader()->policyChecker()->*function)(decision);
}
void FrameLoaderClientBlackBerry::delayPolicyCheckUntilFragmentExists(const String& fragment, FramePolicyFunction function)
{
ASSERT(isMainFrame());
if (m_webPagePrivate->loadState() < WebPagePrivate::Finished && !m_frame->document()->findAnchor(fragment)) {
// Tell the client we need more data, in case the fragment exists but is being held back.
m_webPagePrivate->m_client->needMoreData();
m_pendingFragmentScrollPolicyFunction = function;
m_pendingFragmentScroll = fragment;
return;
}
(m_frame->loader()->policyChecker()->*function)(PolicyUse);
}
void FrameLoaderClientBlackBerry::cancelPolicyCheck()
{
m_pendingFragmentScrollPolicyFunction = 0;
m_pendingFragmentScroll = String();
}
void FrameLoaderClientBlackBerry::doPendingFragmentScroll()
{
if (m_pendingFragmentScroll.isNull())
return;
// Make sure to clear the pending members first to avoid recursion.
String fragment = m_pendingFragmentScroll;
m_pendingFragmentScroll = String();
FramePolicyFunction function = m_pendingFragmentScrollPolicyFunction;
m_pendingFragmentScrollPolicyFunction = 0;
delayPolicyCheckUntilFragmentExists(fragment, function);
}
void FrameLoaderClientBlackBerry::dispatchDecidePolicyForNewWindowAction(FramePolicyFunction function, const NavigationAction&, const ResourceRequest& request, PassRefPtr<FormState>, const String&)
{
if (ScriptController::processingUserGesture() && !m_webPagePrivate->m_pluginMayOpenNewTab) {
(m_frame->loader()->policyChecker()->*function)(PolicyIgnore);
return;
}
// A new window can never be a fragment scroll.
PolicyAction decision = decidePolicyForExternalLoad(request, false);
(m_frame->loader()->policyChecker()->*function)(decision);
}
void FrameLoaderClientBlackBerry::committedLoad(DocumentLoader* loader, const char* data, int length)
{
// The structure of this code may seem...a bit odd. It's structured with two checks on the state
// of m_pluginView because it's actually receivedData that may cause the request to re-direct data
// to a PluginView. This is because receivedData may decide to create a PluginDocument containing
// a PluginView. The PluginView will request that the main resource for the frame be redirected
// to the PluginView. So after receivedData has been called, this code needs to check whether
// re-direction to a PluginView has been requested and pass the same data on to the PluginView.
// Thereafter, all data will be re-directed to the PluginView; i.e., no additional data will go
// to receivedData.
if (!m_pluginView)
receivedData(loader, data, length);
if (m_pluginView) {
if (!m_hasSentResponseToPlugin) {
m_pluginView->didReceiveResponse(loader->response());
m_hasSentResponseToPlugin = true;
}
if (!m_pluginView)
return;
m_pluginView->didReceiveData(data, length);
}
}
bool FrameLoaderClientBlackBerry::shouldAlwaysUsePluginDocument(const String& mimeType) const
{
return mimeType == "application/x-shockwave-flash";
}
PassRefPtr<Widget> FrameLoaderClientBlackBerry::createPlugin(const IntSize& pluginSize,
HTMLPlugInElement* element, const KURL& url, const Vector<String>& paramNames,
const Vector<String>& paramValues, const String& mimeTypeIn, bool loadManually)
{
String mimeType(mimeTypeIn);
if (mimeType.isEmpty()) {
mimeType = MIMETypeRegistry::getMIMETypeForPath(url.path());
mimeType = MIMETypeRegistry::getNormalizedMIMEType(mimeType);
if (!shouldAlwaysUsePluginDocument(mimeType))
mimeType = mimeTypeIn;
}
if (PluginDatabase::installedPlugins()->isMIMETypeRegistered(mimeType))
return PluginView::create(m_frame, pluginSize, element, url, paramNames, paramValues, mimeType, loadManually);
// This is not a plugin type that is currently supported or enabled. Try
// to load the url directly. This check is performed to allow video and
// audio to be referenced as the source of embed or object elements.
// For media of this kind the mime type passed into this function
// will generally be a valid media mime type, or it may be null. We
// explicitly check for Flash content so it does not get rendered as
// text at this point, producing garbled characters.
if (!shouldAlwaysUsePluginDocument(mimeType) && m_frame->loader() && m_frame->loader()->subframeLoader() && !url.isNull())
m_frame->loader()->subframeLoader()->requestFrame(element, url, String());
return 0;
}
void FrameLoaderClientBlackBerry::redirectDataToPlugin(Widget* pluginWidget)
{
m_pluginView = toPluginView(pluginWidget);
if (pluginWidget)
m_hasSentResponseToPlugin = false;
}
void FrameLoaderClientBlackBerry::receivedData(DocumentLoader* loader, const char* data, int length)
{
if (!m_frame)
return;
if (m_cancelLoadOnNextData) {
m_frame->loader()->activeDocumentLoader()->stopLoading();
m_frame->loader()->documentLoader()->writer()->end();
m_cancelLoadOnNextData = false;
return;
}
// The encoder now checks the override encoding and sets everything on our behalf.
loader->commitData(data, length);
}
void FrameLoaderClientBlackBerry::finishedLoading(DocumentLoader*)
{
if (m_pluginView) {
if (m_hasSentResponseToPlugin)
m_pluginView->didFinishLoading();
m_pluginView = 0;
m_hasSentResponseToPlugin = false;
}
}
PassRefPtr<DocumentLoader> FrameLoaderClientBlackBerry::createDocumentLoader(const ResourceRequest& request, const SubstituteData& substituteData)
{
// Make a copy of the request with the token from the original request for this frame
// (unless it already has a token, in which case the request came from the client).
ResourceRequest newRequest(request);
if (m_frame && m_frame->loader() && m_frame->loader()->documentLoader()) {
const ResourceRequest& originalRequest = m_frame->loader()->documentLoader()->originalRequest();
if (request.token().isNull() && !originalRequest.token().isNull())
newRequest.setToken(originalRequest.token());
}
SubstituteData substituteDataLocal = substituteData;
if (isMainFrame()) {
String source;
if (request.url().protocolIs("about")) {
// The first 6 letters is "about:"
String aboutWhat = request.url().string().substring(6);
source = aboutData(aboutWhat);
}
if (!source.isEmpty()) {
// Always ignore existing substitute data if any.
WTF::RefPtr<SharedBuffer> buffer = SharedBuffer::create(source.is8Bit() ? reinterpret_cast<const char*>(source.characters8()) : source.latin1().data(), source.length());
substituteDataLocal = SubstituteData(buffer, "text/html", "latin1", KURL());
}
}
// FIXME: This should probably be shared.
RefPtr<DocumentLoader> loader = DocumentLoader::create(newRequest, substituteDataLocal);
if (substituteDataLocal.isValid())
loader->setDeferMainResourceDataLoad(false);
return loader.release();
}
void FrameLoaderClientBlackBerry::frameLoaderDestroyed()
{
delete this;
}
void FrameLoaderClientBlackBerry::transitionToCommittedForNewPage()
{
m_cancelLoadOnNextData = false;
// In Frame::createView, Frame's FrameView object is set to 0 and recreated.
// This operation is not atomic, and an attempt to blit contents might happen
// in the backing store from another thread (see BackingStorePrivate::blitVisibleContents method),
// so we suspend and resume screen update to make sure we do not get a invalid FrameView
// state.
if (isMainFrame() && m_webPagePrivate->backingStoreClient()) {
// FIXME: Do we really need to suspend/resume both backingstore and screen here?
m_webPagePrivate->backingStoreClient()->backingStore()->d->suspendBackingStoreUpdates();
m_webPagePrivate->backingStoreClient()->backingStore()->d->suspendScreenUpdates();
}
// We are navigating away from this document, so clean up any footprint we might have.
if (m_frame->document())
m_webPagePrivate->clearDocumentData(m_frame->document());
Color backgroundColor(m_webPagePrivate->m_webSettings->backgroundColor());
m_frame->createView(m_webPagePrivate->viewportSize(), /* viewport */
backgroundColor, /* background color */
backgroundColor.hasAlpha(), /* is transparent */
m_webPagePrivate->actualVisibleSize(), /* fixed reported size */
m_webPagePrivate->fixedLayoutSize(), /* fixed layout size */
IntRect(), /* fixed visible content rect */
m_webPagePrivate->useFixedLayout(), /* use fixed layout */
ScrollbarAlwaysOff, /* hor mode */
true, /* lock the mode */
ScrollbarAlwaysOff, /* ver mode */
true); /* lock the mode */
if (isMainFrame() && m_webPagePrivate->backingStoreClient()) {
// FIXME: Do we really need to suspend/resume both backingstore and screen here?
m_webPagePrivate->backingStoreClient()->backingStore()->d->resumeBackingStoreUpdates();
m_webPagePrivate->backingStoreClient()->backingStore()->d->resumeScreenUpdates(BackingStore::None);
}
m_frame->view()->updateCanHaveScrollbars();
if (isMainFrame()) {
// Since the mainframe has a tiled backingstore request to receive all update
// rects instead of the default which just sends update rects for currently
// visible viewport.
m_frame->view()->setPaintsEntireContents(true);
}
}
String FrameLoaderClientBlackBerry::userAgent(const KURL&)
{
return m_webPagePrivate->m_webSettings->userAgentString();
}
bool FrameLoaderClientBlackBerry::canHandleRequest(const ResourceRequest&) const
{
// FIXME: Stub.
return true;
}
bool FrameLoaderClientBlackBerry::canShowMIMEType(const String& mimeTypeIn) const
{
// Get normalized type.
String mimeType = MIMETypeRegistry::getNormalizedMIMEType(mimeTypeIn);
// FIXME: Seems no other port checks empty MIME type in this function. Should we do that?
return MIMETypeRegistry::canShowMIMEType(mimeType)
|| WebSettings::isSupportedObjectMIMEType(mimeType)
|| (mimeType == "application/x-shockwave-flash");
}
bool FrameLoaderClientBlackBerry::canShowMIMETypeAsHTML(const String&) const
{
// FIXME: Stub.
return true;
}
bool FrameLoaderClientBlackBerry::isMainFrame() const
{
return m_webPagePrivate && m_frame == m_webPagePrivate->m_mainFrame;
}
void FrameLoaderClientBlackBerry::dispatchDidStartProvisionalLoad()
{
if (isMainFrame())
m_webPagePrivate->setLoadState(WebPagePrivate::Provisional);
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didStartProvisionalLoadForFrame(m_frame);
m_wasProvisionalLoadTriggeredByUserGesture = ScriptController::processingUserGesture();
}
void FrameLoaderClientBlackBerry::dispatchDidReceiveResponse(DocumentLoader*, unsigned long, const ResourceResponse& response)
{
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didReceiveResponseForFrame(m_frame, response);
}
void FrameLoaderClientBlackBerry::dispatchDidReceiveTitle(const StringWithDirection& title)
{
if (isMainFrame())
m_webPagePrivate->m_client->setPageTitle(title.string().characters(), title.string().length());
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didReceiveTitleForFrame(title.string(), m_frame);
}
void FrameLoaderClientBlackBerry::setTitle(const StringWithDirection& /*title*/, const KURL& /*url*/)
{
// Used by Apple WebKit to update the title of an existing history item.
// QtWebKit doesn't accomodate this on history items. If it ever does,
// it should be privateBrowsing-aware. For now, we are just passing
// globalhistory layout tests.
// FIXME: Use direction of title.
notImplemented();
}
void FrameLoaderClientBlackBerry::dispatchDidCommitLoad()
{
// FIXME: Do we need to find a replacement for m_frame->document()->setExtraLayoutDelay(250);?
if (isMainFrame()) {
m_webPagePrivate->setLoadState(WebPagePrivate::Committed);
String originalUrl = m_frame->loader()->documentLoader()->originalRequest().url().string();
String url = m_frame->loader()->documentLoader()->request().url().string();
String token = m_frame->loader()->documentLoader()->request().token();
// Notify the client that the load succeeded or failed (if it failed, this
// is actually committing the error page, which was set through
// SubstituteData in dispatchDidFailProvisionalLoad).
if (m_loadingErrorPage) {
m_loadingErrorPage = false;
if (HistoryItem* item = m_frame->loader()->history()->currentItem())
item->viewState().shouldSaveViewState = false;
m_webPagePrivate->m_client->notifyLoadFailedBeforeCommit(
originalUrl.characters(), originalUrl.length(),
url.characters(), url.length(), token.characters(), token.length());
} else {
m_webPagePrivate->m_client->notifyLoadCommitted(
originalUrl.characters(), originalUrl.length(),
url.characters(), url.length(), token.characters(), token.length());
HistoryItem* currentItem = m_frame->loader()->history()->currentItem();
if (currentItem && currentItem->isInPageCache())
dispatchDidReceiveIcon();
}
}
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didCommitLoadForFrame(m_frame);
}
void FrameLoaderClientBlackBerry::dispatchDidHandleOnloadEvents()
{
// Onload event handler may have detached the frame from the page.
if (!m_frame->page())
return;
m_webPagePrivate->m_client->notifyDocumentOnLoad(isMainFrame());
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didHandleOnloadEventsForFrame(m_frame);
}
void FrameLoaderClientBlackBerry::dispatchDidFinishLoad()
{
didFinishOrFailLoading(ResourceError());
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didFinishLoadForFrame(m_frame);
if (!isMainFrame() || m_webPagePrivate->m_webSettings->isEmailMode()
|| !m_frame->document() || !m_frame->document()->head())
return;
HTMLHeadElement* headElement = m_frame->document()->head();
// FIXME: Handle NOSCRIPT special case?
// Process document metadata.
RefPtr<NodeList> nodeList = headElement->getElementsByTagName(HTMLNames::metaTag.localName());
unsigned size = nodeList->length();
ScopeArray<BlackBerry::Platform::String> headers;
// This may allocate more space than needed since not all meta elements will be http-equiv.
headers.reset(new BlackBerry::Platform::String[2 * size]);
unsigned headersLength = 0;
for (unsigned i = 0; i < size; ++i) {
HTMLMetaElement* metaElement = static_cast<HTMLMetaElement*>(nodeList->item(i));
if (WTF::equalIgnoringCase(metaElement->name(), "apple-mobile-web-app-capable")
&& WTF::equalIgnoringCase(metaElement->content().stripWhiteSpace(), "yes"))
m_webPagePrivate->m_client->setWebAppCapable();
else {
String httpEquiv = metaElement->httpEquiv().stripWhiteSpace();
String content = metaElement->content().stripWhiteSpace();
if (!httpEquiv.isNull() && !content.isNull()) {
headers[headersLength++] = httpEquiv;
headers[headersLength++] = content;
}
}
}
if (headersLength > 0)
m_webPagePrivate->m_client->setMetaHeaders(headers, headersLength);
nodeList = headElement->getElementsByTagName(HTMLNames::linkTag.localName());
size = nodeList->length();
for (unsigned i = 0; i < size; ++i) {
HTMLLinkElement* linkElement = static_cast<HTMLLinkElement*>(nodeList->item(i));
String href = linkElement->href().string();
if (!href.isEmpty()) {
String title = linkElement->title();
if (WTF::equalIgnoringCase(linkElement->rel(), "apple-touch-icon"))
m_webPagePrivate->m_client->setLargeIcon(href);
else if (WTF::equalIgnoringCase(linkElement->rel(), "search")) {
if (WTF::equalIgnoringCase(linkElement->type(), "application/opensearchdescription+xml"))
m_webPagePrivate->m_client->setSearchProviderDetails(title, href);
} else if (WTF::equalIgnoringCase(linkElement->rel(), "alternate")
&& (WTF::equalIgnoringCase(linkElement->type(), "application/rss+xml")
|| WTF::equalIgnoringCase(linkElement->type(), "application/atom+xml")))
m_webPagePrivate->m_client->setAlternateFeedDetails(title, href);
}
}
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
if (m_webPagePrivate->m_webSettings->isFormAutofillEnabled()
&& m_webPagePrivate->m_webSettings->isCredentialAutofillEnabled()
&& !m_webPagePrivate->m_webSettings->isPrivateBrowsingEnabled())
credentialManager().autofillPasswordForms(m_frame->document()->forms());
#endif
m_webPagePrivate->m_inputHandler->focusedNodeChanged();
}
void FrameLoaderClientBlackBerry::dispatchDidFinishDocumentLoad()
{
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didFinishDocumentLoadForFrame(m_frame);
notImplemented();
}
void FrameLoaderClientBlackBerry::dispatchDidFailLoad(const ResourceError& error)
{
didFinishOrFailLoading(error);
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didFailLoadForFrame(m_frame);
}
void FrameLoaderClientBlackBerry::didFinishOrFailLoading(const ResourceError& error)
{
// FIXME: Do we need to find a replacement for m_frame->document()->setExtraLayoutDelay(0);?
// If we have finished loading a page through history navigation, any
// attempt to go back to that page through an automatic redirect should be
// denied to avoid redirect loops. So save the history navigation urls to
// check later. (If this was not a history navigation,
// m_historyNavigationSourceURLs will be empty, and we should save that
// too.)
m_redirectURLsToSkipDueToHistoryNavigation.swap(m_historyNavigationSourceURLs);
// History navigation is finished so clear the history navigation url.
m_historyNavigationSourceURLs.clear();
if (isMainFrame()) {
m_loadError = error;
m_webPagePrivate->setLoadState(error.isNull() ? WebPagePrivate::Finished : WebPagePrivate::Failed);
}
}
void FrameLoaderClientBlackBerry::dispatchDidFailProvisionalLoad(const ResourceError& error)
{
if (isMainFrame()) {
m_loadError = error;
m_webPagePrivate->setLoadState(WebPagePrivate::Failed);
if (error.domain() == ResourceError::platformErrorDomain
&& (error.errorCode() == BlackBerry::Platform::FilterStream::StatusErrorAlreadyHandled)) {
// Error has already been displayed by client.
return;
}
if (error.domain().isEmpty() && !error.errorCode() && error.failingURL().isEmpty() && error.localizedDescription().isEmpty()) {
// Don't try to display empty errors returned from the unimplemented error functions in FrameLoaderClientBlackBerry - there's nothing to display anyway.
return;
}
}
if (m_webPagePrivate->m_dumpRenderTree)
m_webPagePrivate->m_dumpRenderTree->didFailProvisionalLoadForFrame(m_frame);
if (!isMainFrame())
return;
if (error.domain() == ResourceError::platformErrorDomain
&& (error.errorCode() == BlackBerry::Platform::FilterStream::StatusDeniedByApplication)) {
// Do not display error page for loading DENYed by application.
return;
}
// Make sure we're still in the provisionalLoad state - getErrorPage runs a
// nested event loop while it's waiting for client resources to load so
// there's a small window for the user to hit stop.
if (!m_frame->loader()->provisionalDocumentLoader())
return;
ResourceRequest originalRequest = m_frame->loader()->provisionalDocumentLoader()->originalRequest();
// Do not show error page for a failed download.
if (originalRequest.forceDownload())
return;
String errorPage = m_webPagePrivate->m_client->getErrorPage(error.errorCode(), error.localizedDescription(), error.failingURL());
SubstituteData errorData(utf8Buffer(errorPage), "text/html", "utf-8", KURL(KURL(), error.failingURL()));
// Loading using SubstituteData will replace the original request with our
// error data. This must be done within dispatchDidFailProvisionalLoad,
// and do NOT call stopAllLoaders first, because the loader checks the
// provisionalDocumentLoader to decide the load type; if called any other
// way, the error page is added to the end of the history instead of
// replacing the failed load.
//
// If this comes from a back/forward navigation, we need to save the current viewstate
// to original historyitem, and prevent the restore of view state to the error page.
if (isBackForwardLoadType(m_frame->loader()->loadType())) {
m_frame->loader()->history()->saveScrollPositionAndViewStateToItem(m_frame->loader()->history()->currentItem());
ASSERT(m_frame->loader()->history()->provisionalItem());
m_frame->loader()->history()->provisionalItem()->viewState().shouldSaveViewState = false;
}
// PR 342159. This can be called in such a way that the selection is not cancelled on
// the content page. Explicitly cancel the selection.
m_webPagePrivate->m_client->cancelSelectionVisuals();
m_loadingErrorPage = true;
m_frame->loader()->load(FrameLoadRequest(m_frame, originalRequest, errorData));
}
void FrameLoaderClientBlackBerry::dispatchWillSubmitForm(FramePolicyFunction function, PassRefPtr<FormState>)
{
// FIXME: Stub.
(m_frame->loader()->policyChecker()->*function)(PolicyUse);
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
if (m_formCredentials.isValid())
credentialManager().saveCredentialIfConfirmed(m_webPagePrivate, m_formCredentials);
#endif
}
void FrameLoaderClientBlackBerry::dispatchWillSendSubmitEvent(PassRefPtr<FormState> prpFormState)
{
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
m_formCredentials = CredentialTransformData();
#endif
if (!m_webPagePrivate->m_webSettings->isPrivateBrowsingEnabled()) {
if (m_webPagePrivate->m_webSettings->isFormAutofillEnabled()) {
m_webPagePrivate->m_autofillManager->saveTextFields(prpFormState->form());
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
if (m_webPagePrivate->m_webSettings->isCredentialAutofillEnabled())
m_formCredentials = CredentialTransformData(prpFormState->form(), true);
#endif
}
}
}
PassRefPtr<Frame> FrameLoaderClientBlackBerry::createFrame(const KURL& url, const String& name
, HTMLFrameOwnerElement* ownerElement, const String& referrer, bool allowsScrolling, int marginWidth, int marginHeight)
{
if (!m_webPagePrivate)
return 0;
if (m_childFrameCreationSuppressed)
return 0;
FrameLoaderClientBlackBerry* frameLoaderClient = new FrameLoaderClientBlackBerry();
RefPtr<Frame> childFrame = Frame::create(m_frame->page(), ownerElement, frameLoaderClient);
frameLoaderClient->setFrame(childFrame.get(), m_webPagePrivate);
// Initialize FrameView.
RefPtr<FrameView> frameView = FrameView::create(childFrame.get());
childFrame->setView(frameView.get());
if (!allowsScrolling)
frameView->setScrollbarModes(ScrollbarAlwaysOff, ScrollbarAlwaysOff);
if (marginWidth != -1)
frameView->setMarginWidth(marginWidth);
if (marginHeight != -1)
frameView->setMarginHeight(marginHeight);
childFrame->tree()->setName(name);
m_frame->tree()->appendChild(childFrame);
childFrame->init();
if (!childFrame->tree()->parent())
return 0;
m_frame->loader()->loadURLIntoChildFrame(url, referrer, childFrame.get());
if (!childFrame->tree()->parent())
return 0;
return childFrame.release();
}
ObjectContentType FrameLoaderClientBlackBerry::objectContentType(const KURL& url, const String& mimeTypeIn, bool shouldPreferPlugInsForImages)
{
String mimeType = mimeTypeIn;
if (mimeType.isEmpty())
mimeType = MIMETypeRegistry::getMIMETypeForPath(url.path());
// Get mapped type.
mimeType = MIMETypeRegistry::getNormalizedMIMEType(mimeType);
ObjectContentType defaultType = FrameLoader::defaultObjectContentType(url, mimeType, shouldPreferPlugInsForImages);
if (defaultType != ObjectContentNone)
return defaultType;
if (WebSettings::isSupportedObjectMIMEType(mimeType))
return ObjectContentOtherPlugin;
return ObjectContentNone;
}
void FrameLoaderClientBlackBerry::dispatchWillClose()
{
m_webPagePrivate->frameUnloaded(m_frame);
}
void FrameLoaderClientBlackBerry::setMainDocumentError(DocumentLoader*, const ResourceError& error)
{
if (!m_pluginView)
return;
m_pluginView->didFail(error);
m_pluginView = 0;
m_hasSentResponseToPlugin = false;
}
void FrameLoaderClientBlackBerry::postProgressStartedNotification()
{
if (!isMainFrame())
return;
// New load started, so clear the error.
m_loadError = ResourceError();
m_sentReadyToRender = false;
m_webPagePrivate->m_client->notifyLoadStarted();
}
void FrameLoaderClientBlackBerry::postProgressEstimateChangedNotification()
{
if (!isMainFrame() || !m_frame->page())
return;
m_webPagePrivate->m_client->notifyLoadProgress(m_frame->page()->progress()->estimatedProgress() * 100);
}
void FrameLoaderClientBlackBerry::dispatchDidLayout(LayoutMilestones milestones)
{
if (!isMainFrame())
return;
if (milestones & DidFirstVisuallyNonEmptyLayout) {
BBLOG(BlackBerry::Platform::LogLevelInfo, "dispatchDidFirstVisuallyNonEmptyLayout");
readyToRender(true);
// For FrameLoadTypeSame or FrameLoadTypeStandard load, the layout timer can be fired which can call
// dispatchDidFirstVisuallyNonEmptyLayout() after the load Finished state, in which case the web page
// will have no chance to zoom to initial scale. So we should give it a chance, otherwise the scale of
// the web page can be incorrect.
FrameLoadType frameLoadType = m_frame->loader()->loadType();
if (m_webPagePrivate->loadState() == WebPagePrivate::Finished && (frameLoadType == FrameLoadTypeSame || frameLoadType == FrameLoadTypeStandard))
m_webPagePrivate->setShouldZoomToInitialScaleAfterLoadFinished(true);
if (m_webPagePrivate->shouldZoomToInitialScaleOnLoad()) {
BackingStorePrivate* backingStorePrivate = m_webPagePrivate->m_backingStore->d;
m_webPagePrivate->zoomToInitialScaleOnLoad(); // Set the proper zoom level first.
backingStorePrivate->renderAndBlitVisibleContentsImmediately();
}
m_webPagePrivate->m_client->notifyFirstVisuallyNonEmptyLayout();
}
}
void FrameLoaderClientBlackBerry::postProgressFinishedNotification()
{
if (!isMainFrame())
return;
// Empty pages will never have called
// dispatchDidFirstVisuallyNonEmptyLayout, since they're visually empty, so
// we may need to call readyToRender now.
readyToRender(false);
m_webPagePrivate->m_client->notifyLoadFinished(m_loadError.isNull() ? 0 : m_loadError.errorCode());
// Notify plugins that are waiting for the page to fully load before starting that
// the load has completed.
m_webPagePrivate->notifyPageOnLoad();
}
void FrameLoaderClientBlackBerry::dispatchDidClearWindowObjectInWorld(DOMWrapperWorld* world)
{
if (world != mainThreadNormalWorld())
return;
m_webPagePrivate->m_client->notifyWindowObjectCleared();
if (m_webPagePrivate->m_dumpRenderTree) {
JSGlobalContextRef context = toGlobalRef(m_frame->script()->globalObject(mainThreadNormalWorld())->globalExec());
JSObjectRef windowObject = toRef(m_frame->script()->globalObject(mainThreadNormalWorld()));
ASSERT(windowObject);
m_webPagePrivate->m_dumpRenderTree->didClearWindowObjectInWorld(world, context, windowObject);
}
}
bool FrameLoaderClientBlackBerry::shouldGoToHistoryItem(HistoryItem*) const
{
return true;
}
bool FrameLoaderClientBlackBerry::shouldStopLoadingForHistoryItem(HistoryItem*) const
{
return true;
}
Frame* FrameLoaderClientBlackBerry::dispatchCreatePage(const NavigationAction& navigation)
{
WebPage* webPage = m_webPagePrivate->m_client->createWindow(0, 0, -1, -1, WebPageClient::FlagWindowDefault, navigation.url().string(), BlackBerry::Platform::String::emptyString(), m_frame->document()->url().string(), ScriptController::processingUserGesture());
if (!webPage)
return 0;
return webPage->d->m_page->mainFrame();
}
void FrameLoaderClientBlackBerry::detachedFromParent2()
{
// It is possible this function is called from CachedFrame::destroy() after the frame is detached from its previous page.
if (!m_webPagePrivate)
return;
if (m_frame->document())
m_webPagePrivate->clearDocumentData(m_frame->document());
m_webPagePrivate->frameUnloaded(m_frame);
m_webPagePrivate->m_client->notifyFrameDetached(m_frame);
// Do not access the page again from this point.
m_webPagePrivate = 0;
}
void FrameLoaderClientBlackBerry::dispatchWillSendRequest(DocumentLoader* docLoader, long unsigned, ResourceRequest& request, const ResourceResponse& redirectResponse)
{
// If the request is being loaded by the provisional document loader, then
// it is a new top level request which has not been commited.
bool isMainResourceLoad = docLoader && docLoader == docLoader->frameLoader()->provisionalDocumentLoader();
// TargetType for subresource loads should have been set in CachedResource::load().
if (isMainResourceLoad)
request.setTargetType(docLoader->frameLoader()->isLoadingMainFrame() ? ResourceRequest::TargetIsMainFrame : ResourceRequest::TargetIsSubframe);
// Any processing which is done for all loads (both main and subresource) should go here.
NetworkRequest platformRequest;
request.initializePlatformRequest(platformRequest, cookiesEnabled());
m_webPagePrivate->m_client->populateCustomHeaders(platformRequest);
const NetworkRequest::HeaderList& headerLists = platformRequest.getHeaderListRef();
for (NetworkRequest::HeaderList::const_iterator it = headerLists.begin(); it != headerLists.end(); ++it) {
BlackBerry::Platform::String headerString = it->first;
BlackBerry::Platform::String headerValueString = it->second;
request.setHTTPHeaderField(String::fromUTF8WithLatin1Fallback(headerString.data(), headerString.length()), String::fromUTF8WithLatin1Fallback(headerValueString.data(), headerValueString.length()));
}
if (m_webPagePrivate->m_dumpRenderTree) {
if (!m_webPagePrivate->m_dumpRenderTree->willSendRequestForFrame(m_frame, request, redirectResponse))
return;
}
if (!isMainResourceLoad) {
// Do nothing for now.
// Any processing which is done only for subresources should go here.
return;
}
// All processing beyond this point is done only for main resource loads.
if (m_clientRedirectIsPending && isMainFrame()) {
String originalUrl = m_frame->document()->url().string();
String finalUrl = request.url().string();
m_webPagePrivate->m_client->notifyClientRedirect(originalUrl.characters(), originalUrl.length(),
finalUrl.characters(), finalUrl.length());
}
FrameLoader* loader = m_frame->loader();
ASSERT(loader);
if (isBackForwardLoadType(loader->loadType())) {
// Do not use the passed DocumentLoader because it is the loader that
// will be used for the new request (the DESTINATION of the history
// navigation - we want to use the current DocumentLoader to record the
// SOURCE).
DocumentLoader* docLoader = m_frame->loader()->documentLoader();
ASSERT(docLoader);
m_historyNavigationSourceURLs.add(docLoader->url());
m_historyNavigationSourceURLs.add(docLoader->originalURL());
}
}
bool FrameLoaderClientBlackBerry::shouldUseCredentialStorage(DocumentLoader*, long unsigned)
{
#if ENABLE(BLACKBERRY_CREDENTIAL_PERSIST)
if (m_frame->page()->settings()->privateBrowsingEnabled())
return false;
return true;
#else
return false;
#endif
}
void FrameLoaderClientBlackBerry::loadIconExternally(const String& originalPageUrl, const String& finalPageUrl, const String& iconUrl)
{
m_webPagePrivate->m_client->setIconForUrl(originalPageUrl, finalPageUrl, iconUrl);
}
void FrameLoaderClientBlackBerry::saveViewStateToItem(HistoryItem* item)
{
if (!isMainFrame())
return;
ASSERT(item);
HistoryItemViewState& viewState = item->viewState();
if (viewState.shouldSaveViewState) {
viewState.orientation = m_webPagePrivate->mainFrame()->orientation();
viewState.isZoomToFitScale = fabsf(m_webPagePrivate->currentScale() - m_webPagePrivate->zoomToFitScale()) < 0.01;
// FIXME: for the web page which has viewport, if the page was rotated, we can get the correct scale
// as initial-scale or zoomToFitScale isn't changed most of the time and the scale can still be clamped
// during zoomAboutPoint when restoring the view state. However, there are still chances to get the
// wrong scale in theory, we don't have a way to save the scale of the previous orientation currently.
viewState.scale = m_webPagePrivate->currentScale();
viewState.shouldReflowBlock = m_webPagePrivate->m_shouldReflowBlock;
viewState.minimumScale = m_webPagePrivate->m_minimumScale;
viewState.maximumScale = m_webPagePrivate->m_maximumScale;
viewState.isUserScalable = m_webPagePrivate->m_userScalable;
viewState.webPageClientState = m_webPagePrivate->m_client->serializePageCacheState();
}
}
void FrameLoaderClientBlackBerry::restoreViewState()
{
if (!isMainFrame())
return;
HistoryItem* currentItem = m_frame->loader()->history()->currentItem();
ASSERT(currentItem);
if (!currentItem)
return;
HistoryItemViewState& viewState = currentItem->viewState();
if (!viewState.shouldSaveViewState)
return;
m_webPagePrivate->m_client->deserializePageCacheState(viewState.webPageClientState);
// WebPagePrivate is messing up FrameView::wasScrolledByUser() by sending
// scroll events that look like they were user generated all the time.
//
// Even if the user did not scroll, FrameView is gonna think they did.
// So we use our own bookkeeping code to keep track of whether we were
// actually scrolled by the user during load.
//
// If the user did scroll though, all are going to be in agreement about
// that, and the worst thing that could happen is that
// HistoryController::restoreScrollPositionAndViewState calls
// setScrollPosition with the the same point, which is a NOOP.
IntPoint scrollPosition = currentItem->scrollPoint();
if (m_webPagePrivate->m_userPerformedManualScroll)
scrollPosition = m_webPagePrivate->scrollPosition();
// We need to reset this variable after the view state has been restored.
m_webPagePrivate->m_didRestoreFromPageCache = false;
// Restore the meta first.
m_webPagePrivate->m_minimumScale = viewState.minimumScale;
m_webPagePrivate->m_maximumScale = viewState.maximumScale;
m_webPagePrivate->m_userScalable = viewState.isUserScalable;
// Also, try to keep the users zoom if any.
double scale = viewState.scale;
bool shouldReflowBlock = viewState.shouldReflowBlock;
if (m_webPagePrivate->m_userPerformedManualZoom) {
scale = m_webPagePrivate->currentScale();
shouldReflowBlock = m_webPagePrivate->m_shouldReflowBlock;
}
bool scrollChanged = scrollPosition != m_webPagePrivate->scrollPosition();
bool scaleChanged = scale != m_webPagePrivate->currentScale();
bool reflowChanged = shouldReflowBlock != m_webPagePrivate->m_shouldReflowBlock;
bool orientationChanged = viewState.orientation % 180 != m_webPagePrivate->mainFrame()->orientation() % 180;
m_webPagePrivate->m_inputHandler->restoreViewState();
if (!scrollChanged && !scaleChanged && !reflowChanged && !orientationChanged)
return;
// When rotate happens, only zoom when previous page was zoomToFitScale and didn't have virtual viewport, otherwise keep old scale.
if (orientationChanged && viewState.isZoomToFitScale && !m_webPagePrivate->hasVirtualViewport())
scale = BlackBerry::Platform::Graphics::Screen::primaryScreen()->width() * scale / static_cast<double>(BlackBerry::Platform::Graphics::Screen::primaryScreen()->height());
// Don't flash checkerboard before WebPagePrivate::restoreHistoryViewState() finished.
// This call will be balanced by BackingStorePrivate::resumeScreenAndBackingStoreUpdates() in WebPagePrivate::restoreHistoryViewState().
// FIXME: Do we really need to suspend/resume both backingstore and screen here?
m_webPagePrivate->m_backingStore->d->suspendBackingStoreUpdates();
m_webPagePrivate->m_backingStore->d->suspendScreenUpdates();
// It is not safe to render the page at this point. So we post a message instead. Messages have higher priority than timers.
BlackBerry::Platform::webKitThreadMessageClient()->dispatchMessage(BlackBerry::Platform::createMethodCallMessage(
&WebPagePrivate::restoreHistoryViewState, m_webPagePrivate, scrollPosition, scale, viewState.shouldReflowBlock));
}
PolicyAction FrameLoaderClientBlackBerry::decidePolicyForExternalLoad(const ResourceRequest& request, bool isFragmentScroll)
{
#if 0
// FIXME: Enable these commented out when WebPageClient::handleStringPattern is implemented
// and exposed to client. Before that, don't return PolicyIgnore so we can continue to
// create new window and get to dispatchDecidePolicyForNavigationAction() where the client
// is given a chance to decide how to handle patterns such as 'mailto:'.
const KURL& url = request.url();
String pattern = m_webPagePrivate->findPatternStringForUrl(url);
if (!pattern.isEmpty()) {
m_webPagePrivate->m_client->handleStringPattern(pattern.characters(), pattern.length());
return PolicyIgnore;
}
#endif
if (m_webPagePrivate->m_webSettings->areLinksHandledExternally()
&& isMainFrame()
&& !request.mustHandleInternally()
&& !isFragmentScroll) {
NetworkRequest platformRequest;
request.initializePlatformRequest(platformRequest, cookiesEnabled());
if (platformRequest.getTargetType() == NetworkRequest::TargetIsUnknown)
platformRequest.setTargetType(isMainFrame() ? NetworkRequest::TargetIsMainFrame : NetworkRequest::TargetIsSubframe);
m_webPagePrivate->m_client->handleExternalLink(platformRequest, request.anchorText().characters(), request.anchorText().length(), m_clientRedirectIsPending);
return PolicyIgnore;
}
return PolicyUse;
}
void FrameLoaderClientBlackBerry::willDeferLoading()
{
if (!isMainFrame())
return;
m_webPagePrivate->willDeferLoading();
}
void FrameLoaderClientBlackBerry::didResumeLoading()
{
if (!isMainFrame())
return;
m_webPagePrivate->didResumeLoading();
}
void FrameLoaderClientBlackBerry::readyToRender(bool pageIsVisuallyNonEmpty)
{
// Only send the notification once.
if (!m_sentReadyToRender) {
m_webPagePrivate->m_client->notifyLoadReadyToRender(pageIsVisuallyNonEmpty);
m_sentReadyToRender = true;
}
}
PassRefPtr<FrameNetworkingContext> FrameLoaderClientBlackBerry::createNetworkingContext()
{
return FrameNetworkingContextBlackBerry::create(m_frame);
}
void FrameLoaderClientBlackBerry::startDownload(const ResourceRequest& request, const String& suggestedName)
{
ResourceRequest requestCopy = request;
requestCopy.setSuggestedSaveName(suggestedName);
requestCopy.setForceDownload(true);
m_webPagePrivate->m_mainFrame->loader()->load(FrameLoadRequest(m_webPagePrivate->m_mainFrame, requestCopy));
}
void FrameLoaderClientBlackBerry::convertMainResourceLoadToDownload(DocumentLoader* documentLoader, const ResourceRequest& request, const ResourceResponse& response)
{
ASSERT(documentLoader);
ResourceBuffer* buff = documentLoader->mainResourceData().get();
BlackBerry::Platform::String filename = response.suggestedFilename();
if (filename.empty())
filename = request.suggestedSaveName();
if (!buff) {
// If no cached, like policyDownload resource which don't go render at all, just direct to downloadStream.
ASSERT(documentLoader->mainResourceLoader() && documentLoader->mainResourceLoader()->handle());
ResourceHandle* handle = documentLoader->mainResourceLoader()->handle();
BlackBerry::Platform::FilterStream* stream = NetworkManager::instance()->streamForHandle(handle);
// There are cases where there won't have a FilterStream
// associated with a ResourceHandle. For instance, Blob objects
// have their own ResourceHandle class which won't call startJob
// to do the proper setup. Do it here.
if (!stream)
stream = new BlobStream(response, handle);
ASSERT(stream);
m_webPagePrivate->m_client->downloadRequested(stream, filename);
return;
}
// For main page resource which has cached, get from cached resource.
BlackBerry::Platform::StringBuilder url;
STATIC_LOCAL_STRING(s_create, "data:");
url.append(s_create);
url.append(BlackBerry::Platform::String::fromUtf8(response.mimeType().utf8().data()));
STATIC_LOCAL_STRING(s_base64, ";base64,");
url.append(s_base64);
url.append(BlackBerry::Platform::String::fromUtf8(base64Encode(CString(buff->data(), buff->size())).utf8().data()));
NetworkRequest netRequest;
netRequest.setRequestUrl(url.string());
BlackBerry::Platform::DataStream *stream = new BlackBerry::Platform::DataStream(netRequest);
m_webPagePrivate->m_client->downloadRequested(stream, filename);
stream->streamOpen();
}
void FrameLoaderClientBlackBerry::dispatchDidReceiveIcon()
{
String url = m_frame->document()->url().string();
NativeImagePtr bitmap = iconDatabase().synchronousNativeIconForPageURL(url, IntSize(10, 10));
if (!bitmap || bitmap->isNull())
return;
int dataSize = bitmap->width() * bitmap->height();
Vector<unsigned> data;
data.reserveCapacity(dataSize);
if (!bitmap->readPixels(data.data(), dataSize))
return;
// Convert BGRA to RGBA.
unsigned char* pixels = reinterpret_cast<unsigned char*>(data.data());
for (int i = 0; i < bitmap->height(); ++i) {
unsigned char* bgra = pixels + i * bitmap->width() * 4;
for (int j = 0; j < bitmap->width(); ++j, bgra += 4)
std::swap(bgra[0], bgra[2]);
}
Vector<char> pngData;
if (!compressRGBABigEndianToPNG(pixels, bitmap->size(), pngData))
return;
Vector<char> out;
base64Encode(pngData, out);
String iconUrl = iconDatabase().synchronousIconURLForPageURL(url);
m_webPagePrivate->m_client->setFavicon(BlackBerry::Platform::String::fromAscii(out.data(), out.size()), iconUrl);
}
bool FrameLoaderClientBlackBerry::canCachePage() const
{
// We won't cache pages containing multipart with "multipart/x-mixed-replace".
ASSERT(m_frame->loader()->documentLoader());
const ResponseVector& responses = m_frame->loader()->documentLoader()->responses();
size_t count = responses.size();
for (size_t i = 0; i < count; i++) {
if (responses[i].isMultipartPayload())
return false;
}
return true;
}
void FrameLoaderClientBlackBerry::didSaveToPageCache()
{
// When page goes into PageCache, clean up any possible
// document data cache we might have.
m_webPagePrivate->clearDocumentData(m_frame->document());
if (!isMainFrame()) {
// Clear the reference to the WebPagePrivate object as the page may be destroyed when the frame is still in the page cache.
m_webPagePrivate = 0;
}
}
void FrameLoaderClientBlackBerry::provisionalLoadStarted()
{
// We would like to hide the virtual keyboard before it navigates to another page
// so that the scroll offset without keyboard shown will be saved in the history item.
// Then when the user navigates back, it will scroll to the right position.
if (isMainFrame())
m_webPagePrivate->showVirtualKeyboard(false);
}
// We don't need to provide the error message string, that will be handled in BrowserErrorPage according to the error code.
ResourceError FrameLoaderClientBlackBerry::cannotShowURLError(const ResourceRequest& request)
{
return ResourceError("WebKitErrorDomain", WebKitErrorCannotShowURL, request.url().string(), String());
}
void FrameLoaderClientBlackBerry::didRestoreFromPageCache()
{
if (!isMainFrame()) {
// Reconnect to the WebPagePrivate object now. We know the page must exist at this point.
m_webPagePrivate = static_cast<FrameLoaderClientBlackBerry*>(m_frame->page()->mainFrame()->loader()->client())->m_webPagePrivate;
}
m_webPagePrivate->m_didRestoreFromPageCache = true;
}
void FrameLoaderClientBlackBerry::dispatchWillUpdateApplicationCache(const ResourceRequest&)
{
ASSERT(isMainFrame());
if (!isMainFrame())
return;
m_webPagePrivate->m_client->notifyWillUpdateApplicationCache();
}
void FrameLoaderClientBlackBerry::dispatchDidLoadFromApplicationCache(const ResourceRequest&)
{
ASSERT(isMainFrame());
if (!isMainFrame())
return;
m_webPagePrivate->m_client->notifyDidLoadFromApplicationCache();
}
PassRefPtr<SecurityOrigin> FrameLoaderClientBlackBerry::securityOriginForNewDocument(const KURL& url)
{
// What we are trying to do here is to keep using the old path as origin when a file-based html page
// changes its location to some html in a subfolder. This will allow some file-based html packages
// to work smoothly even with security checks enabled.
RefPtr<SecurityOrigin> newSecurityOrigin = SecurityOrigin::create(url);
if (m_wasProvisionalLoadTriggeredByUserGesture || !url.isLocalFile())
return newSecurityOrigin;
RefPtr<SecurityOrigin> currentSecurityOrigin = m_frame->document()->securityOrigin();
if (currentSecurityOrigin && currentSecurityOrigin->containsInFolder(newSecurityOrigin.get()))
return currentSecurityOrigin;
return newSecurityOrigin;
}
} // WebCore
|